    :root {
      --green: #78bd19;
      --green-dark: #3e711e;
      --green-deep: #285313;
      --green-soft: #edf7e1;
      --ink: #233019;
      --muted: #617055;
      --white: #ffffff;
      --shadow: 0 18px 45px rgba(37, 83, 19, .16);
      --shadow-soft: 0 10px 28px rgba(37, 83, 19, .11);
      --radius-xl: 32px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }

    html { min-height: 100%; }

    body {
      min-height: 100%;
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 4%, rgba(120, 189, 25, .22), transparent 36%),
        radial-gradient(circle at 98% 12%, rgba(62, 113, 30, .22), transparent 34%),
        linear-gradient(180deg, #fbfff7 0%, #eef8e4 52%, #ffffff 100%);
      overflow-x: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      pointer-events: none;
      z-index: 0;
      opacity: .15;
    }

    body::before {
      inset: -70px auto auto -70px;
      width: 240px;
      height: 240px;
      border: 26px solid var(--green-dark);
      border-radius: 50%;
    }

    body::after {
      right: -160px;
      bottom: -160px;
      width: 390px;
      height: 390px;
      background: var(--green);
      border-radius: 50%;
      opacity: .13;
    }

    .page {
      position: relative;
      z-index: 1;
      width: min(100%, 520px);
      min-height: 100svh;
      margin: 0 auto;
      padding: 24px 18px calc(28px + var(--safe-bottom));
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .hero {
      position: relative;
      padding: 28px 22px 24px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.78)),
        repeating-linear-gradient(135deg, rgba(120, 189, 25, .08) 0 2px, transparent 2px 16px);
      box-shadow: var(--shadow);
      border: 1px solid rgba(120, 189, 25, .22);
      overflow: hidden;
      text-align: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: auto -48px -62px auto;
      width: 190px;
      height: 190px;
      background: linear-gradient(135deg, rgba(120,189,25,.22), rgba(62,113,30,.08));
      border-radius: 50%;
    }

    .logo-wrap {
      position: relative;
      width: 168px;
      margin: 0 auto 18px;
      padding: 13px 18px;
      border-radius: 999px;
      background: #ffffff;
      box-shadow: var(--shadow-soft);
    }

    .logo {
      display: block;
      width: 100%;
      height: auto;
    }

    h1 {
      position: relative;
      margin: 0;
      color: var(--green-deep);
      font-size: clamp(2rem, 9vw, 3.05rem);
      line-height: .96;
      letter-spacing: -.06em;
      font-weight: 900;
    }

    .amp {
      display: inline-flex;
      width: .82em;
      height: .82em;
      align-items: center;
      justify-content: center;
      margin: 0 .03em;
      color: #fff;
      background: var(--green);
      border-radius: 50%;
      font-size: .78em;
      letter-spacing: -.08em;
      vertical-align: .03em;
    }

    .tagline {
      position: relative;
      max-width: 34ch;
      margin: 14px auto 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.55;
      font-weight: 600;
    }

    .quick-note {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      margin-top: 18px;
      padding: 8px 13px;
      border-radius: 999px;
      background: var(--green-soft);
      color: var(--green-dark);
      font-size: .86rem;
      font-weight: 800;
    }

    .section {
      display: grid;
      gap: 12px;
    }

    .section-title {
      margin: 4px 4px -2px;
      color: var(--green-deep);
      font-size: .82rem;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .link-card {
      --accent: var(--green);
      position: relative;
      display: grid;
      grid-template-columns: 44px 1fr auto;
      align-items: center;
      gap: 13px;
      min-height: 72px;
      padding: 14px 16px 14px 14px;
      color: var(--ink);
      text-decoration: none;
      background: rgba(255,255,255,.93);
      border: 1px solid rgba(120, 189, 25, .22);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      -webkit-tap-highlight-color: transparent;
      overflow: hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }

    .link-card::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 5px;
      background: var(--accent);
      border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    }

    .link-card:active { transform: scale(.985); }

    @media (hover: hover) {
      .link-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 44px rgba(37, 83, 19, .18);
        border-color: rgba(120, 189, 25, .45);
      }
    }

    .primary {
      min-height: 78px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(255,255,255,.12), transparent 45%),
        linear-gradient(135deg, var(--green), #4e9122);
      border: 0;
    }

    .primary::before { background: rgba(255,255,255,.65); }
    .primary .label, .primary .desc, .primary .arrow { color: #fff; }
    .primary .icon { background: rgba(255,255,255,.18); color: #fff; }

    .icon {
      width: 44px;
      height: 44px;
      display: inline-grid;
      place-items: center;
      border-radius: 16px;
      background: var(--green-soft);
      color: var(--green-dark);
      font-size: 1.35rem;
      font-weight: 900;
    }

    .copy { min-width: 0; }

    .label {
      display: block;
      color: var(--ink);
      font-size: 1.02rem;
      line-height: 1.15;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    .desc {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: .86rem;
      line-height: 1.3;
      font-weight: 600;
    }

    .arrow {
      color: var(--green-dark);
      font-size: 1.25rem;
      font-weight: 900;
    }

    .social-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .social-grid .link-card {
      grid-template-columns: 38px 1fr;
      min-height: 64px;
      padding: 13px 13px 13px 12px;
    }

    .social-grid .icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      font-size: 1.05rem;
    }

    .social-grid .label { font-size: .95rem; }
    .social-grid .arrow { display: none; }

    .store-pair {
      display: grid;
      gap: 12px;
    }

    .footer {
      padding: 4px 4px 0;
      color: var(--muted);
      text-align: center;
      font-size: .82rem;
      line-height: 1.45;
      font-weight: 600;
    }

    .footer a {
      color: var(--green-dark);
      text-decoration: none;
      font-weight: 900;
    }

    @media (min-width: 560px) {
      .page { padding-top: 34px; }
      .store-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .store-pair .link-card { grid-template-columns: 44px 1fr; }
      .store-pair .arrow { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
      }
    }
  