:root {
  --navy-950: #0a0f1e;
  --navy-900: #0f1729;
  --navy-800: #162040;
  --navy-700: #1e2d5a;
  --navy-600: #2a3d73;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --gold-400: #c9a94e;
  --gold-500: #b8952f;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-900: #14532d;
  --red-400: #f87171;
  --red-900: #7f1d1d;
  --amber-400: #fbbf24;
  --amber-900: #78350f;
  --blue-400: #60a5fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--navy-950);
  color: var(--slate-200);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === NOISE TEXTURE OVERLAY === */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}
.delay-6 {
  animation-delay: 0.6s;
}

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 15, 30, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--slate-200);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 78, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

h1 .highlight {
  background: linear-gradient(
    135deg,
    var(--gold-400),
    #e2c97e,
    var(--gold-400)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--slate-400);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(201, 169, 78, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 78, 0.35);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.hero-note {
  font-size: 0.85rem;
  color: var(--slate-400);
  opacity: 0.7;
}

/* === SOCIAL PROOF BAR === */
.proof-bar {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(15, 23, 41, 0.5);
}

.proof-bar p {
  font-size: 0.85rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
}

.proof-stat-number {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.proof-stat-label {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-top: 0.25rem;
}

/* === SECTION STYLING === */
section {
  padding: 7rem 2rem;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 3.5rem;
}

/* === PROBLEM SECTION === */
.problem-section {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.problem-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.problem-icon.red {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.15);
}

.problem-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--slate-400);
  line-height: 1.6;
}

/* === HOW IT WORKS === */
.steps-section {
  background: var(--navy-900);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  counter-increment: step;
  transition: all 0.4s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 169, 78, 0.2);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 2rem;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-950);
}

.step-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  margin-top: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--slate-400);
  line-height: 1.6;
}

/* === DASHBOARD PREVIEW === */
.preview-section {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.preview-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.preview-dot:first-child {
  background: #ff5f57;
}
.preview-dot:nth-child(2) {
  background: #ffbd2e;
}
.preview-dot:nth-child(3) {
  background: #28c840;
}

.preview-content {
  padding: 2.5rem;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.preview-company {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.preview-company span {
  font-size: 0.85rem;
  color: var(--slate-400);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  display: block;
  margin-top: 0.25rem;
}

.preview-score {
  text-align: right;
}

.preview-score-value {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-400);
}

.preview-score-label {
  font-size: 0.8rem;
  color: var(--slate-400);
}

.preview-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.preview-progress-fill {
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  border-radius: 3px;
  transition: width 1.5s ease;
}

.preview-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.preview-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.preview-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.green {
  background: var(--green-400);
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.3);
}
.status-dot.amber {
  background: var(--amber-400);
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.3);
}
.status-dot.red {
  background: var(--red-400);
  box-shadow: 0 0 8px rgba(248, 113, 113, 0.3);
}

.preview-item-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--slate-300);
}

.preview-item-status {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.status-complete {
  color: var(--green-400);
  background: rgba(74, 222, 128, 0.08);
}

.status-review {
  color: var(--amber-400);
  background: rgba(251, 191, 36, 0.08);
}

.status-missing {
  color: var(--red-400);
  background: rgba(248, 113, 113, 0.08);
}

/* === FEATURES === */
.features-section {
  background: var(--navy-950);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 169, 78, 0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  background: rgba(201, 169, 78, 0.08);
  border: 1px solid rgba(201, 169, 78, 0.12);
}

.feature-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--slate-400);
  line-height: 1.6;
}

/* === PRICING === */
.pricing-section {
  background: var(--navy-900);
}

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 78, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(201, 169, 78, 0.15);
  border-radius: 20px;
  text-align: center;
}

.pricing-amount {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.pricing-amount span {
  font-size: 1.2rem;
  color: var(--slate-400);
  font-weight: 400;
}

.pricing-per {
  font-size: 0.95rem;
  color: var(--slate-400);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--slate-300);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-check {
  color: var(--gold-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-compare {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-top: 1.5rem;
  opacity: 0.7;
}

/* === FAQ === */
.faq-section {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--slate-400);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.4rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--slate-400);
  line-height: 1.7;
}

/* === CTA / SIGNUP SECTION === */
.signup-section {
  background: var(--navy-950);
  position: relative;
  padding: 8rem 2rem;
}

.signup-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 78, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.signup-container {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.signup-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.error-message {
  font-size: 0.75rem;
  color: var(--red-400);
  margin-top: 0.25rem;
  min-height: 1rem;
  display: block;
}

.error-message:empty {
  display: none;
}

.form-field label {
  font-size: 0.8rem;
  color: var(--slate-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field select option {
  background: var(--navy-800);
  color: var(--white);
}

.form-field input::placeholder {
  color: var(--slate-400);
  opacity: 0.5;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--gold-400);
  background: rgba(201, 169, 78, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 169, 78, 0.08);
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
  font-size: 1.05rem;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--slate-400);
  opacity: 0.6;
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  padding: 2.5rem;
  text-align: center;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--slate-400);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === FOOTER === */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand img {
  height: 26px;
  width: auto;
  opacity: 0.7;
}

.footer-info {
  font-size: 0.8rem;
  color: var(--slate-400);
  opacity: 0.5;
}

.footer-email {
  color: var(--slate-300);
  text-decoration: none;
  font-weight: 300;
  transition: all 0.3s ease;
}

.footer-email:hover {
  color: var(--gold-400);
}

/* === MOBILE === */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .proof-stats {
    gap: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 2rem;
  }

  .preview-content {
    padding: 1.5rem;
  }

  .preview-header {
    flex-direction: column;
  }

  .preview-score {
    text-align: left;
  }

  .signup-section {
    padding: 5rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
