:root {
  --ink: #111214;
  --ink-soft: #1d2024;
  --text: #2a2d31;
  --muted: #6e737b;
  --muted-light: #969ba3;
  --line: #e0e2e5;
  --line-dark: #cfd2d7;
  --surface: #f7f7f5;
  --surface-blue: #f1f5ff;
  --white: #ffffff;
  --blue: #315fdb;
  --blue-dark: #2149b6;
  --blue-soft: #eaf0ff;
  --green: #159779;
  --green-soft: #e9f8f3;
  --orange: #d67c12;
  --orange-soft: #fff4e4;
  --violet: #7158c8;
  --violet-soft: #f1edff;
  --red: #c7564c;
  --font-sans: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "MaruBuri", "Noto Serif KR", "Nanum Myeongjo", "AppleMyungjo", serif;
  --container: 1280px;
  --header-height: 78px;
  --shadow-sm: 0 10px 28px rgba(17, 18, 20, .07);
  --shadow-md: 0 24px 70px rgba(17, 18, 20, .13);
  --shadow-lg: 0 38px 100px rgba(17, 18, 20, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) - 6px); }
body { min-width: 320px; margin: 0; color: var(--text); background: var(--white); font-family: var(--font-sans); font-size: 16px; line-height: 1.65; word-break: keep-all; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
img { max-width: 100%; }
h1, h2, h3, h4, p, ul, ol, dl, dd, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
button { border: 0; background: none; }
::selection { color: #fff; background: var(--blue); }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: 106px 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 9999; padding: 11px 16px; border-radius: 8px; color: #fff; background: #111; font-size: .9rem; font-weight: 800; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 21px; border: 1px solid transparent; border-radius: 9px; cursor: pointer; font-size: .92rem; font-weight: 800; letter-spacing: -.025em; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease; }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(49, 95, 219, .3); outline-offset: 4px; }
.button-solid { color: #fff; background: var(--ink); border-color: var(--ink); box-shadow: 0 12px 28px rgba(17, 18, 20, .14); }
.button-solid:hover { background: #292c31; box-shadow: 0 17px 34px rgba(17, 18, 20, .19); }
.button-outline { color: var(--ink); background: rgba(255, 255, 255, .78); border-color: #bfc3c8; backdrop-filter: blur(8px); }
.button-outline:hover { border-color: var(--ink); background: #fff; }
.button-light { color: var(--ink); background: #fff; border-color: #fff; box-shadow: 0 18px 40px rgba(0, 0, 0, .25); }
.button-light:hover { background: #f4f4f4; }
.button-large { min-height: 56px; padding: 0 28px; border-radius: 10px; font-size: 1rem; }

.site-header { position: fixed; top: 0; right: 0; left: 0; z-index: 1000; border-bottom: 1px solid transparent; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.site-header.scrolled, .site-header.menu-active { border-color: rgba(17, 18, 20, .1); background: rgba(255, 255, 255, .94); box-shadow: 0 8px 30px rgba(17, 18, 20, .045); backdrop-filter: blur(18px); }
.header-inner { min-height: var(--header-height); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 10px; justify-self: start; color: var(--ink); font-size: 1.16rem; font-weight: 900; letter-spacing: -.04em; }
.brand img { width: 38px; height: 38px; flex: 0 0 auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 38px; color: #40444a; font-size: .89rem; font-weight: 700; }
.desktop-nav a { position: relative; padding: 27px 0; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.header-cta { min-height: 44px; padding-inline: 18px; font-size: .85rem; }
.menu-button { width: 44px; height: 44px; display: none; place-items: center; border: 1px solid var(--line); border-radius: 9px; background: rgba(255, 255, 255, .9); cursor: pointer; }
.menu-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.menu-close-icon { display: none; }
.menu-button[aria-expanded="true"] .menu-open-icon { display: none; }
.menu-button[aria-expanded="true"] .menu-close-icon { display: block; }
.mobile-menu { max-height: 0; overflow: hidden; border-top: 1px solid transparent; background: rgba(255, 255, 255, .98); opacity: 0; visibility: hidden; transition: max-height .28s ease, opacity .2s ease, visibility .2s ease, border-color .2s ease; }
.mobile-menu.open { max-height: 480px; border-color: var(--line); opacity: 1; visibility: visible; }
.mobile-menu-inner { display: grid; gap: 4px; padding-top: 17px; padding-bottom: 22px; }
.mobile-menu-inner > a:not(.button) { padding: 12px 8px; color: #33363a; font-size: .95rem; font-weight: 800; }
.mobile-menu-inner .button { margin-top: 8px; }

.hero { position: relative; min-height: 860px; overflow: hidden; border-bottom: 1px solid var(--line); background: #fbfbfa; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 14% 74%, rgba(49, 95, 219, .06), transparent 24%), radial-gradient(circle at 84% 26%, rgba(17, 18, 20, .045), transparent 22%); pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; background: url("../images/landing/grain.png") repeat; opacity: .16; mix-blend-mode: multiply; pointer-events: none; }
.hero-orbit { position: absolute; top: 105px; left: calc(50% - 80px); width: 1px; height: 850px; background: linear-gradient(transparent, rgba(17, 18, 20, .09), transparent); transform: rotate(10deg); transform-origin: center; }
.hero-grid { position: relative; z-index: 1; min-height: 860px; display: grid; grid-template-columns: minmax(430px, .84fr) minmax(680px, 1.16fr); gap: 52px; align-items: center; padding-top: calc(var(--header-height) + 62px); padding-bottom: 54px; }
.hero-copy { position: relative; z-index: 3; min-height: 640px; display: flex; flex-direction: column; justify-content: center; padding-bottom: 78px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--blue-dark); font-size: .83rem; font-weight: 900; letter-spacing: .01em; }
.eyebrow span { width: 32px; height: 1px; background: var(--blue); }
.hero h1 { margin-top: 23px; color: var(--ink); font-family: var(--font-serif); font-size: clamp(3.25rem, 4.35vw, 5.1rem); font-weight: 800; line-height: 1.18; letter-spacing: -.075em; }
.hero h1 em { position: relative; color: var(--blue-dark); font-style: normal; }
.hero h1 em::after { content: ""; position: absolute; right: -3px; bottom: 3px; left: 1px; z-index: -1; height: 13px; border-radius: 99px; background: rgba(49, 95, 219, .11); transform: rotate(-1.5deg); }
.hero-description { max-width: 660px; margin-top: 24px; color: #4f5359; font-size: 1.03rem; font-weight: 500; line-height: 1.86; letter-spacing: -.025em; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 31px; }
.hero-principle { display: flex; align-items: center; gap: 8px; margin-top: 18px; color: #6b7077; font-size: .82rem; font-weight: 700; }
.hero-principle svg { width: 17px; height: 17px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero-points { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; color: #3f4349; font-size: .78rem; font-weight: 800; }
.hero-points span { display: inline-flex; align-items: center; gap: 6px; }
.hero-points svg { width: 17px; height: 17px; fill: none; stroke: var(--blue); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.hero-figure { position: absolute; z-index: -1; left: -150px; bottom: -26px; width: 635px; max-width: none; opacity: .73; filter: grayscale(1) contrast(.92); mix-blend-mode: multiply; pointer-events: none; user-select: none; }

.hero-product { position: relative; z-index: 4; min-width: 0; padding-right: 17px; }
.dashboard-shell { min-width: 0; display: grid; grid-template-columns: 146px minmax(0, 1fr); overflow: hidden; border: 1px solid #d3d6db; border-radius: 18px; background: #fff; box-shadow: var(--shadow-lg); }
.dashboard-sidebar { min-height: 600px; padding: 17px 10px; border-right: 1px solid #e2e4e7; color: #69707a; background: #fff; }
.dashboard-brand { display: flex; align-items: center; gap: 8px; overflow: hidden; padding: 1px 5px 20px; color: var(--ink); font-size: .55rem; font-weight: 900; white-space: nowrap; }
.dashboard-brand span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.dashboard-brand img { width: 26px; height: 26px; }
.dashboard-sidebar ul { display: grid; gap: 4px; }
.dashboard-sidebar li { min-height: 39px; display: flex; align-items: center; gap: 8px; overflow: hidden; padding: 0 9px; border-radius: 7px; font-size: .56rem; font-weight: 700; white-space: nowrap; }
.dashboard-sidebar li span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.dashboard-sidebar li.active { color: var(--ink); background: #eef0f3; }
.dashboard-sidebar svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.dashboard-content { min-width: 0; padding: 21px; background: #f8f9fa; }
.dashboard-header { min-height: 62px; display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.dashboard-header p { color: #8c929a; font-size: .56rem; font-weight: 700; }
.dashboard-header h2 { margin-top: 2px; color: #1a1c20; font-size: .93rem; font-weight: 900; letter-spacing: -.035em; }
.dashboard-update { display: flex; align-items: center; gap: 8px; color: #9399a1; font-size: .51rem; font-weight: 700; white-space: nowrap; }
.dashboard-update svg { width: 15px; height: 15px; fill: none; stroke: #6b7179; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.metric-grid article { position: relative; min-width: 0; min-height: 78px; overflow: hidden; padding: 12px; border: 1px solid #e1e3e6; border-radius: 9px; background: #fff; box-shadow: 0 5px 15px rgba(17, 18, 20, .025); }
.metric-grid article::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 2px; background: var(--blue); }
.metric-grid article:nth-child(2)::before { background: var(--green); }
.metric-grid article:nth-child(3)::before { background: var(--orange); }
.metric-grid article:nth-child(4)::before { background: var(--violet); }
.metric-grid span { display: block; overflow: hidden; color: #7d838b; font-size: .51rem; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.metric-grid strong { display: flex; align-items: baseline; gap: 4px; margin-top: 10px; color: var(--ink); font-family: var(--font-serif); font-size: 1.17rem; line-height: 1; letter-spacing: -.04em; }
.metric-grid small { color: #8a9097; font-family: var(--font-sans); font-size: .47rem; font-weight: 700; letter-spacing: -.02em; }
.dashboard-row { display: grid; gap: 8px; margin-top: 8px; }
.dashboard-row-top { grid-template-columns: .9fr 1.1fr; }
.dashboard-row-bottom { grid-template-columns: 1fr; }
.dashboard-card { min-width: 0; border: 1px solid #e0e2e5; border-radius: 10px; background: #fff; box-shadow: 0 5px 15px rgba(17, 18, 20, .025); }
.card-heading { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card-heading h3, .card-heading h4 { color: #292c31; font-size: .61rem; font-weight: 900; }
.card-heading > span { color: #9298a0; font-size: .48rem; font-weight: 700; }
.card-heading button { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 6px; color: #8a9098; cursor: pointer; }
.card-heading button svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.goal-rate-card { padding: 12px; }
.goal-rate-body { min-height: 134px; display: grid; grid-template-columns: 98px 1fr; align-items: center; gap: 14px; }
.progress-ring { --size: 91px; width: var(--size); height: var(--size); display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) calc(var(--progress) * 1%), #e8ecf4 0); }
.progress-ring::before { content: ""; grid-area: 1 / 1; width: 70px; height: 70px; border-radius: 50%; background: #fff; }
.progress-ring > div { position: relative; z-index: 1; grid-area: 1 / 1; text-align: center; }
.progress-ring strong, .progress-ring span { display: block; }
.progress-ring strong { color: var(--blue-dark); font-family: var(--font-serif); font-size: 1rem; line-height: 1; }
.progress-ring span { margin-top: 4px; color: #969ca4; font-size: .42rem; font-weight: 700; }
.goal-rate-body dl { display: grid; gap: 8px; }
.goal-rate-body dl div { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-bottom: 5px; border-bottom: 1px solid #eff0f2; color: #777d85; font-size: .5rem; }
.goal-rate-body dl div:last-child { padding-bottom: 0; border-bottom: 0; }
.goal-rate-body dt { font-weight: 700; }
.goal-rate-body dd { color: #30343a; font-weight: 900; }
.weekly-card { padding: 12px 13px 7px; }
.weekly-chart { width: 100%; height: 133px; overflow: visible; }
.chart-grid path { fill: none; stroke: #eceef1; stroke-width: 1; }
.chart-area { fill: rgba(49, 95, 219, .08); }
.chart-line { fill: none; stroke: var(--blue); stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.chart-dots circle { fill: #fff; stroke: var(--blue); stroke-width: 2; }
.chart-labels { fill: #969ba3; font-size: 9px; font-weight: 700; text-anchor: middle; }
.active-goals-card { padding: 12px; }
.goal-item { padding: 9px 0 8px; border-bottom: 1px solid #eef0f2; }
.goal-item:last-child { border-bottom: 0; }
.goal-item-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: #34383e; font-size: .51rem; }
.goal-item-head strong { overflow: hidden; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.goal-item-head span { color: var(--blue); font-weight: 900; }
.bar { height: 5px; margin-top: 7px; overflow: hidden; border-radius: 99px; background: #e9ecf1; }
.bar i { display: block; height: 100%; border-radius: inherit; background: var(--blue); }
.goal-item small { display: block; margin-top: 5px; color: #969ca4; font-size: .44rem; font-weight: 600; }
.phone-shell { position: absolute; right: -21px; bottom: -46px; z-index: 5; width: 190px; min-height: 399px; overflow: hidden; border: 7px solid #111318; border-radius: 31px; background: #fff; box-shadow: 0 24px 55px rgba(17, 18, 20, .24); }
.phone-notch { position: absolute; top: 0; left: 50%; z-index: 2; width: 76px; height: 16px; border-radius: 0 0 12px 12px; background: #111318; transform: translateX(-50%); }
.phone-status { height: 29px; display: flex; align-items: center; justify-content: space-between; padding: 8px 12px 0; color: #111318; font-size: .43rem; }
.phone-content { padding: 12px 10px 57px; }
.phone-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; padding: 3px 1px 12px; }
.phone-heading small { display: block; color: #90969e; font-size: .42rem; font-weight: 700; }
.phone-heading h3 { margin-top: 1px; color: #202328; font-size: .7rem; font-weight: 900; }
.phone-heading button, .report-header button { width: 24px; height: 24px; display: grid; place-items: center; color: #747a82; }
.phone-heading svg, .report-header button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.phone-progress { min-height: 75px; display: grid; grid-template-columns: 54px 1fr; gap: 9px; align-items: center; padding: 10px; border-radius: 11px; color: #fff; background: #172d66; }
.phone-ring { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(#fff 60%, rgba(255, 255, 255, .2) 0); }
.phone-ring::before { content: ""; grid-area: 1 / 1; width: 38px; height: 38px; border-radius: 50%; background: #172d66; }
.phone-ring strong, .phone-ring span { position: relative; z-index: 1; grid-area: 1 / 1; display: block; text-align: center; }
.phone-ring strong { margin-top: -7px; font-size: .65rem; }
.phone-ring span { margin-top: 13px; color: rgba(255, 255, 255, .68); font-size: .36rem; }
.phone-progress > div:last-child strong, .phone-progress > div:last-child span { display: block; }
.phone-progress > div:last-child strong { font-size: .5rem; font-weight: 800; }
.phone-progress > div:last-child span { margin-top: 3px; color: rgba(255, 255, 255, .65); font-size: .38rem; line-height: 1.45; }
.practice-list { margin-top: 8px; }
.practice-list li { min-height: 43px; display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 7px; align-items: center; border-bottom: 1px solid #eef0f2; }
.practice-list li > span { width: 16px; height: 16px; display: grid; place-items: center; border: 1px solid #cdd1d6; border-radius: 50%; }
.practice-list li.done > span { border-color: var(--green); color: #fff; background: var(--green); }
.practice-list li > span svg { width: 10px; height: 10px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.practice-list strong, .practice-list small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.practice-list strong { color: #34383e; font-size: .45rem; font-weight: 800; }
.practice-list small { margin-top: 2px; color: #989ea6; font-size: .37rem; }
.practice-list li.done strong { color: #777d84; text-decoration: line-through; }
.phone-nav { position: absolute; right: 0; bottom: 0; left: 0; height: 52px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; border-top: 1px solid #e3e5e8; background: rgba(255, 255, 255, .97); }
.phone-nav span { display: grid; justify-items: center; gap: 2px; color: #a5abb2; font-size: .34rem; font-weight: 700; }
.phone-nav span.active { color: var(--blue); }
.phone-nav svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--blue-dark); font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.section-kicker::before { content: ""; width: 29px; height: 1px; background: currentColor; }
.section-heading { max-width: 850px; margin: 0 auto 52px; text-align: center; }
.section-heading .section-kicker { justify-content: center; }
.section-heading h2 { margin-top: 15px; color: var(--ink); font-family: var(--font-serif); font-size: clamp(2.35rem, 3.7vw, 3.75rem); font-weight: 800; line-height: 1.28; letter-spacing: -.063em; }
.section-heading h2 em { color: var(--blue-dark); font-style: normal; }
.section-heading > p { max-width: 760px; margin: 16px auto 0; color: var(--muted); font-size: .96rem; line-height: 1.8; letter-spacing: -.025em; }
.section-heading.compact { max-width: 750px; }

.story { overflow: hidden; background: #fff; }
.story::after { content: ""; position: absolute; top: 70px; right: -180px; width: 630px; height: 630px; border: 1px dashed rgba(17, 18, 20, .07); border-radius: 50%; pointer-events: none; }
.story-intro { position: relative; padding-bottom: 62px; border-bottom: 1px solid var(--line); }
.story-intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 74px; align-items: start; margin-top: 25px; }
.story-intro h2 { color: var(--ink); font-family: var(--font-serif); font-size: clamp(2.08rem, 2.9vw, 3.05rem); font-weight: 800; line-height: 1.35; letter-spacing: -.058em; }
.story-copy { display: grid; gap: 18px; padding-top: 8px; color: #5e636a; font-size: .99rem; line-height: 1.95; letter-spacing: -.025em; }
.story-copy .story-lead { color: #33373d; font-size: 1.13rem; font-weight: 700; }
.story-copy strong { color: var(--ink); font-weight: 900; }
.story-reasons-section { position: relative; margin-top: 42px; color: #343941; font-family: var(--font-sans); }
.story-reasons-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.story-reason-card { position: relative; min-width: 0; min-height: 394px; overflow: hidden; padding: 29px 28px; isolation: isolate; border: 1px solid #dfe3e8; border-radius: 17px; background: #fbfbfc; box-shadow: 0 12px 34px rgba(17, 19, 24, .035); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.story-reason-card::before { content: ""; position: absolute; top: 0; left: 28px; width: 40px; height: 3px; border-radius: 0 0 999px 999px; background: #2458e6; opacity: 0; transform: scaleX(.3); transform-origin: left; transition: opacity .22s ease, transform .22s ease; }
.story-reason-card:hover { z-index: 1; border-color: #c8ced7; box-shadow: 0 22px 54px rgba(17, 19, 24, .075); transform: translateY(-5px); }
.story-reason-card:hover::before { opacity: 1; transform: scaleX(1); }
.story-reason-number { display: block; color: #a4abb5; font-family: Georgia, "Times New Roman", serif; font-size: .88rem; font-weight: 700; letter-spacing: .09em; }
.story-reason-copy { position: relative; z-index: 2; }
.story-reason-copy h3 { margin-top: 21px; color: #111318; font-size: clamp(1.28rem, 1.65vw, 1.55rem); font-weight: 900; line-height: 1.47; letter-spacing: -.045em; }
.story-reason-copy p { max-width: 96%; margin-top: 13px; color: #6f7680; font-size: .92rem; font-weight: 500; line-height: 1.82; letter-spacing: -.022em; }
.story-reason-art { position: absolute; right: -4px; bottom: -2px; z-index: 1; width: min(83%, 335px); height: auto; pointer-events: none; user-select: none; }
.story-master-quote { position: relative; min-height: 145px; display: grid; grid-template-columns: 56px minmax(0, 1fr) 66px; gap: 18px; align-items: center; margin-top: 22px; padding: 22px 31px; overflow: hidden; border: 1px solid #d5def2; border-radius: 16px; background: #f0f4ff; }
.story-master-quote::after { content: ""; position: absolute; right: -82px; bottom: -96px; width: 210px; height: 210px; border: 1px solid rgba(36, 88, 230, .1); border-radius: 50%; pointer-events: none; }
.story-quote-mark { align-self: start; color: rgba(36, 88, 230, .25); font-family: Georgia, "Times New Roman", serif; font-size: 5rem; line-height: .92; transform: translateY(2px); }
.story-quote-content { position: relative; z-index: 1; }
.story-quote-content p { color: #292e36; font-size: 1.08rem; font-weight: 750; line-height: 1.72; letter-spacing: -.035em; }
.story-quote-content strong { color: #173fae; font-weight: 900; }
.story-quote-content cite { display: block; margin-top: 7px; color: #7a8290; font-size: .76rem; font-style: normal; font-weight: 700; letter-spacing: -.015em; }
.story-quote-icon { position: relative; z-index: 1; width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid rgba(36, 88, 230, .08); border-radius: 50%; color: #2458e6; background: rgba(255, 255, 255, .96); box-shadow: 0 12px 28px rgba(40, 72, 150, .09); }
.story-quote-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.method { overflow: hidden; border-top: 1px solid #eef0f2; background: var(--surface); }
.method::before { content: ""; position: absolute; inset: 0; background: url("../images/landing/ink-haze.png") center top / cover no-repeat; opacity: .65; pointer-events: none; }
.method-orbit { position: absolute; top: 60px; right: -120px; width: 610px; opacity: .6; pointer-events: none; }
.method .container { position: relative; z-index: 1; }
.method-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 17px; background: rgba(255, 255, 255, .88); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.method-step { position: relative; min-width: 0; padding: 29px 25px 25px; border-right: 1px solid var(--line); }
.method-step:last-child { border-right: 0; }
.method-step::after { content: ""; position: absolute; top: 61px; right: -12px; z-index: 3; width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 50%; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m9 6 6 6-6 6' fill='none' stroke='%2390969e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat; }
.method-step:last-child::after { display: none; }
.method-icon { position: relative; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid #c8d5fa; border-radius: 50%; color: var(--blue); background: var(--blue-soft); }
.method-step:nth-child(2) .method-icon { color: var(--green); border-color: #bfe6d9; background: var(--green-soft); }
.method-step:nth-child(3) .method-icon { color: var(--violet); border-color: #d9cff7; background: var(--violet-soft); }
.method-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.method-icon span { position: absolute; top: -4px; right: -3px; width: 24px; height: 24px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; color: #fff; background: var(--ink); font-size: .66rem; font-weight: 900; }
.method-copy { margin-top: 21px; }
.method-label { color: var(--blue-dark); font-size: .73rem; font-weight: 900; letter-spacing: .06em; }
.method-step:nth-child(2) .method-label { color: #117b65; }
.method-step:nth-child(3) .method-label { color: #5d44b6; }
.method-copy h3 { margin-top: 9px; color: var(--ink); font-size: 1.18rem; font-weight: 900; line-height: 1.5; letter-spacing: -.04em; }
.method-copy > p:not(.method-label) { margin-top: 13px; color: #6b7077; font-size: .82rem; line-height: 1.78; letter-spacing: -.018em; }
.example-chip { margin-top: 21px; padding: 13px 14px; border: 1px solid #e1e4e8; border-radius: 9px; background: #fff; }
.example-chip span, .example-chip strong { display: block; }
.example-chip span { color: #9298a0; font-size: .62rem; font-weight: 800; }
.example-chip strong { margin-top: 4px; overflow: hidden; color: #363a40; font-size: .76rem; font-weight: 900; text-overflow: ellipsis; white-space: nowrap; }
.method-principle { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 23px; padding: 15px 22px; border: 1px solid var(--line); border-radius: 12px; color: #7a8088; background: rgba(255, 255, 255, .72); font-size: .88rem; }
.method-principle strong { color: var(--ink); font-weight: 900; }

.features { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 17px; }
.feature-card { position: relative; min-height: 280px; overflow: hidden; padding: 26px 25px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: 0 9px 24px rgba(17, 18, 20, .045); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: #c7cbd0; box-shadow: 0 22px 50px rgba(17, 18, 20, .085); }
.feature-card-large { grid-column: span 7; display: flex; flex-direction: column; background: #f5f7fc; }
.feature-card:nth-child(2) { grid-column: span 5; }
.feature-card:nth-child(3) { grid-column: span 5; }
.feature-card-wide { grid-column: span 7; display: grid; grid-template-columns: auto minmax(0, 1fr); grid-template-rows: auto 1fr; column-gap: 22px; background: #f8f8f7; }
.feature-index { position: absolute; top: 18px; right: 20px; color: #b0b5bc; font-family: var(--font-serif); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 14px; color: var(--blue); background: var(--blue-soft); }
.feature-card:nth-child(3) .feature-icon { color: var(--violet); background: var(--violet-soft); }
.feature-card:nth-child(4) .feature-icon { color: var(--orange); background: var(--orange-soft); }
.feature-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin-top: 20px; color: var(--ink); font-size: 1.2rem; font-weight: 900; letter-spacing: -.04em; }
.feature-card > p, .feature-card > div > p { margin-top: 13px; color: #6c7178; font-size: .86rem; line-height: 1.78; letter-spacing: -.02em; }
.feature-demo { position: static; margin-top: 18px; padding: 13px 15px; border: 1px solid #dfe3eb; border-radius: 10px; background: #fff; }
.feature-demo span { color: #9298a0; font-size: .62rem; font-weight: 800; }
.feature-demo strong { display: block; margin-top: 4px; color: #30343a; font-size: .85rem; font-weight: 900; }
.feature-demo .bar { height: 6px; margin-top: 10px; }
.feature-demo small { display: block; margin-top: 7px; color: #8f959d; font-size: .62rem; font-weight: 700; }
.feature-card-wide .feature-icon { grid-row: 1 / 3; }
.feature-card-wide > div { padding-right: 5px; }
.feature-card-wide h3 { margin-top: 2px; }
.badge-demo { grid-column: 2; display: flex; flex-wrap: wrap; gap: 8px; align-self: end; margin-top: 24px; }
.badge-demo span { min-height: 42px; display: inline-flex; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid #dedfe2; border-radius: 9px; color: #555b62; background: #fff; font-size: .71rem; }
.badge-demo svg { width: 17px; height: 17px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.badge-demo b { font-weight: 900; }

.growth { overflow: hidden; border-top: 1px solid var(--line); background: #f5f5f3; }
.growth::before { content: ""; position: absolute; top: -250px; left: -180px; width: 730px; height: 730px; border: 1px dashed rgba(17, 18, 20, .06); border-radius: 50%; }
.growth-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 55px; align-items: center; }
.growth-copy h2 { margin-top: 15px; color: var(--ink); font-family: var(--font-serif); font-size: clamp(2.35rem, 3.5vw, 3.7rem); font-weight: 800; line-height: 1.3; letter-spacing: -.064em; }
.growth-copy h2 em { color: var(--blue-dark); font-style: normal; }
.growth-copy > p { margin-top: 21px; color: #686e75; font-size: .96rem; line-height: 1.86; letter-spacing: -.02em; }
.growth-benefits { display: grid; gap: 10px; margin-top: 26px; }
.growth-benefits li { min-height: 74px; display: grid; grid-template-columns: 49px minmax(0, 1fr); gap: 14px; align-items: center; padding: 12px 14px; border: 1px solid #dedfe1; border-radius: 12px; background: rgba(255, 255, 255, .78); }
.growth-benefits li > span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 11px; color: var(--blue); background: var(--blue-soft); }
.growth-benefits li:nth-child(2) > span { color: var(--green); background: var(--green-soft); }
.growth-benefits li:nth-child(3) > span { color: var(--violet); background: var(--violet-soft); }
.growth-benefits svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.growth-benefits strong { display: block; color: #31353a; font-size: .87rem; font-weight: 900; }
.growth-benefits p { margin-top: 3px; color: #858b92; font-size: .73rem; line-height: 1.55; }
.growth-note { display: flex; align-items: center; gap: 10px; margin-top: 19px; color: #4e545b; font-size: .81rem; font-weight: 800; }
.growth-note svg { width: 20px; height: 20px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.report-scene { position: relative; min-width: 0; padding: 27px 74px 54px 0; }
.report-window { min-width: 0; display: grid; grid-template-columns: 136px minmax(0, 1fr); overflow: hidden; border: 1px solid #d2d5da; border-radius: 17px; background: #fff; box-shadow: var(--shadow-lg); }
.report-sidebar { min-height: 490px; padding: 15px 9px; border-right: 1px solid #e2e4e7; color: #69707a; background: #fff; }
.report-logo { display: flex; align-items: center; gap: 7px; overflow: hidden; padding: 2px 4px 18px; color: var(--ink); font-size: .5rem; font-weight: 900; white-space: nowrap; }
.report-logo span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.report-logo img { width: 24px; height: 24px; }
.report-sidebar ul { display: grid; gap: 4px; }
.report-sidebar li { min-height: 37px; display: flex; align-items: center; gap: 7px; overflow: hidden; padding: 0 8px; border-radius: 7px; font-size: .5rem; font-weight: 700; white-space: nowrap; }
.report-sidebar li.active { color: var(--ink); background: #eef0f3; }
.report-sidebar svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.report-main { min-width: 0; padding: 19px; background: #f9fafb; }
.report-header { min-height: 52px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.report-header small { color: #9298a0; font-size: .49rem; font-weight: 700; }
.report-header h3 { margin-top: 1px; color: #22252a; font-size: .89rem; font-weight: 900; }
.report-user { display: flex; align-items: center; gap: 6px; color: #656b73; font-size: .48rem; font-weight: 800; white-space: nowrap; }
.report-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
.report-metrics article { min-width: 0; padding: 10px; border: 1px solid #e0e3e6; border-radius: 8px; background: #fff; }
.report-metrics span { display: block; overflow: hidden; color: #8d939b; font-size: .45rem; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.report-metrics strong { display: block; margin-top: 7px; color: var(--ink); font-family: var(--font-serif); font-size: .94rem; line-height: 1; }
.report-metrics small { margin-left: 2px; color: #878d95; font-family: var(--font-sans); font-size: .42rem; }
.report-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 7px; margin-top: 7px; }
.report-card { min-width: 0; padding: 11px; border: 1px solid #e0e3e6; border-radius: 9px; background: #fff; }
.report-card .card-heading h4 { font-size: .54rem; }
.report-line-card svg { width: 100%; height: 151px; overflow: visible; }
.report-grid-lines path { fill: none; stroke: #eceef1; stroke-width: 1; }
.report-area { fill: rgba(49, 95, 219, .08); }
.report-line { fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.report-dots circle { fill: #fff; stroke: var(--blue); stroke-width: 2.2; }
.distribution-body { min-height: 150px; display: grid; grid-template-columns: 83px 1fr; gap: 11px; align-items: center; }
.distribution-ring { width: 80px; height: 80px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) 0 45%, var(--green) 45% 75%, var(--orange) 75% 90%, var(--violet) 90%); }
.attendance-distribution-ring { background: conic-gradient(var(--green) 0 78%, #e9ecf1 78%); }
.distribution-ring::before { content: ""; grid-area: 1 / 1; width: 57px; height: 57px; border-radius: 50%; background: #fff; }
.distribution-ring span { position: relative; z-index: 1; grid-area: 1 / 1; color: #767c84; font-size: .4rem; font-weight: 800; }
.distribution-body ul { display: grid; gap: 7px; }
.distribution-body li { display: grid; grid-template-columns: 7px 1fr auto; gap: 5px; align-items: center; color: #747a82; font-size: .44rem; font-weight: 700; }
.distribution-body li i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.distribution-body li:nth-child(2) i { background: var(--green); }
.distribution-body li:nth-child(3) i { background: var(--orange); }
.distribution-body li:nth-child(4) i { background: var(--violet); }
.distribution-body li b { color: #34383e; font-weight: 900; }
.completed-card ul, .records-card ul { margin-top: 2px; }
.completed-card li, .records-card li { min-height: 45px; display: grid; grid-template-columns: 27px minmax(0, 1fr); gap: 8px; align-items: center; border-bottom: 1px solid #eff0f2; }
.completed-card li:last-child, .records-card li:last-child { border-bottom: 0; }
.completed-card li > span, .record-thumb { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: var(--green); background: var(--green-soft); }
.completed-card svg, .record-thumb svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.completed-card strong, .completed-card small, .records-card strong, .records-card small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.completed-card strong, .records-card strong { color: #3b3f45; font-size: .45rem; font-weight: 800; }
.completed-card small, .records-card small { margin-top: 2px; color: #9ba0a7; font-size: .38rem; }
.record-thumb { color: var(--blue); background: var(--blue-soft); }
.goal-phone { position: absolute; right: 0; bottom: 0; z-index: 5; width: 184px; min-height: 395px; overflow: hidden; border: 7px solid #111318; border-radius: 30px; background: #f6f7f8; box-shadow: 0 24px 55px rgba(17, 18, 20, .25); }
.goal-phone::before { content: ""; position: absolute; top: 0; left: 50%; z-index: 2; width: 72px; height: 15px; border-radius: 0 0 12px 12px; background: #111318; transform: translateX(-50%); }
.goal-phone-top { height: 29px; display: flex; align-items: center; justify-content: space-between; padding: 8px 11px 0; color: #111318; font-size: .4rem; font-weight: 800; }
.goal-phone-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; padding: 14px 11px 9px; }
.goal-phone-head small { display: block; color: #969ca4; font-size: .38rem; font-weight: 700; }
.goal-phone-head h3 { margin-top: 1px; color: #23262b; font-size: .68rem; font-weight: 900; }
.goal-phone-head button { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; color: #fff; background: var(--ink); font-size: .8rem; line-height: 1; }
.goal-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin: 0 10px 8px; padding: 3px; border-radius: 7px; background: #e9ebee; }
.goal-tabs span { min-height: 23px; display: grid; place-items: center; border-radius: 5px; color: #969ca4; font-size: .38rem; font-weight: 800; }
.goal-tabs span.active { color: #2d3137; background: #fff; box-shadow: 0 2px 7px rgba(17, 18, 20, .08); }
.goal-phone-card { margin: 0 9px 8px; padding: 10px; border: 1px solid #dfe2e5; border-radius: 10px; background: #fff; }
.goal-phone-title { display: grid; grid-template-columns: 27px minmax(0, 1fr); gap: 7px; align-items: center; }
.goal-phone-title > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: var(--blue); background: var(--blue-soft); }
.goal-phone-title svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.goal-phone-title small, .goal-phone-title strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.goal-phone-title small { color: #9ba1a8; font-size: .35rem; font-weight: 700; }
.goal-phone-title strong { margin-top: 1px; color: #31353a; font-size: .46rem; font-weight: 900; }
.goal-phone-progress { display: grid; grid-template-columns: 52px 1fr; gap: 7px; align-items: center; margin-top: 10px; }
.small-ring { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) 80%, #e8ebef 0); }
.small-ring::before { content: ""; grid-area: 1 / 1; width: 39px; height: 39px; border-radius: 50%; background: #fff; }
.small-ring strong { position: relative; z-index: 1; grid-area: 1 / 1; color: var(--blue-dark); font-family: var(--font-serif); font-size: .6rem; }
.goal-phone-progress ul { display: grid; gap: 4px; }
.goal-phone-progress li { display: flex; justify-content: space-between; gap: 5px; color: #8c9299; font-size: .33rem; font-weight: 700; }
.goal-phone-progress li b { color: #454a50; font-weight: 900; }
.goal-phone-card > button { width: 100%; min-height: 29px; margin-top: 10px; border-radius: 7px; color: #fff; background: var(--ink); font-size: .39rem; font-weight: 900; }
.goal-phone-card.secondary .goal-phone-title > span { color: var(--orange); background: var(--orange-soft); }
.goal-phone-card.secondary .bar { height: 4px; margin-top: 10px; }
.goal-phone-card.secondary .bar i { background: var(--orange); }
.goal-phone-card.secondary > small { display: block; margin-top: 5px; color: #989ea5; font-size: .34rem; text-align: right; }

.closing { position: relative; min-height: 505px; overflow: hidden; color: #fff; background: #0b0c0e; }
.closing::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 50%, rgba(255, 255, 255, .055), transparent 34%), radial-gradient(circle at 18% 40%, rgba(255, 255, 255, .035), transparent 28%); }
.closing-grain { position: absolute; inset: 0; background: url("../images/landing/grain.png") repeat; opacity: .35; mix-blend-mode: soft-light; }
.closing-grid { position: relative; min-height: 505px; display: grid; grid-template-columns: .68fr 1.32fr; gap: 55px; align-items: center; }
.closing-figure-wrap { position: relative; align-self: stretch; min-width: 0; }
.closing-figure-wrap::after { content: ""; position: absolute; top: 0; right: -70px; bottom: 0; width: 220px; background: linear-gradient(90deg, transparent, #0b0c0e 78%); }
.closing-figure-wrap img { position: absolute; right: -20px; bottom: 0; width: 600px; max-width: none; filter: contrast(1.02); }
.closing-copy { position: relative; z-index: 2; padding: 72px 0; }
.closing-kicker { color: rgba(255, 255, 255, .56); font-size: .79rem; font-weight: 900; letter-spacing: .11em; }
.closing-copy h2 { margin-top: 17px; font-family: var(--font-serif); font-size: clamp(2.5rem, 4vw, 4.35rem); font-weight: 800; line-height: 1.32; letter-spacing: -.065em; }
.closing-copy h2 em { color: #a9c0ff; font-style: normal; }
.closing-copy > p:not(.closing-kicker) { max-width: 740px; margin-top: 19px; color: rgba(255, 255, 255, .68); font-size: .98rem; line-height: 1.83; }
.closing-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 23px; margin-top: 28px; }
.text-link { position: relative; color: rgba(255, 255, 255, .76); font-size: .86rem; font-weight: 800; }
.text-link::after { content: ""; position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; background: currentColor; transform: scaleX(.35); transform-origin: left; transition: transform .2s ease; }
.text-link:hover::after { transform: scaleX(1); }

.site-footer { color: rgba(255, 255, 255, .7); background: #15171a; }
.footer-bottom { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: rgba(255, 255, 255, .45); font-size: .69rem; font-weight: 600; }
.footer-policy-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 20px; }
.footer-policy-links a { color: rgba(255, 255, 255, .62); font-size: .72rem; font-weight: 700; transition: color .2s ease; }
.footer-policy-links a:hover { color: #fff; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.2, .7, .2, 1), transform .75s cubic-bezier(.2, .7, .2, 1); transition-delay: calc(var(--reveal-delay, 0) * 1ms); }
.js [data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 1280px) {
  :root { --container: 1180px; }
  .hero-grid { grid-template-columns: minmax(400px, .78fr) minmax(640px, 1.22fr); gap: 35px; }
  .hero h1 { font-size: clamp(3.1rem, 4.1vw, 4.5rem); }
  .hero-figure { left: -135px; width: 580px; }
  .dashboard-shell { grid-template-columns: 140px minmax(0, 1fr); }
  .dashboard-content { padding: 18px; }
  .phone-shell { right: -8px; }
  .story-intro-grid { gap: 65px; }
  .method-step { padding-right: 22px; padding-left: 22px; }
  .report-scene { padding-right: 64px; }
  .report-window { grid-template-columns: 132px minmax(0, 1fr); }
  .report-main { padding: 16px; }
}

@media (max-width: 1100px) {
  :root { --header-height: 72px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .header-cta { display: none; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 42px; padding-top: calc(var(--header-height) + 50px); padding-bottom: 78px; }
  .hero-copy { min-height: 570px; max-width: 850px; padding-bottom: 18px; }
  .hero h1 { font-size: clamp(3.55rem, 7.4vw, 5.3rem); }
  .hero-description { max-width: 700px; }
  .hero-figure { right: -30px; bottom: -10px; left: auto; width: 610px; opacity: .25; }
  .hero-product { width: min(860px, 100%); margin: 0 auto; padding-right: 26px; }
  .story-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-reasons-grid { grid-template-columns: 1fr; }
  .story-reason-card { min-height: 300px; padding-right: 42%; }
  .story-reason-copy p { max-width: 100%; }
  .story-reason-art { width: min(43%, 330px); }
  .method-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card-large, .feature-card-wide { grid-column: span 2; }
  .feature-card:nth-child(2), .feature-card:nth-child(3) { grid-column: span 1; }
  .growth-layout { grid-template-columns: 1fr; gap: 44px; }
  .growth-copy { max-width: 760px; }
  .report-scene { width: min(900px, 100%); margin: 0 auto; }
  .closing-grid { grid-template-columns: .75fr 1.25fr; gap: 25px; }
  .closing-figure-wrap img { right: -55px; width: 550px; }
}

@media (max-width: 760px) {
  :root { --header-height: 68px; }
  html { scroll-padding-top: calc(var(--header-height) - 4px); }
  .container { width: min(var(--container), calc(100% - 28px)); }
  .section { padding: 88px 0; }
  .header-inner { min-height: var(--header-height); }
  .brand { font-size: 1.05rem; }
  .brand img { width: 34px; height: 34px; }
  .menu-button { width: 42px; height: 42px; }
  .hero-grid { gap: 34px; padding-top: calc(var(--header-height) + 38px); padding-bottom: 58px; }
  .hero-copy { min-height: 565px; justify-content: flex-start; padding-top: 22px; }
  .eyebrow { font-size: .72rem; }
  .hero h1 { margin-top: 19px; font-size: clamp(2.65rem, 12vw, 4.2rem); line-height: 1.24; }
  .hero-description { margin-top: 20px; font-size: .94rem; line-height: 1.78; }
  .hero-buttons { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
  .hero-buttons .button { width: 100%; }
  .hero-principle { align-items: flex-start; font-size: .75rem; line-height: 1.55; }
  .hero-points { gap: 12px 17px; font-size: .72rem; }
  .hero-figure { right: -155px; bottom: -5px; width: 500px; opacity: .28; }
  .hero-product { padding-right: 0; }
  .dashboard-shell { display: block; border-radius: 14px; }
  .dashboard-sidebar { min-height: 0; padding: 10px 13px; }
  .dashboard-brand { padding: 0; }
  .dashboard-sidebar ul { display: none; }
  .dashboard-content { padding: 14px; }
  .dashboard-header { min-height: 48px; }
  .dashboard-header h2 { font-size: .8rem; }
  .dashboard-update span { display: none; }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric-grid article:nth-child(n+3) { display: none; }
  .dashboard-row-top, .dashboard-row-bottom { grid-template-columns: 1fr; }
  .active-goals-card { display: none; }
  .weekly-card { min-height: 170px; }
  .phone-shell { display: none; }
  .section-heading { margin-bottom: 43px; }
  .section-heading h2 { margin-top: 14px; font-size: clamp(2.05rem, 9vw, 3.05rem); }
  .section-heading > p { margin-top: 16px; font-size: .9rem; line-height: 1.75; }
  .story-intro { padding-bottom: 52px; }
  .story-intro-grid { margin-top: 21px; }
  .story-intro h2 { font-size: clamp(1.95rem, 7.4vw, 2.55rem); }
  .story-copy { font-size: .9rem; line-height: 1.8; }
  .story-copy .story-lead { font-size: 1rem; }
  .story-reasons-section { margin-top: 31px; }
  .story-reasons-grid { gap: 13px; }
  .story-reason-card { min-height: 365px; padding: 25px 22px; }
  .story-reason-copy h3 { margin-top: 17px; font-size: 1.23rem; }
  .story-reason-copy p { max-width: 100%; font-size: .84rem; line-height: 1.72; }
  .story-reason-art { right: -13px; width: min(78%, 310px); }
  .story-master-quote { min-height: 0; grid-template-columns: 35px minmax(0, 1fr); gap: 8px; padding: 23px 20px; }
  .story-quote-mark { font-size: 3.9rem; }
  .story-quote-content p { font-size: .96rem; line-height: 1.67; }
  .story-quote-content p br { display: none; }
  .story-quote-icon { display: none; }
  .method-orbit { right: -280px; }
  .method-steps { grid-template-columns: 1fr; }
  .method-step { padding: 26px 23px 25px; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-step:last-child { border-bottom: 0; }
  .method-step::after { top: auto; right: auto; bottom: -12px; left: 43px; display: block; transform: rotate(90deg); }
  .method-step:last-child::after { display: none; }
  .method-icon { width: 58px; height: 58px; }
  .method-icon svg { width: 28px; height: 28px; }
  .method-copy { margin-top: 20px; }
  .method-copy h3 { font-size: 1.1rem; }
  .method-principle { display: grid; gap: 2px; text-align: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card-large, .feature-card-wide { grid-column: auto; min-height: 0; }
  .feature-card { padding: 25px 23px; }
  .feature-card-wide { display: grid; grid-template-columns: 52px minmax(0, 1fr); grid-template-rows: auto auto; column-gap: 15px; }
  .feature-card-wide .feature-icon { grid-row: 1; width: 52px; height: 52px; }
  .feature-card-wide > div { grid-column: 2; }
  .badge-demo { grid-column: 1 / -1; }
  .growth-copy h2 { font-size: clamp(2.1rem, 9vw, 3.1rem); }
  .growth-copy > p { font-size: .9rem; }
  .growth-benefits li { grid-template-columns: 44px minmax(0, 1fr); padding: 11px 12px; }
  .growth-benefits li > span { width: 41px; height: 41px; }
  .report-scene { padding: 0; }
  .report-window { display: block; border-radius: 14px; }
  .report-sidebar { min-height: 0; padding: 9px 11px; }
  .report-logo { padding: 0; }
  .report-sidebar ul { display: none; }
  .report-main { padding: 13px; }
  .report-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-metrics article:nth-child(n+3) { display: none; }
  .report-grid { grid-template-columns: 1fr; }
  .distribution-card, .completed-card, .records-card { display: none; }
  .report-line-card svg { height: 190px; }
  .goal-phone { display: none; }
  .closing { min-height: auto; }
  .closing-grid { min-height: 610px; display: block; }
  .closing-figure-wrap { position: absolute; right: 0; bottom: 0; left: 0; height: 390px; opacity: .42; }
  .closing-figure-wrap::after { top: -40px; right: 0; bottom: auto; left: 0; width: auto; height: 180px; background: linear-gradient(#0b0c0e, transparent); }
  .closing-figure-wrap img { right: -48px; bottom: -20px; width: 520px; }
  .closing-copy { padding: 78px 0 270px; }
  .closing-copy h2 { font-size: clamp(2.12rem, 9.3vw, 3.1rem); }
  .closing-copy > p:not(.closing-kicker) { font-size: .9rem; }
  .closing-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .footer-bottom { min-height: 108px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 10px; padding: 18px 0; }
  .footer-policy-links { justify-content: flex-start; gap: 8px 15px; }
}

@media (max-width: 420px) {
  .hero-copy { min-height: 585px; }
  .hero h1 { font-size: 2.45rem; }
  .hero-figure { right: -170px; width: 470px; }
  .story-reason-card { min-height: 390px; }
  .story-reason-art { width: 92%; }
  .story-master-quote { grid-template-columns: 1fr; padding-top: 48px; }
  .story-quote-mark { position: absolute; top: 14px; left: 20px; height: 36px; }
  .badge-demo span { width: 100%; }
}

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