:root {
  --cy-coral: #ff9265;
  --cy-coral-dark: #f37546;
  --cy-coral-soft: #ffe4d7;
  --cy-ink: #202024;
  --cy-muted: #766f6b;
  --cy-paper: #fff9f5;
  --cy-white: #ffffff;
  --cy-blue: #4169e1;
  --cy-blue-soft: #e7edff;
  --cy-yellow: #ffd967;
  --cy-border: #eadfd8;
  --cy-shadow: 0 24px 70px rgba(93, 55, 36, 0.12);
  --cy-radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--cy-ink);
  background: var(--cy-paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .32;
  pointer-events: none;
  background-image: radial-gradient(rgba(56, 40, 32, .16) .7px, transparent .7px);
  background-size: 15px 15px;
  mask-image: linear-gradient(to bottom, #000, transparent 42%);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
.cy-shell { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.cy-kicker { display: block; margin-bottom: 18px; color: var(--cy-coral-dark); font-size: 12px; font-weight: 850; letter-spacing: .16em; }

.cy-header { position: fixed; inset: 0 0 auto; z-index: 40; border-bottom: 1px solid transparent; transition: .25s ease; }
.cy-header.is-scrolled { background: rgba(255, 249, 245, .88); border-color: rgba(234, 223, 216, .8); backdrop-filter: blur(16px); }
.cy-nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cy-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.02em; }
.cy-brand img { width: 36px; height: 36px; border-radius: 11px; }
.cy-brand-button { margin: 0; padding: 0; border: 0; color: inherit; background: transparent; font: inherit; cursor: pointer; }
.cy-links { display: flex; gap: 34px; margin-left: auto; color: #5f5753; font-size: 14px; font-weight: 700; }
.cy-links a { position: relative; padding: 12px 0; }
.cy-links a::after { content: ""; position: absolute; inset: auto 50% 5px; height: 2px; background: var(--cy-coral); transition: .2s ease; }
.cy-links a:hover::after, .cy-links a:focus-visible::after { inset-inline: 0; }
.cy-nav-cta { padding: 11px 18px; border-radius: 999px; color: var(--cy-white); background: var(--cy-ink); font-size: 14px; font-weight: 800; }

.cy-hero { min-height: 640px; padding: 116px 0 54px; display: grid; align-items: center; background: linear-gradient(90deg, rgba(255,146,101,.08) 1px, transparent 1px), linear-gradient(rgba(255,146,101,.08) 1px, transparent 1px), linear-gradient(135deg, #fffaf7, #fff4ed); background-size: 34px 34px, 34px 34px, auto; }
.cy-hero-grid { display: grid; grid-template-columns: .96fr 1.04fr; align-items: center; gap: 62px; }
.cy-eyebrow { display: flex; align-items: center; gap: 10px; color: #5f5753; font-size: 14px; font-weight: 750; }
.cy-eyebrow span { width: 28px; height: 10px; border-radius: 2px 12px 12px 2px; background: var(--cy-coral); }
.cy-hero h1 { margin: 22px 0 7px; font-size: clamp(64px, 5.8vw, 84px); line-height: .98; letter-spacing: -.075em; }
.cy-hero-copy > .cy-hero-slogan { margin: 0 0 20px; color: var(--cy-ink); font-size: clamp(28px, 2.6vw, 38px); font-weight: 900; line-height: 1.1; letter-spacing: -.055em; }
.cy-hero-copy > p:not(.cy-hero-slogan) { max-width: 540px; margin: 0; color: var(--cy-muted); font-size: 16px; line-height: 1.82; }
.cy-hero-query { max-width: 500px; min-height: 64px; margin-top: 24px; padding: 10px 12px 10px 16px; border: 2px solid var(--cy-ink); display: grid; grid-template-columns: 32px 1fr 42px; align-items: center; gap: 12px; background: #fff; box-shadow: 6px 6px 0 var(--cy-coral); transition: transform .2s ease, box-shadow .2s ease; }
.cy-hero-query:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--cy-coral); }
.cy-hero-query > span:first-child { font-size: 27px; font-weight: 900; }
.cy-hero-query > span:nth-child(2) { display: grid; gap: 3px; }
.cy-hero-query b { font-size: 14px; }
.cy-hero-query small { color: var(--cy-muted); font-size: 10px; }
.cy-hero-query i { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--cy-ink); font-style: normal; font-size: 20px; }
.cy-hero-screen-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 19px; border-bottom: 1px solid var(--cy-ink); font-size: 12px; font-weight: 850; }
.cy-hero-screen-link span { color: var(--cy-coral-dark); font-size: 17px; }
.cy-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0 0; padding: 17px 0 0; border-top: 1px solid var(--cy-border); list-style: none; }
.cy-proof li { display: grid; grid-template-columns: auto 1fr; gap: 2px 8px; }
.cy-proof i { grid-row: 1 / 3; color: var(--cy-coral-dark); font-size: 10px; font-weight: 900; font-style: normal; }
.cy-proof b { font-size: 14px; }
.cy-proof span { color: var(--cy-muted); font-size: 12px; }

.cy-hero-desk { overflow: hidden; border: 2px solid var(--cy-ink); background: #fff; box-shadow: 12px 12px 0 var(--cy-ink); }
.cy-desk-head { height: 42px; padding: 0 15px; border-bottom: 2px solid var(--cy-ink); display: flex; align-items: center; justify-content: space-between; background: var(--cy-ink); color: #fff; font-size: 10px; letter-spacing: .1em; }
.cy-desk-head span { display: flex; align-items: center; gap: 8px; font-weight: 850; }
.cy-desk-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--cy-coral); box-shadow: 0 0 0 4px rgba(255,146,101,.18); }
.cy-desk-head b { color: var(--cy-yellow); font-size: 10px; }
.cy-desk-body { height: 368px; padding: 14px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 12px; background: #f6f1ed; }
.cy-desk-screen { position: relative; overflow: hidden; border: 2px solid var(--cy-ink); background: #fff; }
.cy-desk-screen img { width: 100%; height: auto; object-fit: contain; }
.cy-desk-screen figcaption { position: absolute; inset: auto 0 0; padding: 22px 12px 11px; display: grid; gap: 2px; color: #fff; background: linear-gradient(transparent, rgba(20,20,23,.92)); }
.cy-desk-screen figcaption span { font-size: 8px; letter-spacing: .12em; }
.cy-desk-screen figcaption b { font-size: 14px; }
.cy-desk-lanes { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.cy-desk-lane { position: relative; overflow: hidden; padding: 18px; border: 2px solid var(--cy-ink); display: flex; flex-direction: column; justify-content: flex-end; }
.cy-desk-lane > span { position: absolute; top: 15px; left: 18px; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.cy-desk-lane strong { font-size: 29px; letter-spacing: -.06em; }
.cy-desk-lane p { margin: 6px 0 0; font-size: 11px; line-height: 1.55; }
.cy-desk-lane i { position: absolute; right: 14px; top: 14px; width: 38px; height: 38px; border: 2px solid var(--cy-ink); display: grid; place-items: center; background: rgba(255,255,255,.44); font-size: 20px; font-style: normal; }
.cy-desk-lane-coral { background: var(--cy-coral); }
.cy-desk-lane-blue { background: #aebdff; }
.cy-desk-topics { height: 38px; padding: 0 13px; border-top: 2px solid var(--cy-ink); display: flex; align-items: center; gap: 14px; overflow: hidden; white-space: nowrap; font-size: 9px; font-weight: 800; }
.cy-desk-topics b { padding: 4px 7px; color: #fff; background: var(--cy-coral-dark); font-size: 8px; }
.cy-desk-topics span { color: var(--cy-muted); }

.cy-section-head { margin-bottom: 52px; }
.cy-section-head h2 { margin: 0; font-size: clamp(38px, 4.4vw, 64px); line-height: 1.12; letter-spacing: -.055em; }
.cy-section-head-wide { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 70px; }
.cy-section-head-wide p { margin: 0 0 8px; color: var(--cy-muted); line-height: 1.8; }

.cy-route { padding: 118px 0; background: var(--cy-white); }
.cy-route-board { min-height: 500px; padding: 28px; border: 1px solid var(--cy-border); border-radius: 36px; display: grid; grid-template-columns: 1.1fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px; background: #fffaf7; box-shadow: inset 0 0 0 8px #fff; }
.cy-route-start { position: relative; overflow: hidden; grid-row: 1 / 3; padding: 44px; border-radius: 26px; color: #fff; background: var(--cy-ink); display: flex; flex-direction: column; justify-content: flex-end; }
.cy-route-start::before { content: "CY"; position: absolute; top: 4px; right: -10px; color: rgba(255,255,255,.06); font-size: 170px; font-weight: 950; letter-spacing: -.12em; }
.cy-route-start span { color: #d8d3d0; font-size: 16px; }
.cy-route-start strong { font-size: 54px; letter-spacing: -.06em; }
.cy-route-start i { width: 100%; height: 100%; position: absolute; inset: 0; background: radial-gradient(circle at 15% 14%, var(--cy-coral) 0 5px, transparent 6px), radial-gradient(circle at 65% 32%, var(--cy-blue) 0 7px, transparent 8px), radial-gradient(circle at 80% 75%, var(--cy-yellow) 0 8px, transparent 9px); }
.cy-route-item { position: relative; overflow: hidden; min-height: 180px; padding: 26px; border: 1px solid var(--cy-border); border-radius: 24px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .22s ease, box-shadow .22s ease; }
.cy-route-item:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(74,48,34,.09); }
.cy-route-item > span { position: absolute; top: 18px; right: 22px; font-size: 32px; font-weight: 950; opacity: .12; }
.cy-route-item b { font-size: 20px; }
.cy-route-item small { margin-top: 6px; color: rgba(32,32,36,.62); }
.cy-route-game { background: var(--cy-coral-soft); }
.cy-route-tool { background: var(--cy-blue-soft); }
.cy-route-media { background: #fff1b9; }
.cy-route-life { background: #e9f4e9; }
.cy-search-demo { grid-column: 2 / 4; padding: 15px 18px; border: 2px solid var(--cy-ink); border-radius: 18px; display: none; align-items: center; gap: 14px; background: #fff; box-shadow: 5px 5px 0 var(--cy-coral); }
.cy-search-demo > span { font-size: 26px; }
.cy-search-demo div { flex: 1; }
.cy-search-demo b, .cy-search-demo small { display: block; }
.cy-search-demo small { margin-top: 2px; color: var(--cy-muted); }

.cy-detail { padding: 120px 0; background: linear-gradient(155deg, #fff0e8, #fffaf7 55%); }
.cy-detail-grid { display: grid; grid-template-columns: 1fr .78fr; align-items: center; gap: 110px; }
.cy-detail-copy h2 { max-width: 630px; margin: 0; font-size: clamp(40px, 5vw, 66px); line-height: 1.12; letter-spacing: -.06em; }
.cy-detail-copy > p { max-width: 590px; margin: 26px 0 38px; color: var(--cy-muted); font-size: 17px; line-height: 1.9; }
.cy-spec-list { display: grid; gap: 12px; }
.cy-spec-list > div { max-width: 510px; padding: 15px 18px; border-bottom: 1px solid #e5d5cc; display: flex; align-items: center; gap: 18px; }
.cy-spec-list > div > span { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; color: #fff; background: var(--cy-ink); font-size: 11px; font-weight: 900; }
.cy-spec-list p, .cy-spec-list b, .cy-spec-list small { margin: 0; display: block; }
.cy-spec-list small { margin-top: 4px; color: var(--cy-muted); }
.cy-app-window { width: min(100%, 410px); justify-self: center; overflow: hidden; padding: 12px; border: 1px solid var(--cy-border); border-radius: 30px; background: #fff; box-shadow: var(--cy-shadow); transform: rotate(1.5deg); }
.cy-app-window img { width: 100%; height: auto; border-radius: 20px; object-fit: contain; }
.cy-window-bar { height: 42px; padding-inline: 8px; display: flex; align-items: center; gap: 6px; }
.cy-window-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--cy-coral); }
.cy-window-bar span:nth-child(2) { background: var(--cy-yellow); }
.cy-window-bar span:nth-child(3) { background: #8fd190; }
.cy-window-bar b { margin-left: auto; color: var(--cy-muted); font-size: 11px; font-weight: 700; }
.cy-app-window figcaption { padding: 14px 8px 4px; color: var(--cy-muted); font-size: 12px; text-align: center; }

.cy-voices { padding: 120px 0; color: #fff; background: var(--cy-ink); }
.cy-voices-head { max-width: 780px; }
.cy-voices-head .cy-kicker { color: var(--cy-coral); }
.cy-voices-head p { max-width: 600px; margin: 26px 0 0; color: #bbb6b2; font-size: 17px; line-height: 1.8; }
.cy-voices-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: stretch; gap: 48px; }
.cy-feed-card { position: relative; width: min(100%, 410px); justify-self: center; padding: 12px; border-radius: 30px; background: #fff; transform: rotate(-2deg); box-shadow: 0 30px 75px rgba(0,0,0,.35); }
.cy-feed-card img { width: 100%; height: auto; border-radius: 20px; object-fit: contain; }
.cy-feed-label { position: absolute; z-index: 2; top: -18px; left: 24px; padding: 10px 14px; border: 2px solid #fff; border-radius: 999px; color: var(--cy-ink); background: var(--cy-yellow); font-size: 11px; font-weight: 850; box-shadow: 4px 4px 0 #fff; }
.cy-feed-label span { color: #e34242; }
.cy-note-stack { display: grid; gap: 16px; align-content: center; }
.cy-note { position: relative; min-height: 150px; padding: 30px 95px 30px 32px; border-radius: 24px; color: var(--cy-ink); }
.cy-note > span { font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.cy-note h3 { margin: 13px 0 8px; font-size: 23px; letter-spacing: -.03em; }
.cy-note p { margin: 0; color: rgba(32,32,36,.67); font-size: 14px; line-height: 1.7; }
.cy-note i { position: absolute; right: 28px; bottom: 18px; font-size: 62px; font-weight: 950; font-style: normal; opacity: .12; }
.cy-note-coral { background: var(--cy-coral); }
.cy-note-blue { background: #8fa6ff; }
.cy-note-yellow { background: var(--cy-yellow); }

.cy-circles { padding: 130px 0; background: #eef2ff; }
.cy-circles-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 100px; }
.cy-circles-copy h2 { margin: 0; font-size: clamp(44px, 5vw, 70px); line-height: 1.08; letter-spacing: -.065em; }
.cy-circles-copy h2 em { color: var(--cy-blue); font-style: normal; }
.cy-circles-copy > p { max-width: 500px; margin: 26px 0 32px; color: var(--cy-muted); font-size: 17px; line-height: 1.9; }
.cy-topic-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.cy-topic-cloud span { padding: 9px 13px; border: 1px solid #cbd5f4; border-radius: 999px; background: rgba(255,255,255,.58); font-size: 12px; font-weight: 750; }
.cy-topic-cloud span:nth-child(2), .cy-topic-cloud span:nth-child(5) { transform: rotate(-2deg); }
.cy-circle-window { position: relative; width: min(100%, 500px); justify-self: end; padding: 15px; border: 2px solid var(--cy-ink); border-radius: 32px; background: #fff; box-shadow: 12px 12px 0 var(--cy-blue); }
.cy-circle-window img { width: 100%; height: auto; border-radius: 20px; object-fit: contain; }
.cy-circle-window figcaption { padding: 20px 14px 9px; display: grid; gap: 5px; }
.cy-circle-window figcaption span { color: var(--cy-muted); font-size: 13px; }
.cy-circle-pin { position: absolute; z-index: 2; top: 32px; right: -38px; padding: 12px 17px; border: 2px solid var(--cy-ink); border-radius: 10px; background: var(--cy-coral); box-shadow: 4px 4px 0 var(--cy-ink); font-size: 13px; font-weight: 900; transform: rotate(5deg); }

.cy-personal { padding: 120px 0; background: #fff; }
.cy-personal-card { min-height: 650px; padding: 75px 80px 0; border-radius: 40px; display: grid; grid-template-columns: 1fr .8fr; gap: 80px; overflow: hidden; background: #fff0e8; }
.cy-personal-copy h2 { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: 1.09; letter-spacing: -.06em; }
.cy-personal-copy > p { max-width: 560px; margin: 28px 0 32px; color: var(--cy-muted); font-size: 17px; line-height: 1.85; }
.cy-personal-copy ul { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.cy-personal-copy li { display: flex; align-items: center; gap: 10px; font-weight: 750; }
.cy-personal-copy li span { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--cy-coral); font-size: 12px; }
.cy-personal-visual { position: relative; align-self: end; display: flex; justify-content: center; }
.cy-personal-visual figure { width: 320px; max-height: 560px; overflow: hidden; padding: 10px; border: 7px solid var(--cy-ink); border-bottom: 0; border-radius: 34px 34px 0 0; background: #fff; box-shadow: var(--cy-shadow); }
.cy-personal-visual img { width: 100%; height: auto; border-radius: 20px 20px 0 0; object-fit: contain; }
.cy-mini-shelf { position: absolute; z-index: 3; top: 170px; left: -94px; width: 180px; padding: 18px; border-radius: 20px; display: grid; grid-template-columns: 1fr repeat(3, 28px); align-items: center; gap: 4px; background: #fff; box-shadow: 0 18px 45px rgba(85,50,34,.18); }
.cy-mini-shelf b, .cy-mini-shelf span { grid-column: 1 / -1; }
.cy-mini-shelf b { font-size: 14px; }
.cy-mini-shelf span { color: var(--cy-muted); font-size: 11px; }
.cy-mini-shelf i { height: 28px; border-radius: 8px; background: var(--cy-coral-soft); }
.cy-mini-shelf i:nth-last-child(2) { background: var(--cy-blue-soft); }
.cy-mini-shelf i:nth-last-child(1) { background: #fff1b9; }

.cy-screens { padding: 120px 0; background: var(--cy-paper); }
.cy-screen-tabs { margin-bottom: 18px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.cy-screen-tabs button { padding: 17px 12px; border: 1px solid var(--cy-border); border-radius: 15px; color: var(--cy-muted); background: rgba(255,255,255,.55); font-weight: 800; cursor: pointer; }
.cy-screen-tabs button[aria-selected="true"] { color: #fff; border-color: var(--cy-ink); background: var(--cy-ink); }
.cy-screen-stage { min-height: 600px; padding: 52px 8%; border-radius: 34px; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 90px; overflow: hidden; background: var(--cy-coral-soft); transition: background .25s ease; }
.cy-screen-phone { width: 300px; justify-self: center; padding: 9px; border: 7px solid var(--cy-ink); border-radius: 32px; background: #fff; box-shadow: var(--cy-shadow); }
.cy-screen-phone img { width: 100%; height: auto; border-radius: 20px; object-fit: contain; }
.cy-screen-caption span { color: var(--cy-coral-dark); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.cy-screen-caption h3 { margin: 18px 0 12px; font-size: clamp(46px, 6vw, 84px); letter-spacing: -.07em; }
.cy-screen-caption p { max-width: 430px; margin: 0; color: var(--cy-muted); font-size: 17px; line-height: 1.85; }

.cy-download { padding: 20px 0 120px; background: var(--cy-paper); }
.cy-download-card { position: relative; min-height: 390px; padding: 70px; border-radius: 38px; display: grid; grid-template-columns: 120px 1fr 280px; align-items: center; gap: 42px; overflow: hidden; color: #fff; background: var(--cy-ink); }
.cy-download-card::after { content: ""; position: absolute; width: 380px; height: 380px; right: -160px; top: -170px; border: 55px solid rgba(255,146,101,.2); border-radius: 50%; }
.cy-download-mark { width: 110px; height: 110px; border-radius: 28px; display: grid; place-items: center; background: var(--cy-coral); transform: rotate(-5deg); }
.cy-download-mark img { width: 76px; height: 76px; border-radius: 18px; }
.cy-download-card .cy-kicker { color: var(--cy-coral); }
.cy-download-card h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.12; letter-spacing: -.055em; }
.cy-download-card p { margin: 22px 0 0; color: #bbb6b2; line-height: 1.7; }
.cy-download-action { position: relative; z-index: 1; display: grid; gap: 11px; }
.cy-platform { justify-self: start; padding: 5px 10px; border-radius: 999px; color: var(--cy-ink); background: var(--cy-yellow); font-size: 11px; font-weight: 900; }
.cy-download-action > a { height: 54px; border: 1px solid var(--cy-coral); border-radius: 15px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--cy-coral); box-shadow: 0 12px 28px rgba(255,146,101,.2); font-weight: 850; transition: transform .2s ease, background .2s ease; }
.cy-download-action > a:hover { transform: translateY(-2px); background: var(--cy-coral-dark); }
.cy-download-action small { color: #918d8a; font-size: 11px; line-height: 1.5; }

.cy-footer { padding: 28px 0 100px; color: var(--cy-muted); background: var(--cy-paper); font-size: 12px; }
.cy-footer .cy-shell { padding-top: 24px; border-top: 1px solid var(--cy-border); display: flex; align-items: center; gap: 30px; }
.cy-footer .cy-brand { color: var(--cy-ink); font-size: 14px; }
.cy-footer p { margin: 0 auto 0 0; }
.cy-mobile-bar { display: none; }

:focus-visible { outline: 3px solid var(--cy-blue); outline-offset: 4px; }
.cy-reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.cy-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .cy-hero-grid, .cy-detail-grid, .cy-circles-grid { gap: 56px; }
  .cy-hero-grid { gap: 34px; }
  .cy-hero h1 { font-size: 68px; }
  .cy-desk-body { height: 340px; }
  .cy-desk-lane { padding: 14px; }
  .cy-desk-lane strong { font-size: 24px; }
  .cy-route-board { grid-template-columns: .9fr 1fr 1fr; }
  .cy-personal-card { padding-inline: 55px; gap: 55px; }
  .cy-download-card { grid-template-columns: 90px 1fr 250px; padding: 55px 45px; gap: 30px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 70px; }
  body { padding-bottom: 72px; }
  .cy-shell { width: min(100% - 32px, 620px); }
  .cy-header { position: absolute; }
  .cy-header.is-scrolled { background: transparent; border-color: transparent; backdrop-filter: none; }
  .cy-nav { height: 66px; }
  .cy-links, .cy-nav-cta { display: none; }
  .cy-brand img { width: 32px; height: 32px; }
  .cy-hero { min-height: auto; padding: 98px 0 58px; }
  .cy-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .cy-hero h1 { margin-top: 19px; font-size: 62px; }
  .cy-hero-copy > .cy-hero-slogan { font-size: 30px; }
  .cy-hero-copy > p:not(.cy-hero-slogan) { font-size: 16px; line-height: 1.8; }
  .cy-proof { margin-top: 28px; }
  .cy-hero-desk { box-shadow: 7px 7px 0 var(--cy-ink); }
  .cy-desk-body { height: 310px; grid-template-columns: .88fr 1.12fr; }
  .cy-section-head { margin-bottom: 34px; }
  .cy-section-head h2 { font-size: 40px; }
  .cy-section-head-wide { grid-template-columns: 1fr; gap: 18px; }
  .cy-section-head-wide p { font-size: 14px; }
  .cy-route, .cy-detail, .cy-voices, .cy-circles, .cy-personal, .cy-screens { padding: 78px 0; }
  .cy-route-board { min-height: 0; padding: 14px; grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 10px; border-radius: 26px; }
  .cy-route-start { grid-row: auto; grid-column: 1 / 3; min-height: 180px; padding: 28px; }
  .cy-route-start strong { font-size: 44px; }
  .cy-route-item { min-height: 145px; padding: 19px; border-radius: 18px; }
  .cy-route-item b { font-size: 17px; }
  .cy-route-item small { font-size: 11px; line-height: 1.45; }
  .cy-detail-grid { grid-template-columns: 1fr; gap: 52px; }
  .cy-detail-copy h2, .cy-circles-copy h2, .cy-personal-copy h2 { font-size: 42px; }
  .cy-detail-copy > p, .cy-circles-copy > p, .cy-personal-copy > p { font-size: 15px; }
  .cy-app-window { width: min(100%, 360px); }
  .cy-voices-layout { grid-template-columns: 1fr; gap: 55px; }
  .cy-feed-card { width: min(100%, 350px); }
  .cy-note { min-height: 142px; padding: 25px 70px 25px 24px; }
  .cy-note h3 { font-size: 20px; }
  .cy-circles-grid { grid-template-columns: 1fr; gap: 48px; }
  .cy-circle-window { width: calc(100% - 9px); justify-self: start; }
  .cy-circle-pin { right: -9px; }
  .cy-personal-card { width: 100%; padding: 55px 22px 0; border-radius: 0; grid-template-columns: 1fr; gap: 42px; }
  .cy-personal-visual figure { width: min(82vw, 310px); }
  .cy-mini-shelf { left: -15px; top: 120px; }
  .cy-screen-tabs { grid-template-columns: 1fr 1fr; }
  .cy-screen-tabs button { padding: 13px 8px; font-size: 12px; }
  .cy-screen-stage { min-height: 0; padding: 36px 24px; grid-template-columns: 1fr; gap: 32px; }
  .cy-screen-phone { width: min(75vw, 290px); }
  .cy-screen-caption { text-align: center; }
  .cy-screen-caption h3 { margin: 10px 0; font-size: 46px; }
  .cy-screen-caption p { font-size: 14px; }
  .cy-download { padding-bottom: 70px; }
  .cy-download-card { width: calc(100% - 32px); min-height: 0; padding: 44px 28px; grid-template-columns: 1fr; gap: 28px; }
  .cy-download-mark { width: 76px; height: 76px; border-radius: 20px; }
  .cy-download-mark img { width: 54px; height: 54px; }
  .cy-download-card h2 { font-size: 39px; }
  .cy-footer { padding-bottom: 28px; }
  .cy-footer .cy-shell { align-items: flex-start; flex-wrap: wrap; gap: 14px 20px; }
  .cy-footer p { width: calc(100% - 110px); }
  .cy-mobile-bar { position: fixed; z-index: 60; inset: auto 0 0; height: 72px; padding: 10px 16px; border-top: 1px solid var(--cy-border); display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); }
  .cy-mobile-bar > div { display: flex; align-items: center; gap: 9px; }
  .cy-mobile-bar img { width: 40px; height: 40px; border-radius: 12px; }
  .cy-mobile-bar span { display: grid; }
  .cy-mobile-bar b { font-size: 13px; }
  .cy-mobile-bar small { color: var(--cy-muted); font-size: 10px; }
  .cy-mobile-bar > a { padding: 11px 18px; border-radius: 999px; color: #fff; background: var(--cy-coral); font-size: 13px; font-weight: 850; }
}

@media (max-width: 390px) {
  .cy-hero h1 { font-size: 58px; }
  .cy-hero-copy > .cy-hero-slogan { font-size: 28px; }
  .cy-hero-query { grid-template-columns: 28px 1fr 38px; gap: 8px; padding-left: 12px; }
  .cy-hero-query i { width: 38px; height: 38px; }
  .cy-proof b { font-size: 12px; }
  .cy-proof span { font-size: 10px; }
  .cy-desk-body { height: 290px; padding: 9px; gap: 8px; }
  .cy-desk-lanes { gap: 8px; }
  .cy-desk-lane { padding: 11px; }
  .cy-desk-lane > span { top: 10px; left: 11px; }
  .cy-desk-lane strong { font-size: 21px; }
  .cy-desk-lane p { font-size: 9px; }
  .cy-desk-lane i { width: 30px; height: 30px; right: 9px; top: 9px; font-size: 16px; }
  .cy-note h3 { font-size: 18px; }
}

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