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

  body {
    background: #050705;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #F1F5F3;
  }

  .frame {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    background: #0a0a0a;
  }

  /* ===== NAV (persistent) ===== */
  nav {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 44px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #f2f5f4;
  }
  .logo-mark {
    width: 9px; height: 9px; border-radius: 2px;
    background: #5DCAA5;
  }
  .nav-links {
    display: flex;
    gap: 30px;
    font-size: 12px;
    color: #9db3a9;
  }
  .nav-item { position: relative; }
  .nav-dropdown {
    display: none;
    position: absolute;
    top: 24px; left: -14px;
    background: #0e1512;
    border: 0.5px solid #1E2825;
    border-radius: 8px;
    padding: 10px;
    min-width: 170px;
    z-index: 10;
  }
  .nav-item:hover .nav-dropdown { display: block; }
  .nav-dropdown a {
    display: block;
    padding: 8px 10px;
    font-size: 12px;
    color: #b7c7bf;
    border-radius: 5px;
    text-decoration: none;
  }
  .nav-dropdown a:hover { background: rgba(93,202,165,0.08); color: #5DCAA5; }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    height: 640px;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 110px;
    background: linear-gradient(to bottom, rgba(2,6,5,0.65) 0%, rgba(2,6,5,0) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
      linear-gradient(to bottom, rgba(4,10,9,0.15) 0%, rgba(4,10,9,0.55) 62%, rgba(4,10,9,0.92) 100%),
      url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
  }
  .hero nav { padding: 32px 44px 0; margin-bottom: 100px; }
  .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 44px 90px;
    max-width: 560px;
  }
  .eyebrow {
    font-size: 12px;
    color: #5DCAA5;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  h1 {
    font-size: 42px;
    font-weight: 600;
    color: #f5f8f6;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
    max-width: 480px;
  }
  p.sub {
    font-size: 15px;
    color: #b7c7bf;
    line-height: 1.65;
    max-width: 420px;
    margin-bottom: 32px;
  }
  .cta-row { display: flex; align-items: center; gap: 20px; }
  .btn-primary {
    background: #5DCAA5;
    color: #04342C;
    font-size: 13px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 7px;
    text-decoration: none;
    display: inline-block;
  }
  .btn-secondary { color: #f2f5f4; font-size: 13px; display: flex; align-items: center; gap: 7px; text-decoration: none; }
  .nav-plain-link { color: inherit; text-decoration: none; }
  .footer-link-row { display: flex; gap: 16px; }

  /* ===== WHY NOW ===== */
  .why-now {
    padding: 60px 44px 20px;
  }
  .why-now-title {
    font-size: 20px;
    font-weight: 600;
    color: #f2f5f4;
    margin-bottom: 28px;
  }
  .why-now-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .why-now-item {
    border-left: 2px solid #1E2825;
    padding-left: 18px;
  }
  .why-now-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #5DCAA5;
    margin-bottom: 8px;
  }
  .why-now-item-body {
    font-size: 13px;
    color: #9CA8A4;
    line-height: 1.6;
  }

  /* ===== SCOPE CHECK ===== */
  .scope-check {
    padding: 20px 44px 80px;
  }
  .scope-box {
    background: #0e1512;
    border: 0.5px solid #1E2825;
    border-radius: 10px;
    padding: 36px 40px;
    max-width: 640px;
  }
  .scope-q {
    margin-bottom: 22px;
  }
  .scope-q-text {
    font-size: 14px;
    color: #f2f5f4;
    margin-bottom: 10px;
    font-weight: 500;
  }
  .scope-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .scope-opt {
    font-size: 12px;
    color: #9CA8A4;
    border: 0.5px solid #1E2825;
    border-radius: 20px;
    padding: 7px 16px;
    cursor: pointer;
    background: transparent;
  }
  .scope-opt.selected {
    border-color: #5DCAA5;
    color: #5DCAA5;
    background: rgba(93,202,165,0.08);
  }
  .scope-result {
    display: none;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 0.5px solid #1E2825;
  }
  .scope-result.visible { display: block; }
  .scope-result-title {
    font-size: 15px;
    font-weight: 600;
    color: #5DCAA5;
    margin-bottom: 10px;
  }
  .scope-result-body {
    font-size: 13px;
    color: #b7c7bf;
    line-height: 1.7;
    margin-bottom: 14px;
  }
  .scope-disclaimer {
    font-size: 11px;
    color: #7f9389;
    line-height: 1.6;
  }

  /* ===== SERVICES ===== */
  .services {
    position: relative;
    padding: 90px 44px;
    overflow: hidden;
  }
  .services-bg {
    position: absolute;
    top: 0; right: -5%; bottom: 0; width: 65%;
    background-image: url('images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    -webkit-mask-image: linear-gradient(to left, black 0%, black 30%, transparent 85%);
    mask-image: linear-gradient(to left, black 0%, black 30%, transparent 85%);
  }
  .section-label {
    position: relative;
    z-index: 2;
    font-size: 11px;
    color: #5DCAA5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .section-title {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 44px;
    max-width: 460px;
  }
  .cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 640px;
  }
  .card {
    background: #0e1512;
    border: 0.5px solid #1E2825;
    border-radius: 8px;
    padding: 22px;
    display: block;
    text-decoration: none;
    transition: border-color 0.15s;
  }
  .card:hover { border-color: #5DCAA5; }
  .card-icon { font-size: 20px; color: #5DCAA5; margin-bottom: 16px; }
  .card-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
  .card-desc { font-size: 12px; color: #9CA8A4; line-height: 1.6; }
  .card-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 10px;
    color: #5DCAA5;
    background: rgba(93,202,165,0.1);
    padding: 3px 9px;
    border-radius: 20px;
  }

  /* ===== INSIGHTS ===== */
  .insights {
    position: relative;
    padding: 90px 44px 100px;
  }
  .insight-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  .insight-card {
    background: #0e1512;
    border: 0.5px solid #1E2825;
    border-radius: 8px;
    padding: 28px;
  }
  .insight-hook {
    font-size: 13px;
    color: #9CA8A4;
    margin-bottom: 12px;
  }
  .insight-title {
    font-size: 18px;
    font-weight: 600;
    color: #f2f5f4;
    margin-bottom: 14px;
    line-height: 1.3;
  }
  .insight-body {
    font-size: 13px;
    color: #b7c7bf;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .insight-pointer {
    font-size: 12px;
    color: #5DCAA5;
    text-decoration: none;
  }
  .insight-byline {
    font-size: 11px;
    color: #7f9389;
    margin-bottom: 16px;
  }

  /* ===== DIVIDER ===== */
  .divider {
    height: 140px;
    background-image:
      linear-gradient(to right, rgba(5,7,5,0.5) 0%, rgba(5,7,5,0.1) 30%, rgba(5,7,5,0.1) 70%, rgba(5,7,5,0.5) 100%),
      url('images/divider-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.55;
  }

  /* ===== ABOUT ===== */
  .about {
    position: relative;
    padding: 110px 44px 90px;
    overflow: hidden;
  }
  .about-bg {
    position: absolute;
    top: 0; left: -10%; bottom: 0; width: 55%;
    background-image: url('images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    -webkit-mask-image: linear-gradient(to right, black 0%, transparent 70%);
    mask-image: linear-gradient(to right, black 0%, transparent 70%);
  }
  .about-inner {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin-left: auto;
  }
  .about-text .section-label { margin-bottom: 14px; }
  .about-body { font-size: 13px; color: #b7c7bf; line-height: 1.7; margin-bottom: 20px; }
  .badge-row { display: flex; gap: 8px; flex-wrap: wrap; }
  .badge {
    font-size: 10px;
    color: #5DCAA5;
    background: rgba(93,202,165,0.1);
    padding: 4px 10px;
    border-radius: 20px;
  }
  .about-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(93,202,165,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600; color: #5DCAA5;
    margin-bottom: 16px;
  }

  /* ===== FOOTER / CTA ===== */
  .footer {
    position: relative;
    min-height: 360px;
    padding: 60px 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
      linear-gradient(to bottom, rgba(4,10,9,0.55) 0%, rgba(4,10,9,0.75) 100%),
      url('images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
  }
  .footer-content { position: relative; z-index: 2; max-width: 480px; }
  .footer-title { font-size: 24px; font-weight: 600; margin-bottom: 14px; }
  .footer-sub { font-size: 13px; color: #b7c7bf; margin-bottom: 26px; }
  .footer-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; text-align: left; }
  .footer-step { border-left: 2px solid rgba(93,202,165,0.35); padding-left: 14px; }
  .footer-step-title { font-size: 12px; font-weight: 600; color: #5DCAA5; margin-bottom: 4px; }
  .footer-step-body { font-size: 12px; color: #9CA8A4; line-height: 1.6; }
  .footer-links {
    border-top: 0.5px solid rgba(255,255,255,0.08);
    padding: 20px 44px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #7f9389;
  }
  /* ===== MOBILE ===== */
  @media (max-width: 720px) {
    nav { padding: 20px 20px; flex-wrap: wrap; gap: 12px; }
    .nav-links { gap: 18px; flex-wrap: wrap; }
    .hero { height: auto; min-height: 560px; }
    .hero::before { height: 70px; }
    .hero nav { padding: 20px 20px 0; margin-bottom: 50px; }
    .hero-content { padding: 0 20px 50px; max-width: 100%; }
    h1 { font-size: 28px; max-width: 100%; }
    p.sub { font-size: 14px; max-width: 100%; }
    .cta-row { flex-wrap: wrap; gap: 14px; }
    .why-now { padding: 40px 20px 10px; }
    .why-now-grid { grid-template-columns: 1fr; gap: 22px; }
    .scope-check { padding: 16px 20px 50px; }
    .scope-box { padding: 24px 22px; max-width: 100%; }
    .scope-options { gap: 8px; }
    .services { padding: 56px 20px; }
    .section-title { font-size: 21px; max-width: 100%; }
    .cards { grid-template-columns: 1fr; gap: 14px; }
    .insights { padding: 56px 20px 60px; }
    .insight-articles { grid-template-columns: 1fr; gap: 14px; }
    .divider { height: 90px; }
    .about { padding: 60px 20px; }
    .about-inner { margin-left: 0; max-width: 100%; }
    .footer { height: auto; padding: 60px 20px; }
    .footer-content { max-width: 100%; }
    .footer-title { font-size: 20px; }
    .footer-links { padding: 16px 20px; flex-direction: column; gap: 10px; text-align: center; }
    .footer-links span[style] { justify-content: center; }
  }
  .scope-result-link {
    display: inline-block; margin-top: 14px; font-size: 13px;
    color: #5DCAA5; text-decoration: none; font-weight: 600;
  }
  a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid #5DCAA5; outline-offset: 3px; border-radius: 3px;
  }
  .skip {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    background: #5DCAA5; color: #04342C; font-size: 13px; font-weight: 600;
    padding: 12px 20px; text-decoration: none; border-radius: 0 0 7px 0;
  }
  .skip:focus { left: 0; }
