:root {
  color-scheme: dark;
  --ink: #080d19;
  --navy: #0c1324;
  --navy-2: #111a30;
  --panel: #141e35;
  --panel-2: #19243d;
  --line: rgba(191, 207, 236, 0.14);
  --line-strong: rgba(191, 207, 236, 0.24);
  --text: #f6f8fc;
  --muted: #a9b3c9;
  --muted-2: #7e8aa4;
  --orange: #ff7a1a;
  --orange-2: #ff9a3d;
  --orange-soft: rgba(255, 122, 26, 0.13);
  --green: #71d8a0;
  --warning: #ffd36a;
  --shell: min(1180px, calc(100vw - 48px));
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --font: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--orange); color: #17100b; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 108px 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: rgba(8, 13, 25, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { background: rgba(8, 13, 25, 0.92); border-color: var(--line); }
.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { border-radius: 13px; box-shadow: 0 8px 22px rgba(255, 122, 26, .18); }
.brand span { display: grid; gap: 2px; }
.brand strong { font-size: 16px; letter-spacing: .03em; }
.brand small { color: var(--muted-2); font-size: 11px; letter-spacing: .08em; }
.nav { display: flex; align-items: center; justify-content: center; gap: 30px; margin-left: auto; }
.nav a { position: relative; color: #bdc6d9; font-size: 14px; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--orange); transition: right .2s ease; }
.nav a:hover, .nav a:focus-visible { color: #fff; }
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }
.header-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 12px;
  background: var(--orange);
  color: #1a1009;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 28px rgba(255, 122, 26, .22);
}
.header-download svg { width: 17px; height: 17px; stroke-width: 2.2; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  padding: 150px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(145deg, #0a1020 0%, #101a31 58%, #0a101d 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 76px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow-one { width: 560px; height: 560px; right: -120px; top: 90px; background: radial-gradient(circle, rgba(255, 122, 26, .18), transparent 68%); }
.hero-glow-two { width: 420px; height: 420px; left: 10%; bottom: -260px; background: radial-gradient(circle, rgba(53, 90, 170, .2), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr); align-items: center; gap: 48px; }
.hero-copy { position: relative; z-index: 5; padding-bottom: 68px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; color: #c5cede; font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(113, 216, 160, .1); }
.hero-brand-row { display: flex; align-items: center; gap: 25px; }
.hero-icon { width: 104px; height: 104px; flex: 0 0 auto; border-radius: 27px; box-shadow: 0 22px 50px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.1); }
.version-kicker { margin: 0 0 8px; color: var(--orange-2); font-size: 12px; font-weight: 900; letter-spacing: .16em; }
h1 { margin: 0; font-size: clamp(44px, 5.1vw, 72px); line-height: .98; letter-spacing: -.055em; }
h1 em { display: block; margin-top: 10px; color: var(--text); font-style: normal; font-weight: 300; letter-spacing: -.06em; }
.hero-lede { max-width: 650px; margin: 30px 0 0; color: #bdc6d8; font-size: 17px; line-height: 1.9; }
.hero-actions { display: flex; align-items: stretch; gap: 14px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(255,154,61,.55); outline-offset: 3px; }
.button-primary { gap: 14px; min-width: 250px; padding: 14px 22px 14px 15px; border-radius: 16px; background: linear-gradient(135deg, var(--orange-2), var(--orange)); color: #1b1008; box-shadow: 0 18px 46px rgba(255, 122, 26, .25); }
.button-primary:hover { box-shadow: 0 22px 54px rgba(255, 122, 26, .36); }
.button-primary .button-icon { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 12px; background: rgba(35, 19, 8, .1); }
.button-primary svg { width: 23px; height: 23px; stroke-width: 2.2; }
.button-primary > span:last-child { display: grid; gap: 4px; text-align: left; }
.button-primary strong { font-size: 16px; }
.button-primary small { font-size: 11px; font-weight: 700; opacity: .68; }
.button-secondary { gap: 16px; padding: 0 19px; border: 1px solid var(--line-strong); border-radius: 16px; background: rgba(255,255,255,.035); color: #dbe1ed; font-size: 14px; font-weight: 700; }
.button-secondary:hover { border-color: rgba(255,154,61,.45); background: rgba(255,122,26,.05); }
.button-secondary svg { width: 17px; height: 17px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 27px; color: var(--muted-2); font-size: 12px; }
.hero-notes span { display: inline-flex; align-items: center; gap: 7px; }
.hero-notes svg { width: 16px; height: 16px; color: #90a0bc; }

.hero-visual { position: relative; min-height: 605px; perspective: 1200px; }
.visual-label { position: absolute; top: 0; right: 4px; color: var(--muted-2); font-family: Consolas, monospace; font-size: 11px; letter-spacing: .14em; }
.visual-label span { color: var(--orange-2); }
.phone { position: absolute; overflow: hidden; padding: 0; border: 5px solid #26344f; border-radius: 30px; background: #121a2b; box-shadow: var(--shadow); cursor: zoom-in; transition: transform .35s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.phone::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; pointer-events: none; }
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone-front { z-index: 3; width: 259px; height: 462px; right: 89px; top: 78px; transform: rotate(2.5deg); }
.phone-mid { z-index: 2; width: 228px; height: 407px; right: 0; top: 133px; transform: rotate(10deg); filter: brightness(.68) saturate(.85); }
.phone-back { z-index: 1; width: 217px; height: 388px; left: 14px; top: 155px; transform: rotate(-11deg); filter: brightness(.55) saturate(.72); }
.hero-visual:hover .phone-front { transform: translateY(-9px) rotate(1.2deg); }
.hero-visual:hover .phone-mid { transform: translate(10px, 4px) rotate(12deg); filter: brightness(.8) saturate(.95); }
.hero-visual:hover .phone-back { transform: translate(-8px, 5px) rotate(-13deg); filter: brightness(.68) saturate(.86); }
.orbit-badge { position: absolute; z-index: 5; right: 20px; bottom: 33px; display: flex; align-items: center; gap: 10px; width: 156px; height: 72px; padding: 10px 15px; border: 1px solid rgba(255,154,61,.3); border-radius: 999px; background: rgba(10,16,29,.86); box-shadow: 0 14px 36px rgba(0,0,0,.28); backdrop-filter: blur(12px); }
.orbit-badge strong { color: var(--orange-2); font-size: 28px; line-height: 1; }
.orbit-badge span { color: #b7c0d2; font-size: 10px; line-height: 1.45; }
.trust-ribbon { position: relative; z-index: 7; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: 20px 20px 0 0; background: rgba(15, 24, 43, .9); box-shadow: 0 -14px 60px rgba(0,0,0,.13); backdrop-filter: blur(18px); }
.trust-ribbon div { min-width: 0; padding: 21px 24px; border-right: 1px solid var(--line); }
.trust-ribbon div:last-child { border-right: 0; }
.trust-ribbon span, .trust-ribbon strong { display: block; }
.trust-ribbon span { margin-bottom: 7px; color: var(--muted-2); font-size: 11px; }
.trust-ribbon strong { overflow: hidden; text-overflow: ellipsis; font-size: 16px; letter-spacing: -.02em; }

.intro-section { background: #f3f0e9; color: #15171c; }
.split-heading { display: grid; grid-template-columns: 1.05fr .72fr; gap: 110px; align-items: end; }
.section-index { margin: 0 0 22px; color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.split-heading h2, .section-heading-row h2, .verify-copy h2, .faq-intro h2 { margin: 0; font-size: clamp(34px, 4.2vw, 57px); line-height: 1.13; letter-spacing: -.055em; }
.split-heading h2 span { color: #858176; font-weight: 350; }
.section-copy { border-left: 1px solid rgba(18,21,27,.18); padding-left: 32px; }
.section-copy p { margin: 0; color: #4d5057; font-size: 16px; line-height: 1.9; }
.section-copy .copy-note { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(18,21,27,.12); color: #7d624e; font-size: 13px; }

.feature-section { background: #0c1324; }
.section-heading-row { display: grid; grid-template-columns: 1fr minmax(300px, 430px); gap: 70px; align-items: end; margin-bottom: 48px; }
.section-heading-row h2 { max-width: 760px; }
.section-heading-row > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.feature-layout { display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-auto-rows: minmax(260px, auto); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--line); }
.feature { position: relative; min-width: 0; padding: 30px; background: linear-gradient(150deg, #141e35, #111a2e); }
.feature::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 95% 0, rgba(255,122,26,.08), transparent 35%); opacity: 0; transition: opacity .25s ease; }
.feature:hover::before { opacity: 1; }
.feature-large { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; }
.feature-wide { display: grid; grid-template-columns: 1fr 150px; gap: 25px; align-items: end; }
.feature-number { position: absolute; top: 24px; right: 25px; color: #64718b; font: 12px Consolas, monospace; }
.feature-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 28px; border: 1px solid rgba(255,154,61,.22); border-radius: 15px; background: var(--orange-soft); color: var(--orange-2); }
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { position: relative; z-index: 1; margin: 0 0 13px; font-size: 22px; letter-spacing: -.035em; }
.feature p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.feature-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.feature-tags span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #aeb8cb; font-size: 11px; }
.schedule-lines { display: flex; justify-content: flex-end; align-items: end; gap: 11px; height: 110px; }
.schedule-lines i { width: 22px; border-radius: 7px 7px 3px 3px; background: rgba(255,122,26,.22); }
.schedule-lines i:nth-child(1) { height: 42%; }
.schedule-lines i:nth-child(2) { height: 70%; }
.schedule-lines i:nth-child(3) { height: 55%; }
.schedule-lines i:nth-child(4) { height: 92%; background: var(--orange); }

.screenshot-section { overflow: hidden; background: #f3f0e9; color: #15171c; }
.screenshot-heading { margin-bottom: 42px; }
.rail-controls { display: flex; gap: 10px; justify-content: flex-end; }
.rail-controls button { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(18,21,27,.17); border-radius: 50%; background: transparent; color: #34373d; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.rail-controls button:hover { border-color: #15171c; background: #15171c; color: #fff; }
.rail-controls svg { width: 20px; height: 20px; }
.screenshot-rail-wrap { width: min(1440px, 100%); margin: 0 auto; padding-left: max(24px, calc((100% - 1180px) / 2)); }
.screenshot-rail { display: flex; align-items: flex-end; gap: 22px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 0 36px 18px 0; }
.screenshot-rail::-webkit-scrollbar { display: none; }
.shot-card { flex: 0 0 252px; margin: 0; scroll-snap-align: start; }
.shot-card button { display: block; overflow: hidden; width: 100%; padding: 0; border: 0; border-radius: 24px; background: #111728; box-shadow: 0 20px 45px rgba(33, 29, 24, .18); cursor: zoom-in; }
.shot-card img { width: 100%; aspect-ratio: 460/820; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.shot-card button:hover img { transform: scale(1.025); }
.shot-card figcaption { display: flex; align-items: center; gap: 13px; padding: 16px 4px 0; color: #575951; font-size: 13px; }
.shot-card figcaption span { color: var(--orange); font: 11px Consolas, monospace; }
.shot-tall { flex-basis: 284px; }
.screenshot-note { margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(18,21,27,.13); color: #77786f; font-size: 12px; }
.screenshot-note span { margin-right: 12px; color: #17191e; font-weight: 800; }

.verify-section { background: #0b1120; }
.verify-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.verify-copy { position: sticky; top: 110px; }
.verify-copy h2 { margin-bottom: 24px; }
.verify-copy > p:not(.section-index) { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.permission-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.permission-list li { position: relative; padding-left: 24px; color: #aeb8cb; font-size: 13px; line-height: 1.65; }
.permission-list li::before { content: ""; position: absolute; top: .6em; left: 0; width: 8px; height: 8px; border: 2px solid var(--orange); border-radius: 2px; transform: rotate(45deg); }
.verify-panel { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 26px; background: #111a2e; box-shadow: var(--shadow); }
.verify-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 19px 24px; border-bottom: 1px solid var(--line); color: #7f8ba4; font: 11px Consolas, monospace; letter-spacing: .12em; }
.verify-panel-head i { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(113,216,160,.09); }
.file-facts { margin: 0; }
.file-facts > div { display: grid; grid-template-columns: 145px 1fr; gap: 20px; align-items: start; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.file-facts dt { color: #7f8ba4; font-size: 12px; }
.file-facts dd { min-width: 0; margin: 0; color: #e9edf5; font-size: 14px; font-weight: 700; }
.file-facts .fact-wide dd { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 12px; }
.file-facts code { overflow-wrap: anywhere; color: #d0d7e5; font-family: Consolas, "SFMono-Regular", monospace; font-size: 12px; font-weight: 400; line-height: 1.7; }
.file-facts button { padding: 6px 9px; border: 1px solid var(--line-strong); border-radius: 8px; background: transparent; color: var(--orange-2); font-size: 11px; cursor: pointer; }
.file-facts button:hover { background: var(--orange-soft); }
.verify-panel-foot { display: flex; justify-content: space-between; gap: 20px; padding: 18px 24px; color: #75819a; font-size: 11px; }

.feedback-section { background: #f3f0e9; color: #15171c; }
.feedback-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feedback-grid article { display: flex; flex-direction: column; min-height: 290px; padding: 28px; border: 1px solid rgba(18,21,27,.14); border-radius: 22px; background: #f9f7f1; }
.feedback-grid article::before { content: "“"; align-self: flex-end; height: 48px; color: rgba(255,122,26,.35); font: 74px/1 Georgia, serif; }
.feedback-type { width: max-content; margin-bottom: 18px; padding: 7px 10px; border-radius: 99px; background: rgba(255,122,26,.1); color: #b74d07; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.feedback-grid p { margin: 0; color: #35383d; font-size: 16px; line-height: 1.9; }
.feedback-grid footer { margin-top: auto; padding-top: 24px; color: #818178; font-size: 11px; }
.feedback-grid .feedback-warning { background: #171a20; color: #fff; }
.feedback-warning p { color: #d8d9dc; }
.feedback-warning footer { color: #93969d; }
.feedback-warning .feedback-type { background: rgba(255,211,106,.1); color: var(--warning); }

.faq-section { background: #0c1324; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro > p:not(.section-index) { margin: 23px 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.faq-intro a { display: inline-flex; align-items: center; gap: 10px; color: var(--orange-2); font-size: 13px; font-weight: 800; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line-strong); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 4px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 auto; width: 22px; height: 22px; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 10px; left: 3px; width: 16px; height: 2px; background: var(--orange-2); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { margin: -4px 48px 24px 4px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.faq-list code { overflow-wrap: anywhere; color: #fff; font-family: Consolas, monospace; font-size: 12px; }

.download-cta { position: relative; isolation: isolate; overflow: hidden; padding: 80px 0; background: var(--orange); color: #1b1008; }
.download-cta::before { content: "囧次元"; position: absolute; z-index: -1; right: -20px; bottom: -105px; color: rgba(255,255,255,.12); font-size: 230px; font-weight: 950; letter-spacing: -.08em; white-space: nowrap; }
.cta-noise { position: absolute; inset: 0; opacity: .2; background-image: radial-gradient(rgba(17,10,5,.38) .7px, transparent .7px); background-size: 6px 6px; pointer-events: none; }
.cta-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-grid > div:first-child p { margin: 0 0 13px; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.cta-grid h2 { margin: 0; font-size: clamp(40px, 5vw, 68px); line-height: 1.03; letter-spacing: -.055em; }
.cta-action { display: flex; align-items: center; gap: 23px; justify-content: flex-end; }
.cta-action img { flex: 0 0 auto; border-radius: 24px; box-shadow: 0 18px 38px rgba(74,34,3,.24); }
.cta-action > div { display: grid; gap: 10px; }
.button-dark { gap: 20px; justify-content: space-between; min-width: 280px; padding: 18px 20px; border-radius: 15px; background: #111725; color: #fff; font-size: 15px; font-weight: 800; box-shadow: 0 16px 35px rgba(52,24,4,.22); }
.button-dark svg { width: 21px; height: 21px; color: var(--orange-2); }
.cta-action small { color: rgba(36,19,7,.66); font-size: 10px; font-weight: 700; }

.site-footer { padding: 58px 0 25px; background: #080d19; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.2fr auto; gap: 70px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { border-radius: 14px; }
.footer-brand div { display: grid; gap: 4px; }
.footer-brand strong { font-size: 15px; }
.footer-brand span { color: var(--muted-2); font-size: 10px; }
.footer-grid > p { margin: 0; color: #7f899d; font-size: 11px; line-height: 1.8; }
.footer-links { display: flex; gap: 20px; color: #a4aec0; font-size: 11px; }
.footer-links a:hover { color: var(--orange-2); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); color: #5e687d; font-size: 10px; }

.image-dialog { max-width: none; max-height: none; width: auto; height: min(88vh, 820px); padding: 0; overflow: visible; border: 0; border-radius: 27px; background: transparent; box-shadow: 0 30px 100px rgba(0,0,0,.6); }
.image-dialog::backdrop { background: rgba(3,6,13,.86); backdrop-filter: blur(10px); }
.image-dialog img { width: auto; height: 100%; max-width: min(90vw, 500px); object-fit: contain; border: 5px solid #26344f; border-radius: 27px; background: #11182a; }
.dialog-close { position: absolute; z-index: 3; top: -15px; right: -15px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: #121a2c; color: #fff; font-size: 24px; cursor: pointer; }
.toast { position: fixed; z-index: 300; left: 50%; bottom: 26px; padding: 10px 16px; border: 1px solid var(--line-strong); border-radius: 999px; background: #151e31; color: #fff; font-size: 12px; opacity: 0; pointer-events: none; transform: translate(-50%, 18px); transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.simple-page { min-height: 100vh; padding: 130px 0 70px; background: #0c1324; }
.simple-card { max-width: 820px; margin: 0 auto; padding: 48px; border: 1px solid var(--line); border-radius: 24px; background: #111a2e; }
.simple-card h1 { font-size: 42px; }
.simple-card h2 { margin-top: 35px; font-size: 20px; }
.simple-card p, .simple-card li { color: var(--muted); line-height: 1.85; }
.simple-card a { color: var(--orange-2); }

@media (max-width: 1060px) {
  :root { --shell: min(100% - 40px, 940px); }
  .nav { display: none; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-copy { padding-bottom: 10px; }
  .hero-visual { min-height: 570px; max-width: 620px; width: 100%; margin: 0 auto; }
  .phone-front { right: 50%; transform: translateX(50%) rotate(2deg); }
  .phone-mid { right: 65px; }
  .phone-back { left: 60px; }
  .hero-visual:hover .phone-front { transform: translate(50%, -8px) rotate(1deg); }
  .trust-ribbon { grid-template-columns: repeat(3, 1fr); border-radius: 20px 20px 0 0; }
  .trust-ribbon div:nth-child(3) { border-right: 0; }
  .trust-ribbon div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .split-heading { gap: 55px; }
  .feature-layout { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-row: span 1; }
  .feature-wide { grid-column: span 2; }
  .verify-grid, .faq-grid { grid-template-columns: 1fr; gap: 46px; }
  .verify-copy, .faq-intro { position: static; }
  .feedback-grid { grid-template-columns: 1fr 1fr; }
  .feedback-warning { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > p { order: 3; grid-column: span 2; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 30px); }
  .section { padding: 78px 0; }
  .header-inner { height: 66px; }
  .brand img { width: 39px; height: 39px; }
  .brand small { display: none; }
  .header-download { padding: 10px 12px; font-size: 12px; }
  .header-download svg { display: none; }
  .hero { padding-top: 110px; }
  .eyebrow { margin-bottom: 22px; font-size: 10px; letter-spacing: .09em; }
  .hero-brand-row { align-items: flex-start; gap: 16px; }
  .hero-icon { width: 75px; height: 75px; border-radius: 21px; }
  .version-kicker { font-size: 9px; }
  h1 { font-size: clamp(40px, 12.3vw, 55px); }
  .hero-lede { margin-top: 24px; font-size: 15px; line-height: 1.8; }
  .hero-actions { flex-direction: column; }
  .button-primary { width: 100%; }
  .button-secondary { width: 100%; min-height: 56px; }
  .hero-notes { gap: 12px 16px; }
  .hero-visual { min-height: 455px; margin-top: 20px; }
  .visual-label { display: none; }
  .phone { border-width: 4px; border-radius: 22px; }
  .phone-front { top: 22px; width: 208px; height: 371px; }
  .phone-mid { top: 78px; right: -28px; width: 171px; height: 305px; }
  .phone-back { top: 94px; left: -30px; width: 164px; height: 293px; }
  .orbit-badge { right: 3px; bottom: 4px; transform: scale(.86); transform-origin: right bottom; }
  .trust-ribbon { grid-template-columns: 1fr 1fr; border-radius: 18px 18px 0 0; }
  .trust-ribbon div { padding: 17px; }
  .trust-ribbon div:nth-child(2) { border-right: 0; }
  .trust-ribbon div:nth-child(3) { border-right: 1px solid var(--line); }
  .trust-ribbon div:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .trust-ribbon div:last-child { grid-column: span 2; }
  .split-heading { grid-template-columns: 1fr; gap: 32px; }
  .split-heading h2, .section-heading-row h2, .verify-copy h2, .faq-intro h2 { font-size: 36px; }
  .section-copy { padding-left: 22px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 23px; margin-bottom: 35px; }
  .feature-layout { grid-template-columns: 1fr; border-radius: 22px; }
  .feature, .feature-large { min-height: 250px; padding: 28px; }
  .feature-wide { grid-column: auto; grid-template-columns: 1fr 110px; }
  .screenshot-heading { grid-template-columns: 1fr auto; align-items: end; }
  .screenshot-heading > p { display: none; }
  .rail-controls button { width: 42px; height: 42px; }
  .screenshot-rail-wrap { padding-left: 15px; }
  .shot-card { flex-basis: 220px; }
  .shot-tall { flex-basis: 240px; }
  .verify-grid { gap: 34px; }
  .file-facts > div { grid-template-columns: 1fr; gap: 8px; padding: 18px; }
  .file-facts .fact-wide dd { grid-template-columns: 1fr auto; }
  .verify-panel-foot { flex-direction: column; gap: 7px; padding: 16px 18px; }
  .feedback-grid { grid-template-columns: 1fr; }
  .feedback-grid article, .feedback-warning { min-height: 260px; grid-column: auto; }
  .faq-grid { gap: 38px; }
  .faq-list summary { font-size: 15px; }
  .faq-list details p { margin-right: 10px; }
  .download-cta { padding: 67px 0; }
  .download-cta::before { right: -30px; bottom: -40px; font-size: 110px; }
  .cta-grid { grid-template-columns: 1fr; gap: 38px; }
  .cta-action { justify-content: flex-start; }
  .cta-action img { width: 72px; height: 72px; border-radius: 20px; }
  .button-dark { min-width: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > p { order: initial; grid-column: auto; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { gap: 15px; flex-direction: column; }
  .image-dialog { height: min(84vh, 730px); }
  .dialog-close { top: -12px; right: -8px; }
  .simple-card { padding: 28px 22px; }
  .simple-card h1 { font-size: 35px; }
}

@media (max-width: 400px) {
  .brand strong { font-size: 14px; }
  .hero-brand-row { gap: 13px; }
  .hero-icon { width: 67px; height: 67px; }
  .hero-notes { font-size: 10px; }
  .phone-front { width: 194px; height: 346px; }
  .hero-visual { min-height: 423px; }
  .trust-ribbon strong { font-size: 14px; }
  .cta-action img { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .phone, .button, .shot-card img { transform: none !important; }
}

@media print {
  .site-header, .hero-visual, .rail-controls, .download-cta, .site-footer, .image-dialog, .toast { display: none !important; }
  body, .hero, .section { background: #fff !important; color: #111 !important; }
  .hero { min-height: auto; padding-top: 20px; }
  .hero-copy { padding-bottom: 20px; }
  .trust-ribbon, .verify-panel { border-color: #bbb; background: #fff; box-shadow: none; }
}

/* Simplified conversion sections */
.app-info-section { background: #0b1120; }
.app-info-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 1.25fr;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #111a2e;
  box-shadow: var(--shadow);
}
.app-info-card > div {
  min-width: 0;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
}
.app-info-card span,
.app-info-card strong { display: block; }
.app-info-card > div span { margin-bottom: 9px; color: var(--muted-2); font-size: 11px; }
.app-info-card > div strong { overflow: hidden; color: #fff; font-size: 17px; text-overflow: ellipsis; white-space: nowrap; }
.app-info-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 25px;
  background: var(--orange);
  color: #1b1008;
  font-size: 15px;
  font-weight: 900;
  transition: background .2s ease;
}
.app-info-card > a:hover { background: var(--orange-2); }
.app-info-card > a span { font-size: 22px; }

.review-section { background: #f3f0e9; color: #15171c; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-grid article {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(18,21,27,.13);
  border-radius: 22px;
  background: #fbf9f4;
}
.review-grid article:nth-child(2) { background: #171a20; color: #fff; }
.review-mark {
  height: 60px;
  color: var(--orange);
  font: 78px/1 Georgia, serif;
}
.review-grid p { margin: 12px 0 30px; font-size: 16px; line-height: 1.85; }
.review-grid article:nth-child(2) p { color: #e3e4e7; }
.review-grid article > span { position: absolute; left: 28px; bottom: 25px; color: #8b8a82; font-size: 11px; }
.review-grid article:nth-child(2) > span { color: #90949b; }

@media (max-width: 1000px) {
  .app-info-card { grid-template-columns: repeat(2, 1fr); }
  .app-info-card > div:nth-child(2) { border-right: 0; }
  .app-info-card > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .app-info-card > a { grid-column: span 2; }
}

@media (max-width: 720px) {
  .app-info-card { grid-template-columns: 1fr 1fr; }
  .app-info-card > div { padding: 19px 17px; }
  .app-info-card > div strong { font-size: 14px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid article { min-height: 220px; }
}

/* Browser review fixes: equal screenshots, equal feature cards, expanded reviews */
.screenshot-rail { align-items: flex-start; }
.shot-card,
.shot-card.shot-tall {
  flex: 0 0 260px;
  width: 260px;
}
.shot-card button {
  width: 100%;
  aspect-ratio: 460 / 820;
  background: #111728;
}
.shot-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 460 / 820;
  object-fit: contain;
}

.feature-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, 280px);
  grid-auto-rows: 280px;
}
.feature,
.feature.feature-large,
.feature.feature-wide {
  grid-column: auto;
  grid-row: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 30px;
}
.feature .feature-icon { margin-bottom: 25px; }
.feature .feature-tags { margin-top: auto; padding-top: 18px; }
.feature.feature-wide > div:first-child { display: flex; flex-direction: column; height: 100%; }
.feature.feature-wide p { max-width: 62%; }
.feature .schedule-lines {
  position: absolute;
  right: 28px;
  bottom: 27px;
  width: 115px;
  height: 95px;
}

.review-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 5%, rgba(255,122,26,.12), transparent 25%),
    #f3f0e9;
}
.review-heading { margin-bottom: 42px; }
.review-showcase {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.review-intro-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 34px;
  border-radius: 26px;
  background: #111725;
  color: #fff;
}
.review-intro-card::before {
  content: "“";
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -65px;
  color: rgba(255,122,26,.17);
  font: 280px/1 Georgia, serif;
}
.review-intro-label {
  display: block;
  margin-bottom: 50px;
  color: var(--orange-2);
  font: 10px Consolas, monospace;
  letter-spacing: .16em;
}
.review-intro-card > strong {
  display: block;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -.055em;
}
.review-intro-card > p {
  margin: 22px 0 28px;
  color: #aab4c7;
  font-size: 13px;
  line-height: 1.8;
}
.review-topic-list { display: flex; flex-wrap: wrap; gap: 8px; }
.review-topic-list span {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #c8cfdb;
  font-size: 10px;
}
.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(18,21,27,.13);
  border-radius: 26px;
  background: rgba(18,21,27,.13);
  gap: 1px;
}
.review-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  min-height: 190px;
  padding: 25px;
  background: #fbf9f4;
}
.review-list article:nth-child(3n+2) { background: #f7f2e9; }
.review-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #111725;
  color: var(--orange-2);
  font-size: 17px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
}
.review-list article > div:last-child { display: flex; flex-direction: column; min-width: 0; }
.review-list p {
  margin: 3px 0 20px;
  color: #2d3036;
  font-size: 14px;
  line-height: 1.8;
}
.review-list footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(18,21,27,.1);
}
.review-list footer strong { color: #3b3d42; font-size: 11px; }
.review-list footer span { color: #99988f; font-size: 10px; }

@media (max-width: 1060px) {
  .feature-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 265px;
  }
  .feature.feature-wide { grid-column: auto; }
  .review-showcase { grid-template-columns: 1fr; }
  .review-intro-card { min-height: 330px; }
  .review-intro-label { margin-bottom: 28px; }
}

@media (max-width: 720px) {
  .shot-card,
  .shot-card.shot-tall {
    flex-basis: 224px;
    width: 224px;
  }
  .feature-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .feature,
  .feature.feature-large,
  .feature.feature-wide {
    min-height: 245px;
  }
  .review-showcase { gap: 14px; }
  .review-intro-card { min-height: 310px; padding: 28px; }
  .review-intro-card > strong { font-size: 34px; }
  .review-list { grid-template-columns: 1fr; }
  .review-list article { min-height: 170px; padding: 21px; }
}
