/* ══════════════════════════════════════════════════════════════
   IBM Plex Mono，自架。
   🔴 **刻意不用 Google Fonts CDN。** 法務頁一邊寫「沒有第三方」，
      一邊讓瀏覽器把讀者的 IP 送去 Google，那是自打嘴巴。
      字型是 OFL 授權（見 assets/fonts/IBMPlexMono-OFL.txt），可以自架。
      順便讓 CSP 收得更緊：font-src 只要 'self'。
   ⚠️ 只帶 Regular 與 SemiBold。頁面沒有用到斜體，700 對應到 SemiBold。
   ══════════════════════════════════════════════════════════════ */
@font-face {
  font-family: "IBM Plex Mono";
  src: url("./assets/fonts/IBMPlexMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("./assets/fonts/IBMPlexMono-SemiBold.ttf") format("truetype");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

/* ══════════════════════════════════════════════════════════════
   失常相機 SALVAGE CAM — 落地頁
   Token 逐項對應 doc/landing-style-spec.md。**不要在這裡發明新顏色**，
   要改先改 App 端的 lib/design/theme.dart，再同步過來。
   ══════════════════════════════════════════════════════════════ */

:root {
  /* Signal（深）*/
  --sig-bg:      #12101E;
  --sig-glass:   rgba(48,42,78,.55);
  --sig-glass2:  rgba(38,33,64,.90);
  --sig-tx:      #F7F5FF;
  --sig-tx-rgb:  247,245,255;
  --g1:          #FF3EA5;
  --gm:          #B14CFF;
  --g2:          #3FD9FF;
  --gt1:         #FFA0D2;
  --gt2:         #9FE8FF;
  --sig-media:   #141126;

  /* Studio（淺）*/
  --stu-bg:      #EFEDE8;
  --paper:       #FBFAF7;
  --ink:         #22231F;
  --ink-rgb:     34,35,31;
  --acc:         #D94F3D;   /* 強調 */
  --stamp:       #B0203A;   /* 印章紅 —— 跟 --acc 分工，不要混用 */
  --gt1-stu:     #B8432F;
  --gt2-stu:     #96601F;

  /* 稀有度：兩套主題共用，是資料不是樣式 */
  --rar-c: #6E6A60;
  --rar-u: #0B8A70;
  --rar-r: #7A3FF2;
  --rar-f: #B0203A;

  --sweep: linear-gradient(120deg, var(--g1), var(--gm), var(--g2));

  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ui: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC",
        "PingFang TC", "Microsoft JhengHei", Roboto, sans-serif;

  --pad-x: clamp(24px, 5vw, 84px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: #0B0A12;
  color: var(--sig-tx);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2 { margin: 0; text-wrap: pretty; }
p { margin: 0; }
a { color: var(--gt1); text-decoration: none; }
a:hover { color: var(--g1); }
:focus-visible { outline: 2px solid var(--g1); outline-offset: 3px; }

/* ── 共用小元件 ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;   /* 字距是品牌識別，見 style spec §5 */
  text-transform: uppercase;
}
.eyebrow.pink   { color: var(--gt1); }
.eyebrow.cyan   { color: var(--gt2); }
.eyebrow.ink    { color: rgba(var(--ink-rgb), .55); letter-spacing: .2em; }
.eyebrow.ink-red{ color: var(--gt1-stu); }
.mono { font-family: var(--mono); }

/* 品牌字：三層錯位 = App icon 上的重影效果（SV-13 重影相機） */
.wordmark {
  position: relative;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.2;
}
.wordmark.sm { font-size: 14px; }
.wordmark span { display: block; }
.wm-pink, .wm-cyan { position: absolute; top: 0; opacity: .7; }
.wm-pink { left: -2px; margin-top: -1px; color: var(--g1); }
.wm-cyan { left: 2px;  margin-top:  1px; color: var(--g2); }
.wm-top  { position: relative; }

/* ── 語言切換 ───────────────────────────────────────── */
.langbar {
  position: absolute; top: 0; right: 0; z-index: 8;
  padding: 18px clamp(20px, 4vw, 60px);
}
.langtoggle {
  display: flex; align-items: center; height: 34px;
  border-radius: 999px; border: 1.5px solid var(--ink);
  background: var(--paper); overflow: hidden;
}
.langtoggle button {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  padding: 0 12px; height: 100%; border: 0; cursor: pointer;
  background: transparent; color: var(--ink);
}
.langtoggle button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

/* ══════════ HERO ══════════ */
.hero {
  position: relative; width: 100%; min-height: 760px;
  display: flex; flex-wrap: wrap;
}
.hero-left {
  flex: 0 0 50%;   /* 固定，不再由 JS 寫 inline flexBasis */ min-width: 280px;
  background: var(--sig-bg);
  background-image:
    radial-gradient(130% 90% at 100% 0%, rgba(155,76,255,.42), transparent 55%),
    radial-gradient(120% 85% at 0% 100%, rgba(255,62,165,.30), transparent 55%);
  color: var(--sig-tx);
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  padding: 80px clamp(150px, 15vw, 240px) 60px var(--pad-x);
}
.hero-left h1 {
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 800; line-height: 1.2; letter-spacing: .02em;
}
.hero-sub {
  font-family: var(--mono); font-size: 13px; line-height: 22px;
  color: rgba(var(--sig-tx-rgb), .62); max-width: 340px;
}
.hero-right {
  flex: 0 0 50%; min-width: 280px;
  background: var(--stu-bg); color: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
  padding: 80px var(--pad-x) 60px clamp(150px, 15vw, 240px);
}
.hero-signature {
  font-family: var(--mono);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700; letter-spacing: .04em; line-height: 1.35;
}
.stamp {
  align-self: flex-start;
  transform: rotate(-4deg);
  border: 2.5px solid var(--acc); color: var(--acc);
  border-radius: 6px; padding: 6px 14px;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  letter-spacing: .18em; opacity: .85;
}

/* App Store 按鈕。
   🔴 上架後用 **Apple 官方 badge**（白色版，因為它坐在深色的 Signal 側）。
      官方 badge 是使用者認得的形狀，也是 Apple 的連結規範要求的。
   ⚠️ **還沒上架時不放 badge。** 一顆點不下去的官方 badge 既誤導、也不符合
      Apple「badge 必須連到 App Store」的規範，所以那時改顯示文字按鈕。
   （中英一律用英文那張 —— 沿用 sixty-app 2026-08-25 定下的做法。） */
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-store img { display: block; width: 120px; height: 40px; }
.btn-store:focus-visible { outline: 2px solid var(--g1); outline-offset: 4px; border-radius: 8px; }

/* 尚未上架的文字版 */
.btn-soon {
  height: 44px; display: inline-flex; align-items: center; padding: 0 20px;
  border-radius: 999px; border: 1.5px solid rgba(var(--sig-tx-rgb), .35);
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(var(--sig-tx-rgb), .75);
}

/* 四張樣張 */
.contact-strip { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.slide {
  width: 108px; background: var(--paper);
  box-shadow: 0 4px 14px rgba(0,0,0,.14);
  padding: 6px 6px 8px;
}
/* 樣張與圖鑑卡共用 buildFaultShot()，所以這裡也要能承載絕對定位的圖層 */
.slide .img {
  aspect-ratio: 3 / 3.4;
  position: relative;
  overflow: hidden;
  background-color: var(--sig-media);
}
.slide .cap {
  margin-top: 5px; font-family: var(--mono);
  font-size: 9px; color: rgba(var(--ink-rgb), .6);
}

/* 手機。🔴 設計 2026-08-29 改版：**頁面級的拖曳分割線拿掉了**，
   左右固定 50/50，手機置中。互動集中到手機裡的那一條擦除線。 */
.phone {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 286px; height: 588px;
  border-radius: 46px; background: #0B0B10; padding: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5); z-index: 3;
}
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden; }
.phone-shot {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--sig-media);
}

/* 右半邊＝同一張照片跑過 SV-02（GPU 故障）。
   🔴 這些數值必須跟 app.js 的 CAMS[0] 一致 —— 同一台相機在 hero 與圖鑑
   長得不一樣的話，讀者會以為那是兩台。改一邊就要改另一邊。 */
.phone-fault { position: absolute; inset: 0; }
.pf-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.pf-base    { filter: saturate(1.15) contrast(1.05); }
.pf-ghost-a { transform: translate(6px, 0);  opacity: .45; mix-blend-mode: screen;
              filter: sepia(1) saturate(6) hue-rotate(280deg); }
.pf-ghost-b { transform: translate(-6px, 0); opacity: .40; mix-blend-mode: screen;
              filter: sepia(1) saturate(6) hue-rotate(160deg); }
.pf-slice-1 { clip-path: inset(22% 0 66% 0); transform: translateX(12px); }
.pf-slice-2 { clip-path: inset(48% 0 44% 0); transform: translateX(-16px); }
.pf-slice-3 { clip-path: inset(78% 0 12% 0); transform: translateX(9px); }
.pf-block   { position: absolute; display: block; }
.pf-block-1 { left: 12%; top: 30%; width: 56px; height: 10px; background: var(--g1); opacity: .55; }
.pf-block-2 { left: 62%; top: 64%; width: 40px; height: 8px;  background: #3B8BD6; opacity: .50; }
.pf-scan {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.12) 0 1px, transparent 1px 3px);
}
.pf-badge {
  position: absolute; right: 10px; top: 30px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(11,11,16,.85); border-radius: 10px; padding: 6px 10px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .06em;
  color: var(--g1); white-space: nowrap;
}
.pf-badge b { width: 5px; height: 5px; border-radius: 50%; background: var(--g1); }
.pf-cap {
  position: absolute; right: 10px; bottom: 14px;
  font-family: var(--mono); font-size: 8px; letter-spacing: .04em;
  color: rgba(var(--sig-tx-rgb), .85); text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

.pline { position: absolute; width: 2px; }
.pline1 { top: 0; bottom: 0; background: var(--g1); }
.pline2 { top: 30%; bottom: 40%; background: var(--g2); }
.phone-grip {
  position: absolute; top: 0; bottom: 0; width: 44px;
  cursor: ew-resize; touch-action: none; z-index: 6;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 84px;
}
.phone-grip span {
  width: 30px; height: 30px; border-radius: 50%;
  background: #0B0B10; border: 1.5px solid var(--sig-tx);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--sig-tx);
}
.notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 22px; border-radius: 12px; background: #0B0B10;
}

/* ══════════ HOW ══════════ */
.how {
  background: var(--sig-bg);
  background-image: radial-gradient(120% 85% at 0% 0%, rgba(155,76,255,.25), transparent 55%);
  padding: clamp(60px, 8vw, 110px) var(--pad-x);
}
.how h2, .gallery h2 { margin-top: 12px; font-size: clamp(26px, 2.6vw, 38px); font-weight: 800; max-width: 560px; }
.steps { margin-top: 40px; display: flex; gap: 20px; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 250px; border-radius: 18px; padding: 1.5px;
  background: linear-gradient(140deg, rgba(255,62,165,.6), rgba(63,217,255,.35));
}
.step > div {
  height: 100%; border-radius: 17px; background: rgba(38,33,64,.9);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.step .no { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--g2); }
.step .tt { font-size: 19px; font-weight: 700; }
.step .dd { font-family: var(--mono); font-size: 12px; line-height: 20px; color: rgba(var(--sig-tx-rgb), .6); }
.step .tag { margin-top: auto; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: rgba(var(--sig-tx-rgb), .4); }

/* ══════════ GALLERY ══════════ */
.gallery {
  background: var(--sig-bg);
  background-image: radial-gradient(120% 90% at 100% 100%, rgba(255,62,165,.22), transparent 55%);
  padding: 0 var(--pad-x) clamp(60px, 8vw, 110px);
}
.gal-sub { margin-top: 8px; font-family: var(--mono); font-size: 12px; color: rgba(var(--sig-tx-rgb), .55); }
.cams { margin-top: 36px; display: flex; gap: 20px; flex-wrap: wrap; }
.cam { flex: 1; min-width: 230px; max-width: 330px; border-radius: 20px; padding: 1.5px; }
.cam > .in {
  border-radius: 19px; background: rgba(38,33,64,.92); padding: 18px;
  display: flex; flex-direction: column; gap: 12px; height: 100%;
}
.cam .shot {
  border-radius: 12px; aspect-ratio: 3/4; position: relative;
  overflow: hidden; background: var(--sig-media);
}
/* 🔴 這兩條**不能限定在 .cam 底下**。buildFaultShot() 同時給圖鑑卡與 hero
   樣張用，兩邊產生的是同一組 class；限定在 .cam 的話，樣張那邊的圖層
   會變成沒有定位、沒有 background-size 的靜態 div —— 症狀是整片黑。 */
.shot > i, .slide .img > i { position: absolute; display: block; }
.layer { position: absolute; inset: 0; background-size: cover; }
.cam .row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.cam .id { font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.cam .rar {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .1em;
}
/* ◆ 用 CSS 畫，不要打字元 —— 字型裡沒有，會靜默 fallback（style spec §7） */
.cam .rar b { width: 6px; height: 6px; transform: rotate(45deg); }
.cam .nm { font-size: 14px; font-weight: 600; }
.cam .fault { font-family: var(--mono); font-size: 11px; line-height: 18px; color: rgba(var(--sig-tx-rgb), .55); }
.cam .hp { margin-top: auto; display: flex; align-items: center; gap: 8px; }
.cam .hp .lb { font-family: var(--mono); font-size: 10px; color: rgba(var(--sig-tx-rgb), .5); }
.cam .hp .track { flex: 1; height: 5px; border-radius: 3px; background: rgba(var(--sig-tx-rgb), .14); }
.cam .hp .fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--g1), var(--gm), var(--g2)); }
.cam .hp .val { font-family: var(--mono); font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; }

