/* roulang page: index */
:root {
      --green: #2C7A68;
      --green-deep: #1F5C4E;
      --green-soft: #3E9A84;
      --pine: #245F58;
      --goldgreen: #8BA86A;
      --ink: #102422;
      --moss: #16352E;
      --apricot: #F6F1E8;
      --mint: #E7F3EE;
      --coral: #D5725C;
      --coral-deep: #C45D47;
      --title: #1F2A28;
      --text: #3D4A46;
      --muted: #7A8883;
      --line: #E4E7E2;
      --white: #FFFFFF;
      --card: #FFFdf8;
      --shadow: 0 12px 28px rgba(31, 58, 52, 0.10);
      --shadow-hover: 0 16px 36px rgba(31, 58, 52, 0.16);
      --radius: 24px;
      --radius-sm: 14px;
      --radius-lg: 32px;
      --capsule: 999px;
      --container: 1220px;
      --space: 92px;
      --header-h: 118px;
      --ease: cubic-bezier(.22, .82, .24, 1);
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body { margin: 0; padding: 0; }
    body {
      font-family: "PingFang SC", "HarmonyOS Sans SC", "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background: var(--apricot);
      font-size: 17px;
      line-height: 1.75;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; height: auto; }
    a { color: var(--green); text-decoration: none; transition: color .2s var(--ease), transform .2s var(--ease); }
    a:hover { color: var(--green-deep); }
    button, input, select, textarea { font-family: inherit; font-size: inherit; }
    button { cursor: pointer; }
    h1, h2, h3, h4 { color: var(--title); margin: 0 0 .6em; line-height: 1.28; font-weight: 700; }
    h1 { font-size: 44px; letter-spacing: .02em; }
    h2 { font-size: 30px; }
    h3 { font-size: 20px; }
    p { margin: 0 0 1em; max-width: 42em; }
    ul { margin: 0; padding: 0; list-style: none; }
    :focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
    .skip {
      position: absolute; left: -999px; top: 8px;
      background: var(--green); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100;
    }
    .skip:focus { left: 8px; }
    .container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
    .section { padding: var(--space) 0; position: relative; }
    .section-mint { background: var(--mint); }
    .section-white { background: #fffaf4; }
    .kicker {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: .12em;
      text-transform: none; margin-bottom: 12px;
    }
    .kicker::before {
      content: ""; width: 28px; height: 3px; border-radius: 4px;
      background: linear-gradient(90deg, var(--green), var(--goldgreen));
    }
    .lead { font-size: 16px; color: var(--text); max-width: 46em; }
    .head-block { margin-bottom: 36px; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 48px; padding: 12px 24px; border-radius: var(--capsule);
      border: 2px solid transparent; font-weight: 650; letter-spacing: .04em;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
    }
    .btn-main {
      background: linear-gradient(135deg, var(--coral) 0%, #e0876f 100%);
      color: #fff; box-shadow: 0 8px 18px rgba(213, 114, 92, .28);
    }
    .btn-main:hover, .btn-main:active { transform: translateY(-2px); filter: saturate(1.08); color: #fff; }
    .btn-ghost {
      background: transparent; color: var(--green); border-color: var(--green);
    }
    .btn-ghost:hover { background: rgba(44,122,104,.08); transform: translateY(-2px); }
    .btn-light {
      background: #fff; color: var(--coral); border-color: #fff;
    }
    .btn-light:hover { transform: translateY(-2px); color: var(--coral-deep); }
    .btn-line-coral {
      background: transparent; color: #fff; border-color: #f0b4a6;
    }
    .btn-line-coral:hover { background: rgba(213,114,92,.18); color: #fff; }
    .badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 12px; border-radius: var(--capsule);
      background: rgba(255,255,255,.88); color: var(--green-deep);
      font-size: 12px; font-weight: 700; border: 1px solid rgba(44,122,104,.18);
    }
    .data-orb {
      width: 88px; height: 88px; border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      background: radial-gradient(circle at 30% 30%, #fff, var(--mint));
      box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px var(--green-soft);
      text-align: center;
    }
    .data-orb strong { font-size: 22px; color: var(--green-deep); line-height: 1; }
    .data-orb span { font-size: 11px; color: var(--muted); margin-top: 4px; }
    .tag {
      display: inline-block; padding: 4px 10px; border-radius: 999px;
      background: var(--mint); color: var(--green-deep); font-size: 12px; font-weight: 700;
    }

    /* Header */
    .site-header { position: relative; z-index: 50; }
    .topbar {
      background: linear-gradient(90deg, #eef6f2, #f7f2ea);
      color: var(--text); font-size: 13px; min-height: 44px;
      display: flex; align-items: center;
      border-bottom: 1px solid rgba(228,231,226,.8);
    }
    .topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: min(100% - 40px, var(--container)); margin: 0 auto; padding: 8px 0; }
    .topbar-left, .topbar-right { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
    .topbar a { color: var(--green-deep); min-height: 44px; display: inline-flex; align-items: center; }
    .topbar .btn { min-height: 40px; padding: 8px 16px; font-size: 13px; }
    .mainbar {
      position: sticky; top: 0; z-index: 60;
      background: rgba(255,252,247,.92); backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
    }
    .mainbar.is-stuck { border-bottom-color: var(--line); box-shadow: 0 8px 20px rgba(31,58,52,.08); }
    .mainbar-inner {
      width: min(100% - 40px, var(--container)); margin: 0 auto;
      min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
    }
    .logo {
      display: flex; align-items: center; gap: 10px; color: var(--title); min-height: 44px;
    }
    .logo-mark {
      width: 42px; height: 42px; border-radius: 14px;
      background: linear-gradient(135deg, var(--green), var(--goldgreen));
      display: grid; place-items: center; box-shadow: 0 8px 16px rgba(44,122,104,.22);
    }
    .logo-text { display: flex; flex-direction: column; line-height: 1.15; }
    .logo-text b { font-size: 18px; }
    .logo-text small { font-size: 11px; color: var(--muted); font-weight: 500; }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-links a {
      color: var(--title); padding: 10px 12px; min-height: 44px;
      display: inline-flex; align-items: center; font-size: 15px; font-weight: 600;
      position: relative; border-radius: 10px;
    }
    .nav-links a:hover { color: var(--green); background: rgba(44,122,104,.06); }
    .nav-links a.active::after {
      content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px;
      background: var(--green); border-radius: 2px;
    }
    .nav-cta { display: flex; }
    .menu-toggle {
      display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
      align-items: center; justify-content: center; flex-direction: column; gap: 5px;
    }
    .menu-toggle span { width: 18px; height: 2px; background: var(--title); border-radius: 2px; display: block; }
    .drawer {
      position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: #fffaf4;
      transform: translateX(100%); transition: transform .28s var(--ease);
      z-index: 80; padding: 24px; box-shadow: -12px 0 40px rgba(16,36,34,.16);
      display: flex; flex-direction: column; gap: 8px;
    }
    .drawer.open { transform: translateX(0); }
    .drawer a { min-height: 48px; display: flex; align-items: center; color: var(--title); font-weight: 650; border-bottom: 1px solid var(--line); }
    .drawer-mask { position: fixed; inset: 0; background: rgba(16,36,34,.4); opacity: 0; pointer-events: none; z-index: 70; transition: opacity .2s; }
    .drawer-mask.show { opacity: 1; pointer-events: auto; }

    /* Hero */
    .hero { padding: 0; position: relative; }
    .slider { position: relative; overflow: hidden; min-height: 620px; aspect-ratio: 21/9; }
    .slide {
      position: absolute; inset: 0; opacity: 0; visibility: hidden;
      transition: opacity .6s var(--ease), visibility .6s;
    }
    .slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
    .slide img { width: 100%; height: 100%; object-fit: cover; }
    .slide-mask {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(44,122,104,.78) 0%, rgba(36,95,88,.42) 38%, rgba(246,241,232,.72) 100%);
    }
    .slide-copy {
      position: absolute; inset: 0; z-index: 2; display: flex; align-items: center;
    }
    .slide-copy .container { width: min(100% - 48px, var(--container)); }
    .slide-copy h1 { color: #fff; max-width: 16em; text-shadow: 0 8px 24px rgba(16,36,34,.25); }
    .slide-copy .lead { color: #f4fff9; max-width: 34em; font-size: 17px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
    .hero-orb {
      position: absolute; right: 8%; bottom: 12%; z-index: 3;
      width: 118px; height: 118px; border-radius: 50%;
      background: radial-gradient(circle at 32% 30%, #fff, #e7f3ee);
      box-shadow: 0 0 0 6px rgba(255,255,255,.35), 0 12px 24px rgba(16,36,34,.18);
      display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    }
    .hero-orb b { font-size: 28px; color: var(--green-deep); line-height: 1; }
    .hero-orb span { font-size: 12px; color: var(--muted); margin-top: 4px; }
    .slider-nav, .slider-dots { z-index: 4; }
    .slider-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.86);
      color: var(--green-deep); font-size: 22px; display: grid; place-items: center;
    }
    .slider-nav:hover { background: #fff; transform: translateY(-50%) scale(1.04); }
    .slider-nav.prev { left: 18px; }
    .slider-nav.next { right: 18px; }
    .slider-dots { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; gap: 8px; }
    .slider-dots button {
      width: 12px; height: 12px; border-radius: 50%; border: 0; background: rgba(255,255,255,.5); min-height: 12px; padding: 0;
    }
    .slider-dots button.is-on { background: var(--coral); width: 28px; border-radius: 999px; }

    /* Intro */
    .intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
    .intro-photo { position: relative; }
    .intro-photo img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
    .intro-orbs { display: flex; gap: 16px; margin-top: 22px; }
    .intro-orbs .data-orb { width: 96px; height: 96px; }
    .arc {
      position: absolute; width: 120px; height: 120px; border: 2px dashed rgba(44,122,104,.35); border-radius: 50%;
      right: -18px; top: -18px; pointer-events: none;
    }

    /* Bento */
    .bento {
      display: grid; grid-template-columns: 1.35fr 1fr 1fr; grid-template-rows: auto auto; gap: 18px;
    }
    .bento-card {
      position: relative; overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow);
      min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }
    .bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .bento-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .bento-card .shade {
      position: relative; z-index: 1; padding: 22px;
      background: linear-gradient(180deg, transparent, rgba(16,36,34,.82));
      color: #fff;
    }
    .bento-card h3 { color: #fff; margin-bottom: 6px; }
    .bento-card p { color: #e8f3ef; font-size: 14px; margin: 0 0 10px; max-width: none; }
    .bento-wide { grid-column: 1; grid-row: 1 / span 2; min-height: 460px; }
    .text-link { color: #ffd7cc; font-weight: 700; font-size: 14px; }
    .text-link:hover { color: #fff; }
    .chip {
      position: absolute; top: 16px; right: 16px; z-index: 2;
      background: rgba(255,255,255,.92); color: var(--green-deep); font-size: 12px; font-weight: 700;
      padding: 6px 10px; border-radius: 999px;
    }

    /* Advantage */
    .adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .adv-card {
      background: #fff; border-radius: var(--radius); padding: 26px 24px 24px;
      box-shadow: var(--shadow); position: relative; overflow: hidden;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }
    .adv-card::before {
      content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px;
      background: linear-gradient(90deg, var(--green), var(--goldgreen), #d8c48a);
    }
    .adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .adv-card p { font-size: 15px; margin: 0; max-width: none; }
    .adv-no { font-size: 12px; font-weight: 700; color: var(--coral); letter-spacing: .08em; }

    /* Plans */
    .plan-grid { display: grid; grid-template-columns: 1.25fr 1fr .95fr; gap: 18px; }
    .plan-card {
      background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
      display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }
    .plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .plan-card img { width: 100%; height: 220px; object-fit: cover; }
    .plan-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .plan-body ul li {
      position: relative; padding-left: 16px; font-size: 15px; color: var(--text); margin-bottom: 6px;
    }
    .plan-body ul li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); position: absolute; left: 0; top: 9px; }
    .plan-meta { color: var(--muted); font-size: 13px; font-weight: 700; }

    /* Stats */
    .stat-band {
      background: linear-gradient(135deg, #e8f4ee, #f6f1e8 55%, #f3e7dc);
      border-radius: var(--radius-lg); padding: 36px 24px;
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
      box-shadow: var(--shadow);
    }
    .stat-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .stat-item p { margin: 0; font-size: 13px; color: var(--muted); max-width: 12em; }

    /* Process */
    .axis { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; position: relative; }
    .axis::before {
      content: ""; position: absolute; left: 6%; right: 6%; top: 28px; height: 2px;
      background: linear-gradient(90deg, var(--green), var(--goldgreen));
    }
    .step {
      background: #fff; border-radius: var(--radius); padding: 22px 16px 18px; text-align: center;
      box-shadow: var(--shadow); position: relative;
    }
    .step-no {
      width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 12px;
      display: grid; place-items: center; color: #fff; font-weight: 700;
      background: linear-gradient(135deg, var(--green), var(--goldgreen));
      position: relative; z-index: 1;
    }
    .step h3 { font-size: 16px; }
    .step p { font-size: 13px; margin: 0; max-width: none; }
    .step small { display: block; margin-top: 8px; color: var(--coral); font-weight: 700; }

    /* Dark */
    .dark-idea {
      background: linear-gradient(135deg, #16352E 0%, #102422 58%, #245F58 100%);
      color: #eef6f2; overflow: hidden;
    }
    .dark-idea h2, .dark-idea h3 { color: #fff; }
    .dark-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
    .compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .compare-card {
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
      border-radius: 20px; padding: 20px;
    }
    .compare-card li { padding: 8px 0 8px 18px; position: relative; font-size: 15px; }
    .compare-card li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #f0b4a6; position: absolute; left: 0; top: 14px; }
    .giant {
      font-size: 72px; font-weight: 800; color: rgba(255,255,255,.12); line-height: 1; margin-bottom: 8px;
    }

    /* Cases */
    .wall {
      display: grid; grid-template-columns: 1.3fr .9fr 1fr; grid-template-rows: 240px 200px;
      gap: 14px;
    }
    .wall a {
      position: relative; overflow: hidden; border-radius: 22px; display: block; min-height: 180px;
    }
    .wall img { width: 100%; height: 100%; object-fit: cover; }
    .wall .cap {
      position: absolute; left: 12px; right: 12px; bottom: 12px; color: #fff;
      background: rgba(16,36,34,.55); border-radius: 14px; padding: 10px 12px; font-size: 14px; font-weight: 700;
    }
    .wall a:nth-child(1) { grid-row: 1 / span 2; }
    .wall a:hover img { transform: scale(1.04); }
    .wall img { transition: transform .35s var(--ease); }

    /* Stories */
    .story-grid { display: grid; grid-template-columns: 1.35fr .8fr; gap: 20px; }
    .story-main {
      background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
      display: grid; grid-template-columns: 1.1fr .9fr;
    }
    .story-main img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
    .story-copy { padding: 28px; }
    .quote { font-size: 18px; color: var(--title); font-weight: 650; }
    .side-notes { display: flex; flex-direction: column; gap: 16px; }
    .note {
      background: #fff; border-radius: 20px; padding: 18px; box-shadow: var(--shadow);
    }

    /* Outcome */
    .outcome {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    .outcome .cell {
      background: #fff; border-radius: 24px; padding: 24px 16px; text-align: center; box-shadow: var(--shadow);
    }
    .outcome .cell:nth-child(even) { background: linear-gradient(180deg, #e7f3ee, #fff); }
    .outcome b { display: block; font-size: 32px; color: var(--green-deep); }
    .outcome span { color: var(--muted); font-size: 14px; }

    /* Reviews */
    .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .review {
      background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
      min-height: 240px; display: flex; flex-direction: column; gap: 12px;
    }
    .review .marks { font-size: 42px; color: var(--goldgreen); line-height: 1; }
    .stars { color: #d5725c; letter-spacing: 2px; font-size: 14px; }

    /* News */
    .news-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
    .news-card {
      background: #fff; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
      transition: transform .2s var(--ease);
    }
    .news-card:hover { transform: translateY(-4px); }
    .news-card img { width: 100%; height: 170px; object-fit: cover; }
    .news-card .pad { padding: 18px; }
    .news-card time { color: var(--muted); font-size: 13px; }

    /* Partners */
    .partner-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .partner {
      min-height: 88px; border-radius: 16px; background: #fff; border: 1px solid var(--line);
      display: grid; place-items: center; text-align: center; padding: 12px;
      color: var(--muted); font-weight: 700; filter: grayscale(1); transition: .2s var(--ease);
    }
    .partner:hover { filter: none; color: var(--green-deep); border-color: var(--green-soft); }

    /* FAQ */
    .faq-list { display: flex; flex-direction: column; gap: 10px; }
    .faq-item { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
    .faq-item button {
      width: 100%; text-align: left; background: transparent; border: 0; min-height: 56px;
      padding: 16px 52px 16px 20px; font-weight: 700; color: var(--title); position: relative;
    }
    .faq-item button::after {
      content: ""; position: absolute; right: 20px; top: 50%; width: 10px; height: 10px;
      border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
      transform: translateY(-70%) rotate(45deg); transition: transform .2s;
    }
    .faq-item.open button::after { transform: translateY(-20%) rotate(225deg); }
    .faq-item .panel { display: none; padding: 0 20px 18px; background: var(--mint); }
    .faq-item.open .panel { display: block; }
    .faq-item .panel p { margin: 0; padding-top: 8px; max-width: none; }

    /* Guarantee */
    .guard {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
      background: linear-gradient(90deg, #eef6f2, #f7f1e7); border-radius: 24px; padding: 18px;
    }
    .guard-item {
      display: flex; align-items: center; gap: 12px; min-height: 64px; padding: 8px;
    }
    .ico {
      width: 44px; height: 44px; border-radius: 12px; background: #fff; display: grid; place-items: center;
      color: var(--green); font-weight: 800; box-shadow: var(--shadow);
    }

    /* Banner + contact */
    .cta-banner {
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, var(--green) 0%, #3e9a84 48%, #d5725c 100%);
      color: #fff; padding: 28px 32px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
      margin-bottom: 28px;
    }
    .cta-banner h2 { color: #fff; margin: 0 0 6px; }
    .cta-banner p { margin: 0; color: #f5fff9; }
    .contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; }
    .form-card, .info-card {
      background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
    }
    label { display: block; font-size: 14px; font-weight: 700; color: var(--title); margin-bottom: 6px; }
    .field { margin-bottom: 14px; }
    input, select, textarea {
      width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; min-height: 48px;
      background: #fff; color: var(--title);
    }
    textarea { min-height: 96px; resize: vertical; }
    input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(44,122,104,.12); outline: none; }
    .is-error { border-color: var(--coral) !important; }
    .err { color: var(--coral); font-size: 13px; min-height: 18px; }
    .form-ok { display: none; background: var(--mint); color: var(--green-deep); padding: 12px 14px; border-radius: 12px; margin-bottom: 12px; font-weight: 700; }
    .map-box { border-radius: 18px; overflow: hidden; margin-top: 14px; position: relative; }
    .map-box img { width: 100%; height: 180px; object-fit: cover; filter: saturate(.85); }
    .map-label {
      position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.92);
      border-radius: 12px; padding: 8px 12px; font-size: 13px; font-weight: 700; color: var(--title);
    }

    /* Footer */
    .site-footer {
      background: #102422; color: #d5e4de; padding: 56px 0 24px;
    }
    .foot-grid { display: grid; grid-template-columns: 1.3fr .8fr 1fr .9fr; gap: 28px; margin-bottom: 28px; }
    .site-footer h3 { color: #fff; font-size: 16px; }
    .site-footer a { color: #d5e4de; display: inline-flex; min-height: 36px; align-items: center; }
    .site-footer a:hover { color: #fff; }
    .copy { border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; font-size: 13px; color: #9bb0a8; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

    @media (max-width: 1200px) {
      h1 { font-size: 38px; }
      .bento { grid-template-columns: 1.2fr 1fr 1fr; }
      .plan-grid, .news-grid { grid-template-columns: 1fr 1fr 1fr; }
      .stat-band { grid-template-columns: repeat(5, 1fr); }
    }
    @media (max-width: 992px) {
      :root { --space: 72px; }
      h1 { font-size: 34px; }
      h2 { font-size: 26px; }
      .nav-links, .nav-cta { display: none; }
      .menu-toggle { display: flex; }
      .slider { aspect-ratio: auto; min-height: 560px; }
      .intro-grid, .dark-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
      .story-main { grid-template-columns: 1fr; }
      .bento { grid-template-columns: 1fr 1fr; }
      .bento-wide { grid-column: 1 / -1; grid-row: auto; min-height: 320px; }
      .adv-grid, .review-grid { grid-template-columns: 1fr 1fr; }
      .plan-grid, .news-grid { grid-template-columns: 1fr; }
      .stat-band { grid-template-columns: repeat(3, 1fr); }
      .axis { grid-template-columns: 1fr; }
      .axis::before { display: none; }
      .wall { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 180px 180px; }
      .wall a:nth-child(1) { grid-row: auto; }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .hero-orb { right: 20px; bottom: 64px; }
      .outcome { grid-template-columns: 1fr 1fr; }
      .guard { grid-template-columns: 1fr 1fr; }
      .partner-wall { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      :root { --space: 56px; }
      .container, .topbar-inner, .mainbar-inner, .slide-copy .container { width: min(100% - 28px, var(--container)); }
      h1 { font-size: 30px; }
      h2 { font-size: 23px; }
      .topbar-inner { flex-direction: column; align-items: flex-start; }
      .slider { min-height: 520px; }
      .adv-grid, .review-grid, .bento { grid-template-columns: 1fr; }
      .cta-banner { flex-direction: column; align-items: flex-start; }
      .cta-banner .hero-actions { width: 100%; }
      .cta-banner .btn { width: 100%; }
      form .btn { width: 100%; }
      .intro-photo img, .story-main img { height: 280px; min-height: 280px; }
      .wall { grid-template-columns: 1fr; grid-template-rows: none; }
      .wall a { height: 220px; }
    }
    @media (max-width: 520px) {
      body { font-size: 16px; }
      h1 { font-size: 28px; }
      .stat-band, .outcome, .guard { grid-template-columns: 1fr 1fr; }
      .intro-orbs { flex-wrap: wrap; }
      .hero-orb { width: 96px; height: 96px; }
      .hero-orb b { font-size: 22px; }
      .slider-nav { width: 44px; height: 44px; }
      .compare { grid-template-columns: 1fr; }
      .foot-grid { grid-template-columns: 1fr; }
      .copy { flex-direction: column; }
    }
    @media (max-width: 375px) {
      h1 { font-size: 26px; }
      .btn { width: auto; }
      .topbar { font-size: 12px; }
    }
