:root {
  --navy: #0F2D45;
  --navy-deep: #081826;
  --teal: #0D9E7A;
  --teal-bright: #11C896;
  --ink: #1E2D3D;
  --cloud: #F5F7FA;
  --cloud-warm: #EDF1F5;
  --gray-line: #D4DCE3;
  --gray-mid: #6B7B8A;
  --gray-soft: #9AA8B5;
  --signal-amber: #C8862E;
  --signal-rust: #A85935;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--teal);
}

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 247, 250, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-line);
}
.nav-inner {
  max-width: 1480px; margin: 0 auto;
  padding: 1.1rem 2.25rem;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-size: 0.83rem; color: var(--ink); text-decoration: none;
  font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--navy); color: white !important;
  padding: 0.6rem 1.25rem; border-radius: 2px;
  font-size: 0.8rem !important; font-weight: 600 !important;
  letter-spacing: 0.05em !important;
}
.nav-cta:hover { background: var(--teal) !important; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0.3rem;
  line-height: 1;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cloud);
  border-top: 1px solid var(--gray-line);
  padding: 1rem 2rem;
  gap: 0;
}
.mobile-menu a {
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gray-line);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu.open { display: flex; }

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-bright); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--cloud);
  border: 1px solid rgba(245, 247, 250, 0.3);
}
.btn-secondary:hover { border-color: var(--teal-bright); color: var(--teal-bright); }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--cloud);
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 49px, rgba(13,158,122,0.04) 49px, rgba(13,158,122,0.04) 50px),
    repeating-linear-gradient(90deg, transparent 0, transparent 49px, rgba(13,158,122,0.04) 49px, rgba(13,158,122,0.04) 50px);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--hero-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: left;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.8rem;
  letter-spacing: -0.015em;
  max-width: 760px;
}
.hero h1 .accent { color: var(--teal-bright); }
.hero h1 br.hero-break { display: inline; }
.hero .eyebrow { color: var(--teal-bright); margin-bottom: 1.2rem; display: block; }
.hero-lede {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  max-width: 720px;
  color: rgba(245, 247, 250, 0.85);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
@media (max-width: 760px) {
  .hero h1 br.hero-break { display: none; }
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== DIAGNOSIS ===== */
.diagnosis {
  background: var(--cloud);
  padding: 5rem 2rem 7rem;
  border-bottom: 1px solid var(--gray-line);
}
.diagnosis-inner { max-width: var(--content-max); margin: 0 auto; }
.diagnosis .eyebrow { display: block; margin-bottom: 1.2rem; }
.diagnosis h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 2.4rem;
  max-width: 960px;
}
.diagnosis-body {
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 1.4rem;
  max-width: 960px;
}
.diagnosis-body strong { color: var(--navy); font-weight: 600; }
.diagnosis-pull {
  margin-top: 2.6rem;
  padding: 2rem 2.2rem;
  background: var(--navy);
  color: var(--cloud);
  border-left: 3px solid var(--teal-bright);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.005em;
  max-width: 1000px;
}
.diagnosis-pull .accent { color: var(--teal-bright); }

/* ===== FORK ===== */
.fork {
  background: var(--cloud-warm);
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--gray-line);
}
.fork-inner { max-width: var(--content-max); margin: 0 auto; }
.fork-head { text-align: center; margin-bottom: 4rem; }
.fork-head .eyebrow { display: block; margin-bottom: 1rem; }
.fork-head h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  max-width: 840px;
  margin: 0 auto;
}
.fork-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: stretch; }
.fork-card {
  background: white;
  padding: 3.5rem 2.8rem;
  border-top: 4px solid var(--teal);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fork-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(15, 45, 69, 0.25);
}
.fork-card-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.4rem;
}
.fork-card h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.fork-card .role {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-mid);
  margin-bottom: 1.6rem;
  letter-spacing: 0.01em;
}
.fork-card p { font-size: 0.98rem; color: var(--ink); line-height: 1.7; margin-bottom: 1.2rem; flex: 1; }
.fork-card .arrow {
  margin-top: 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease;
}
.fork-card:hover .arrow { gap: 0.9rem; color: var(--teal-bright); }
.fork-bridge {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray-mid);
  font-style: italic;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ===== WHAT ===== */
.what { background: var(--cloud); padding: 7rem 2rem; border-bottom: 1px solid var(--gray-line); }
.what-inner { max-width: var(--content-max); margin: 0 auto; }
.what-head { margin-bottom: 3rem; }
.what-head .eyebrow { display: block; margin-bottom: 1.2rem; }
.what-head h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  max-width: 960px;
}
.what-body { font-size: 1.05rem; color: var(--ink); line-height: 1.8; margin-bottom: 1.5rem; max-width: 960px; }
.what-body strong { color: var(--navy); font-weight: 600; }
.what-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.what-pill { border-top: 2px solid var(--teal); padding-top: 1.4rem; }
.what-pill-num { font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; color: var(--teal); margin-bottom: 0.7rem; }
.what-pill h4 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.7rem; line-height: 1.3; }
.what-pill p { font-size: 0.9rem; color: var(--ink); line-height: 1.65; }

