    :root {
      --bg: #F6F4EF;
      --card: #FFFFFF;
      --primary: #0F3D3E;
      --text: #1C1C1E;
      --muted: #6B6B6E;
      --sage: #8ECDB8;
      --accent: #FF8A7A;
      --line: rgba(15, 61, 62, 0.09);
      --shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
      --radius: 22px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .page {
      overflow: hidden;
    }

    .container {
      width: min(calc(100% - 48px), var(--max));
      margin-inline: auto;
    }

    .header {
      position: absolute;
      inset: 0 0 auto 0;
      z-index: 10;
      padding: 30px 0;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .logo {
      width: 128px;
      height: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(24px, 4vw, 56px);
      color: var(--primary);
      font-size: 15px;
      font-weight: 500;
    }

    .nav-links a {
      opacity: 0.9;
      transition: opacity 160ms ease;
    }

    .nav-links a:hover {
      opacity: 1;
    }

    .hero {
      position: relative;
      min-height: 760px;
      padding: 152px 0 0;
      background-color: var(--bg);
      background-image: url('/assets/hero_bg.webp');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center bottom;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
      align-items: center;
      gap: clamp(48px, 7vw, 100px);
    }

    .eyebrow {
      margin: 0 0 20px;
      color: var(--primary);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    .hero h1 {
      margin-bottom: 22px;
      color: var(--primary);
      font-family: ui-serif, "New York", Georgia, Cambria, "Times New Roman", serif;
      font-size: clamp(64px, 8vw, 118px);
      line-height: 0.95;
      font-weight: 500;
      letter-spacing: -0.045em;
    }

    .accent-dot {
      color: var(--accent);
    }

    .hero-copy {
      max-width: 610px;
      color: var(--muted);
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 34px;
      margin-top: 32px;
      flex-wrap: wrap;
    }

    .appstore-badge {
      width: 192px;
      height: auto;
      filter: drop-shadow(0 8px 18px rgba(255, 138, 122, 0.18));
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--primary);
      font-size: 17px;
      font-weight: 600;
      padding-bottom: 7px;
      border-bottom: 1px solid rgba(15, 61, 62, 0.35);
    }

    .phone-wrap {
      justify-self: end;
      align-self: end;
      padding-top: 18px;
    }

    .phone {
      width: min(430px, 34vw);
      min-width: 330px;
      height: auto;
      filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.10));
    }

    .feature-strip {
      position: relative;
      z-index: 5;
      margin-top: -52px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .card {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid rgba(15, 61, 62, 0.035);
    }

    .mini-card {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 18px;
      align-items: center;
      min-height: 136px;
      padding: 26px;
    }

    .icon-bubble {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(142, 205, 184, 0.42);
    }

    .icon-bubble img {
      width: 30px;
      height: 30px;
      object-fit: contain;
    }

    .mini-card h3 {
      margin-bottom: 7px;
      color: var(--primary);
      font-size: 17px;
      line-height: 1.2;
    }

    .mini-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    section {
      padding: 112px 0;
    }

    .section-grid {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: clamp(56px, 8vw, 120px);
      align-items: start;
    }

    .section-title {
      color: var(--primary);
      font-size: clamp(38px, 5vw, 60px);
      line-height: 0.98;
      letter-spacing: -0.045em;
      font-weight: 750;
      margin-bottom: 24px;
    }

    .section-copy {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
      max-width: 600px;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .info-card {
      padding: 30px;
      min-height: 170px;
    }

    .info-card h3 {
      margin-bottom: 10px;
      color: var(--primary);
      font-size: 17px;
    }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.55;
    }

    .divider {
      height: 1px;
      background: var(--line);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: clamp(56px, 8vw, 120px);
      align-items: center;
    }

    .privacy-card {
      padding: 38px 42px;
      background: var(--primary);
      color: white;
      border-radius: 18px;
      box-shadow: none;
    }

    .privacy-card h3 {
      margin-bottom: 16px;
      font-size: 20px;
    }

    .privacy-card ul {
      margin: 0;
      padding-left: 20px;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.8;
      font-size: 15px;
    }

    .footer {
      padding: 30px 0 38px;
      border-top: 1px solid var(--line);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 32px;
      color: var(--primary);
      font-size: 13px;
    }

    .footer p {
      margin: 6px 0 0;
      color: var(--muted);
    }

    .footer-links {
      display: flex;
      gap: 34px;
      font-weight: 600;
    }

    .subpage .header {
      position: static;
      padding: 30px 0 24px;
      border-bottom: 1px solid var(--line);
    }

    .content-page {
      background:
        radial-gradient(circle at 82% 0%, rgba(142, 205, 184, 0.24), transparent 34%),
        var(--bg);
    }

    .content-hero {
      padding: 90px 0 76px;
    }

    .content-layout {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: clamp(44px, 7vw, 96px);
      align-items: start;
    }

    .content-hero h1 {
      margin-bottom: 0;
      color: var(--primary);
      font-family: ui-serif, "New York", Georgia, Cambria, "Times New Roman", serif;
      font-size: clamp(48px, 6vw, 82px);
      line-height: 1;
      font-weight: 500;
    }

    .content-card {
      padding: 34px 38px;
    }

    .content-card p,
    .content-narrow p,
    .content-narrow li {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
    }

    .content-card p:last-child,
    .content-narrow p:last-child {
      margin-bottom: 0;
    }

    .content-section {
      padding: 0 0 104px;
    }

    .content-narrow {
      max-width: 820px;
    }

    .content-narrow h2 {
      margin: 54px 0 14px;
      color: var(--primary);
      font-size: 25px;
      line-height: 1.2;
    }

    .content-narrow h2:first-child {
      margin-top: 0;
    }

    .content-narrow ul {
      margin: 0 0 24px;
      padding-left: 22px;
    }

    .content-narrow li + li {
      margin-top: 8px;
    }

    .content-narrow a {
      color: var(--primary);
      font-weight: 700;
      border-bottom: 1px solid rgba(15, 61, 62, 0.35);
    }

    @media (max-width: 980px) {
      .hero {
        min-height: auto;
        padding-top: 138px;
      }

      .hero-grid,
      .section-grid,
      .trust-grid,
      .content-layout {
        grid-template-columns: 1fr;
      }

      .phone-wrap {
        justify-self: center;
      }

      .phone {
        width: min(390px, 78vw);
        min-width: 0;
      }

      .feature-strip {
        margin-top: 48px;
      }

      .feature-grid,
      .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .container {
        width: min(calc(100% - 32px), var(--max));
      }

      .header {
        padding-top: 22px;
      }

      .nav {
        align-items: flex-start;
      }

      .logo {
        width: 108px;
      }

      .nav-links {
        gap: 16px;
        font-size: 13px;
        flex-wrap: wrap;
        justify-content: flex-end;
      }

      .hero {
        padding-top: 128px;
      }

      .hero h1 {
        font-size: clamp(54px, 17vw, 74px);
      }

      .hero-copy {
        font-size: 18px;
      }

      .feature-grid,
      .info-grid {
        grid-template-columns: 1fr;
      }

      .mini-card {
        min-height: auto;
      }

      section {
        padding: 82px 0;
      }

      .footer-inner {
        flex-direction: column;
      }

      .footer-links {
        flex-wrap: wrap;
      }

      .content-hero {
        padding: 66px 0 58px;
      }

      .content-card {
        padding: 28px;
      }

      .content-section {
        padding-bottom: 82px;
      }
    }
