:root {
    --blue: #006AFF;
    --blue-dark: #0050C8;
    --blue-light: #EBF2FF;
    --green: #1B5E20;
    --green-mid: #2E7D32;
    --amber: #FF8F00;
    --amber-light: #FFF8E1;
    --gray-100: #F8F9FA;
    --gray-200: #EEF0F3;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --red-bg: #FFEBEE;
    --red: #E53935;
    --lime-bg: #F9FBE7;
    --lime: #558B2F;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Figtree', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-brand img {
    width: 36px;
    height: 36px;
  }

  .nav-brand span {
    font-family: 'Figtree', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: -0.3px;
  }

  .nav-brand span b {
    color: var(--blue);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
  }

  .nav-links a:hover { color: var(--blue); }

  .nav-cta {
    background: var(--blue);
    color: #fff !important;
    padding: .45rem 1.2rem;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: .875rem !important;
    transition: background .2s, transform .15s !important;
    box-shadow: 0 2px 8px rgba(0,106,255,.30);
  }

  .nav-cta:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-1px);
    color: #fff !important;
  }

  @media (max-width: 700px) {
    .nav-links { display: none; }
  }

  /* HERO */
  .hero {
    min-height: calc(100vh - 64px);
    padding: 5rem clamp(1.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
  }

  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding-top: 3rem;
      padding-bottom: 3rem;
      gap: 3rem;
    }
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--blue-light);
    color: var(--blue);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
  }

  .hero-eyebrow svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
  }

  .hero h1 .accent {
    color: var(--blue);
  }

  .hero h1 em {
    font-style: italic;
    color: var(--green-mid);
  }

  .hero-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--blue);
    color: #fff;
    padding: .75rem 1.8rem;
    border-radius: 50px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 3px 12px rgba(0,106,255,.35);
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,106,255,.40);
  }

  .btn-outline {
    background: transparent;
    color: var(--gray-700);
    padding: .75rem 1.8rem;
    border-radius: 50px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1.5px solid var(--gray-200);
    transition: border-color .2s, color .2s;
  }

  .btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
  }

  /* HERO VISUAL */
  .hero-visual {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
  }

  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,106,255,.04) 0%, rgba(27,94,32,.03) 100%);
    pointer-events: none;
  }

  .visual-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
  }

  .visual-title {
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-800);
  }

  .visual-badge {
    background: var(--blue);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 50px;
  }

  .visual-grid {
    width: 100%;
    border-collapse: collapse;
    font-size: .78rem;
  }

  .visual-grid thead th {
    background: var(--gray-200);
    color: var(--gray-600);
    font-weight: 600;
    padding: .5rem .65rem;
    text-align: left;
    font-size: .72rem;
    letter-spacing: .03em;
  }

  .visual-grid tbody td {
    padding: .55rem .65rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-800);
    font-size: .78rem;
  }

  .visual-grid tbody tr:hover td {
    background: rgba(0,106,255,.04);
  }

  .badge-red {
    background: var(--red-bg);
    color: var(--red);
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 4px;
    white-space: nowrap;
  }

  .badge-lime {
    background: var(--lime-bg);
    color: var(--lime);
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 4px;
    white-space: nowrap;
  }

  .badge-blue {
    background: var(--blue-light);
    color: var(--blue);
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 4px;
  }

  .visual-legend {
    display: flex;
    gap: .75rem;
    margin-top: .75rem;
    flex-wrap: wrap;
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    color: var(--gray-600);
  }

  .legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* STATS STRIP */
  .stats-strip {
    background: var(--gray-900);
    padding: 3rem clamp(1.5rem, 5vw, 4rem);
  }

  .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
  }

  .stat-item {}

  .stat-number {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    margin-bottom: .4rem;
  }

  .stat-label {
    font-size: .85rem;
    color: #9CA3AF;
    font-weight: 500;
  }

  /* FEATURES */
  .section {
    padding: 5rem clamp(1.5rem, 5vw, 4rem);
    max-width: 1280px;
    margin: 0 auto;
  }

  .section-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: .6rem;
  }

  .section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    position: relative;
    overflow: hidden;
  }

  .feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: rgba(0,106,255,.2);
  }

  .feature-card.featured {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 1.4rem; 
  }

  .feature-icon svg {
    width: 40px;  
    height: 40px; 
  }  

  .feature-icon.blue { background: var(--blue-light); }
  .feature-icon.green { background: #E8F5E9; }
  .feature-icon.amber { background: var(--amber-light); }
  .feature-icon.red { background: var(--red-bg); }
  .feature-icon.gray { background: var(--gray-100); }
  .feature-icon.white { background: rgba(255,255,255,.2); }

  .feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: inherit;
  }

  .feature-card p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.65;
  }

  .feature-card.featured p {
    color: rgba(255,255,255,.85);
  }

  /* HOW IT WORKS */
  .how-section {
    background: var(--gray-100);
    padding: 5rem clamp(1.5rem, 5vw, 4rem);
  }

  .how-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    counter-reset: step;
  }

  .step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    position: relative;
  }

  .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-family: 'Fraunces', serif;
  }

  .step-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--gray-900);
  }

  .step-card p {
    font-size: .875rem;
    color: var(--gray-600);
    line-height: 1.65;
  }

  /* REGISTRY TABLE */
  .registry-section {
    padding: 5rem clamp(1.5rem, 5vw, 4rem);
    max-width: 1280px;
    margin: 0 auto;
  }

  .registry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: .75rem;
    margin-top: 2.5rem;
  }

  .registry-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: .75rem 1rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: background .2s, color .2s;
    border: 1px solid transparent;
  }

  .registry-item:hover {
    background: var(--blue-light);
    color: var(--blue);
    border-color: rgba(0,106,255,.15);
  }

  .registry-item-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
  }

  /* SUSPENSION VISUAL */
  .suspension-section {
    background: var(--gray-900);
    padding: 5rem clamp(1.5rem, 5vw, 4rem);
    overflow: hidden;
    position: relative;
  }

  .suspension-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,106,255,.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .suspension-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  @media (max-width: 850px) {
    .suspension-inner {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }

  .suspension-text .section-label { color: #60A5FA; }
  .suspension-text .section-title { color: #fff; }
  .suspension-text .section-subtitle {
    color: #9CA3AF;
    margin-bottom: 2rem;
  }

  .suspension-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .6rem;
    margin-right: .5rem;
  }

  .pill-red {
    background: rgba(229,57,53,.2);
    color: #FF7373;
    border: 1px solid rgba(229,57,53,.3);
  }

  .pill-lime {
    background: rgba(85,139,47,.2);
    color: #A5D878;
    border: 1px solid rgba(85,139,47,.3);
  }

  .pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* CTA */
  .cta-section {
    padding: 6rem clamp(1.5rem, 5vw, 4rem);
    text-align: center;
    background: var(--white);
    position: relative;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: var(--gray-200);
  }

  .cta-section .section-title {
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-section p {
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }

  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* FOOTER */
  footer {
    background: var(--gray-900);
    padding: 3rem clamp(1.5rem, 5vw, 4rem);
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .footer-brand img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: .7;
  }

  .footer-brand span {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
  }

  .footer-brand b { color: var(--blue); }

  .footer-tagline {
    font-size: .8rem;
    color: rgba(255,255,255,.35);
    margin-top: .25rem;
  }

  .footer-copy {
    font-size: .8rem;
    color: rgba(255,255,255,.3);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .animate-in {
    animation: fadeUp .6s ease forwards;
    opacity: 0;
  }

  .delay-1 { animation-delay: .1s; }
  .delay-2 { animation-delay: .2s; }
  .delay-3 { animation-delay: .3s; }
  .delay-4 { animation-delay: .4s; }

  /* CLOUD BADGE */
  .cloud-row {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  .cloud-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--gray-600);
  }

  .cloud-badge svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
  }
