:root {
  --navy: #0a1744;
  --navy-2: #111f58;
  --ink: #10162b;
  --blue: #20448a;
  --cyan: #32d7c4;
  --lime: #d8f238;
  --coral: #ff786a;
  --paper: #f4f6f2;
  --white: #ffffff;
  --muted: #667085;
  --line: #dfe3e8;
  --soft-blue: #eaf0ff;
  --shadow: 0 30px 90px rgba(10, 23, 68, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", Inter, system-ui, sans-serif;
  line-height: 1.6;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 9999; padding: 12px 18px; background: white; border: 2px solid var(--navy); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(223,227,232,.75); backdrop-filter: blur(18px); }
.header-inner { height: 82px; display: flex; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; line-height: 1; }
.brand-image { display: block; width: 56px; height: 56px; object-fit: cover; border-radius: 11px; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; font-size: 13px; font-weight: 750; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--blue); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta { display: inline-flex; align-items: center; gap: 24px; color: white; background: var(--navy); padding: 12px 18px; border-radius: 3px; font-size: 12px; font-weight: 800; }
.mobile-menu { display: none; margin-left: auto; }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #f8faf6 0%, #edf3ff 65%, #e8fbf7 100%); }
.hero::before { content: ""; position: absolute; width: 680px; height: 680px; border-radius: 50%; top: -380px; right: -100px; background: rgba(216,242,56,.28); filter: blur(4px); }
.hero-grid { min-height: 760px; display: grid; grid-template-columns: 1.03fr .97fr; gap: 60px; align-items: center; padding-block: 88px 76px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 12px; color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.eyebrow i { width: 38px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--blue); }
.hero h1 { margin: 0; font-size: clamp(48px, 5vw, 74px); line-height: 1.14; letter-spacing: -.065em; font-weight: 880; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-description { max-width: 580px; margin: 30px 0 0; color: #4b5670; font-size: 18px; line-height: 1.78; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; }
.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 32px; padding: 0 25px; border-radius: 3px; font-size: 13px; font-weight: 850; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--navy); box-shadow: 0 18px 36px rgba(10,23,68,.2); }
.button-primary:hover { background: var(--blue); }
.button-link { display: inline-flex; gap: 13px; align-items: center; font-size: 13px; font-weight: 800; border-bottom: 1px solid var(--ink); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 54px; }
.hero-tags span { padding: 7px 12px; border: 1px solid #cdd7e5; border-radius: 999px; color: #59657b; background: rgba(255,255,255,.6); font-size: 10px; font-weight: 750; }

.hero-product { position: relative; height: 590px; }
.ambient-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(36,79,216,.18); }
.ring-one { width: 490px; height: 490px; top: 48px; left: 35px; }
.ring-two { width: 370px; height: 370px; top: 110px; left: 96px; border-color: rgba(50,215,196,.3); }
.trainer-panel { position: absolute; z-index: 2; left: -15px; top: 95px; width: 390px; height: 370px; overflow: hidden; padding: 24px; border: 1px solid rgba(255,255,255,.9); border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); backdrop-filter: blur(15px); }
.panel-top { display: flex; justify-content: space-between; align-items: center; }
.mini-brand { font-size: 12px; font-weight: 950; color: var(--blue); letter-spacing: -.05em; }
.live-label { display: inline-flex; align-items: center; gap: 6px; color: #68738a; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.live-label i { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,120,106,.14); }
.panel-heading { display: flex; align-items: flex-end; justify-content: space-between; margin: 26px 0 15px; }
.panel-heading small, .panel-heading strong { display: block; }
.panel-heading small { margin-bottom: 4px; color: #99a2b3; font-size: 8px; letter-spacing: .16em; }
.panel-heading strong { font-size: 18px; letter-spacing: -.03em; }
.panel-heading > span { color: var(--blue); font-size: 12px; font-weight: 850; }
.member-row { display: grid; grid-template-columns: 39px 1fr auto; gap: 11px; align-items: center; min-height: 67px; padding: 10px; border-top: 1px solid #edf0f4; }
.member-row.active { background: #fff6f4; border: 1px solid #ffd9d3; border-radius: 10px; }
.avatar { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 11px; color: white; font-size: 11px; font-weight: 850; }
.avatar-a { background: #fe8f7e; }.avatar-b { background: #6278d8; }.avatar-c { background: #45bba9; }
.member-row strong, .member-row small { display: block; }
.member-row strong { font-size: 10px; }.member-row small { margin-top: 3px; color: #929bad; font-size: 8px; }
.member-row > b { color: var(--blue); font-size: 8px; }.member-row.active > b { color: #e35749; }.member-row.done > b { color: #2c9d8b; }
.phone-shell { position: absolute; z-index: 4; right: -2px; top: 18px; width: 270px; height: 548px; padding: 9px; border-radius: 39px; background: var(--navy); box-shadow: 0 35px 80px rgba(10,23,68,.32); transform: rotate(1.5deg); }
.phone-speaker { position: absolute; z-index: 3; top: 9px; left: 50%; width: 82px; height: 20px; border-radius: 0 0 13px 13px; background: var(--navy); transform: translateX(-50%); }
.phone-screen { height: 100%; overflow: hidden; padding: 18px 15px; border-radius: 31px; background: #f7f8f4; }
.phone-screen-real { padding: 0; background: white; }
.phone-screen-real img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.phone-header { display: flex; justify-content: space-between; align-items: center; font-size: 8px; }
.phone-header b { color: var(--blue); font-size: 12px; font-weight: 950; }.phone-header i { font-style: normal; letter-spacing: 1px; }
.greeting { margin: 30px 4px 18px; }.greeting small, .greeting strong { display: block; }.greeting small { color: #7b8495; font-size: 8px; }.greeting strong { margin-top: 4px; font-size: 14px; letter-spacing: -.03em; }
.routine-card { padding: 16px; color: white; border-radius: 17px; background: linear-gradient(145deg, #223fbb, #142566); }
.routine-progress { display: flex; align-items: flex-start; justify-content: space-between; }.routine-progress > span { color: #9bb4ff; font-size: 7px; letter-spacing: .12em; }.routine-progress strong { font-size: 28px; line-height: 1; }.routine-progress strong small { font-size: 11px; }
.routine-card p { margin: -5px 0 15px; font-size: 11px; font-weight: 800; }.routine-card > small { color: #b9c5e9; font-size: 7px; }
.progress-bar { height: 4px; overflow: hidden; margin-bottom: 7px; border-radius: 9px; background: rgba(255,255,255,.18); }.progress-bar i { display: block; width: 68%; height: 100%; background: var(--lime); }
.exercise-item { display: grid; grid-template-columns: 26px 1fr auto; gap: 8px; align-items: center; min-height: 58px; padding: 9px 5px; border-bottom: 1px solid #e5e8e4; }
.exercise-item > span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; color: var(--blue); background: var(--soft-blue); font-size: 7px; font-weight: 850; }
.exercise-item b, .exercise-item small { display: block; }.exercise-item b { font-size: 9px; }.exercise-item small { color: #8a93a3; font-size: 7px; }.exercise-item i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: white; box-shadow: 0 3px 9px rgba(10,23,68,.1); font-size: 6px; font-style: normal; }
.phone-screen button { width: 100%; height: 42px; margin-top: 17px; color: var(--navy); border: 0; border-radius: 11px; background: var(--lime); font-size: 9px; font-weight: 900; }
.floating-note { position: absolute; z-index: 6; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.9); background: rgba(255,255,255,.95); box-shadow: 0 14px 35px rgba(10,23,68,.15); backdrop-filter: blur(10px); }
.note-one { left: 20px; bottom: 45px; }.note-one > span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: var(--lime); font-size: 10px; font-weight: 900; }.note-one b, .note-one small { display: block; }.note-one b { font-size: 9px; }.note-one small { color: #8b94a4; font-size: 7px; }
.note-two { right: -35px; bottom: 92px; display: block; }.note-two small, .note-two strong { display: block; }.note-two small { color: #8a93a3; font-size: 7px; }.note-two strong { color: var(--blue); font-size: 23px; }.note-two strong span { color: #8a93a3; font-size: 8px; }

.proof-strip { color: white; background: var(--navy); }
.proof-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; }
.proof-inner p { margin: 0; color: #b9c2df; font-size: 13px; }.proof-inner p strong { color: white; }
.proof-inner div { display: flex; align-items: center; gap: 28px; color: #8290bf; font-size: 11px; font-weight: 900; letter-spacing: .18em; }.proof-inner div i { color: var(--cyan); font-style: normal; }

.section { padding: 120px 0; }
.section-intro h2, .flow-heading h2, .measure-copy h2, .start-copy h2, .contact-section h2 { margin: 0; font-size: clamp(40px, 4.2vw, 58px); line-height: 1.2; letter-spacing: -.06em; }
.split-intro { display: grid; grid-template-columns: .55fr 1.5fr .9fr; gap: 45px; align-items: start; margin-bottom: 65px; }
.split-intro > p:last-child { margin: 8px 0 0; color: var(--muted); font-size: 15px; }
.problem { background: white; }
.comparison { display: grid; grid-template-columns: 1fr 100px 1fr; align-items: center; }
.comparison article { min-height: 510px; padding: 38px; border: 1px solid var(--line); }
.before-card { background: #f5f6f4; }.after-card { color: white; background: var(--blue); border-color: var(--blue) !important; }
.comparison-label { margin-bottom: 26px; color: #7d8798; font-size: 9px; font-weight: 900; letter-spacing: .18em; }.after-card .comparison-label { color: #aebeff; }
.comparison h3 { margin: 30px 0 18px; font-size: 30px; line-height: 1.3; letter-spacing: -.04em; }
.comparison ul { list-style: none; padding: 0; margin: 0; }.comparison li { position: relative; padding: 7px 0 7px 22px; color: #697386; font-size: 12px; }.comparison li::before { content: ""; position: absolute; left: 0; top: 14px; width: 8px; height: 2px; background: #a8afb8; }.after-card li { color: #d4dcff; }.after-card li::before { background: var(--lime); }
.change-mark { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--blue); font-size: 10px; font-weight: 900; }.change-mark i { font-size: 28px; font-style: normal; }
.treadmill-scene, .coaching-scene { position: relative; height: 170px; overflow: hidden; border-radius: 4px; }
.before-state-image { margin: 0; }
.before-state-image img { display: block; width: 100%; aspect-ratio: 2 / 1; object-fit: cover; border-radius: 16px; filter: saturate(.72) contrast(.92); box-shadow: 0 18px 40px rgba(20,28,39,.14); }
.member-journey { margin: 0; }
.member-journey img { display: block; width: 100%; aspect-ratio: 2 / 1; object-fit: cover; border-radius: 16px; box-shadow: 0 18px 40px rgba(6,13,45,.24); }
.member-journey figcaption { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; margin: 10px 0 0; }
.member-journey figcaption span { position: relative; color: #dbe4ff; font-size: 9px; font-weight: 800; text-align: center; }
.member-journey figcaption span:not(:last-child)::after { content: "→"; position: absolute; right: -5px; color: var(--lime); }
.treadmill-scene { background: linear-gradient(#e9ece8 72%, #dfe2de 72%); }.treadmill-scene::before { content: ""; position: absolute; left: 12%; right: 12%; bottom: 25px; height: 11px; border-radius: 3px; background: #a7adb2; box-shadow: 0 13px 0 -4px #777f89; }.treadmill-scene i { position: absolute; bottom: 38px; width: 14px; height: 62px; border-radius: 9px 9px 5px 5px; background: #7c8791; }.treadmill-scene i::before { content: ""; position: absolute; top: -18px; left: -2px; width: 18px; height: 18px; border-radius: 50%; background: #9aa2aa; }.treadmill-scene i:nth-child(1){left:24%}.treadmill-scene i:nth-child(2){left:49%;height:54px}.treadmill-scene i:nth-child(3){left:73%;height:68px}
.coaching-scene { background: linear-gradient(145deg,#172b7d,#1f43c2); }.coaching-scene::before { content: ""; position: absolute; left: 16%; bottom: 24px; width: 30px; height: 74px; border-radius: 18px 18px 8px 8px; background: white; }.coaching-scene::after { content: ""; position: absolute; left: calc(16% + 3px); bottom: 97px; width: 24px; height: 24px; border-radius: 50%; background: #ffd8c9; }.coaching-scene i:nth-child(1) { position:absolute; right:20%; bottom:24px; width:30px; height:74px; border-radius:18px 18px 8px 8px; background:var(--lime); }.coaching-scene i:nth-child(1)::before { content:""; position:absolute; top:-24px; left:3px; width:24px; height:24px; border-radius:50%; background:#b97757; }.coaching-scene i:nth-child(2) { position:absolute; left:31%; top:43%; width:40%; height:3px; transform:rotate(-12deg); background:rgba(255,255,255,.6); }.coaching-scene i:nth-child(3) { position:absolute; left:40%; bottom:23px; width:24%; height:44px; border:2px solid rgba(255,255,255,.25); border-radius:4px; }.coaching-scene i:nth-child(4) { position:absolute; top:17px; left:18px; width:58px; height:20px; border-radius:20px; background:rgba(255,255,255,.12); }

.flow { color: white; background: var(--navy); }
.flow-heading { display: grid; grid-template-columns: 1.05fr .7fr; gap: 120px; align-items: end; margin-bottom: 70px; }
.flow-heading > p { margin: 0 0 5px; color: #aeb8d4; font-size: 14px; }
.flow-list { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #3a4978; }
.flow-list article { min-height: 335px; padding: 30px 26px 0 0; border-right: 1px solid #3a4978; }
.flow-list article + article { padding-left: 26px; }
.flow-list article:last-child { border-right: 0; }
.flow-list article > span { color: var(--cyan); font-size: 10px; font-weight: 900; }
.flow-icon { position: relative; width: 54px; height: 54px; margin: 42px 0 27px; border: 1px solid #586795; border-radius: 17px; }
.flow-icon i { position: absolute; display: block; background: var(--lime); }.flow-icon i:nth-child(1){width:20px;height:2px;left:16px;top:18px}.flow-icon i:nth-child(2){width:14px;height:2px;left:16px;top:25px}.flow-icon i:nth-child(3){width:8px;height:8px;right:-4px;bottom:-4px;border-radius:50%;background:var(--cyan)}
.flow-list h3 { margin: 0 0 14px; font-size: 18px; letter-spacing: -.03em; }.flow-list p { margin: 0; color: #aab4d0; font-size: 12px; }

.real-product { overflow: hidden; background: linear-gradient(135deg, #f3f6ff, #eef8f6); }
.product-showcase { display: grid; grid-template-columns: .78fr 1.22fr; gap: 75px; align-items: center; }
.product-copy h2 { margin: 0; font-size: clamp(40px, 4.2vw, 58px); line-height: 1.2; letter-spacing: -.06em; }
.product-copy > p:not(.eyebrow) { margin: 26px 0 0; color: var(--muted); font-size: 14px; }
.product-copy ul { list-style: none; padding: 0; margin: 36px 0 22px; border-top: 1px solid #ccd6e1; }
.product-copy li { display: grid; grid-template-columns: 42px 1fr; padding: 18px 0; border-bottom: 1px solid #ccd6e1; }
.product-copy li > span { color: var(--blue); font-size: 10px; font-weight: 900; }
.product-copy li b,.product-copy li small { display: block; }.product-copy li b { font-size: 13px; }.product-copy li small { margin-top: 3px; color: #788397; font-size: 10px; }
.actual-note { color: #8a94a5; font-size: 9px; }
.app-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: center; }
.app-gallery figure { margin: 0; }.app-gallery figure.raised { transform: translateY(-34px); }
.app-device { position: relative; overflow: hidden; aspect-ratio: 1170 / 2532; padding: 6px; border: 2px solid #15234f; border-radius: 26px; background: #15234f; box-shadow: 0 25px 55px rgba(10,23,68,.19); }
.app-device::before { content: ""; position: absolute; z-index: 2; top: 6px; left: 50%; width: 38%; height: 14px; border-radius: 0 0 10px 10px; background: #15234f; transform: translateX(-50%); }
.app-device img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 19px; }
.app-gallery figcaption { display: flex; justify-content: space-between; gap: 8px; margin-top: 13px; }.app-gallery figcaption b { font-size: 11px; }.app-gallery figcaption span { color: #7f899b; font-size: 9px; }

.roles { background: var(--paper); }
.centered { max-width: 790px; margin: 0 auto 62px; text-align: center; }.centered .eyebrow { justify-content: center; }
.role-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.role-card { min-height: 520px; padding: 30px; background: white; border: 1px solid #e5e8e3; transition: transform .25s ease, box-shadow .25s ease; }
.role-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.role-top { display: flex; justify-content: space-between; font-size: 9px; font-weight: 900; letter-spacing: .16em; }.role-top i { width: 33px; height: 33px; display: grid; place-items: center; border: 1px solid #e0e4e8; border-radius: 50%; font-style: normal; }
.role-image { height: 190px; margin: 28px 0; overflow: hidden; border-radius: 16px; background: #e9eef7; }
.role-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.role-card:hover .role-image img { transform: scale(1.035); }
.role-card h3 { margin: 0 0 17px; font-size: 25px; line-height: 1.35; letter-spacing: -.04em; }.role-card h3 span { display: block; }
.role-card > p { min-height: 72px; margin: 0; color: var(--muted); font-size: 13px; }.role-card ul { list-style: none; padding: 20px 0 0; margin: 24px 0 0; border-top: 1px solid var(--line); }.role-card li { padding: 5px 0; font-size: 11px; font-weight: 750; }.role-card li::before { content: "✓"; margin-right: 9px; color: var(--blue); }.trainer li::before { color: #168b7f; }.owner li::before { color: var(--navy); }

.use-cases { color: white; background: #10162b; }
.light-intro > p:last-child { color: #abb3c8; }
.case-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.case-card { position: relative; min-height: 515px; overflow: hidden; padding: 38px; }
.case-main,.case-pt { color: white; background: #14214a; }
.case-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-card::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg,rgba(5,12,32,.25) 0%,rgba(5,12,32,.7) 53%,rgba(5,12,32,.96) 100%); }
.case-main::after,.case-pt::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; }
.case-main::after { background: linear-gradient(125deg,rgba(216,242,56,.15),transparent 48%); }
.case-pt::after { background: linear-gradient(125deg,rgba(55,88,232,.2),transparent 48%); }
.case-number,.case-copy,.case-steps { position: relative; z-index: 2; }
.case-number { font-size: 9px; font-weight: 900; letter-spacing: .17em; opacity: .76; }
.case-copy { max-width: 430px; margin-top: 52px; }.case-copy > span { font-size: 10px; font-weight: 850; }.case-copy h3 { margin: 12px 0 20px; font-size: 40px; line-height: 1.2; letter-spacing: -.05em; }.case-copy p { margin: 0; font-size: 13px; opacity: .82; }
.case-steps { position: absolute; left: 38px; right: 38px; bottom: 30px; display: grid; grid-template-columns: repeat(4,1fr); padding: 14px 12px 12px; background: rgba(6,14,38,.76); border: 1px solid rgba(255,255,255,.24); border-radius: 18px; backdrop-filter: blur(12px); }
.case-steps::before { content: ""; position: absolute; z-index: 0; top: 31px; left: 13%; right: 13%; height: 1px; background: linear-gradient(90deg,var(--cyan),var(--lime)); opacity: .72; }
.case-steps span { position: relative; z-index: 1; display: grid; justify-items: center; gap: 7px; min-width: 0; }
.case-steps b { width: 34px; height: 34px; display: grid; place-items: center; color: #071338; background: var(--cyan); border: 4px solid rgba(6,14,38,.94); border-radius: 50%; font-size: 9px; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.case-steps span:last-child b { background: var(--lime); }
.case-steps small { color: #f2f5ff; font-size: 9px; font-weight: 800; line-height: 1.3; text-align: center; white-space: nowrap; }

.measure { background: white; }
.measure-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 85px; align-items: center; }
.measure-copy > p:not(.eyebrow) { color: var(--muted); font-size: 14px; }.metric-list { margin-top: 35px; border-top: 1px solid var(--line); }.metric-list > div { display: grid; grid-template-columns: 40px 1fr; padding: 18px 0; border-bottom: 1px solid var(--line); }.metric-list > div > span { color: var(--blue); font-size: 10px; font-weight: 900; }.metric-list p { margin: 0; }.metric-list b, .metric-list small { display: block; }.metric-list b { font-size: 13px; }.metric-list small { margin-top: 3px; color: #8a93a3; font-size: 10px; }
.owner-dashboard-image { margin: 0; }
.owner-dashboard-image img { display: block; width: 100%; border: 1px solid #dfe4ee; border-radius: 13px; box-shadow: var(--shadow); }
.owner-dashboard-image figcaption { margin-top: 13px; color: #8a93a3; font-size: 9px; text-align: right; }

.start { background: var(--paper); }
.start-card { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; padding: 70px; color: white; background: var(--blue); }
.start-copy > p:not(.eyebrow) { color: #cbd5ff; font-size: 14px; }.start-steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.25); }.start-steps li { display: grid; grid-template-columns: 50px 1fr; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.25); }.start-steps li > span { color: var(--lime); font-size: 10px; font-weight: 900; }.start-steps b, .start-steps small { display: block; }.start-steps b { font-size: 14px; }.start-steps small { margin-top: 3px; color: #becaff; font-size: 10px; }

.contact-section { padding: 100px 0; color: white; background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .65fr; gap: 100px; align-items: end; }.contact-actions > p { margin: 0 0 25px; color: #aeb7d3; font-size: 14px; }.button-light { color: var(--navy); background: var(--lime); }.phone-link { display: block; margin-top: 17px; color: #b8c2df; font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }

footer { color: #abb5cf; background: #060e2b; }
.footer-main { display: grid; grid-template-columns: 1.4fr .65fr .8fr; gap: 70px; padding-block: 70px 55px; }.footer-brand .brand-image { width: 72px; height: 72px; border-radius: 15px; }.footer-main > div:first-child > p { margin: 22px 0 0; color: #7783a5; font-size: 12px; }.footer-links { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }.footer-links b { margin-bottom: 9px; color: white; font-size: 9px; letter-spacing: .17em; }.footer-links a,.footer-links span { font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 22px; border-top: 1px solid #1f294b; color: #5f6c91; font-size: 9px; letter-spacing: .04em; }

@media (max-width: 1050px) {
  .desktop-nav { gap: 20px; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 20px; }
  .trainer-panel { left: -20px; width: 350px; }
  .phone-shell { right: 0; transform: rotate(1deg) scale(.92); transform-origin: right center; }
  .note-two { right: 0; }
  .split-intro { grid-template-columns: 1fr 2fr; }.split-intro > p:last-child { grid-column: 2; }
  .flow-heading { gap: 55px; }
  .measure-grid { gap: 45px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 36px, 700px); }
  .site-header .header-inner { height: 70px; }
  .desktop-nav,.header-cta { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { width: 44px; height: 44px; display: grid; place-items: center; border: 0; list-style: none; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { position: absolute; width: 23px; height: 2px; background: var(--navy); transition: .2s; }.mobile-menu summary span:first-child { transform: translateY(-4px); }.mobile-menu summary span:last-child { transform: translateY(4px); }
  .mobile-menu[open] summary span:first-child { transform: rotate(45deg); }.mobile-menu[open] summary span:last-child { transform: rotate(-45deg); }
  .mobile-menu nav { position: fixed; top: 70px; left: 0; right: 0; display: flex; flex-direction: column; padding: 14px 18px 24px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(10,23,68,.12); }
  .mobile-menu nav a { min-height: 48px; display: flex; align-items: center; padding: 0 8px; border-bottom: 1px solid #edf0f3; font-size: 14px; font-weight: 750; }.mobile-menu nav a:last-child { justify-content: center; margin-top: 12px; color: white; background: var(--navy); border: 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding-block: 78px 40px; }
  .hero-copy { text-align: center; }.hero-copy .eyebrow,.hero-actions,.hero-tags { justify-content: center; }.hero-description { margin-inline: auto; }
  .hero-product { width: min(560px,100%); margin: 0 auto; }
  .proof-inner { padding-block: 24px; flex-direction: column; gap: 14px; text-align: center; }
  .section { padding: 88px 0; }
  .split-intro { grid-template-columns: 1fr; gap: 18px; }.split-intro > p:last-child { grid-column: 1; }
  .comparison { grid-template-columns: 1fr; gap: 16px; }.change-mark { flex-direction: row; }.change-mark i { transform: rotate(90deg); }
  .flow-heading,.measure-grid,.start-card,.contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .flow-list { grid-template-columns: 1fr 1fr; }.flow-list article:nth-child(2) { border-right: 0; }.flow-list article:nth-child(n+3) { border-top: 1px solid #3a4978; }
  .role-grid { grid-template-columns: 1fr; }.role-card { min-height: auto; }.role-card > p { min-height: auto; }
  .product-showcase { grid-template-columns: 1fr; gap: 55px; }.product-copy { max-width: 650px; }.app-gallery { width: min(100%,680px); margin-inline: auto; }
  .case-grid { grid-template-columns: 1fr; }
  .start-card { padding: 48px; }
  .footer-main { grid-template-columns: 1.3fr 1fr; }.footer-main > div:last-child { grid-column: 2; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 30px); }
  .brand-image { width: 46px; height: 46px; border-radius: 9px; }
  .hero-grid { padding-top: 65px; }.hero h1 { font-size: 41px; }.hero-description { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 18px; }.button { width: 100%; }.button-link { width: auto; }
  .hero-tags { margin-top: 36px; }
  .hero-product { height: 510px; margin-top: 15px; }.ring-one { width: 390px; height: 390px; left: -8px; }.ring-two { width: 300px; height: 300px; left: 40px; }
  .trainer-panel { left: 0; top: 70px; width: 310px; height: 335px; padding: 18px; transform: scale(.88); transform-origin: left center; }
  .phone-shell { right: -13px; top: 0; transform: rotate(1deg) scale(.75); transform-origin: right top; }
  .note-one { left: 0; bottom: 40px; }.note-two { right: 0; bottom: 105px; }
  .proof-inner div { gap: 10px; font-size: 8px; }.proof-inner div i { margin-inline: 2px; }
  .section { padding: 72px 0; }.section-intro h2,.flow-heading h2,.measure-copy h2,.start-copy h2,.contact-section h2 { font-size: 35px; }
  .comparison article { min-height: 470px; padding: 28px; }.comparison h3 { font-size: 27px; }
  .flow-list { grid-template-columns: 1fr; }.flow-list article { min-height: 285px; border-right: 0; border-top: 1px solid #3a4978; padding: 25px 0 !important; }.flow-list article:first-child { border-top: 0; }
  .role-card { padding: 24px; }.role-card h3 { font-size: 23px; }
  .product-showcase { gap: 42px; }.app-gallery { width: calc(100vw - 15px); margin-right: -15px; padding: 30px 15px 35px 0; overflow-x: auto; grid-template-columns: repeat(3, 210px); scroll-snap-type: x mandatory; }.app-gallery figure { scroll-snap-align: start; }.app-gallery figure.raised { transform: none; }.app-device { border-radius: 23px; }.app-gallery figcaption { padding-inline: 3px; }
  .case-card { min-height: 530px; padding: 28px; }.case-copy h3 { font-size: 34px; }.case-steps { left: 28px; right: 28px; bottom: 24px; padding-inline: 8px; }.case-steps small { font-size: 8px; }
  .owner-dashboard-image { margin-top: 5px; }.owner-dashboard-image figcaption { text-align: left; }
  .start-card { padding: 38px 24px; }.start-steps li { grid-template-columns: 40px 1fr; }
  .contact-section { padding: 72px 0; }.contact-grid { gap: 30px; }.contact-actions .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; padding-block: 55px 40px; }.footer-main > div:last-child { grid-column: 1; }.footer-bottom { flex-direction: column; gap: 7px; }
}

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

/* 2026-08 readability and visual polish */
body { font-size: 16px; background: #fcfcfd; letter-spacing: -.012em; }
.container { width: min(1180px, calc(100% - 56px)); }
.site-header { background: rgba(255,255,255,.94); box-shadow: 0 4px 24px rgba(10,23,68,.04); }
.header-inner { height: 76px; gap: 36px; }
.brand-image { width: 50px; height: 50px; border-radius: 12px; box-shadow: 0 8px 20px rgba(32,68,138,.16); }
.desktop-nav { gap: 32px; font-size: 14px; }
.header-cta { min-height: 48px; padding: 0 22px; border-radius: 999px; font-size: 13px; box-shadow: 0 12px 24px rgba(10,23,68,.14); }
.hero { background: radial-gradient(circle at 83% 12%, rgba(216,242,56,.2), transparent 27%), radial-gradient(circle at 62% 86%, rgba(50,215,196,.18), transparent 30%), linear-gradient(135deg,#fafbf8 0%,#edf3ff 66%,#eefbf8 100%); }
.hero-grid { min-height: 720px; grid-template-columns: 1.02fr .98fr; gap: 70px; padding-block: 76px 70px; }
.hero h1 { max-width: 680px; font-size: clamp(48px,5vw,70px); line-height: 1.12; letter-spacing: -.058em; }
.hero-description { max-width: 560px; margin-top: 28px; font-size: 17px; line-height: 1.75; }
.hero-actions { margin-top: 34px; }
.button { min-height: 58px; padding: 0 28px; border-radius: 999px; font-size: 14px; }
.button-link { font-size: 14px; }
.hero-tags { margin-top: 42px; gap: 9px; }
.hero-tags span { padding: 8px 14px; color: #47536a; background: rgba(255,255,255,.82); font-size: 12px; }
.trainer-panel { border-radius: 22px; }
.floating-note { border-radius: 14px; }
.proof-inner { min-height: 100px; gap: 30px; }
.proof-inner p { font-size: 15px; line-height: 1.6; }
.proof-inner div { font-size: 12px; }
.section { padding: 108px 0; }
.section-intro h2,.flow-heading h2,.measure-copy h2,.start-copy h2,.contact-section h2,.product-copy h2 { font-size: clamp(38px,4vw,54px); line-height: 1.22; letter-spacing: -.052em; }
.split-intro { grid-template-columns: .5fr 1.5fr .9fr; gap: 48px; margin-bottom: 58px; }
.split-intro > p:last-child,.flow-heading > p,.measure-copy > p:not(.eyebrow),.start-copy > p:not(.eyebrow),.contact-actions > p,.product-copy > p:not(.eyebrow) { font-size: 16px; line-height: 1.75; }
.comparison { grid-template-columns: 1fr 84px 1fr; }
.comparison article { min-height: 500px; padding: 36px; border-radius: 24px; }
.comparison h3 { font-size: 29px; line-height: 1.35; }
.comparison li { padding-block: 8px; color: #566176; font-size: 14px; }
.comparison li::before { top: 17px; }
.after-card li { color: #edf1ff; }
.treadmill-scene,.coaching-scene { border-radius: 16px; }
.flow { background: linear-gradient(145deg,#08143d,#10235c); }
.flow-heading { gap: 90px; margin-bottom: 60px; }
.service-system-visual { position: relative; margin: 0 0 58px; }
.service-system-visual img { display: block; width: 100%; aspect-ratio: 1672 / 941; object-fit: cover; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.service-system-visual figcaption { margin-top: 12px; color: #8794b8; font-size: 10px; line-height: 1.5; text-align: right; }
.flow-summary { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin: 0 0 34px; padding-bottom: 22px; border-bottom: 1px solid rgba(139,157,211,.32); }
.flow-summary > span { color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.flow-summary p { max-width: 590px; margin: 0; color: #dce4fa; font-size: 18px; font-weight: 750; line-height: 1.55; text-align: right; }
.operating-timeline { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; list-style: none; padding: 0; margin: 0; }
.operating-timeline::before { content: ""; position: absolute; z-index: 0; top: 29px; left: 7%; right: 7%; height: 2px; background: linear-gradient(90deg,var(--cyan),#6edbc4 52%,var(--lime)); opacity: .75; }
.operating-timeline > li { position: relative; z-index: 1; min-width: 0; }
.timeline-node { display: flex; align-items: center; gap: 9px; width: max-content; height: 58px; padding: 0 15px 0 7px; margin: 0 0 15px; background: #0d1c4c; border: 1px solid #4b5c91; border-radius: 999px; box-shadow: 0 0 0 8px #0d1c4c; }
.timeline-node b { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy); background: var(--cyan); border-radius: 50%; font-size: 12px; }
.operating-timeline > li:last-child .timeline-node b { background: var(--lime); }
.timeline-node span { color: #c9d4f2; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.operating-timeline article { min-height: 245px; padding: 25px 23px 22px; background: rgba(255,255,255,.055); border: 1px solid rgba(139,157,211,.28); border-radius: 18px; }
.operating-timeline h3 { min-height: 56px; margin: 0 0 13px; font-size: 19px; line-height: 1.45; letter-spacing: -.03em; }
.operating-timeline p { min-height: 76px; margin: 0; color: #aeb9d6; font-size: 13px; line-height: 1.7; }
.operating-timeline small { display: flex; align-items: flex-start; gap: 8px; padding-top: 16px; margin-top: 16px; color: #eef3ff; border-top: 1px solid rgba(139,157,211,.22); font-size: 11px; font-weight: 750; line-height: 1.5; }
.operating-timeline small i { color: var(--lime); font-style: normal; }
.real-product { background: radial-gradient(circle at 90% 5%,rgba(216,242,56,.2),transparent 24%),linear-gradient(135deg,#f4f7ff,#eef9f6); }
.product-showcase { gap: 68px; }
.product-copy li { padding: 19px 0; }
.product-copy li b { font-size: 15px; }
.product-copy li small { margin-top: 5px; font-size: 12px; line-height: 1.6; }
.actual-note { font-size: 11px; }
.app-device { padding: 7px; border-radius: 30px; box-shadow: 0 26px 65px rgba(10,23,68,.22); }
.app-device img { border-radius: 22px; }
.app-gallery figcaption b { font-size: 13px; }.app-gallery figcaption span { font-size: 11px; }
.role-grid { gap: 20px; }
.role-card { min-height: 575px; padding: 34px; border-radius: 24px; box-shadow: 0 12px 35px rgba(10,23,68,.05); }
.role-card h3 { font-size: 27px; }
.role-card > p { color: #566176; font-size: 14px; line-height: 1.75; }
.role-card li { padding: 7px 0; font-size: 13px; }
.case-grid { gap: 20px; }
.case-card { min-height: 510px; padding: 42px; border-radius: 26px; }
.case-copy > span { font-size: 12px; }.case-copy h3 { font-size: 40px; }.case-copy p { font-size: 15px; line-height: 1.75; }
.case-photo { transition: transform .55s ease; }.case-card:hover .case-photo { transform: scale(1.035); }
.measure-grid { gap: 70px; }
.metric-list b { font-size: 15px; }.metric-list small { margin-top: 5px; font-size: 12px; line-height: 1.55; }
.owner-dashboard-image img { border-radius: 20px; box-shadow: 0 30px 75px rgba(10,23,68,.16); }
.owner-dashboard-image figcaption { font-size: 11px; line-height: 1.5; }
.start-card { padding: 68px; border-radius: 28px; box-shadow: 0 28px 70px rgba(32,68,138,.2); }
.start-steps b { font-size: 16px; }.start-steps small { margin-top: 5px; font-size: 12px; line-height: 1.6; }
.contact-section { padding: 96px 0; background: linear-gradient(140deg,#071338,#10255e); }
.footer-links a,.footer-links span { font-size: 13px; }
.footer-main > div:first-child > p { font-size: 13px; line-height: 1.75; }
.mobile-bottom-cta { display: none; }

@media (max-width: 1050px) {
  .container { width: min(100% - 44px,900px); }
  .hero-grid { gap: 28px; }
  .desktop-nav { gap: 20px; }
  .measure-grid { gap: 44px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 36px,720px); }
  .hero-grid { padding-block: 70px 44px; }
  .hero-description { max-width: 620px; }
  .section { padding: 84px 0; }
  .split-intro { gap: 16px; }
  .flow-heading { gap: 38px; }
  .operating-timeline { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .operating-timeline::before { display: none; }
  .operating-timeline article { min-height: 235px; }
  .start-card { padding: 48px; }
}

@media (max-width: 560px) {
  body { padding-bottom: 76px; }
  .container { width: calc(100% - 32px); }
  .site-header .header-inner { height: 66px; }
  .brand-image { width: 44px; height: 44px; border-radius: 10px; }
  .mobile-menu nav { top: 66px; }
  .hero-grid { padding-top: 58px; }
  .hero h1 { font-size: 39px; line-height: 1.16; }
  .hero-description { margin-top: 23px; font-size: 16px; line-height: 1.7; }
  .hero-tags { margin-top: 30px; }
  .hero-tags span { font-size: 11px; }
  .hero-product { height: 475px; }
  .note-two { display: none; }
  .proof-inner p { font-size: 14px; }
  .section { padding: 72px 0; }
  .section-intro h2,.flow-heading h2,.measure-copy h2,.start-copy h2,.contact-section h2,.product-copy h2 { font-size: 34px; }
  .comparison article { min-height: 460px; padding: 26px; }
  .comparison h3 { font-size: 25px; }
  .comparison li { font-size: 13px; }
  .service-system-visual { width: calc(100% + 16px); margin-left: -8px; margin-bottom: 44px; }
  .service-system-visual img { border-radius: 18px; }
  .service-system-visual figcaption { padding-inline: 4px; text-align: left; }
  .flow-summary { display: block; margin-bottom: 30px; }
  .flow-summary p { margin-top: 12px; font-size: 16px; text-align: left; }
  .operating-timeline { grid-template-columns: 1fr; gap: 15px; }
  .timeline-node { height: 50px; margin: 0 0 -10px 18px; box-shadow: 0 0 0 6px #0d1c4c; }
  .timeline-node b { width: 36px; height: 36px; }
  .operating-timeline article { min-height: 0; padding: 32px 22px 22px; }
  .operating-timeline h3,.operating-timeline p { min-height: 0; }
  .role-card { padding: 26px; border-radius: 20px; }
  .role-image { height: 230px; }
  .case-card { padding: 30px; border-radius: 22px; }
  .case-copy h3 { font-size: 33px; }
  .case-copy { margin-top: 34px; }
  .case-steps { left: 22px; right: 22px; bottom: 20px; padding-inline: 6px; }
  .case-steps b { width: 32px; height: 32px; }
  .case-steps small { font-size: 8px; }
  .start-card { padding: 38px 25px; border-radius: 22px; }
  .mobile-bottom-cta { position: fixed; z-index: 150; left: 12px; right: 12px; bottom: 10px; min-height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; color: white; background: var(--navy); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; box-shadow: 0 16px 38px rgba(10,23,68,.34); font-size: 14px; font-weight: 850; }
}

/* Mobile-first final pass: 320px–560px */
@media (max-width: 560px) {
  html { scroll-padding-top: 72px; }
  body { min-width: 0; overflow-x: hidden; padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  img { max-width: 100%; }
  .container { width: calc(100% - 32px); }
  .site-header { backdrop-filter: blur(14px); }
  .site-header .header-inner { height: 64px; }
  .mobile-menu summary { width: 42px; height: 42px; }
  .mobile-menu nav { top: 64px; max-height: calc(100dvh - 64px); overflow-y: auto; padding-bottom: calc(22px + env(safe-area-inset-bottom)); }

  .hero-grid { gap: 24px; padding-block: 44px 34px; }
  .hero-copy { text-align: left; }
  .hero-copy .eyebrow,.hero-actions,.hero-tags { justify-content: flex-start; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; }
  .hero h1 { max-width: 350px; font-size: clamp(34px,10.3vw,42px); line-height: 1.17; letter-spacing: -.055em; }
  .hero-description { margin-top: 20px; font-size: 15px; line-height: 1.7; }
  .hero-actions { margin-top: 28px; gap: 15px; }
  .button { min-height: 54px; padding-inline: 20px; }
  .hero-tags { margin-top: 26px; gap: 7px; }
  .hero-tags span { padding: 7px 10px; font-size: 10px; }
  .hero-product { height: 420px; margin-top: 2px; overflow: hidden; }
  .ambient-ring { display: none; }
  .trainer-panel { left: -28px; top: 64px; width: 330px; height: 340px; transform: scale(.78); transform-origin: left top; }
  .phone-shell { right: -35px; top: 0; transform: rotate(1deg) scale(.66); transform-origin: right top; }
  .note-one { left: 6px; bottom: 16px; transform: scale(.92); transform-origin: left bottom; }

  .proof-inner { padding-block: 22px; }
  .proof-inner div { flex-wrap: wrap; justify-content: center; }
  .section { padding: 64px 0; }
  .section-intro { margin-bottom: 38px; }
  .section-intro h2,.flow-heading h2,.measure-copy h2,.start-copy h2,.contact-section h2,.product-copy h2 { font-size: clamp(30px,9vw,35px); line-height: 1.24; }
  .split-intro > p:last-child,.flow-heading > p,.measure-copy > p:not(.eyebrow),.start-copy > p:not(.eyebrow),.contact-actions > p,.product-copy > p:not(.eyebrow) { font-size: 15px; line-height: 1.7; }

  .comparison { gap: 12px; }
  .comparison article { min-height: 0; padding: 22px; }
  .comparison-label { margin-bottom: 16px; }
  .before-state-image img,.member-journey img { aspect-ratio: 16 / 9; }
  .member-journey figcaption { gap: 2px; }
  .member-journey figcaption span { font-size: 8px; }
  .comparison h3 { margin-top: 22px; font-size: 24px; }
  .comparison li { padding-block: 6px; font-size: 12px; }
  .change-mark { min-height: 46px; justify-content: center; }

  .flow-heading { gap: 20px; margin-bottom: 34px; }
  .service-system-visual { width: 100%; margin-left: 0; margin-bottom: 38px; }
  .service-system-visual img { aspect-ratio: 4 / 3; object-position: 50% center; }
  .service-system-visual figcaption { font-size: 9px; }
  .flow-summary { margin-bottom: 26px; padding-bottom: 18px; }
  .flow-summary p { font-size: 15px; }
  .operating-timeline { gap: 12px; }
  .timeline-node { margin-left: 14px; }
  .operating-timeline article { padding: 30px 19px 20px; }
  .operating-timeline h3 { font-size: 18px; }
  .operating-timeline p { font-size: 13px; }

  .product-showcase { gap: 34px; }
  .product-copy li { grid-template-columns: 34px 1fr; padding-block: 16px; }
  .app-gallery { width: calc(100vw - 16px); margin-left: 0; margin-right: -16px; grid-template-columns: repeat(3,minmax(210px,72vw)); gap: 14px; padding: 20px 16px 26px 0; scrollbar-width: thin; }
  .app-device { height: 420px; }

  .centered { margin-bottom: 38px; text-align: left; }
  .centered .eyebrow { justify-content: flex-start; }
  .role-grid { gap: 14px; }
  .role-card { padding: 22px; }
  .role-image { height: auto; aspect-ratio: 16 / 10; margin: 20px 0 22px; }
  .role-card h3 { font-size: 23px; }

  .case-grid { gap: 16px; }
  .case-card { min-height: 580px; padding: 24px; }
  .case-card::before { background: linear-gradient(180deg,rgba(5,12,32,.18) 0%,rgba(5,12,32,.58) 43%,rgba(5,12,32,.98) 77%); }
  .case-copy { margin-top: 30px; }
  .case-copy h3 { margin-bottom: 15px; font-size: 31px; }
  .case-copy p { font-size: 14px; line-height: 1.65; }
  .case-steps { left: 16px; right: 16px; bottom: 16px; padding: 12px 3px 10px; }
  .case-steps::before { top: 28px; left: 12%; right: 12%; }
  .case-steps b { width: 30px; height: 30px; border-width: 3px; font-size: 8px; }
  .case-steps small { font-size: 8px; white-space: normal; }

  .metric-list > div { grid-template-columns: 34px 1fr; }
  .owner-dashboard-image img { border-radius: 14px; }
  .start-card { gap: 30px; padding: 32px 20px; }
  .contact-section { padding: 64px 0 76px; }
  .contact-grid { gap: 26px; }
  .footer-main { gap: 30px; padding-block: 46px 34px; }
  .footer-bottom { padding-bottom: calc(26px + env(safe-area-inset-bottom)); }
  .mobile-bottom-cta { left: 10px; right: 10px; bottom: calc(8px + env(safe-area-inset-bottom)); min-height: 56px; padding-inline: 20px; }
}

@media (max-width: 360px) {
  .container { width: calc(100% - 24px); }
  .hero h1 { font-size: 33px; }
  .hero-product { height: 390px; }
  .trainer-panel { left: -34px; transform: scale(.72); }
  .phone-shell { right: -43px; transform: rotate(1deg) scale(.61); }
  .note-one { transform: scale(.84); }
  .case-card { min-height: 565px; }
  .case-steps { left: 10px; right: 10px; }
  .case-steps small { font-size: 7px; }
  .mobile-bottom-cta { font-size: 13px; }
}

/* 2026-08 mobile layout correction: keep every sales section readable at phone width */
@media (max-width: 600px) {
  html { scroll-padding-top: 68px; }
  body {
    width: 100%;
    min-width: 0;
    overflow-x: clip;
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
  .container { width: calc(100% - 40px); max-width: 100%; }
  .section { padding: 58px 0; }

  .site-header .header-inner { height: 62px; }
  .brand-image { width: 42px; height: 42px; border-radius: 10px; }
  .mobile-menu summary { width: 40px; height: 40px; }
  .mobile-menu nav { top: 62px; max-height: calc(100dvh - 62px); }

  .eyebrow { margin-bottom: 15px; font-size: 9px; }
  .eyebrow i { width: 38px; }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    min-height: 0;
    padding-block: 38px 42px;
  }
  .hero-copy { min-width: 0; text-align: left; }
  .hero h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(34px, 9.3vw, 38px);
    line-height: 1.16;
    letter-spacing: -.052em;
  }
  .hero h1 br,
  .section-intro h2 br,
  .flow-heading h2 br,
  .product-copy h2 br,
  .measure-copy h2 br,
  .start-copy h2 br,
  .contact-section h2 br,
  .case-copy h3 br { display: none; }
  .hero-description { margin-top: 18px; font-size: 15px; line-height: 1.68; }
  .hero-actions { align-items: stretch; margin-top: 24px; }
  .hero-actions .button { width: 100%; min-height: 52px; }
  .hero-actions .button-link { align-self: flex-start; width: auto; }
  .hero-tags { margin-top: 22px; }
  .hero-product {
    width: 100%;
    height: 350px;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.62), rgba(224,238,255,.78));
  }
  .trainer-panel {
    left: -18px;
    top: 74px;
    width: 320px;
    height: 330px;
    transform: scale(.69);
    transform-origin: left top;
  }
  .phone-shell {
    right: -25px;
    top: 8px;
    transform: rotate(1deg) scale(.56);
    transform-origin: right top;
  }
  .floating-note { display: none; }

  .proof-inner { min-height: 0; padding-block: 22px; }
  .proof-inner p { margin: 0; font-size: 14px; }

  .section-intro,
  .split-intro,
  .centered,
  .flow-heading,
  .product-showcase,
  .measure-grid,
  .start-card,
  .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    min-width: 0;
    text-align: left;
  }
  .section-intro { margin-bottom: 34px; }
  .split-intro > *, .split-intro > p:last-child { grid-column: 1; min-width: 0; }
  .centered .eyebrow { justify-content: flex-start; }
  .section-intro h2,
  .flow-heading h2,
  .product-copy h2,
  .measure-copy h2,
  .start-copy h2,
  .contact-section h2 {
    max-width: none;
    font-size: clamp(30px, 8.3vw, 34px);
    line-height: 1.2;
    letter-spacing: -.05em;
  }
  .split-intro > p:last-child,
  .flow-heading > p,
  .product-copy > p:not(.eyebrow),
  .measure-copy > p:not(.eyebrow),
  .start-copy > p:not(.eyebrow),
  .contact-actions > p { font-size: 15px; line-height: 1.68; }

  .comparison { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .comparison article { width: 100%; min-height: 0; padding: 20px; border-radius: 20px; }
  .comparison h3 { font-size: 23px; line-height: 1.32; }
  .comparison li { font-size: 12px; line-height: 1.55; }
  .change-mark { min-height: 42px; }

  .flow-heading { gap: 16px; margin-bottom: 30px; }
  .service-system-visual { width: 100%; margin: 0 0 32px; }
  .service-system-visual img { width: 100%; aspect-ratio: 4 / 3; border-radius: 16px; object-position: center; }
  .flow-summary { display: block; margin-bottom: 24px; }
  .flow-summary p { margin-top: 10px; font-size: 14px; text-align: left; }
  .operating-timeline { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .timeline-node { height: 46px; margin: 0 0 -8px 12px; }
  .timeline-node b { width: 34px; height: 34px; }
  .operating-timeline article { min-height: 0; padding: 27px 18px 19px; }
  .operating-timeline h3 { font-size: 18px; }
  .operating-timeline p { font-size: 13px; line-height: 1.62; }

  .product-showcase { gap: 28px; }
  .product-copy li { grid-template-columns: 30px minmax(0, 1fr); }
  .app-gallery {
    width: calc(100vw - 20px);
    max-width: none;
    margin: 0 -20px 0 0;
    padding: 14px 20px 22px 0;
    grid-template-columns: repeat(3, minmax(205px, 68vw));
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
  }
  .app-gallery figure { min-width: 0; scroll-snap-align: start; }
  .app-gallery figure.raised { transform: none; }
  .app-device { height: auto; aspect-ratio: 1170 / 2532; border-radius: 22px; }
  .app-gallery figcaption { font-size: 11px; }

  .role-grid, .case-grid { display: grid; grid-template-columns: minmax(0, 1fr); }
  .role-card { min-height: 0; padding: 20px; border-radius: 18px; }
  .role-image { height: auto; aspect-ratio: 16 / 10; margin: 18px 0 20px; }
  .role-card h3 { font-size: 24px; line-height: 1.3; }
  .role-card > p { min-height: 0; font-size: 14px; line-height: 1.65; }

  .use-cases .section-intro { margin-bottom: 30px; }
  .case-card { min-height: 520px; padding: 22px; border-radius: 20px; }
  .case-copy { margin-top: 28px; }
  .case-copy h3 { font-size: 30px; line-height: 1.18; }
  .case-copy p { font-size: 14px; line-height: 1.62; }
  .case-steps { left: 12px; right: 12px; bottom: 12px; }
  .case-steps small { font-size: 8px; white-space: normal; }

  .metric-list > div { grid-template-columns: 30px minmax(0, 1fr); padding-block: 17px; }
  .owner-dashboard-image { width: 100%; margin: 4px 0 0; }
  .owner-dashboard-image img { width: 100%; }
  .start-card { gap: 24px; padding: 28px 19px; border-radius: 20px; }
  .start-steps li { grid-template-columns: 34px minmax(0, 1fr); padding-block: 17px; }
  .contact-section { padding: 58px 0 72px; }
  .contact-grid { gap: 22px; }

  .footer-main { grid-template-columns: minmax(0, 1fr); gap: 28px; padding-block: 42px 30px; }
  .footer-main > div:last-child { grid-column: 1; }
  .footer-bottom { padding-bottom: calc(22px + env(safe-area-inset-bottom)); }
  .mobile-bottom-cta {
    left: 14px;
    right: 14px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    min-height: 50px;
    padding: 0 18px;
    font-size: 13px;
    box-shadow: 0 12px 28px rgba(10,23,68,.3);
  }
}
