/* RemoteKit Audit Page - Extracted Styles */

:root {
  --bg: #050505;
  --bg-light: #f8fafc;
  --accent: #ace35c;
  --accent-dark: #8bc34a;
  --text: #f8faf9;
  --text-dark: #0f172a;
  --text-dim: rgba(248, 250, 249, 0.6);
  --text-muted: rgba(248, 250, 249, 0.3);
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(15, 23, 42, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  width: 100%;
}

h1,
h2,
h3 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  line-height: 1.1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: 80px;
}

.section-dark {
  background: var(--bg);
  color: var(--text);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-actions {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 991px) {
  .nav-actions {
    display: none;
  }
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }
}

/* Mobile Menu Content */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 300px;
  background: #050505;
  z-index: 2000;
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid var(--border);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 106px;
  height: auto;
  filter: invert(1);
}

.logo-tag {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  margin-left: 4px;
  text-transform: none;
  letter-spacing: normal;
  display: flex;
  align-items: center;
}

.logo-tag span {
  display: inline-block;
  transform: translateY(1.5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 15px;
  border: none;
  height: 54px;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background: #bef264;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  border-radius: 0;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
}

.btn-light-outline {
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  background: transparent;
  border-radius: 0;
}

/* Hero */
.hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 120px;
  text-align: center;
  background: radial-gradient(circle at center, #111 0%, #050505 100%);
  overflow: visible;
}
.hero .container {
  position: relative;
  z-index: 2;
}
/* Big illustrated arrow: behind nav, under hero, points at form cue */
.hero-arrow-wrap {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: min(180px, 28vw);
  height: 780px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: hero-arrow-fade-in 1s ease-out 0.4s forwards;
}
.hero-arrow-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-arrow-wrap .arrow-fill {
  fill: var(--accent);
  opacity: 0.05;
}
.hero-arrow-wrap .arrow-fade-mask {
  mask: linear-gradient(to bottom, black 0%, black 100%);
  -webkit-mask: linear-gradient(to bottom, black 0%, black 100%);
}
@keyframes hero-arrow-fade-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 28px;
  min-width: 260px;
  background: transparent;
  border: 2px solid rgba(172, 227, 92, 0.3);
  color: var(--accent);
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title span {
  color: var(--accent);
  background: transparent;
  padding: 0;
  display: inline;
}

.hero-desc {
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.5;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Trust Section / Marquee */
.marquee-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: #000;
}

.marquee-wrapper {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 20px;
}

.marquee-item::after {
  content: "•";
  color: var(--accent);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Launch Impact Section */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.impact-content h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
}

.impact-list {
  list-style: none;
}

.impact-list li {
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  font-size: 18px;
}

.impact-list-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.impact-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.impact-image img {
  width: 100%;
  display: block;
}

/* Form Styles */
.form-section {
  padding: 16px 0 100px;
  position: relative;
  z-index: 10;
  margin-top: -80px;
}

.form-container {
  background: #0a0a0a;
  border: 1px solid var(--border);
  padding: 60px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-grid .form-group {
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
}

/* Deliverables Grid */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 40px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(172, 227, 92, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.card p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
}

/* Pricing */
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 0;
}

.price-card {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 48px;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.price-card.popular {
  border-color: var(--accent);
  background: #0d0d0d;
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  color: #000;
  padding: 4px 12px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-tag {
  margin: 32px 0;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
}

.price-period {
  color: var(--text-dim);
}

.price-list {
  list-style: none;
  margin-bottom: 40px;
}

.price-list li {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  font-size: 15px;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-right: 40px;
}

.faq-answer p {
  padding-top: 16px;
  color: #475569;
}

#faq {
  padding-top: 24px;
}

/* Curved arrow cue to form */
.form-cue {
  text-align: center;
  padding: 24px 0 16px;
  margin-top: -20px;
}
.form-cue-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.form-cue-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Testimonials slider */
.testimonials-slider-wrap {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  transition: transform 0.35s ease-out;
}
.testimonials-track .card {
  flex: 0 0 100%;
  min-width: 0;
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.testimonials-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.testimonials-dots button.active {
  background: var(--accent, #ace35c);
}
@media (min-width: 769px) {
  .testimonials-track {
    transform: none !important;
    gap: 32px;
  }
  .testimonials-track .card {
    flex: 0 0 calc(33.333% - 22px);
  }
  .testimonials-dots {
    display: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .hero {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }

  .form-section {
    padding-top: 36px;
    margin-top: -20px;
  }
  .form-container {
    padding: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  .price-card {
    padding: 32px 24px;
  }

  .section-header {
    margin-bottom: 40px;
  }
  .section-header h2 {
    font-size: 32px;
  }

  .impact-content h2 {
    font-size: 32px;
  }
  .impact-list li {
    font-size: 16px;
  }

  .price-amount {
    font-size: 32px !important;
  }

  .faq-question {
    font-size: 18px;
  }
  .faq-answer p {
    font-size: 15px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Audit form success message (embedded for standalone domain) */
.remotekit-success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  min-height: 280px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}
.remotekit-success-icon {
  margin-bottom: 1.5rem;
}
.remotekit-success-icon svg {
  width: 64px;
  height: 64px;
  display: block;
}
.remotekit-success-heading {
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #f8faf9;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}
.remotekit-success-desc {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  color: rgba(248, 250, 249, 0.6);
  margin: 0;
  line-height: 1.5;
  max-width: 420px;
}
@media (max-width: 768px) {
  .remotekit-success-heading {
    font-size: 1.5rem;
  }
  .remotekit-success-desc {
    font-size: 0.9rem;
  }
  .remotekit-success-icon svg {
    width: 56px;
    height: 56px;
  }
}

/* Form error message */
.form-error-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid #ff4444;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: #ff4444;
  font-size: 0.95rem;
}

/* Contrast Fixes */
.card-author p {
  color: var(--text-dim) !important;
  opacity: 1;
}
.price-list li {
  color: var(--text-dim) !important;
}
.hero-desc {
  color: var(--text-dim) !important;
}

/* Modal */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.custom-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: #0a0a0a;
  border: 1px solid var(--border);
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.custom-modal.active .modal-content {
  transform: translateY(0);
}
