
    /* ===== TOKENS ===== */
    :root {
      --bg:         #FBFCFB;
      --surface:    #FFFFFF;
      --surface-p:  #F0F7F4;
      --on:         #16150F;
      --on-2:       #6C7069;
      --on-3:       #9CA09A;
      --brand:      #155A4F;
      --on-brand:   #F0F7F4;
      --accent:     #1E7E70;
      --walnut:     #1E7E70;
      --walnut-2:   #155A4F;
      --gold-hi:    #1E7E70;
      --border:     rgba(22,21,15,.10);
      --font-sans:  "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      --font-display: "Newsreader", Georgia, "New York", serif;
      --font-serif: "Newsreader", Georgia, "New York", serif;
      --shadow-r:   0 6px 18px rgba(15,17,28,.06);
      --shadow-h:   0 12px 28px rgba(15,17,28,.10);
      --r-card:     12px;
      --r-btn:      50px;
      --ease-out-soft:    cubic-bezier(.22,.61,.36,1);
      --ease-out-back:    cubic-bezier(.34,1.32,.64,1);
      --ease-in-out-soft: cubic-bezier(.65,.05,.36,1);
      --dur-fast:   180ms;
      --dur-base:   420ms;
      --dur-slow:   760ms;
      --dur-arc:    1100ms;
      --arc-stroke:      rgba(30,126,112,.55);
      --arc-stroke-soft: rgba(30,126,112,.16);
      --dot-ripple:      rgba(30,126,112,.30);
    }
    @media (prefers-color-scheme: dark) {
      :root {
        --bg:        #0E1311;
        --surface:   #161B18;
        --surface-p: #13241F;
        --on:        #F1F4F1;
        --on-2:      #9BA39C;
        --on-3:      #6B736C;
        --brand:     #1E7E70;
        --on-brand:  #F0F7F4;
        --accent:    #2FA28D;
        --walnut:    #5FC2AE;
        --walnut-2:  #2FA28D;
        --gold-hi:   #5FC2AE;
        --border:    rgba(241,244,241,.10);
        --shadow-r:  0 6px 18px rgba(0,0,0,.18);
        --shadow-h:  0 12px 28px rgba(0,0,0,.28);
        --arc-stroke:      rgba(95,194,174,.55);
        --arc-stroke-soft: rgba(95,194,174,.16);
        --dot-ripple:      rgba(95,194,174,.32);
      }
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      background: var(--bg); color: var(--on);
      font-size: 1rem; line-height: 1.6; -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ===== NAV ===== */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: 58px; display: flex; align-items: center; justify-content: space-between;
      padding: 0 3rem;
      background: rgba(251,252,251,.9);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    @media (prefers-color-scheme: dark) {
      nav { background: rgba(14,19,17,.9); }
    }
    .nav-wordmark {
      display: inline-flex; align-items: center; gap: .6rem;
      font-family: var(--font-serif);
      font-weight: 500; font-style: normal;
      font-size: 1.4rem; letter-spacing: .005em; line-height: 1;
    }
    .brand-mark { width: auto; height: 29px; flex-shrink: 0; }
    .brand-text { display: inline-flex; align-items: baseline; gap: 0; white-space: nowrap; }
    .nav-wordmark .t2 { color: var(--walnut); font-style: italic; }
    .nav-links { display: flex; gap: 2rem; align-items: center; }
    .nav-links a { font-size: .8125rem; font-weight: 500; color: var(--on-2); transition: color .15s; }
    .nav-links a:hover { color: var(--on); }
    .nav-cta {
      display: inline-flex; align-items: center;
      padding: .42rem 1.1rem;
      border: 1.5px solid var(--on); border-radius: 50px;
      font-size: .8125rem; font-weight: 600;
      transition: background .18s, color .18s;
    }
    .nav-cta:hover { background: var(--on); color: var(--bg); }

    /* ===== DISPLAY HEADLINES ===== */
    .display-xl {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 500;
      font-size: clamp(3rem, 6.4vw, 5.75rem);
      letter-spacing: -.015em;
      line-height: 1.02;
      color: var(--on);
      margin-bottom: 1.5rem;
    }
    .display-lg {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 500;
      font-size: clamp(1.9rem, 3.8vw, 3.4rem);
      letter-spacing: -.01em;
      line-height: 1.06;
      color: var(--on);
      margin-bottom: 1rem;
    }
    .display-md {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 500;
      font-size: clamp(1.4rem, 2.5vw, 2.3rem);
      letter-spacing: -.01em;
      line-height: 1.1;
      color: var(--on);
      margin-bottom: .75rem;
    }
    .italic-sub {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(.875rem, 1.4vw, 1.05rem);
      color: var(--on-2);
      line-height: 1.55;
      letter-spacing: .01em;
      margin-bottom: 2rem;
    }
    .body-text {
      font-size: .9375rem;
      color: var(--on-2);
      line-height: 1.8;
      max-width: 40ch;
      margin-bottom: 2rem;
    }

    /* ===== BUTTONS ===== */
    .btn-dark {
      display: inline-flex; align-items: center; gap: .65rem;
      background: var(--on); color: var(--bg);
      padding: .72rem 1.35rem; border-radius: 14px;
      font-size: .875rem; font-weight: 600;
      transition: transform .15s, box-shadow .2s, opacity .15s;
      align-self: flex-start;
    }
    .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(42,37,32,.2); opacity: 1; }
    .btn-dark svg { width: 22px; height: 22px; fill: var(--bg); flex-shrink: 0; }
    .btn-dark-text { display: flex; flex-direction: column; line-height: 1.08; }
    .btn-dark-sub  { font-size: .68rem; font-weight: 400; opacity: .78; letter-spacing: .02em; }
    .btn-dark-main { font-family: var(--font-sans); font-size: 1.02rem; font-weight: 600; letter-spacing: -.01em; }
    .btn-outline {
      display: inline-flex; align-items: center;
      padding: .65rem 1.5rem; border-radius: 50px;
      border: 1.5px solid var(--on);
      font-size: .875rem; font-weight: 600; color: var(--on);
      transition: background .18s, color .18s;
    }
    .btn-outline:hover { background: var(--on); color: var(--bg); }

    /* ===== PHONE FRAME ===== */
    .phone {
      border-radius: 44px;
      border: 7px solid var(--on);
      overflow: hidden;
      background: #F8F7F6;
      line-height: 0;
      box-shadow: 0 22px 52px rgba(21,23,28,.18), 0 0 0 1px rgba(255,255,255,.07);
      flex-shrink: 0;
    }
    .phone picture { display: block; width: 100%; }
    .phone img { width: 100%; height: auto; display: block; }

    /* ===== HERO ===== */
    .s-hero {
      display: grid;
      grid-template-columns: 1fr 2fr;
      min-height: auto;
    }
    .s-hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: calc(58px + 5rem) 3rem 5rem 5rem;
    }
    .s-hero-left .display-xl { font-size: clamp(2.5rem, 3.4vw, 4.25rem); }
    .hero-map {
      width: 100%; min-width: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .hero-map .map-canvas { width: 100%; margin: 0; }
    .s-hero-right .map-now { margin-top: 1.25rem; }
    .hero-store-sub {
      display: flex; align-items: center; gap: .85rem;
      margin-top: 1.5rem;
      font-size: .78rem; color: var(--on-3);
    }
    .store-icons { display: flex; gap: .4rem; }
    .store-icon {
      width: 28px; height: 28px;
      background: var(--on); border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
    }
    .store-icon svg { width: 15px; height: 15px; fill: var(--bg); }
    .s-hero-right {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      padding: 3rem;
      background: var(--surface-p);
      overflow: hidden;
    }
    .s-hero-right::before { content: none; }
    .phone-hero-wrap { position: relative; z-index: 1; }
    .hero-rings {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }
    .hero-rings span {
      position: absolute;
      top: 50%; left: 50%;
      border: 1.5px solid rgba(30,126,112,.32);
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(.62);
      opacity: 0;
      animation: ttRing 3.4s ease-out infinite;
    }
    .hero-rings span:nth-child(1) { width: 240px; height: 240px; }
    .hero-rings span:nth-child(2) { width: 340px; height: 340px; animation-delay: 1.1s; }
    .hero-rings span:nth-child(3) { width: 440px; height: 440px; animation-delay: 2.2s; }
    .phone-hero {
      width: clamp(190px, 28vw, 270px);
      transform: perspective(1000px) rotateY(-7deg) rotate(7deg);
      box-shadow: 0 32px 80px rgba(21,23,28,.22);
    }
    @keyframes ttRing {
      0% { transform: translate(-50%, -50%) scale(.6); opacity: 0; }
      25% { opacity: .85; }
      100% { transform: translate(-50%, -50%) scale(1.25); opacity: 0; }
    }

    /* ===== STATS + FEATURES ===== */
    .s-stats-features {
      border-top: 1px solid var(--border);
    }
    .stats-bar {
      display: flex;
      border-bottom: 1px solid var(--border);
    }
    .stat-item {
      flex: 1;
      display: flex; align-items: center; gap: 1.25rem;
      padding: 2rem 3.5rem;
    }
    .stat-item + .stat-item { border-left: 1px solid var(--border); }
    .stat-num {
      font-family: var(--font-serif);
      font-weight: 600;
      font-size: clamp(2.25rem, 4vw, 3.75rem);
      letter-spacing: -.02em; line-height: 1;
      color: var(--on);
    }
    .stat-num .stat-plus { color: var(--walnut); }
    .stat-num--range { font-size: clamp(1.75rem, 2.8vw, 2.75rem); white-space: nowrap; }
    .stat-label {
      font-size: .63rem; font-weight: 700;
      letter-spacing: 2.2px; text-transform: uppercase;
      color: var(--on-3); line-height: 1.55;
    }
    .features-layout {
      display: grid;
      grid-template-columns: 42% 58%;
      min-height: 62vh;
      position: relative;
    }
    .features-layout::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url('assets/img/map.jpg') center/cover no-repeat;
      opacity: .09;
      pointer-events: none;
      z-index: 0;
    }
    .features-text {
      display: flex; flex-direction: column; justify-content: center;
      padding: 5rem 4rem 5rem 5rem;
      border-right: 1px solid var(--border);
      position: relative; z-index: 1;
    }
    .phones-cluster {
      display: flex; align-items: center; justify-content: center;
      padding: 4rem 3rem;
      overflow: hidden;
      position: relative; z-index: 1;
    }
    .phones-cluster .phone { width: clamp(140px, 15vw, 190px); }
    .pc-1 { transform: rotate(-9deg) translateY(20px); z-index: 1; margin-right: -32px; }
    .pc-2 { transform: rotate(-3deg) translateY(0px); z-index: 2; margin-right: -32px; }
    .pc-3 { transform: rotate(3deg) translateY(-18px); z-index: 3; }

    /* ===== COMMUNITY ===== */
    .s-community {
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: 32% 36% 32%;
      min-height: 80vh;
    }
    .community-left {
      padding: 5rem 3rem 4rem 5rem;
      border-right: 1px solid var(--border);
      display: flex; flex-direction: column;
    }
    .community-phone-col {
      position: relative;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 0 2rem;
      background: var(--surface-p);
      overflow: hidden;
    }
    .community-phone-col::before {
      content: '';
      position: absolute;
      width: 85%; padding-bottom: 85%;
      border-radius: 50%;
      background: rgba(30,126,112,.12);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    .phone-community {
      width: clamp(210px, 26vw, 290px);
      position: relative; z-index: 1;
    }
    .community-right {
      padding: 5rem 5rem 4rem 3rem;
      border-left: 1px solid var(--border);
      display: flex; flex-direction: column; justify-content: center;
    }
    .cities-strip {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
      gap: .5rem;
      margin-top: 2.25rem;
    }
    .city-chip {
      position: relative;
      width: 100%; aspect-ratio: 3 / 2;
      border-radius: 8px; overflow: hidden;
    }
    .city-chip img { width: 100%; height: 100%; object-fit: cover; }
    .city-chip-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 3px 7px;
      background: linear-gradient(transparent, rgba(0,0,0,.65));
      color: #fff; font-size: .62rem; font-weight: 600;
    }
    .city-chip-more {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 1px;
      background: var(--surface-p);
      border: 1px solid var(--border);
      color: var(--brand);
      transition: background .15s, transform .15s;
    }
    .city-chip-more:hover { background: #e4f0eb; transform: translateY(-1px); }
    @media (prefers-color-scheme: dark) {
      .city-chip-more:hover { background: #18302a; }
    }
    .city-chip-more .more-num { font-size: 1.1rem; font-weight: 700; line-height: 1; }
    .city-chip-more .more-txt { font-size: .56rem; font-weight: 600; color: var(--on-2); letter-spacing: .02em; }
    .community-count {
      display: inline-flex; align-items: center; gap: .5rem;
      margin-top: 1.75rem;
      background: var(--on); color: var(--bg);
      padding: .42rem 1rem; border-radius: 50px;
      font-size: .75rem; font-weight: 700;
      align-self: flex-start;
    }
    .community-count svg { width: 13px; height: 13px; stroke: var(--bg); }

    /* ===== WORLD MAP ===== */
    .s-map {
      padding: 6rem 3rem 6.5rem;
      max-width: 1200px; margin: 0 auto;
      text-align: center;
    }
    .s-map .display-lg { margin: 0 auto; }
    .s-map .italic-sub { margin: 1rem auto 0; max-width: 46ch; }
    .map-canvas {
      position: relative;
      width: 100%; aspect-ratio: 2000 / 711;
      margin: 3rem auto 0;
      container-type: inline-size;
    }
    .map-land {
      position: absolute; inset: 0;
      background: url(assets/img/world-map.svg) center / contain no-repeat;
    }
    .map-dot {
      position: absolute; transform: translate(-50%, -50%);
      width: clamp(6px, 1.5cqw, 13px); height: clamp(6px, 1.5cqw, 13px);
      padding: 0; border: 0; background: transparent; cursor: pointer; z-index: 1;
    }
    .map-dot::before {
      content: ""; position: absolute; inset: 22%;
      border-radius: 50%; background: var(--accent);
      box-shadow: 0 0 0 2px #fff, 0 1px 3px rgba(0,0,0,.45);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    /* always-on region markers */
    .rmk { position: absolute; transform: translate(-50%, -50%); z-index: 2; border: 0; background: none; padding: 0; cursor: pointer; }
    .rmk-dot { display: block; width: 11px; height: 11px; border-radius: 50%; background: var(--accent); border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.5); }
    .rmk-img { display: block; width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 2px 9px rgba(0,0,0,.5); }
    .rmk-name { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); margin-top: 3px; white-space: nowrap; font-size: .62rem; font-weight: 700; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.9); }
    .rmk-pop { position: absolute; bottom: calc(100% + 9px); left: 50%; transform: translateX(-50%) translateY(4px); width: max-content; max-width: 210px; background: var(--surface); color: var(--on-2); border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-h); padding: .5rem .7rem; font-size: .72rem; line-height: 1.45; text-align: left; opacity: 0; pointer-events: none; transition: opacity .15s ease, transform .15s ease; z-index: 6; }
    .rmk-pop::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--surface); }
    .rmk--pb .rmk-pop { bottom: auto; top: calc(100% + 9px); }
    .rmk--pb .rmk-pop::after { top: auto; bottom: 100%; border-top-color: transparent; border-bottom-color: var(--surface); }
    .rmk:hover .rmk-pop, .rmk:focus-visible .rmk-pop { opacity: 1; transform: translateX(-50%); }
    .rmk { border: 0; background: none; padding: 0; cursor: pointer; }
    .rmk:hover .rmk-img, .rmk:focus-visible .rmk-img { box-shadow: 0 0 0 2px var(--accent), 0 2px 10px rgba(0,0,0,.55); outline: none; }
    .map-dot:hover, .map-dot:focus-visible { z-index: 3; outline: none; }
    .map-dot:hover::before, .map-dot:focus-visible::before {
      transform: scale(1.5);
      box-shadow: 0 0 0 5px rgba(30,126,112,.22);
    }
    .map-pop {
      position: absolute; bottom: 175%; left: 50%;
      transform: translateX(-50%) translateY(6px);
      width: 120px;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 10px; overflow: hidden;
      box-shadow: var(--shadow-h);
      opacity: 0; pointer-events: none; transition: opacity .14s ease, transform .14s ease;
    }
    .map-pop img { width: 100%; height: 76px; object-fit: cover; display: block; }
    .map-pop--name { width: auto; white-space: nowrap; }
    .map-pop-name {
      display: block; text-align: center;
      padding: .35rem .4rem;
      font-size: .72rem; font-weight: 700; color: var(--on);
    }
    .map-pop::after {
      content: ""; position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%);
      border: 6px solid transparent; border-top-color: var(--surface);
    }
    .map-dot:hover .map-pop, .map-dot:focus-visible .map-pop {
      opacity: 1; transform: translateX(-50%) translateY(0);
    }
    .map-legend {
      display: inline-flex; align-items: center; gap: .5rem;
      margin-top: 2.5rem;
      font-size: .8rem; font-weight: 500; color: var(--on-2);
    }
    .map-legend i {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--accent); box-shadow: 0 0 0 3px rgba(30,126,112,.18);
      display: inline-block;
    }
    @media (max-width: 760px) {
      .s-map { padding: 4rem 1.25rem 4.5rem; }
    }

    /* ===== WHY CHOOSE US ===== */
    .s-why {
      border-top: 1px solid var(--border);
    }
    .why-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: end;
      padding: 5rem 5rem 3rem;
    }
    .why-header .italic-sub { text-align: right; margin-bottom: 0; }
    .why-cards {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      padding: 0 5rem 5rem;
    }
    .why-card {
      background: var(--surface);
      border-radius: var(--r-card);
      padding: 2rem 1.75rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-r);
    }
    .why-icon {
      width: 46px; height: 46px;
      background: var(--surface-p);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .why-icon svg { width: 24px; height: 24px; stroke: var(--walnut); }
    .why-card h3 {
      font-family: var(--font-serif);
      font-style: italic; font-weight: 500; font-size: 1.15rem;
      letter-spacing: -.01em;
      color: var(--on); margin-bottom: .55rem;
    }
    .why-card p { font-size: .875rem; color: var(--on-2); line-height: 1.8; }

    /* ===== FOOTER ===== */
    footer {
      border-top: 1px solid var(--border);
      padding: 3.5rem 5rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1.5rem;
    }
    .foot-left { display: flex; flex-direction: column; gap: .35rem; }
    .foot-wordmark {
      display: inline-flex; align-items: center; gap: .55rem;
      font-family: var(--font-serif);
      font-weight: 500; font-style: normal;
      font-size: 1.3rem; letter-spacing: .005em;
    }
    .foot-wordmark .t2 { color: var(--walnut); font-style: italic; }
    .foot-made { font-size: .8rem; color: var(--on-3); }
    .foot-right { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; }
    .foot-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: flex-end; }
    .foot-links a { font-size: .8rem; color: var(--on-3); transition: color .15s; }
    .foot-links a:hover { color: var(--on); }
    .foot-copy { font-size: .72rem; color: var(--on-3); }

    /* ===== FEATURED REGIONS ===== */
    .s-region { border-top: 1px solid var(--border); display: grid; grid-template-columns: 40% 60%; align-items: center; }
    .s-region--rev .region-text { order: 2; padding: 5rem 5rem 5rem 3rem; }
    .s-region--rev .region-map { order: 1; }
    .s-region--rev { grid-template-columns: 60% 40%; }
    .region-text { padding: 5rem 3rem 5rem 5rem; }
    .region-kicker { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: .9rem; }
    .region-text h2 { margin-bottom: .6rem; }
    .region-text .italic-sub { margin-bottom: 1.2rem; }
    .region-body { color: var(--on-2); font-size: .98rem; max-width: 42ch; }
    .region-map { background: var(--surface-p); padding: 3.5rem 4rem; display: flex; align-items: center; justify-content: center; }
    .region-mapwrap { position: relative; width: 100%; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-h); container-type: inline-size; }
    .region-mapimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.72) contrast(.95) brightness(1.03); }
    .region-mapwrap::after { content: ""; position: absolute; inset: 0; background: var(--brand); mix-blend-mode: color; opacity: .45; pointer-events: none; z-index: 1; }
    .region-mapwrap .map-dot { width: clamp(9px, 1.7cqw, 15px); height: clamp(9px, 1.7cqw, 15px); z-index: 2; }
    .region-stops { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .3rem .55rem; }
    .region-stops span { font-size: .82rem; color: var(--on-2); }
    .region-stops span:not(:last-child)::after { content: "·"; margin-left: .55rem; color: var(--on-3); }

    /* ===== JAPAN FOCUS ===== */
    .s-japan { border-top: 1px solid var(--border); display: grid; grid-template-columns: 42% 58%; align-items: center; }
    .japan-text { padding: 5rem 3rem 5rem 5rem; }
    .japan-chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); gap: .5rem; margin-top: 1.75rem; max-width: 470px; }
    .japan-map { background: var(--surface-p); padding: 3rem 3.5rem; display: flex; align-items: center; justify-content: center; }

    /* ===== DESTINATION INDEX ===== */
    .s-index { border-top: 1px solid var(--border); padding: 5rem 3rem; max-width: 1200px; margin: 0 auto; }
    .s-index .display-md { text-align: center; margin: 0 auto; }
    .s-index .italic-sub { text-align: center; margin: 1rem auto 2.75rem; }
    .idx-grid { columns: 4 190px; column-gap: 2rem; }
    .idx-block { break-inside: avoid; margin: 0 0 1.6rem; display: inline-block; width: 100%; }
    .idx-country { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .55rem; }
    .idx-block ul { list-style: none; }
    .idx-block li { font-size: .85rem; color: var(--on-2); line-height: 1.7; }

    /* ===== FAQ ===== */
    .s-faq { border-top: 1px solid var(--border); padding: 5rem 3rem; max-width: 840px; margin: 0 auto; }
    .s-faq .display-md { text-align: center; margin: 0 auto 1rem; }
    .s-faq .italic-sub { text-align: center; margin: 0 auto 2.5rem; max-width: 52ch; }
    .faq-item { border-top: 1px solid var(--border); padding: 1.5rem 0; }
    .faq-q { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1.2rem; color: var(--on); margin-bottom: .5rem; }
    .faq-a { color: var(--on-2); font-size: .95rem; line-height: 1.65; max-width: 66ch; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      .s-hero { grid-template-columns: 1fr 1.7fr; }
      .s-hero-left { padding: calc(58px + 4rem) 2.5rem 4rem; }
      .stat-item { padding: 1.75rem 2.5rem; }
      .features-text { padding: 4rem 3rem; }
      .phones-cluster { padding: 3.5rem 2rem 0; }
      .phones-cluster .phone { width: clamp(130px, 14vw, 170px); border-radius: 32px; border-width: 6px; }
      .why-header { padding: 4rem 3rem 2.5rem; }
      .why-cards { padding: 0 3rem 4rem; }
      footer { padding: 3rem; }
    }
    @media (max-width: 860px) {
      .s-hero { grid-template-columns: 1fr; min-height: auto; }
      .s-hero-left { order: 1; padding: calc(58px + 2.5rem) 2.5rem 2.5rem; }
      .s-hero-right { order: 2; padding: 2.5rem 1.5rem 3rem; }
      .features-layout { grid-template-columns: 1fr; min-height: auto; }
      .features-text { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 2.5rem; }
      .phones-cluster { padding: 2.75rem 1.5rem 3rem; justify-content: center; gap: 0; }
      .phones-cluster .phone { width: clamp(108px, 27vw, 150px); border-radius: 26px; border-width: 5px; }
      .pc-1 { transform: rotate(-6deg); margin-right: -26px; }
      .pc-2 { transform: rotate(0deg); margin-right: -26px; }
      .pc-3 { transform: rotate(6deg); }
      .s-community { grid-template-columns: 1fr; }
      .community-left { border-right: none; border-bottom: 1px solid var(--border); padding: 3.5rem 2.5rem 2.5rem; }
      .community-phone-col { min-height: 65vw; justify-content: flex-end; padding-bottom: 0; }
      .community-right { border-left: none; border-top: 1px solid var(--border); padding: 3rem 2.5rem; }
      .s-region, .s-region--rev { grid-template-columns: 1fr; }
      .region-text, .s-region--rev .region-text { order: 0; padding: 3.5rem 2.5rem 1rem; }
      .s-region--rev .region-map { order: 1; }
      .region-map { padding: 1.5rem 2rem 3rem; }
      .s-japan { grid-template-columns: 1fr; }
      .japan-text { padding: 3.5rem 2.5rem 1.5rem; }
      .japan-map { padding: 1.5rem 1.5rem 3rem; }
      .why-header { grid-template-columns: 1fr; gap: .75rem; padding: 3rem 2.5rem 2rem; }
      .why-header .italic-sub { text-align: left; }
      .why-cards { grid-template-columns: 1fr; padding: 0 2.5rem 3.5rem; }
      footer { padding: 2.5rem; }
    }
    @media (max-width: 640px) {
      nav { padding: 0 1.5rem; }
      .nav-links { display: none; }
      .s-hero-left { padding: calc(58px + 2rem) 1.75rem 2.5rem; }
      .s-index { padding: 3.5rem 1.5rem; }
      .idx-grid { columns: 2 130px; }
      .stats-bar { flex-direction: column; }
      .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border); }
      .stat-item { padding: 1.5rem 1.75rem; }
      .phones-cluster { padding: 2.5rem 1rem 2.75rem; }
      .phones-cluster .phone { width: clamp(96px, 29vw, 132px); border-radius: 22px; border-width: 4px; }
      .pc-1 { margin-right: -22px; }
      .pc-2 { margin-right: -22px; }
      .hero-rings span:nth-child(1) { width: 190px; height: 190px; }
      .hero-rings span:nth-child(2) { width: 270px; height: 270px; }
      .hero-rings span:nth-child(3) { width: 350px; height: 350px; }
      footer { flex-direction: column; align-items: flex-start; }
      .foot-right { align-items: flex-start; }
    }
    @media (max-width: 520px) {
      .rmk-img { width: 30px; height: 30px; border-width: 1.5px; }
      .rmk-dot { width: 8px; height: 8px; border-width: 1.5px; }
      .rmk-name { font-size: .54rem; }
      .rmk-pop { max-width: 150px; font-size: .66rem; padding: .4rem .55rem; }
      .region-map { padding: 1rem 1rem 2.5rem; }
      .japan-map { padding: 1.25rem 1rem 2.5rem; }
      .spot-phone { width: clamp(84px, 24vw, 104px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-rings span { animation: none; opacity: .35; transform: translate(-50%, -50%); }
    }

    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }
    /* ===== SHARED SCROLL REVEAL ===== */
    .reveal {
      opacity: 0; transform: translateY(18px);
      transition: opacity var(--dur-base) var(--ease-out-soft), transform var(--dur-base) var(--ease-out-soft);
      transition-delay: var(--rd, 0ms);
    }
    .reveal.is-in { opacity: 1; transform: none; }

    /* ===== LIVE MAP SHOWPIECE ===== */
    .s-map--live { background: var(--surface-p); }
    .s-map--live .map-canvas { z-index: 0; }
    .map-arcs {
      position: absolute; inset: 0; width: 100%; height: 100%;
      z-index: 0; pointer-events: none; overflow: visible;
    }
    .map-arcs path {
      fill: none; stroke: var(--arc-stroke); stroke-width: 2; stroke-linecap: round;
      stroke-dasharray: var(--len); stroke-dashoffset: var(--len);
    }
    .s-map--live.is-in .map-arcs path {
      transition: stroke-dashoffset var(--dur-arc) var(--ease-in-out-soft);
      transition-delay: calc(700ms + var(--n) * 150ms);
      stroke-dashoffset: 0;
    }
    .s-map--live.arcs-rest .map-arcs path { stroke: var(--arc-stroke-soft); transition: stroke .6s ease; }
    .map-comet { fill: var(--accent); opacity: 0; }
    .s-map--live .map-dot { z-index: 1; }
    .s-map--live .map-dot::before { transition: transform .15s ease, box-shadow .15s ease, opacity var(--dur-fast) linear; }
    .s-map--live:not(.is-in) .map-dot::before { transform: scale(0); opacity: 0; }
    .s-map--live.is-in .map-dot::before {
      transform: scale(1); opacity: 1;
      transition: transform var(--dur-base) var(--ease-out-back), opacity var(--dur-fast) linear;
      transition-delay: calc(120ms + var(--i) * 24ms);
    }
    .s-map--live.is-in .map-dot:hover::before, .s-map--live.is-in .map-dot:focus-visible::before { transform: scale(1.5); }
    @keyframes mapRipple {
      0%   { box-shadow: 0 0 0 0 var(--dot-ripple); }
      70%  { box-shadow: 0 0 0 11px rgba(30,126,112,0); }
      100% { box-shadow: 0 0 0 0 rgba(30,126,112,0); }
    }
    .map-dot.is-pulsing::before { animation: mapRipple 2800ms var(--ease-out-soft) infinite; }
    .map-now {
      display: inline-flex; align-items: center; gap: .55rem;
      margin-top: 2rem;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 50px; padding: .35rem .9rem .35rem .4rem;
      box-shadow: var(--shadow-r);
    }
    .map-now img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
    .map-now-txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
    .map-now-eyebrow { font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--on-3); }
    .map-now-city { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1rem; color: var(--on); }
    .map-now-city, .map-now img { transition: opacity .25s var(--ease-in-out-soft); }
    .map-now.swap .map-now-city, .map-now.swap img { opacity: 0; }

    /* ===== HOW IT WORKS TIMELINE ===== */
    .s-how { border-top: 1px solid var(--border); padding: 6rem 3rem; max-width: 1100px; margin: 0 auto; }
    .s-how .display-lg { text-align: center; margin: 0 auto; }
    .s-how .italic-sub { text-align: center; margin: 1rem auto 0; max-width: 48ch; }
    .how-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
    .how-line { position: absolute; top: 30px; left: 12%; right: 12%; height: 2px; overflow: visible; z-index: 0; }
    .how-line path { fill: none; stroke: var(--arc-stroke-soft); stroke-width: 2; stroke-dasharray: var(--len); stroke-dashoffset: var(--len); }
    .s-how.is-in .how-line path { transition: stroke-dashoffset 1400ms var(--ease-in-out-soft) 200ms; stroke-dashoffset: 0; }
    .how-step { position: relative; z-index: 1; text-align: center; padding: 0 1rem; }
    .how-num {
      width: 60px; height: 60px; margin: 0 auto 1.25rem;
      display: grid; place-items: center; border-radius: 50%;
      background: var(--surface); border: 1px solid var(--border);
      color: var(--brand); box-shadow: var(--shadow-r);
    }
    .how-num svg { width: 26px; height: 26px; stroke: var(--brand); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .how-step h3 { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1.5rem; margin-bottom: .5rem; }
    .how-step p { color: var(--on-2); font-size: .95rem; max-width: 30ch; margin: 0 auto; }
    .how-kicker { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--on-3); margin-bottom: .9rem; }

    /* ===== REACH / COUNTERS ===== */
    .s-reach { border-top: 1px solid var(--border); position: relative; overflow: hidden; padding: 6rem 3rem; }
    .s-reach .reach-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
    .reach-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: .9; }
    .reach-bg path { fill: none; stroke: var(--arc-stroke-soft); stroke-width: 1.5; stroke-dasharray: var(--len); stroke-dashoffset: var(--len); }
    .s-reach.is-in .reach-bg path { transition: stroke-dashoffset 1600ms var(--ease-in-out-soft); stroke-dashoffset: 0; }
    .s-reach .display-md { text-align: center; margin: 0 auto; }
    .s-reach .italic-sub { text-align: center; margin: 1rem auto 0; max-width: 50ch; }
    .reach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
    .reach-item { text-align: center; padding: 1.5rem 1rem; }
    .reach-num { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.75rem); letter-spacing: -.02em; line-height: 1; color: var(--on); }
    .reach-num .stat-plus { color: var(--walnut); }
    .reach-label { font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--on-3); margin-top: .85rem; line-height: 1.5; }

    /* ===== SPOTLIGHT + MARQUEE ===== */
    .s-spot { border-top: 1px solid var(--border); }
    .marquee { overflow: hidden; padding: 1.1rem 0; border-bottom: 1px solid var(--border); -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
    .marquee-track { display: flex; gap: 2.4rem; width: max-content; animation: ttMarquee 46s linear infinite; }
    .s-spot:hover .marquee-track { animation-play-state: paused; }
    .marquee-track span { font-size: .95rem; font-weight: 500; color: var(--on-2); white-space: nowrap; }
    .marquee-track span::after { content: "·"; margin-left: 2.4rem; color: var(--on-3); }
    .marquee-track span.lit { color: var(--brand); }
    @keyframes ttMarquee { to { transform: translateX(-50%); } }
    .spot-body { display: grid; grid-template-columns: 48% 52%; align-items: center; min-height: 60vh; }
    .spot-media { position: relative; padding: 4rem; }
    .spot-frame { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-h); }
    .spot-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s var(--ease-in-out-soft); }
    .spot-frame img.show { opacity: 1; }
    .spot-text { padding: 4rem 5rem 4rem 2rem; }
    .spot-text .display-lg { margin-bottom: 1rem; }
    .spot-text .italic-sub { margin-bottom: 2rem; }
    .spot-caption { display: inline-flex; align-items: center; gap: .55rem; }
    .spot-caption i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--arc-stroke-soft); }
    .spot-caption .lbl { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--on-3); }
    .spot-caption .nm { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1.15rem; color: var(--on); transition: opacity .3s var(--ease-in-out-soft); }
    .spot-phone { position: absolute; right: 1.25rem; bottom: .5rem; width: clamp(120px, 12vw, 158px); z-index: 2; border-radius: 30px; border-width: 6px; }

    @media (max-width: 860px) {
      .how-track { grid-template-columns: 1fr; gap: 2.5rem; }
      .how-line { display: none; }
      .reach-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .spot-body { grid-template-columns: 1fr; min-height: 0; }
      .spot-media { padding: 2.5rem 1.5rem 0; }
      .spot-phone { width: clamp(96px, 26vw, 120px); right: .75rem; bottom: -1rem; }
      .spot-text { padding: 2.5rem 1.5rem 3.5rem; }
    }
    @media (max-width: 760px) {
      .s-how, .s-reach { padding: 4rem 1.25rem; }
      .map-now { margin-top: 1.5rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
      .s-map--live .map-dot::before { transform: scale(1) !important; opacity: 1 !important; transition: none !important; }
      .map-dot.is-pulsing::before { animation: none !important; }
      .map-arcs path, .how-line path, .reach-bg path { stroke-dashoffset: 0 !important; transition: none !important; }
      .marquee-track { animation: none !important; transform: none !important; }
      .spot-frame img.show { transition: none !important; }
    }
  