/* ══════════ THEMES ══════════ */
.themes { display: flex; flex-wrap: wrap; }
.theme-signal, .theme-studio {
  flex: 1; min-width: 320px;
  padding: clamp(50px, 6vw, 90px) clamp(24px, 4vw, 64px);
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
}
.theme-signal {
  background: var(--sig-bg);
  background-image:
    radial-gradient(130% 90% at 100% 0%, rgba(155,76,255,.42), transparent 55%),
    radial-gradient(120% 85% at 0% 100%, rgba(255,62,165,.30), transparent 55%);
}
.theme-studio { background: var(--stu-bg); color: var(--ink); }
.theme-name { font-size: clamp(24px, 2.2vw, 32px); font-weight: 800; }
.themes p { font-family: var(--mono); font-size: 12px; line-height: 20px; max-width: 340px; }
.theme-signal p { color: rgba(var(--sig-tx-rgb), .6); }
.theme-studio p { color: rgba(var(--ink-rgb), .6); }
.chip-grad { margin-top: 10px; border-radius: 16px; padding: 1.5px; background: var(--sweep); }
.chip-grad span {
  display: block; border-radius: 15px; background: rgba(38,33,64,.9);
  padding: 14px 18px; font-family: var(--mono); font-size: 11px;
  color: var(--gt2); letter-spacing: .06em;
}
.chip-paper {
  margin-top: 10px; background: var(--paper); border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,.12); padding: 14px 18px;
  font-family: var(--mono); font-size: 11px; color: var(--gt1-stu); letter-spacing: .06em;
}

