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

  :root {
    --green-900: #1B4332;
    --green-800: #2D6A4F;
    --green-700: #40916C;
    --green-500: #52B788;
    --green-400: #74C69D;
    --green-300: #95D5B2;
    --green-100: #D8F3DC;
    --orange: #F4A261;
    --coral: #E76F51;
    --cream: #FEFAE0;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--green-900);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
  }

  a { color: var(--green-400); }

  .wrap { max-width: 960px; margin: 0 auto; }

  .section-title {
    font-size: clamp(1.7rem, 3.6vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    text-align: center;
    margin-bottom: .75rem;
  }
  .section-lede {
    text-align: center;
    color: var(--green-300);
    max-width: 560px;
    margin: 0 auto 3rem;
    line-height: 1.6;
  }

  /* ── Hero ─────────────────────────────────────── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 128px 2rem 4rem;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 20% 80%, rgba(45,106,79,.6) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 80% 20%, rgba(64,145,108,.4) 0%, transparent 50%),
      radial-gradient(ellipse 100% 80% at 50% 100%, rgba(82,183,136,.15) 0%, transparent 70%);
    z-index: 0;
  }

  .leaf {
    position: absolute;
    width: 12px; height: 12px;
    background: var(--green-400);
    border-radius: 0 50% 50% 50%;
    opacity: 0;
    z-index: 0;
    animation: floatLeaf linear infinite;
  }
  .leaf:nth-child(1)  { left:10%; animation-duration:14s; animation-delay:0s; width:10px; height:10px; background:var(--green-500); }
  .leaf:nth-child(2)  { left:25%; animation-duration:18s; animation-delay:2s; width:8px; height:8px; }
  .leaf:nth-child(3)  { left:40%; animation-duration:16s; animation-delay:4s; width:14px; height:14px; background:var(--green-300); }
  .leaf:nth-child(4)  { left:55%; animation-duration:20s; animation-delay:1s; }
  .leaf:nth-child(5)  { left:70%; animation-duration:15s; animation-delay:3s; width:9px; height:9px; background:var(--green-500); }
  .leaf:nth-child(6)  { left:85%; animation-duration:17s; animation-delay:5s; width:11px; height:11px; }
  .leaf:nth-child(7)  { left:15%; animation-duration:22s; animation-delay:7s; width:7px; height:7px; background:var(--green-300); }
  .leaf:nth-child(8)  { left:60%; animation-duration:19s; animation-delay:6s; width:13px; height:13px; }
  .leaf:nth-child(9)  { left:90%; animation-duration:16s; animation-delay:8s; width:10px; height:10px; background:var(--green-500); }
  .leaf:nth-child(10) { left:35%; animation-duration:21s; animation-delay:9s; width:8px; height:8px; }

  @keyframes floatLeaf {
    0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
    10%  { opacity: .4; }
    90%  { opacity: .4; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
  }

  .grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .06;
    background-image:
      linear-gradient(var(--green-500) 1px, transparent 1px),
      linear-gradient(90deg, var(--green-500) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  /* Top nav */
  .topnav {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 96px;
    padding: 0 max(2rem, calc((100% - 1280px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
  }
  .topnav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    text-decoration: none;
  }
  .topnav-brand img {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: block;
    box-shadow: 0 0 0 1.5px rgba(255,255,255,.35), 0 4px 12px rgba(0,0,0,.45);
  }
  .topnav-brand .green { color: var(--green-400); }
  .topnav-brand .orange { color: var(--orange); }
  .topnav-links { display: flex; gap: 32px; font-size: 15px; font-weight: 500; }
  .topnav-links a { color: var(--green-300); text-decoration: none; transition: color .15s; }
  .topnav-links a:hover { color: #fff; }

  /* Two-column hero body */
  .hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 14px;
    border-radius: 100px;
    background: rgba(82,183,136,.15);
    border: 1px solid rgba(116,198,157,.25);
    color: var(--green-300);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  h1 {
    font-size: clamp(2.3rem, 4.6vw, 4.125rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.05;
    margin: 0;
    text-wrap: balance;
  }

  .tagline {
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    color: var(--green-300);
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
    text-wrap: balance;
  }

  .hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: .5rem;
  }
  .form-note {
    font-size: .875rem;
    line-height: 1.5;
    color: rgba(255,255,255,.45);
    margin: 0;
  }

  .hero-proof {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
    margin-top: .75rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--green-400);
  }
  .hero-proof li { display: flex; align-items: center; gap: 8px; }
  .hero-proof li::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green-500);
  }

  /* Real app screens */
  .hero-visual {
    position: relative;
    height: 680px;
  }
  .phone {
    position: absolute;
    padding: 10px;
    border-radius: 44px;
    background: #0B0B0B;
    box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
  }
  .phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 34px;
  }
  .phone-primary { width: 300px; left: 6%; top: 0; z-index: 2; }
  .phone-secondary { width: 220px; right: 2%; top: 110px; z-index: 1; transform: rotate(3deg); }

  .label-chip {
    position: absolute;
    left: 0; bottom: 48px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--cream);
    color: var(--green-900);
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
  }
  .label-chip-name { font-size: 15px; font-weight: 800; letter-spacing: -.01em; line-height: 18px; }
  .label-chip-latin { font-size: 12px; font-style: italic; color: var(--green-800); line-height: 16px; margin-top: 2px; }

  @media (max-width: 960px) {
    .hero { padding-top: 112px; }
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-copy { align-items: center; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-proof { justify-content: center; }
    .hero-visual { height: auto; display: flex; justify-content: center; }
    .phone { position: static; }
    .phone-primary { width: 260px; }
    .phone-secondary, .label-chip { display: none; }
  }
  @media (max-width: 760px) {
    .topnav-links { display: none; }
  }

  /* ── Feature rows ─────────────────────────────── */
  .features {
    position: relative;
    padding: 5rem 2rem 5rem;
    background: linear-gradient(180deg, var(--green-900) 0%, #143728 100%);
  }

  .feature-rows {
    display: grid;
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
  }

  .feature-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.5rem;
    align-items: start;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(116,198,157,.12);
    border-radius: 20px;
    padding: 2rem;
    transition: border-color .3s;
  }
  .feature-row:hover { border-color: rgba(116,198,157,.3); }

  .feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(82,183,136,.15);
  }
  .feature-icon.premium { background: rgba(244,162,97,.15); }

  .feature-row h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
  }
  .feature-row p {
    font-size: .95rem;
    color: var(--green-300);
    line-height: 1.6;
    max-width: 68ch;
  }

  .chip {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .2rem .55rem;
    border-radius: 100px;
    background: rgba(244,162,97,.18);
    color: var(--orange);
    vertical-align: middle;
  }

  .feature-minor {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    max-width: 960px;
    margin: 1.25rem auto 0;
  }
  .feature-minor .feature-row { grid-template-columns: 1fr; padding: 1.5rem; }
  .feature-minor h3 { font-size: 1.05rem; }