/* ===== WHY NOW ===== */
.why-now { background: var(--cloud-warm); padding: 7rem 2rem; border-bottom: 1px solid var(--gray-line); }
.why-now-inner { max-width: var(--content-max); margin: 0 auto; }
.why-now .eyebrow { display: block; margin-bottom: 1.2rem; }
.why-now h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 2.4rem;
  max-width: 960px;
}
.why-now-body { font-size: 1.05rem; color: var(--ink); line-height: 1.8; margin-bottom: 1.4rem; max-width: 960px; }
.why-now-body strong { color: var(--navy); font-weight: 600; }
.why-now-signature { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-line); font-style: italic; color: var(--gray-mid); font-size: 0.95rem; }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--navy); color: var(--cloud); padding: 7rem 2rem; text-align: center; }
.final-cta-inner { max-width: 960px; margin: 0 auto; }
.final-cta .eyebrow { color: var(--teal-bright); margin-bottom: 1.4rem; display: block; }
.final-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.final-cta p { font-size: 1.05rem; color: rgba(245, 247, 250, 0.8); line-height: 1.7; margin-bottom: 2.4rem; max-width: 780px; margin-left: auto; margin-right: auto; }
.cta-secondary { display: block; margin-top: 2.4rem; font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245, 247, 250, 0.6); text-decoration: none; transition: color 0.2s; }
.cta-secondary:hover { color: var(--teal-bright); }
.cta-secondary .arr { color: var(--teal-bright); }

/* ===== FOOTER ===== */
footer { background: var(--navy-deep); color: rgba(245, 247, 250, 0.55); padding: 3rem 2rem; text-align: center; font-size: 0.82rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo { display: inline-block; margin-bottom: 0.9rem; text-decoration: none; }
.footer-logo img { height: 40px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-tagline { margin-bottom: 1.5rem; line-height: 1.65; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { color: rgba(245, 247, 250, 0.55); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.04em; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-bright); }
.footer-copy { font-size: 0.75rem; color: rgba(245, 247, 250, 0.35); }

/* ===== PRICING PAGE ===== */
.pricing-hero {
  background: var(--navy);
  color: var(--cloud);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 49px, rgba(13,158,122,0.04) 49px, rgba(13,158,122,0.04) 50px),
    repeating-linear-gradient(90deg, transparent 0, transparent 49px, rgba(13,158,122,0.04) 49px, rgba(13,158,122,0.04) 50px);
  pointer-events: none;
}
.pricing-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.pricing-hero .eyebrow { color: var(--teal-bright); margin-bottom: 1.2rem; display: block; }
.pricing-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
  letter-spacing: -0.012em;
}
.pricing-hero p { font-size: clamp(1.05rem, 1.5vw, 1.18rem); max-width: 860px; color: rgba(245, 247, 250, 0.82); font-weight: 300; line-height: 1.65; }

.pricing-section { background: var(--cloud-warm); padding: 5rem 2rem; border-bottom: 1px solid var(--gray-line); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-intro { text-align: center; margin-bottom: 4rem; }
.pricing-intro h2 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: clamp(1.7rem, 2.8vw, 2.3rem); color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.005em; }
.pricing-intro p { font-size: 1rem; color: var(--gray-mid); max-width: 800px; margin: 0 auto; line-height: 1.65; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; align-items: start; }
.price-card { background: white; padding: 2.8rem 2.2rem; border-top: 3px solid var(--gray-line); position: relative; }
.price-card.featured { border-top-color: var(--teal); box-shadow: 0 8px 40px -12px rgba(15, 45, 69, 0.2); transform: scale(1.02); }

.price-badge { position: absolute; top: -1px; right: 1.5rem; background: var(--teal); color: white; font-family: 'Oswald', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.8rem; }
.price-tier { font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.9rem; }
.price-card h3 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.5rem; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.2; }
.price-card .price-desc { font-size: 0.9rem; color: var(--gray-mid); line-height: 1.55; margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--gray-line); }
.price-tag { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 1.5rem; letter-spacing: -0.005em; }
.price-tag span { font-size: 0.8rem; font-weight: 400; color: var(--gray-mid); letter-spacing: 0.02em; }
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li { font-size: 0.88rem; color: var(--ink); line-height: 1.55; padding: 0.6rem 0 0.6rem 1.3rem; border-bottom: 1px solid var(--gray-line); position: relative; }
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '+'; position: absolute; left: 0; font-family: 'Oswald', sans-serif; font-weight: 600; color: var(--teal); font-size: 1rem; line-height: 1.4; }
.price-cta { display: block; text-align: center; font-family: 'Oswald', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.85rem 1.5rem; border-radius: 2px; text-decoration: none; transition: all 0.2s; border: 1.5px solid var(--navy); color: var(--navy); }
.price-cta:hover { background: var(--navy); color: white; }
.price-card.featured .price-cta { background: var(--teal); border-color: var(--teal); color: white; }
.price-card.featured .price-cta:hover { background: var(--teal-bright); border-color: var(--teal-bright); }