.tear-divider { position: relative; height: 0; z-index: 2; }
.tear-divider i { position: absolute; display: block; }

/* ══════════ PRICING ══════════ */
.pricing, .faq { background: var(--stu-bg); color: var(--ink); }
.pricing { padding: clamp(60px, 8vw, 110px) var(--pad-x); }
.pricing h2 { margin-top: 12px; font-size: clamp(26px, 2.6vw, 38px); font-weight: 700; }
.pr-sub { margin-top: 8px; font-family: var(--mono); font-size: 12px; line-height: 20px; color: rgba(var(--ink-rgb), .55); max-width: 460px; }
.plans { margin-top: 40px; display: flex; gap: 20px; flex-wrap: wrap; align-items: stretch; }
.plan {
  flex: 1; min-width: 240px; max-width: 340px; position: relative;
  background: var(--paper); border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
  border: 1px solid rgba(34,35,31,.15);
}
.plan.is-rec { border: 2px solid var(--acc); }
.plan .badge {
  position: absolute; top: -13px; right: 16px; transform: rotate(3deg);
  border: 2px solid var(--acc); color: var(--acc); background: var(--paper);
  border-radius: 5px; padding: 3px 10px;
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .14em;
}
.plan .nm { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .14em; color: rgba(var(--ink-rgb), .6); }
.plan .price-row { display: flex; align-items: baseline; gap: 6px; }
/* 🔴 這裡永遠不會有 <s> / text-decoration:line-through。見 red line 03。 */
.plan .price { font-family: var(--mono); font-size: 34px; font-weight: 700; font-variant-numeric: tabular-nums; }
.plan .per { font-family: var(--mono); font-size: 12px; color: rgba(var(--ink-rgb), .5); }
.plan .note { font-family: var(--mono); font-size: 11px; color: rgba(var(--ink-rgb), .5); }
.plan .feats { margin-top: 6px; display: flex; flex-direction: column; gap: 8px; font-family: var(--mono); font-size: 11px; line-height: 17px; color: rgba(var(--ink-rgb), .7); }
.plan .feats b { color: var(--acc); font-weight: 400; }
.plan .cta { margin-top: auto; padding-top: 10px; }
.plan .cta > div {
  height: 46px; border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .1em;
}
/* 還沒上架時，方案按鈕不能看起來可以按 —— 那是壞掉的按鈕，不是 CTA */
.plan .cta a { cursor: pointer; text-decoration: none; }
.plan .cta [aria-disabled="true"] { cursor: default; opacity: .68; }
.free-note { margin-top: 20px; font-family: var(--mono); font-size: 11px; color: rgba(var(--ink-rgb), .5); }
.legal-row {
  margin-top: 14px; display: flex; gap: 20px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em;
}
.legal-row a { color: var(--gt1-stu); }
.legal-row a:hover { color: var(--acc); }
/* 網址還沒有的時候，連結降級成靜態文字 —— 不放 href="#" 的死連結 */
.legal-row .pending, .foot-links .pending {
  color: rgba(var(--ink-rgb), .38);
  border-bottom: 1px dashed rgba(var(--ink-rgb), .3);
}
.foot-links .pending { color: rgba(244,243,237,.35); border-bottom-color: rgba(244,243,237,.28); }

