:root {
  --page: #fbfaf7;
  --paper: #ffffff;
  --ink: #171615;
  --muted: #706c68;
  --line: rgba(23, 22, 21, .1);
  --orange: #dd5a00;
  --orange-dark: #a83c00;
  --orange-light: #f47a3b;
  --cream: #fff1e5;
  --lilac: #f0eef9;
  --gray: #efeeeb;
  --dark: #111312;
  --green: #36b778;
  --display: "Nunito", ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 28px 80px rgba(44, 35, 28, .12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  min-width: 320px;
  padding: 20px;
  overflow-x: hidden;
  background: linear-gradient(135deg, #ece7df 0%, #f0eff5 48%, #e9e4dd 100%);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; font: inherit; }
img, video, svg { display: block; max-width: 100%; }
::selection { background: var(--orange); color: white; }

.page-shell {
  width: min(1480px, 100%);
  margin-inline: auto;
  overflow: clip;
  border: 1px solid rgba(23, 22, 21, .07);
  border-radius: 30px;
  background: var(--page);
  box-shadow: 0 30px 90px rgba(55, 44, 35, .08);
}

.container { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }
.section { position: relative; scroll-margin-top: 90px; }
.section-title {
  font-family: var(--display);
  font-size: clamp(44px, 5.2vw, 74px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
}
.mini-label {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 250, 247, .84);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { background: rgba(251, 250, 247, .95); box-shadow: 0 10px 35px rgba(45, 36, 30, .06); }
.nav { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 18px; font-weight: 900; letter-spacing: -.035em; }
.brand-mark { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; }
.brand-mark svg, .brand-mark img { width: 38px; height: 38px; }
.brand-mark img { border-radius: 50%; }
.brand-mark rect:first-child { fill: var(--orange); stroke: rgba(255,255,255,.22); }
.brand-mark path, .brand-mark rect:not(:first-child) { fill: none; stroke: white; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.nav-links { display: flex; align-items: center; gap: 34px; color: #5f5b57; font-size: 14px; font-weight: 500; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  padding: 12px 19px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--orange); transform: translateY(-1px); }
.menu-toggle { display: none; width: 42px; height: 42px; cursor: pointer; border-radius: 50%; background: var(--ink); }
.menu-toggle span { display: block; width: 16px; height: 1.5px; margin: 5px auto; border-radius: 4px; background: white; transition: transform .25s ease; }

/* Hero */
.hero { position: relative; min-height: 1060px; overflow: hidden; padding: 60px 0 0; text-align: center; }
.hero::before {
  position: absolute;
  top: 4%;
  left: 50%;
  width: 800px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 139, .22), rgba(229, 220, 250, .14) 48%, transparent 72%);
  content: "";
  filter: blur(8px);
  transform: translateX(-50%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: #68645f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-pill span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(54,183,120,.1); }
.hero h1 { font-family: var(--display); font-size: clamp(64px, 7.7vw, 105px); font-weight: 900; letter-spacing: -.07em; line-height: .82; }
.hero h1 span { display: inline-block; margin-top: 14px; color: var(--orange); }
.hero-copy { max-width: 540px; margin: 28px auto 24px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 18px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 21px;
  cursor: pointer;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; box-shadow: 0 12px 28px rgba(23,22,21,.15); }
.button-dark:hover { background: var(--orange); box-shadow: 0 16px 34px rgba(221,90,0,.2); }
.text-button { display: inline-flex; align-items: center; gap: 10px; padding: 8px 4px; cursor: pointer; background: transparent; font-size: 13px; font-weight: 600; }
.play-dot { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--orange); font-size: 8px; }

.circuit-lines { position: absolute; inset: 0; pointer-events: none; }
.circuit-lines i { position: absolute; display: block; border: 1px solid rgba(23,22,21,.055); }
.circuit-lines i:nth-child(1) { top: 0; left: 5%; width: 36%; height: 620px; border-top: 0; border-radius: 0 0 70% 0; transform: skewX(9deg); }
.circuit-lines i:nth-child(2) { top: 0; right: 5%; width: 36%; height: 620px; border-top: 0; border-radius: 0 0 0 70%; transform: skewX(-9deg); }
.circuit-lines i:nth-child(3) { top: 390px; left: 4%; width: 42%; height: 1px; border: 0; border-top: 1px solid rgba(23,22,21,.055); transform: rotate(28deg); transform-origin: left; }
.circuit-lines i:nth-child(4) { top: 390px; right: 4%; width: 42%; height: 1px; border: 0; border-top: 1px solid rgba(23,22,21,.055); transform: rotate(-28deg); transform-origin: right; }

.hero-stage { position: relative; min-height: 775px; margin-top: 36px; perspective: 1400px; }
.hero-glow { position: absolute; bottom: 40px; left: 50%; width: 600px; height: 470px; border-radius: 50%; background: radial-gradient(circle, rgba(221,90,0,.16), rgba(222,213,247,.16) 50%, transparent 75%); filter: blur(30px); transform: translateX(-50%); }
.phone, .feature-shot { position: relative; overflow: visible; background: transparent; }
.phone-composite { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; filter: drop-shadow(0 26px 38px rgba(38, 28, 20, .18)); }
.hero-phone { position: absolute; z-index: 2; top: 0; left: 50%; width: 345px; height: 768px; transform: translateX(-50%) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform .8s var(--ease); will-change: transform; }
.hero-phone .phone-composite { animation: gentle-float 7s ease-in-out infinite; }
@keyframes gentle-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.metric { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; min-width: 145px; padding: 11px 14px 11px 10px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.9); box-shadow: 0 15px 36px rgba(48,38,30,.1); text-align: left; backdrop-filter: blur(12px); }
.metric-icon { display: grid; width: 32px; height: 32px; flex: 0 0 32px; place-items: center; border-radius: 10px; background: #f0efec; color: #57534f; font-size: 13px; }
.metric-icon.orange { background: rgba(221,90,0,.1); color: var(--orange); font-family: var(--display); font-size: 18px; font-weight: 900; }
.metric-icon.green { background: rgba(54,183,120,.1); color: var(--green); font-size: 8px; }
.metric strong, .metric small { display: block; }
.metric strong { font-family: var(--display); font-size: 16px; font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.metric small { margin-top: 3px; color: var(--muted); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.metric-left { top: 190px; left: 19%; }
.metric-right { top: 90px; right: 19%; }
.metric-low { right: 17%; bottom: 105px; }
.signal { position: absolute; z-index: 3; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(221,90,0,.08); }
.signal-one { top: 275px; left: 29%; }
.signal-two { top: 215px; right: 29%; width: 5px; height: 5px; }

/* Intro and features */
.intro { padding: 130px 0 80px; }
.intro-grid { display: grid; align-items: end; gap: 90px; grid-template-columns: .75fr 1.25fr; }
.intro-note { max-width: 390px; color: var(--muted); font-size: 15px; }
.intro-grid .section-title { justify-self: end; max-width: 650px; }
.features { padding: 30px 0 150px; }
.feature-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.feature-card { position: relative; height: 620px; overflow: hidden; border: 1px solid rgba(23,22,21,.06); border-radius: 28px; perspective: 1200px; }
.feature-plan { background: #efede8; }
.feature-train { background: #eeecf8; }
.feature-proof { background: #e9e8e5; }
.feature-heading { position: relative; z-index: 4; padding: 30px; text-align: center; }
.feature-heading > span { display: grid; width: 28px; height: 28px; margin: 0 auto 15px; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: 10px; font-weight: 700; }
.feature-heading h3 { font-family: var(--display); font-size: 27px; font-weight: 900; letter-spacing: -.04em; }
.feature-heading p { max-width: 280px; margin: 7px auto 0; color: var(--muted); font-size: 13px; }
.feature-shot {
  position: absolute;
  top: 196px;
  left: 50%;
  width: 275px;
  height: 612px;
  transform: translateX(-50%) translateY(var(--lift, 0px)) rotate(var(--rot, 0deg)) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .55s var(--ease);
  will-change: transform;
}
.feature-card:hover .feature-shot { --lift: -12px; --rot: 0deg; }
.plan-shot { --rot: -4deg; }
.train-shot { --rot: 3deg; top: 194px; }
.proof-shot { --rot: -2deg; top: 192px; }

/* Workflow */
.workflow { padding: 145px 0; border-top: 1px solid var(--line); background: var(--paper); }
.workflow-heading { display: grid; align-items: end; gap: 90px; margin-bottom: 80px; grid-template-columns: 1.2fr .8fr; }
.workflow-heading p { max-width: 440px; justify-self: end; color: var(--muted); font-size: 15px; }
.workflow-grid { display: grid; align-items: stretch; gap: 30px; grid-template-columns: .9fr 1.1fr; }
.steps { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.step { display: grid; min-height: 190px; align-content: start; gap: 18px; padding: 27px; border: 1px solid var(--line); border-radius: 22px; background: var(--page); grid-template-columns: 31px 1fr; }
.step > span { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 9px; background: var(--lilac); color: var(--orange); font-size: 10px; font-weight: 700; }
.step h3 { margin: 4px 0 7px; font-family: var(--display); font-size: 18px; font-weight: 900; letter-spacing: -.03em; line-height: 1.1; }
.step p { color: var(--muted); font-size: 13px; }
.workflow-visual { position: relative; min-height: 610px; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg,#f2eee9,#ece9f7); perspective: 1400px; }
.workflow-card-label { position: absolute; z-index: 4; top: 31px; right: 31px; left: 31px; display: flex; align-items: center; justify-content: space-between; }
.workflow-card-label span { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.workflow-card-label strong { max-width: 240px; font-family: var(--display); font-size: 18px; font-weight: 900; line-height: 1.1; text-align: right; }
.workflow-phone { position: absolute; bottom: -150px; left: 50%; width: 330px; height: 734px; transform: translateX(-50%) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform .8s var(--ease); will-change: transform; }

/* Preview */
.preview { padding: 50px 0 145px; background: var(--paper); }
.preview-card { position: relative; display: grid; min-height: 650px; align-items: center; gap: 60px; overflow: hidden; padding: 70px 8%; border-radius: 28px; background: linear-gradient(135deg,#efedf5,#f1efeb); grid-template-columns: .9fr 1.1fr; }
.preview-card::before { position: absolute; top: -210px; right: -180px; width: 600px; height: 600px; border: 1px solid rgba(23,22,21,.06); border-radius: 50%; box-shadow: inset 0 0 0 70px transparent, inset 0 0 0 71px rgba(23,22,21,.04), inset 0 0 0 140px transparent, inset 0 0 0 141px rgba(23,22,21,.04); content: ""; }
.preview-copy { position: relative; z-index: 3; }
.preview-copy .section-title { margin-bottom: 22px; }
.preview-copy p { max-width: 430px; margin-bottom: 30px; color: var(--muted); font-size: 15px; }
.preview-video { position: absolute; z-index: 2; right: 10%; bottom: -160px; width: 305px; height: 660px; overflow: hidden; cursor: pointer; border: 3px solid #343635; border-radius: 50px 50px 0 0; background: #090a0a; box-shadow: var(--shadow); transform: rotate(2deg); }
.preview-video video { width: 100%; height: 100%; object-fit: cover; }
.preview-video::after { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.28),transparent 38%); content: ""; }
.preview-play { position: absolute; z-index: 3; top: 47%; left: 50%; display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(255,255,255,.2); color: white; font-size: 12px; backdrop-filter: blur(12px); transform: translate(-50%,-50%); transition: background .2s ease, transform .2s ease; }
.preview-video:hover .preview-play { background: var(--orange); transform: translate(-50%,-50%) scale(1.07); }

/* FAQ */
.faq { padding: 145px 0; border-top: 1px solid var(--line); background: var(--paper); }
.faq-grid { display: grid; align-items: start; gap: 100px; grid-template-columns: .75fr 1.25fr; }
.faq-heading p { margin-top: 20px; color: var(--muted); font-size: 14px; }
.faq-heading a { color: var(--orange); font-weight: 600; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-family: var(--display); font-size: 17px; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 29px; height: 29px; flex: 0 0 29px; border: 1px solid var(--line); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--orange); content: ""; transform: translate(-50%,-50%); transition: transform .2s ease; }
.faq-list summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%,-50%); }
.faq-list details p { max-width: 650px; padding: 0 48px 28px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

/* Download */
.download { padding: 40px 0 120px; background: var(--paper); }
.download-card { position: relative; display: grid; min-height: 600px; align-items: center; gap: 60px; overflow: hidden; padding: 75px 8%; border-radius: 28px; background: linear-gradient(135deg,#f1eee9,#eeeaf7); grid-template-columns: .9fr 1.1fr; }
.download-card::before { position: absolute; right: -160px; bottom: -250px; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle,rgba(221,90,0,.17),transparent 65%); content: ""; }
.download-copy { position: relative; z-index: 3; }
.download-copy .section-title { margin-bottom: 20px; }
.download-copy > p { margin-bottom: 29px; color: var(--muted); font-size: 15px; }
.store-badge { display: inline-flex; align-items: center; gap: 11px; padding: 11px 16px; border-radius: 12px; background: var(--ink); color: white; box-shadow: 0 12px 28px rgba(23,22,21,.15); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.store-badge:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(221,90,0,.25); }
.store-badge svg { width: 23px; fill: white; }
.store-badge small, .store-badge strong { display: block; line-height: 1.05; }
.store-badge small { margin-bottom: 3px; color: rgba(255,255,255,.62); font-size: 9px; }
.store-badge strong { font-size: 15px; font-weight: 600; }
.download-visual { position: relative; min-height: 500px; perspective: 1400px; }
.download-phone { position: absolute; top: -20px; left: 50%; width: 330px; height: 734px; transform: translateX(-50%) rotate(var(--rot, 4deg)) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform .8s var(--ease); will-change: transform; }
.download-visual:hover .download-phone { --rot: 2deg; }

/* Footer */
.site-footer { padding: 35px 0 28px; background: var(--paper); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 35px 0; border-top: 1px solid var(--line); }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; color: #9a9691; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }

/* Video modal */
.video-modal { position: fixed; z-index: 200; inset: 0; display: grid; visibility: hidden; place-items: center; opacity: 0; transition: opacity .3s ease, visibility .3s ease; }
.video-modal.is-open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; cursor: pointer; background: rgba(8,9,9,.78); backdrop-filter: blur(16px); }
.modal-panel { position: relative; z-index: 2; width: min(420px,calc(100vw - 34px)); transform: translateY(22px) scale(.97); transition: transform .4s var(--ease); }
.video-modal.is-open .modal-panel { transform: none; }
.modal-panel video { width: 100%; max-height: 80vh; border: 2px solid rgba(255,255,255,.14); border-radius: 38px; background: black; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.modal-close { position: absolute; z-index: 3; top: -12px; right: -12px; width: 42px; height: 42px; cursor: pointer; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: #252726; }
.modal-close span { position: absolute; top: 50%; left: 50%; width: 14px; height: 1.5px; background: white; transform: translate(-50%,-50%) rotate(45deg); }
.modal-close span:last-child { transform: translate(-50%,-50%) rotate(-45deg); }
.modal-caption { display: flex; align-items: center; justify-content: space-between; padding: 13px 4px 0; color: white; }
.modal-caption strong { font-family: var(--display); font-weight: 900; }
.modal-caption span { color: rgba(255,255,255,.45); font-size: 11px; }

/* Responsive */
@media (max-width: 1020px) {
  .container { width: min(100% - 42px, 820px); }
  .metric-left { left: 8%; }
  .metric-right { right: 8%; }
  .metric-low { right: 7%; }
  .feature-card { height: 560px; }
  .feature-shot { width: 235px; height: 523px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-visual { min-height: 650px; }
  .preview-card, .download-card { padding-inline: 7%; }
  .preview-video { right: 5%; }
}

@media (max-width: 820px) {
  .nav-links { position: absolute; top: 78px; right: 22px; left: 22px; display: grid; visibility: hidden; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 21px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); opacity: 0; transform: translateY(-8px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
  .nav-links.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav-links a { padding: 12px 14px; border-radius: 10px; }
  .nav-links a:hover { background: #f6f3ef; }
  .nav-cta { margin-left: auto; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
  .hero { min-height: 1040px; }
  .intro-grid, .workflow-heading, .faq-grid { gap: 35px; grid-template-columns: 1fr; }
  .intro-grid .section-title, .workflow-heading p { justify-self: start; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { height: 650px; }
  .feature-shot { width: 285px; height: 634px; }
  .preview-card, .download-card { min-height: 720px; align-items: start; padding-top: 65px; grid-template-columns: 1fr; }
  .preview-copy, .download-copy { max-width: 470px; }
  .preview-video { right: 8%; bottom: -250px; width: 270px; height: 590px; }
  .download-visual { min-height: 460px; }
  .download-phone { top: -30px; width: 285px; height: 634px; }
}

@media (max-width: 600px) {
  body { padding: 0; background: var(--page); }
  .page-shell { border: 0; border-radius: 0; box-shadow: none; }
  .container { width: calc(100% - 30px); }
  .section-title { font-size: clamp(42px,13vw,60px); }
  .nav { min-height: 68px; gap: 8px; }
  .brand { font-size: 16px; }
  .brand-mark, .brand-mark svg, .brand-mark img { width: 34px; height: 34px; flex-basis: 34px; }
  .nav-cta { padding: 10px 13px; font-size: 10px; }
  .menu-toggle { width: 38px; height: 38px; }

  .hero { min-height: 920px; padding-top: 48px; }
  .hero h1 { font-size: clamp(62px,20vw,82px); }
  .hero-copy { max-width: 350px; font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 5px; }
  .hero-stage { min-height: 610px; margin-top: 26px; }
  .hero-phone { width: 260px; height: 579px; }
  .metric { min-width: 120px; padding: 8px 10px 8px 8px; }
  .metric-icon { width: 27px; height: 27px; flex-basis: 27px; }
  .metric strong { font-size: 13px; }
  .metric-left { top: 160px; left: -4px; }
  .metric-right { top: 70px; right: -4px; }
  .metric-low { right: 0; bottom: 45px; }
  .signal { display: none; }
  .circuit-lines i:nth-child(1), .circuit-lines i:nth-child(2) { width: 48%; }

  .intro { padding: 95px 0 60px; }
  .features { padding-bottom: 100px; }
  .feature-card { height: 610px; }
  .feature-shot { width: 270px; height: 601px; }

  .workflow { padding: 100px 0; }
  .workflow-heading { margin-bottom: 50px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 145px; }
  .workflow-visual { min-height: 580px; }
  .workflow-card-label { align-items: flex-start; flex-direction: column; gap: 8px; }
  .workflow-card-label strong { max-width: 260px; text-align: left; }
  .workflow-phone { bottom: -125px; width: 275px; height: 612px; }

  .preview { padding: 30px 0 100px; }
  .preview-card { min-height: 720px; padding: 48px 28px; }
  .preview-video { right: auto; bottom: -270px; left: 50%; width: 250px; height: 540px; margin-left: -125px; transform: rotate(2deg); }
  .preview-copy p { font-size: 14px; }

  .faq { padding: 100px 0; }
  .faq-list summary { min-height: 72px; font-size: 15px; }

  .download { padding-bottom: 80px; }
  .download-card { min-height: 740px; padding: 50px 28px; }
  .download-visual { min-height: 440px; }
  .download-phone { width: 255px; height: 567px; }

  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-links { gap: 14px 20px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
  .modal-close { top: -6px; right: -3px; }
}

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