.pricing-note { text-align: center; font-size: 0.88rem; color: var(--gray-mid); font-style: italic; line-height: 1.6; max-width: 800px; margin: 0 auto; }

.pricing-faq { background: var(--cloud); padding: 5rem 2rem; border-bottom: 1px solid var(--gray-line); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-head { margin-bottom: 3rem; }
.faq-head h2 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: clamp(1.7rem, 2.6vw, 2.2rem); color: var(--navy); letter-spacing: -0.005em; }
.faq-item { border-bottom: 1px solid var(--gray-line); padding: 1.6rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.8rem; line-height: 1.3; }
.faq-a { font-size: 0.95rem; color: var(--ink); line-height: 1.7; }
.faq-a strong { color: var(--navy); font-weight: 600; }

/* ===== DEMO PAGE ===== */
.demo-hero {
  background: var(--navy);
  color: var(--cloud);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.demo-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 49px, rgba(13,158,122,0.04) 49px, rgba(13,158,122,0.04) 50px),
    repeating-linear-gradient(90deg, transparent 0, transparent 49px, rgba(13,158,122,0.04) 49px, rgba(13,158,122,0.04) 50px);
  pointer-events: none;
}
.demo-hero-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.demo-hero-text .eyebrow { color: var(--teal-bright); display: block; margin-bottom: 1.2rem; }
.demo-hero-text h1 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.05; margin-bottom: 1.6rem; letter-spacing: -0.012em; }
.demo-hero-text p { font-size: 1.02rem; color: rgba(245, 247, 250, 0.82); font-weight: 300; line-height: 1.65; margin-bottom: 1rem; }

.demo-form-wrap { background: white; padding: 2.8rem 2.4rem; border-top: 3px solid var(--teal); }
.demo-form-wrap h2 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem; }
.demo-form-wrap .form-sub { font-size: 0.88rem; color: var(--gray-mid); margin-bottom: 1.8rem; line-height: 1.55; }

.demo-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; color: var(--ink); background: var(--cloud);
  border: 1px solid var(--gray-line); border-radius: 2px;
  padding: 0.72rem 1rem; width: 100%; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1rem 1.8rem; background: var(--teal); color: white;
  border: none; border-radius: 2px; cursor: pointer; transition: all 0.2s; width: 100%;
}
.form-submit:hover { background: var(--teal-bright); transform: translateY(-1px); }

.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success .check { font-size: 2.5rem; color: var(--teal); margin-bottom: 1rem; }
.form-success h3 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.7rem; }
.form-success p { font-size: 0.92rem; color: var(--gray-mid); line-height: 1.65; }

.demo-why { background: var(--cloud); padding: 5rem 2rem; border-bottom: 1px solid var(--gray-line); }
.demo-why-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.demo-why-card { border-top: 2px solid var(--teal); padding-top: 1.4rem; }
.demo-why-num { font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; color: var(--teal); margin-bottom: 0.7rem; }
.demo-why-card h3 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.7rem; line-height: 1.25; }
.demo-why-card p { font-size: 0.9rem; color: var(--ink); line-height: 1.65; }

/* ===== LOGIN PAGE ===== */
.nav-login {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--gray-line);
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-login:hover {
  border-color: var(--teal) !important;
  color: var(--teal) !important;
}

.login-section {
  background: var(--cloud);
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}
.login-card {
  background: white;
  max-width: 420px;
  width: 100%;
  padding: 3rem 2.5rem;
  border-top: 3px solid var(--teal);
  box-shadow: 0 4px 24px -6px rgba(15, 45, 69, 0.1);
}
.login-logo {
  display: block;
  margin: 0 auto 2rem;
  width: fit-content;
}
.login-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.login-card h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.login-footer-links {
  text-align: center;
  margin-top: 1.5rem;
}
.login-footer-links a {
  font-size: 0.85rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.login-footer-links a:hover {
  color: var(--teal-bright);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
  .mobile-menu-btn { display: block; }
  .nav-links { display: none; }
  .fork-grid, .what-three { grid-template-columns: 1fr; }
  .hero { padding: 5rem 2rem 4rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .demo-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .demo-why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { gap: 1.2rem; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0.8rem 1rem; }
  .logo img { height: 36px; }
  .mobile-menu { padding: 0.8rem 1rem; }
  .hero { padding: 3.5rem 1.2rem 3rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-lede { font-size: 1rem; }
  .diagnosis, .fork, .what, .why-now { padding: 4rem 1.2rem; }
  .diagnosis h2, .fork h2, .what-head h2, .why-now h2 { font-size: 1.6rem; }
  .final-cta { padding: 4rem 1.2rem; }
  .final-cta h2 { font-size: 1.6rem; }
  footer { padding: 2rem 1.2rem; }
  .footer-links { flex-direction: column; gap: 0.8rem; }
  .demo-hero { padding: 3rem 1.2rem; }
  .demo-hero-text h1 { font-size: 1.8rem; }
  .demo-form-wrap { padding: 2rem 1.5rem; }
  .login-section { padding: 2.5rem 1.2rem; }
  .login-card { padding: 2rem 1.5rem; }
  .btn { padding: 0.85rem 1.4rem; font-size: 0.82rem; }
}