/* ══════════ FAQ ══════════ */
.faq { padding: 0 var(--pad-x) clamp(60px, 8vw, 110px); }
.faq h2 { margin-top: 12px; font-size: clamp(24px, 2.2vw, 32px); font-weight: 700; }
.faqs { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faqs details { background: var(--paper); border-radius: 6px; box-shadow: 0 2px 10px rgba(0,0,0,.08); padding: 0 20px; }
.faqs summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  min-height: 56px; font-family: var(--mono); font-size: 13px; font-weight: 600;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary b { color: var(--acc); font-weight: 700; }
.faqs details[open] summary b { transform: rotate(45deg); }
.faqs summary b { transition: transform .15s ease; display: inline-block; }
.faqs .a { padding: 0 0 18px; font-family: var(--mono); font-size: 12px; line-height: 21px; color: rgba(var(--ink-rgb), .65); }

/* ══════════ FOOTER ══════════ */
footer { background: #17181C; color: #F4F3ED; padding: clamp(44px, 6vw, 70px) var(--pad-x); }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.foot-brand { display: flex; flex-direction: column; gap: 14px; }
.foot-brand a, .foot-brand span { font-family: var(--mono); font-size: 12px; color: rgba(244,243,237,.6); }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; }
.foot-links a { color: rgba(244,243,237,.75); }
.foot-links a:hover { color: var(--gt1); }
.foot-legal { margin-top: 34px; font-family: var(--mono); font-size: 10px; color: rgba(244,243,237,.35); }

/* ══════════ 響應式 ══════════ */
@media (max-width: 960px) {
  .hero-left, .hero-right { flex: 1 1 100%; }
  .hero-left  { padding: 96px 24px 48px; }
  .hero-right { padding: 48px 24px 56px; }
  .phone { position: static; transform: none; margin: 36px auto 52px; }
  .hero { flex-direction: column; }
}
