:root {
    --navy: #0C2D4D;
    --navy-deep: #081F37;
    --teal: #2BA39B;
    --teal-bright: #5EDED5;
    --foam: #F4F8F7;
    --ink: #16324A;
    --slate: #5C7489;
    --line: #DCE7E5;
  }

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

  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  body {
    font-family: "Inter", -apple-system, sans-serif;
    color: var(--ink);
    background: var(--foam);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  .display { font-family: "Fraunces", Georgia, serif; }

  .wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

  /* ---------- Hero ---------- */
  header.hero {
    background: linear-gradient(175deg, var(--navy) 55%, var(--navy-deep));
    color: #E9F2F1;
    padding: 0 0 90px;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
  }
  .brand {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: #fff;
    letter-spacing: 0.01em;
    text-decoration: none;
  }
  .brand span { color: var(--teal-bright); }
  nav .links a {
    color: #B8CBD9;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    margin-left: 28px;
    transition: color 0.2s;
  }
  nav .links a:hover { color: var(--teal-bright); }

  .hero-inner { padding-top: 72px; max-width: 720px; }

  .eyebrow {
    color: var(--teal-bright);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  h1 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    line-height: 1.12;
    color: #fff;
    letter-spacing: -0.01em;
  }
  h1 em {
    font-style: normal;
    color: var(--teal-bright);
  }

  .hero-sub {
    margin-top: 24px;
    font-size: 1.13rem;
    color: #B8CBD9;
    max-width: 34em;
  }

  .cta-row { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
  .btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s, background 0.2s, color 0.2s;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--teal); color: #fff; }
  .btn-primary:hover { background: #249189; }
  .btn-ghost { border: 1px solid #3E5A74; color: #DCE9F2; }
  .btn-ghost:hover { border-color: var(--teal-bright); color: var(--teal-bright); }

  /* ---------- Wave divider (the signature) ---------- */
  .waves { display: block; width: 100%; height: 90px; margin-top: -1px; }

  /* ---------- Sections ---------- */
  section { padding: 84px 0; }
  section.alt { background: #fff; }

  .kicker {
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  h2 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 3.4vw, 2.2rem);
    color: var(--navy);
    line-height: 1.2;
    max-width: 22em;
  }
  .lede { margin-top: 18px; color: var(--slate); max-width: 40em; font-size: 1.05rem; }

  /* Pillars */
  .pillars {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .pillar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 30px 28px;
  }
  section.alt .pillar { background: var(--foam); }
  .pillar h3 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.18rem;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .pillar p { font-size: 0.95rem; color: var(--slate); }
  .pillar .rule {
    width: 34px; height: 3px;
    background: var(--teal);
    border-radius: 2px;
    margin-bottom: 18px;
  }

  /* Products */
  .products { margin-top: 52px; display: grid; gap: 20px; }
  .product {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 24px;
    padding: 28px;
    background: var(--foam);
    border: 1px solid var(--line);
    border-radius: 10px;
    align-items: baseline;
  }
  .product .name {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--navy);
  }
  .product .flag {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
  }
  .product p { color: var(--slate); font-size: 0.97rem; }

  /* Founder */
  .founder-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .founder-grid p + p { margin-top: 16px; }
  .founder-grid p { color: var(--slate); }
  .founder-grid strong { color: var(--ink); font-weight: 600; }
  .cred-card {
    background: var(--navy);
    color: #DCE9F2;
    border-radius: 10px;
    padding: 30px 28px;
  }
  .cred-card h3 {
    font-family: "Fraunces", serif;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 18px;
  }
  .cred-card ul { list-style: none; }
  .cred-card li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(94, 222, 213, 0.15);
    font-size: 0.92rem;
  }
  .cred-card li:last-child { border-bottom: none; }
  .cred-card li::before { content: "— "; color: var(--teal-bright); }

  /* Contact */
  .contact-band {
    background: linear-gradient(175deg, var(--navy) 55%, var(--navy-deep));
    color: #E9F2F1;
    text-align: center;
    padding: 90px 0;
  }
  .contact-band h2 { color: #fff; margin: 0 auto; }
  .contact-band .lede { color: #B8CBD9; margin: 18px auto 0; }
  .contact-band .cta-row { justify-content: center; }
  .contact-line { margin-top: 30px; font-size: 0.95rem; color: #B8CBD9; }
  .contact-line a { color: var(--teal-bright); text-decoration: none; }
  .contact-line a:hover { text-decoration: underline; }

  footer {
    background: var(--navy-deep);
    color: #7F96AB;
    font-size: 0.85rem;
    padding: 28px 0;
  }
  footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  footer a { color: #B8CBD9; text-decoration: none; }
  footer a:hover { color: var(--teal-bright); }

  a:focus-visible, .btn:focus-visible {
    outline: 2px solid var(--teal-bright);
    outline-offset: 3px;
  }

  @media (max-width: 820px) {
    .pillars { grid-template-columns: 1fr; }
    .product { grid-template-columns: 1fr; gap: 8px; }
    .founder-grid { grid-template-columns: 1fr; }
    nav .links a { margin-left: 16px; font-size: 0.85rem; }
  }
