:root {
  --orange: #ff6d2e;
  --orange-dark: #e84c0a;
  --ink: #171815;
  --cream: #f5f4ee;
  --paper: #fbfaf6;
  --soft: #e8e9e3;
  --lime: #d9ff63;
  --blue: #1677ff;
  --header-height: 76px;
  --page-x: clamp(20px, 5vw, 80px);
  --hero-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", Inter, system-ui, sans-serif;
  word-break: keep-all;
  overflow-x: hidden;
}

body,
a,
button {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--ink);
}

.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.site-header {
  position: fixed;
  z-index: 900;
  inset: 16px var(--page-x) auto;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 8px 0 22px;
  border: 1px solid rgb(23 24 21 / 12%);
  border-radius: 999px;
  background: rgb(251 250 246 / 80%);
  box-shadow: 0 12px 50px rgb(31 24 18 / 8%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgb(251 250 246 / 94%);
  border-color: rgb(23 24 21 / 18%);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

img.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-footer .brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 5px solid var(--orange);
  border-radius: 50%;
}

.brand-footer .brand-mark::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -4px;
  width: 11px;
  height: 5px;
  border-radius: 10px;
  background: var(--orange);
  transform: rotate(48deg);
}

.brand-footer .brand-mark i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  font-size: 13px;
  font-weight: 700;
  color: rgb(23 24 21 / 66%);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(20px, 5vw, 72px);
  padding: calc(var(--header-height) + 70px) var(--page-x) 76px;
  overflow: hidden;
  background: var(--orange);
}

.hero::before {
  content: "";
  position: absolute;
  width: 48vw;
  aspect-ratio: 1;
  left: -20vw;
  bottom: -38vw;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgb(255 255 255 / 4%), 0 0 0 14vw rgb(255 255 255 / 3%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    118deg,
    rgb(23 24 21 / 16%) 0,
    rgb(23 24 21 / 16%) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: multiply;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border: 1px solid rgb(23 24 21 / 32%);
  border-radius: 999px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgb(217 255 99 / 28%);
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(26px, 4.1vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.075em;
  font-weight: 950;
  white-space: nowrap;
}

.hero h1 span {
  color: var(--cream);
}

.hero-plan-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 36px;
  padding: 0;
}

.hero-plan-list li {
  padding: 10px 15px;
  border: 1px solid rgb(23 24 21 / 13%);
  border-radius: 999px;
  background: rgb(251 250 246 / 90%);
  box-shadow: 0 8px 20px rgb(75 28 8 / 8%);
  font-size: clamp(11px, 0.92vw, 14px);
  font-weight: 850;
  letter-spacing: -0.025em;
}

.hero-plan-list li:nth-child(2) {
  color: #fff;
  background: var(--ink);
  transform: rotate(-1.5deg);
}

.hero-plan-list li:nth-child(3) {
  background: var(--lime);
  transform: rotate(1deg);
}

.hero-description {
  margin: 25px 0 0;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.7;
  letter-spacing: -0.025em;
  color: rgb(23 24 21 / 78%);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease,
    background 0.2s ease;
}

.button span {
  font-size: 18px;
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 28px rgb(75 28 8 / 18%);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 34px rgb(75 28 8 / 24%);
}

.hero-visual {
  height: min(760px, 77svh);
  display: grid;
  place-items: center;
  transform: translateY(calc(var(--hero-progress) * 30px));
}

.phone-halo {
  position: absolute;
  width: min(37vw, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 34px 80px rgb(99 63 8 / 25%);
  transform: scale(calc(1 - var(--hero-progress) * 0.12));
}

.hero-phone {
  position: relative;
  z-index: 3;
  height: min(70svh, 690px);
  width: auto;
  border-radius: 13% / 6%;
  filter: drop-shadow(0 28px 38px rgb(76 30 10 / 30%));
  transform: rotate(calc(-6deg + var(--hero-progress) * 11deg))
    scale(calc(1 - var(--hero-progress) * 0.08));
  transition: filter 0.2s ease;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  width: min(45vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgb(23 24 21 / 24%);
  border-radius: 50%;
}

.orbit-one {
  animation: orbit-rotate 20s linear infinite;
}

.orbit-two {
  width: min(52vw, 790px);
  border-style: dashed;
  animation: orbit-rotate 32s linear infinite reverse;
}

.orbit-label {
  position: absolute;
  z-index: 5;
  margin: 0;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 950;
  letter-spacing: 0.15em;
}

.label-one {
  top: 10%;
  right: 2%;
  transform: rotate(7deg);
}

.label-two {
  left: 1%;
  bottom: 13%;
  transform: rotate(-9deg);
}

.metric-card {
  position: absolute;
  z-index: 7;
  min-width: 150px;
  padding: 15px 18px;
  border: 1px solid rgb(23 24 21 / 10%);
  border-radius: 18px;
  background: rgb(255 255 255 / 93%);
  box-shadow: 0 16px 40px rgb(75 28 8 / 18%);
  backdrop-filter: blur(8px);
}

.metric-card span {
  display: block;
  margin-bottom: 4px;
  color: rgb(23 24 21 / 52%);
  font-size: 11px;
  font-weight: 700;
}

.metric-card strong {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.metric-time {
  top: 18%;
  left: 0;
  transform: translateY(calc(var(--hero-progress) * -22px)) rotate(-5deg);
}

.metric-distance {
  right: -2%;
  bottom: 19%;
  transform: translateY(calc(var(--hero-progress) * 25px)) rotate(4deg);
}

.run-dot {
  position: absolute;
  z-index: 6;
  right: 5%;
  top: 15%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 0 0 9px rgb(23 24 21 / 12%);
  animation: bob 3s ease-in-out infinite;
}

.run-dot span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: var(--page-x);
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.scroll-cue i {
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgb(23 24 21 / 35%);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--ink);
  animation: scroll-line 1.8s ease-in-out infinite;
}

.section-pad {
  padding: clamp(100px, 12vw, 190px) var(--page-x);
}

.manifesto {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px 8vw;
  background: var(--paper);
}

.manifesto-heading h2,
.section-heading h2,
.preset-intro h2,
.safety h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(46px, 6.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.manifesto-heading h2 span,
.section-heading h2 span,
.features .section-heading h2 span {
  color: var(--orange);
}

.manifesto-copy {
  align-self: end;
  max-width: 520px;
  padding-bottom: 6px;
}

.manifesto-copy p {
  margin: 0;
  color: rgb(23 24 21 / 62%);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.8;
}

.manifesto-copy p + p {
  margin-top: 24px;
}

.manifesto-copy strong {
  color: var(--ink);
  box-shadow: inset 0 -0.42em var(--lime);
}

.manifesto-punch {
  grid-column: 1 / -1;
  padding-top: clamp(80px, 11vw, 160px);
  text-align: center;
  font-weight: 950;
  letter-spacing: -0.065em;
}

.manifesto-punch span,
.manifesto-punch strong {
  display: block;
  font-size: clamp(44px, 8.5vw, 138px);
  line-height: 0.92;
}

.manifesto-punch span {
  color: rgb(23 24 21 / 18%);
}

.manifesto-punch strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.manifesto-punch strong::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 12%;
  bottom: 2%;
  left: 12%;
  height: 30%;
  background: var(--orange);
  transform: rotate(-1.5deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s;
}

.manifesto-punch strong.is-visible::after {
  transform: rotate(-1.5deg) scaleX(1);
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding: 27px 0;
  color: #fff;
  background: var(--ink);
  transform: rotate(-1.2deg) scale(1.02);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 35px;
  animation: marquee 20s linear infinite;
}

.marquee span {
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 950;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.marquee i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}

.journey {
  background: var(--cream);
}

.section-heading {
  max-width: 1100px;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(50px, 8vw, 140px);
  margin-top: clamp(80px, 9vw, 140px);
}

.journey-visual {
  position: sticky;
  top: 96px;
  height: calc(100svh - 120px);
  min-height: 620px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--orange);
  box-shadow: 0 30px 80px rgb(32 24 16 / 16%);
}

.visual-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.visual-backdrop::before,
.visual-backdrop::after {
  content: "";
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 50%;
}

.visual-backdrop::before {
  top: -15%;
  right: -22%;
  box-shadow: 0 0 0 50px rgb(255 255 255 / 4%), 0 0 0 100px rgb(255 255 255 / 3%);
}

.visual-backdrop::after {
  left: -22%;
  bottom: -15%;
}

.route {
  position: absolute;
  display: block;
  height: 10px;
  border-radius: 20px;
  background: var(--lime);
  opacity: 0.9;
}

.route::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -6px;
  width: 22px;
  height: 22px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--orange);
}

.route-a {
  width: 42%;
  left: -7%;
  top: 26%;
  transform: rotate(28deg);
}

.route-b {
  width: 36%;
  right: -5%;
  bottom: 31%;
  transform: rotate(-34deg);
}

.route-c {
  width: 30%;
  left: 7%;
  bottom: 15%;
  transform: rotate(-12deg);
}

.phone-stage {
  position: absolute;
  inset: 45px 40px 78px;
  display: grid;
  place-items: center;
}

.journey-phone {
  position: absolute;
  z-index: 2;
  max-height: 91%;
  width: auto;
  border-radius: 13% / 6%;
  filter: drop-shadow(0 25px 35px rgb(74 28 9 / 32%));
  transition: opacity 0.65s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.65s ease;
}

.phone-setting {
  z-index: 3;
  opacity: 0.96;
  transform: translate3d(-25%, 2%, 0) rotate(-8deg) scale(0.76);
}

.phone-map {
  z-index: 4;
  opacity: 1;
  transform: translate3d(28%, 2%, 0) rotate(8deg) scale(0.78);
}

.journey-visual[data-active-step="1"] .phone-setting,
.journey-visual[data-active-step="2"] .phone-setting,
.journey-visual[data-active-step="3"] .phone-setting {
  opacity: 0;
  transform: rotate(-10deg) translate3d(-28%, -3%, 0) scale(0.88);
}

.journey-visual[data-active-step="1"] .phone-map,
.journey-visual[data-active-step="2"] .phone-map {
  opacity: 0;
  transform: translate3d(28%, 2%, 0) rotate(10deg) scale(0.72);
}

.journey-visual[data-active-step="3"] .phone-map {
  z-index: 3;
  opacity: 1;
  transform: rotate(2deg) translate3d(0, 0, 0) scale(0.95);
}

.journey-visual[data-active-step="3"] .phone-map {
  filter: brightness(0.56) drop-shadow(0 25px 35px rgb(74 28 9 / 32%));
  transform: rotate(0deg) translate3d(0, 0, 0) scale(0.92);
}

.mission-countdown-card {
  position: relative;
  z-index: 5;
  width: min(88%, 390px);
  padding: 26px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 30px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 26px 65px rgb(74 28 9 / 30%);
  opacity: 0;
  transform: translateY(34px) scale(0.86);
  transition: opacity 0.45s ease, transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.journey-visual[data-active-step="1"] .mission-countdown-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mission-countdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.alarm-off-label,
.mission-start-label {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.alarm-off-label {
  gap: 8px;
  color: rgb(255 255 255 / 56%);
}

.alarm-off-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgb(217 255 99 / 12%);
}

.journey-visual[data-active-step="1"] .alarm-off-label i {
  animation: countdown-signal 1.6s ease-out infinite;
}

.mission-start-label {
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  letter-spacing: 0.08em;
}

.mission-countdown-dial {
  position: relative;
  width: 172px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 20px auto 18px;
  border-radius: 50%;
  background: conic-gradient(var(--lime) 0 94%, rgb(255 255 255 / 13%) 94% 100%);
  transform: rotate(-18deg);
}

.mission-countdown-dial::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 8%);
}

.mission-countdown-dial::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 35px;
  width: 13px;
  height: 13px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
}

.mission-countdown-dial > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  transform: rotate(18deg);
}

.mission-countdown-dial small,
.mission-countdown-dial span {
  color: rgb(255 255 255 / 46%);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.mission-countdown-dial strong {
  margin: 4px 0 1px;
  color: #fff;
  font-size: clamp(45px, 4.2vw, 62px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.07em;
}

.mission-countdown-copy {
  text-align: center;
}

.mission-countdown-copy strong {
  display: block;
  margin: 0;
  font-size: clamp(22px, 2vw, 29px);
  letter-spacing: -0.05em;
}

.mission-countdown-copy p {
  margin: 7px 0 0;
  color: rgb(255 255 255 / 49%);
  font-size: 11px;
}

.mission-countdown-goal {
  position: relative;
  display: grid;
  gap: 3px;
  margin-top: 18px;
  padding: 14px 52px 14px 16px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 17px;
  background: rgb(255 255 255 / 7%);
}

.mission-countdown-goal span {
  color: rgb(255 255 255 / 42%);
  font-size: 8px;
  font-weight: 700;
}

.mission-countdown-goal strong {
  font-size: 14px;
  letter-spacing: -0.025em;
}

.mission-countdown-goal i {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  transform: translateY(-50%);
}

.retry-alarm-card {
  position: relative;
  z-index: 5;
  width: min(88%, 390px);
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 30px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 26px 65px rgb(74 28 9 / 30%);
  opacity: 0;
  transform: translateY(34px) scale(0.86);
  transition: opacity 0.45s ease, transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.journey-visual[data-active-step="2"] .retry-alarm-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.retry-alarm-badge {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.retry-alarm-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.journey-visual[data-active-step="2"] .retry-alarm-badge i {
  animation: countdown-signal-white 1.2s ease-out infinite;
}

.retry-alarm-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 18px auto 14px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgb(255 109 46 / 10%), 0 0 0 17px rgb(255 109 46 / 5%);
}

.journey-visual[data-active-step="2"] .retry-alarm-icon {
  animation: alarm-shake 0.55s ease-in-out infinite alternate;
}

.retry-alarm-icon span {
  color: var(--orange);
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
}

.retry-alarm-copy {
  text-align: center;
}

.retry-alarm-copy small {
  display: block;
  color: rgb(255 255 255 / 47%);
  font-size: 9px;
}

.retry-alarm-copy strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(22px, 2.1vw, 29px);
  letter-spacing: -0.05em;
}

.retry-alarm-copy p {
  margin: 7px 0 0;
  color: rgb(255 255 255 / 52%);
  font-size: 10px;
}

.retry-loop {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  margin-top: 19px;
}

.retry-loop span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 7px 5px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  background: rgb(255 255 255 / 7%);
  font-size: 9px;
  font-weight: 850;
  text-align: center;
}

.retry-loop span:nth-of-type(2) {
  color: var(--ink);
  background: var(--lime);
  font-size: 13px;
}

.retry-loop i {
  color: rgb(255 255 255 / 30%);
  font-size: 11px;
  font-style: normal;
}

.retry-until {
  margin: 13px 0 0;
  color: rgb(255 255 255 / 44%);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.retry-until b {
  color: var(--lime);
}

.success-card {
  position: relative;
  z-index: 5;
  width: min(86%, 380px);
  padding: 30px 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 65px rgb(23 24 21 / 25%);
  text-align: center;
  opacity: 0;
  transform: translateY(35px) scale(0.86);
  transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.2, 1, 0.3, 1);
}

.journey-visual[data-active-step="3"] .success-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 29px;
  font-weight: 950;
}

.success-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.success-card strong {
  display: block;
  font-size: clamp(25px, 2.2vw, 35px);
  letter-spacing: -0.05em;
}

.success-card p {
  margin: 8px 0 0;
  color: rgb(23 24 21 / 54%);
  font-size: 13px;
}

.visual-caption {
  position: absolute;
  z-index: 7;
  right: 26px;
  bottom: 22px;
  left: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}

.visual-caption span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.visual-caption b {
  color: var(--lime);
}

.visual-caption p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.journey-step {
  min-height: 88svh;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: 80px 0;
  opacity: 0.26;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.journey-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  align-self: start;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 900;
  color: var(--orange);
}

.step-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--orange-dark);
}

.journey-step h3 {
  margin: 0;
  font-size: clamp(35px, 4.4vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.065em;
}

.journey-step h3 + p {
  max-width: 590px;
  margin: 26px 0 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.8;
  color: rgb(23 24 21 / 60%);
}

.mini-pills {
  display: flex;
  gap: 9px;
  margin-top: 30px;
}

.mini-pills span {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.mini-pills span:first-child {
  color: var(--ink);
  background: var(--orange);
}

.live-progress {
  max-width: 430px;
  margin-top: 30px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgb(32 24 16 / 6%);
}

.live-progress > div {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.live-progress div span {
  color: var(--orange);
  font-size: 30px;
  font-weight: 900;
}

.live-progress div b {
  color: rgb(23 24 21 / 38%);
  font-size: 14px;
}

.live-progress > i {
  height: 9px;
  display: block;
  margin: 14px 0 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.live-progress > i em {
  width: 62%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--orange);
}

.live-progress > p {
  margin: 0;
  color: rgb(23 24 21 / 52%);
  font-size: 11px;
}

.repeat-rule {
  max-width: 560px;
  display: grid;
  gap: 7px;
  margin-top: 30px;
  padding: 20px 22px;
  border-left: 5px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: #fff;
  box-shadow: 0 12px 28px rgb(32 24 16 / 6%);
}

.repeat-rule span {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.repeat-rule strong {
  font-size: clamp(15px, 1.45vw, 20px);
  letter-spacing: -0.035em;
}

.mission-complete-pill {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 12px 18px;
  border: 1px solid rgb(23 24 21 / 12%);
  border-radius: 999px;
  background: var(--lime);
  font-size: 13px;
}

.flow {
  color: #fff;
  background: var(--ink);
}

.section-heading.light h2 span {
  color: var(--orange);
}

.flow-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(80px, 10vw, 150px) 0 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.flow-list li {
  position: relative;
  min-height: 380px;
  padding: 28px clamp(20px, 2.5vw, 40px) 36px;
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.flow-list li:last-child {
  border-right: 0;
}

.flow-list li > span {
  font-size: 11px;
  font-weight: 900;
  color: rgb(255 255 255 / 40%);
}

.flow-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 60px 0 42px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  font-size: 31px;
  font-weight: 900;
  transition: transform 0.35s ease, background 0.35s ease;
}

.flow-list li:hover .flow-icon {
  background: var(--lime);
  transform: rotate(-8deg) scale(1.08);
}

.flow-list h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.flow-list p {
  margin: 13px 0 0;
  color: rgb(255 255 255 / 48%);
  font-size: 14px;
  line-height: 1.65;
}

.presets {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(580px, 1.35fr);
  gap: clamp(60px, 8vw, 140px);
  background: var(--orange);
}

.preset-intro {
  align-self: center;
}

.preset-intro h2 {
  font-size: clamp(46px, 5.8vw, 90px);
}

.preset-intro > p:last-child {
  margin: 30px 0 0;
  color: rgb(23 24 21 / 68%);
  font-size: 16px;
  line-height: 1.7;
}

.preset-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.preset-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 25px 22px;
  border: 1px solid rgb(23 24 21 / 12%);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 22px 50px rgb(78 28 7 / 13%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.preset-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 30px 70px rgb(78 28 7 / 22%);
}

.preset-card > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.preset-card > p b {
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 9px;
  letter-spacing: 0;
}

.preset-emoji {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 58px 0 40px;
  border-radius: 50%;
  background: var(--soft);
  font-size: 28px;
}

.preset-card.primary {
  min-height: 470px;
  color: #fff;
  background: var(--ink);
  transform: rotate(1.5deg);
}

.preset-card.primary:hover {
  transform: translateY(-10px) rotate(0deg);
}

.preset-card.primary .preset-emoji {
  background: var(--orange);
}

.preset-card.strong .preset-emoji {
  background: var(--lime);
}

.preset-card h3 {
  margin: 0 0 18px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.preset-card > div {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: auto;
}

.preset-card > div strong {
  font-size: clamp(35px, 3vw, 50px);
  letter-spacing: -0.06em;
}

.preset-card > div span {
  margin-right: 4px;
  color: rgb(23 24 21 / 50%);
  font-size: 10px;
}

.preset-card.primary > div span {
  color: rgb(255 255 255 / 50%);
}

.preset-card small {
  display: block;
  margin-top: 14px;
  color: rgb(23 24 21 / 46%);
  font-size: 10px;
  line-height: 1.45;
}

.preset-card.primary small {
  color: rgb(255 255 255 / 46%);
}

.features {
  background: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: clamp(70px, 9vw, 130px);
}

.feature-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgb(23 24 21 / 10%);
  border-radius: 34px;
  background: var(--cream);
}

.feature-live {
  grid-column: span 5;
}

.feature-record {
  grid-column: span 7;
}

.feature-record {
  background: var(--lime);
}

.feature-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.feature-label span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
}

.feature-card h3 {
  margin: 26px 0 0;
  font-size: clamp(31px, 3.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.countdown-demo {
  position: absolute;
  right: clamp(24px, 3vw, 40px);
  bottom: clamp(24px, 3vw, 40px);
  left: clamp(24px, 3vw, 40px);
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 45px rgb(32 24 16 / 10%);
}

.countdown-demo p {
  margin: 0 0 2px;
  color: rgb(23 24 21 / 45%);
  font-size: 11px;
  font-weight: 800;
}

.countdown-demo strong {
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: clamp(47px, 5vw, 72px);
  letter-spacing: -0.07em;
}

.countdown-demo div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.countdown-demo div span {
  height: 100%;
  display: block;
  border-radius: 999px;
  background: var(--orange);
}

.countdown-demo small {
  display: block;
  margin-top: 10px;
  color: rgb(23 24 21 / 45%);
  font-size: 10px;
}

.countdown-demo small b {
  color: var(--ink);
}

.calendar-demo {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: -28px;
  width: min(70%, 500px);
  padding: 28px;
  border-radius: 25px 25px 0 0;
  background: #fff;
  box-shadow: 0 20px 50px rgb(48 56 10 / 18%);
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.calendar-head b {
  font-size: 22px;
}

.calendar-head span {
  color: rgb(23 24 21 / 42%);
  font-size: 9px;
}

.weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.weekdays {
  margin-bottom: 10px;
  color: rgb(23 24 21 / 35%);
  font-size: 9px;
}

.calendar-days span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 750;
}

.calendar-days .done {
  color: #fff;
  background: var(--ink);
}

.calendar-days .done::after {
  content: "✓";
}

.calendar-days .done {
  font-size: 0;
}

.calendar-days .done::after {
  font-size: 10px;
}

.calendar-days .miss {
  color: #fff;
  background: var(--orange);
}

.calendar-days .today {
  box-shadow: inset 0 0 0 2px var(--orange);
}

.calendar-days .muted {
  opacity: 0.25;
}

.safety {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.72fr;
  align-items: center;
  gap: clamp(30px, 6vw, 100px);
  background: var(--cream);
}

.safety-symbol {
  width: min(20vw, 220px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 0 0 18px rgb(255 109 46 / 10%), 0 0 0 36px rgb(255 109 46 / 5%);
}

.safety-symbol span {
  font-size: clamp(65px, 9vw, 130px);
  font-weight: 300;
}

.safety-copy h2 {
  font-size: clamp(38px, 4.7vw, 72px);
}

.safety-copy > p:last-child {
  max-width: 710px;
  margin: 28px 0 0;
  color: rgb(23 24 21 / 58%);
  font-size: 15px;
  line-height: 1.8;
}

.hold-demo {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgb(23 24 21 / 11%);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgb(32 24 16 / 7%);
}

.hold-ring {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  display: grid;
  place-content: center;
  border: 5px solid var(--soft);
  border-top-color: var(--orange);
  border-right-color: var(--orange);
  border-radius: 50%;
  text-align: center;
}

.hold-ring span {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.hold-ring small {
  color: rgb(23 24 21 / 42%);
  font-size: 7px;
  font-weight: 900;
}

.hold-demo > p {
  margin: 0;
}

.hold-demo b,
.hold-demo p span {
  display: block;
}

.hold-demo b {
  font-size: 13px;
}

.hold-demo p span {
  margin-top: 6px;
  color: rgb(23 24 21 / 42%);
  font-size: 10px;
}

.final-cta {
  position: relative;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px var(--page-x) 90px;
  overflow: hidden;
  color: #fff;
  background: var(--orange);
  text-align: center;
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(55px, 8.3vw, 132px);
}

.final-cta h2 span {
  color: var(--ink);
}

.final-cta > p:not(.section-index) {
  position: relative;
  z-index: 2;
  margin: 30px 0 0;
  color: rgb(23 24 21 / 65%);
  font-size: 17px;
}

.button-light {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  color: var(--ink);
  background: #fff;
}

.button-light:hover {
  background: var(--lime);
}

.giant-logo {
  position: absolute;
  right: 0;
  bottom: -0.23em;
  left: 0;
  color: rgb(255 255 255 / 11%);
  font-size: clamp(120px, 22vw, 390px);
  font-weight: 950;
  line-height: 0.75;
  letter-spacing: -0.09em;
  white-space: nowrap;
  pointer-events: none;
}

.cta-track {
  position: absolute;
  width: 82%;
  aspect-ratio: 2.4 / 1;
  border: 2px dashed rgb(23 24 21 / 17%);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.cta-track span {
  position: absolute;
  left: 10%;
  top: 6%;
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--orange);
}

.cta-runner {
  position: absolute;
  right: 15%;
  top: 22%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: var(--ink);
  box-shadow: 0 0 0 10px rgb(23 24 21 / 10%);
  animation: bob 3.5s ease-in-out infinite;
}

footer {
  padding: clamp(42px, 6vw, 78px) var(--page-x) 25px;
  color: #fff;
  background: var(--ink);
}

.footer-release {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: clamp(38px, 5vw, 64px);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.footer-release-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.footer-release h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.footer-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.platform-badge {
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 18px;
  background: rgb(255 255 255 / 6%);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.platform-badge:hover,
.platform-badge:focus-visible {
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 11%);
  transform: translateY(-3px);
}

.platform-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
}

.platform-badge > span {
  display: grid;
  gap: 2px;
}

.platform-badge small {
  color: rgb(255 255 255 / 42%);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.platform-badge b {
  font-size: 17px;
}

.footer-meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding-top: 25px;
}

.brand-footer .brand-mark {
  border-color: var(--orange);
}

.brand-footer .brand-mark i {
  background: #fff;
}

.footer-meta > p {
  margin: 0;
  color: rgb(255 255 255 / 42%);
  font-size: 11px;
  text-align: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: rgb(255 255 255 / 54%);
  font-size: 10px;
}

.footer-legal a {
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}

.footer-legal p {
  margin: 0;
  color: rgb(255 255 255 / 38%);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes countdown-signal {
  0% {
    box-shadow: 0 0 0 0 rgb(217 255 99 / 38%);
  }
  70%,
  100% {
    box-shadow: 0 0 0 10px rgb(217 255 99 / 0%);
  }
}

@keyframes countdown-signal-white {
  0% {
    box-shadow: 0 0 0 0 rgb(255 255 255 / 40%);
  }
  70%,
  100% {
    box-shadow: 0 0 0 9px rgb(255 255 255 / 0%);
  }
}

@keyframes alarm-shake {
  0% {
    transform: rotate(-4deg) scale(0.98);
  }
  100% {
    transform: rotate(4deg) scale(1.02);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-12px) rotate(-3deg);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateX(-110%);
  }
  50%,
  100% {
    transform: translateX(210%);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  }

  .journey-layout {
    grid-template-columns: minmax(320px, 0.85fr) minmax(400px, 1.15fr);
    gap: 60px;
  }

  .presets {
    grid-template-columns: 1fr;
  }

  .preset-intro {
    max-width: 700px;
  }

  .preset-cards {
    max-width: 1000px;
  }

  .safety {
    grid-template-columns: 0.3fr 1fr;
  }

  .hold-demo {
    grid-column: 2;
    max-width: 420px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
    --page-x: 20px;
  }

  .site-header {
    inset: 10px 14px auto;
    height: 54px;
    padding-left: 16px;
  }

  .brand {
    font-size: 17px;
  }

  img.brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-footer .brand-mark {
    width: 24px;
    height: 24px;
    border-width: 4px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 115px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(26px, 7.4vw, 48px);
  }

  .hero-plan-list {
    max-width: 500px;
    margin: 0 0 28px;
  }

  .hero-description {
    font-size: 15px;
  }

  .desktop-only {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: max-content;
  }

  .hero-visual {
    width: 100%;
    height: 580px;
  }

  .phone-halo {
    width: 92vw;
    max-width: 470px;
  }

  .hero-phone {
    max-width: none;
    height: 535px;
  }

  .hero-orbit {
    width: 110vw;
  }

  .orbit-two {
    width: 125vw;
  }

  .metric-card {
    min-width: 128px;
    padding: 12px 14px;
  }

  .metric-card strong {
    font-size: 20px;
  }

  .metric-time {
    left: -4px;
  }

  .metric-distance {
    right: -5px;
  }

  .run-dot {
    right: 3%;
    width: 58px;
    height: 58px;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .manifesto-punch {
    padding-top: 60px;
  }

  .manifesto-punch span,
  .manifesto-punch strong {
    font-size: clamp(42px, 14vw, 75px);
  }

  .journey-layout {
    display: block;
    margin-top: 65px;
  }

  .journey-visual {
    position: relative;
    z-index: 1;
    top: auto;
    height: clamp(500px, 68svh, 620px);
    min-height: 500px;
    margin-bottom: 14px;
    border-radius: 26px;
  }

  .phone-stage {
    inset: 22px 30px 57px;
  }

  .journey-phone {
    max-height: 98%;
  }

  .mission-countdown-card {
    width: min(96%, 340px);
    padding: 18px;
    border-radius: 23px;
  }

  .mission-countdown-dial {
    width: 128px;
    margin: 10px auto 11px;
  }

  .mission-countdown-dial::before {
    inset: 7px;
  }

  .mission-countdown-dial::after {
    top: 0;
    right: 25px;
    width: 11px;
    height: 11px;
    border-width: 3px;
  }

  .mission-countdown-dial strong {
    font-size: 40px;
  }

  .mission-countdown-copy strong {
    font-size: 21px;
  }

  .mission-countdown-copy p {
    font-size: 9px;
  }

  .mission-countdown-goal {
    margin-top: 11px;
    padding: 10px 45px 10px 13px;
  }

  .mission-countdown-goal i {
    width: 28px;
    height: 28px;
  }

  .retry-alarm-card {
    width: min(96%, 340px);
    padding: 18px;
    border-radius: 23px;
  }

  .retry-alarm-icon {
    width: 66px;
    height: 66px;
    margin: 13px auto 11px;
  }

  .retry-alarm-icon span {
    font-size: 35px;
  }

  .retry-alarm-copy strong {
    font-size: 21px;
  }

  .retry-loop {
    margin-top: 13px;
  }

  .retry-loop span {
    min-height: 38px;
    font-size: 8px;
  }

  .retry-until {
    margin-top: 9px;
  }

  .success-card {
    padding: 22px 18px;
  }

  .success-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 14px;
    font-size: 23px;
  }

  .visual-caption {
    right: 17px;
    bottom: 14px;
    left: 17px;
  }

  .journey-step {
    min-height: 0;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 64px 0;
    border-top: 1px solid rgb(23 24 21 / 12%);
    opacity: 1;
    transform: none;
  }

  .journey-step:first-child {
    border-top: 0;
  }

  .journey-step h3 {
    font-size: clamp(34px, 10vw, 54px);
  }

  .journey-step h3 + p {
    padding-right: 8px;
    font-size: 14px;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-list li {
    min-height: 320px;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .flow-list li:nth-child(2) {
    border-right: 0;
  }

  .flow-list li:nth-child(3),
  .flow-list li:nth-child(4) {
    border-bottom: 0;
  }

  .preset-cards {
    grid-template-columns: 1fr;
  }

  .preset-card,
  .preset-card.primary {
    min-height: 330px;
    transform: none;
  }

  .preset-card.primary:hover {
    transform: translateY(-8px);
  }

  .preset-emoji {
    margin: 35px 0 28px;
  }

  .feature-grid {
    display: block;
  }

  .feature-card {
    min-height: 500px;
  }

  .feature-card + .feature-card {
    margin-top: 14px;
  }

  .feature-live {
    min-height: 520px;
  }

  .feature-record {
    min-height: 560px;
  }

  .calendar-demo {
    width: calc(100% - 48px);
    right: 24px;
  }

  .safety {
    grid-template-columns: 1fr;
  }

  .safety-symbol {
    width: 130px;
  }

  .hold-demo {
    grid-column: auto;
  }

  .final-cta {
    min-height: 82svh;
  }

  .cta-track {
    width: 130%;
  }

  .footer-release {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-platforms {
    width: 100%;
    justify-content: flex-start;
  }

  .platform-badge {
    flex: 1 1 160px;
  }

  .footer-meta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-meta > p {
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .footer-platforms {
    flex-direction: column;
  }

  .platform-badge {
    width: 100%;
    min-width: 0;
    flex: none;
  }

  .footer-meta {
    gap: 15px;
  }

  .journey-visual {
    height: 570px;
    min-height: 570px;
  }

  .phone-stage {
    inset: 24px 18px 68px;
  }

  .mission-countdown-card,
  .retry-alarm-card {
    width: min(100%, 300px);
    padding: 16px;
  }

  .mission-countdown-dial {
    width: 112px;
  }

  .mission-countdown-dial strong {
    font-size: 34px;
  }

  .journey-step {
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 52px 0;
  }

  .section-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .hero-visual {
    height: 510px;
  }

  .hero-phone {
    height: 470px;
  }

  .label-one,
  .label-two {
    display: none;
  }

  .metric-card {
    min-width: 112px;
  }

  .metric-distance {
    bottom: 13%;
  }

  .flow-list li {
    min-height: 280px;
    padding: 22px 18px 28px;
  }

  .flow-icon {
    width: 62px;
    height: 62px;
    margin: 45px 0 30px;
    font-size: 25px;
  }

  .flow-list h3 {
    font-size: 19px;
  }

  .flow-list p {
    font-size: 12px;
  }

  .hold-demo {
    align-items: flex-start;
  }

  .hold-ring {
    width: 62px;
    height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-visual,
  .hero-phone,
  .phone-halo,
  .metric-card {
    transform: none !important;
  }
}

/* Approved content architecture: shared inner container and no-JS-safe reveals. */
.container-inner {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: var(--page-x);
}

.site-header {
  display: block;
  width: min(100%, 1280px);
  margin-inline: auto;
  inset-inline: 0;
  padding: 0;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand-wordmark {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.brand,
.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.section-pad {
  padding: clamp(92px, 11vw, 168px) 0;
}

.hero {
  display: block;
  min-height: 100svh;
  padding: 0;
}

.hero-inner {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 76px;
}

.hero h1 {
  white-space: normal;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero h1 span {
  color: var(--ink);
  text-decoration: none;
}

.manifesto-heading h2 span,
.journey .section-heading h2 span,
.features .section-heading h2 span {
  color: var(--ink);
  text-decoration: none;
}

.hero h1::after,
.manifesto-heading h2::after,
.journey .section-heading h2::after,
.features .section-heading h2::after {
  content: "";
  width: 72px;
  height: 7px;
  display: block;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--orange);
}

.hero h1::after {
  background: var(--lime);
}

.hero-context {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 21px;
  border: 1px solid rgb(23 24 21 / 18%);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.store-button small {
  color: currentColor;
  font-size: 11px;
  font-weight: 750;
}

.store-button-disabled {
  color: var(--ink);
  border-color: rgb(23 24 21 / 24%);
  background: var(--cream);
  cursor: not-allowed;
}

.store-button:disabled { opacity: 1; }

.hero-visual {
  height: min(720px, 72svh);
}

.hero-orbit {
  width: min(42vw, 620px);
}

.screen-caption {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 5%;
  max-width: 230px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgb(23 24 21 / 12%);
  border-radius: 14px;
  color: rgb(23 24 21 / 72%);
  background: rgb(255 255 255 / 90%);
  box-shadow: 0 12px 34px rgb(75 28 8 / 14%);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.manifesto {
  display: block;
  padding-inline: 0;
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 46px 8vw;
}

.alarm-contrast {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 14px;
  margin-top: clamp(24px, 4vw, 52px);
}

.alarm-contrast p {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgb(23 24 21 / 12%);
  border-radius: 18px;
  background: #fff;
}

.alarm-contrast b { font-size: 13px; }
.alarm-contrast span { font-size: clamp(16px, 1.65vw, 23px); font-weight: 900; letter-spacing: -0.045em; }
.alarm-contrast p:last-child { color: #fff; background: var(--ink); }

.journey { padding-inline: 0; }

.journey-layout {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.journey-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: clamp(24px, 3vw, 44px);
  background: var(--ink);
}

.actual-screen-stack {
  min-height: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
}

.journey-visual .journey-phone {
  position: static;
  display: block;
  width: auto;
  max-height: min(58svh, 540px);
  height: auto;
  margin: 0;
  border-radius: 18px;
  opacity: 1;
  transform: none;
  filter: drop-shadow(0 16px 25px rgb(0 0 0 / 35%));
}

.journey-visual[data-active-step] .journey-phone {
  display: block;
  opacity: 1;
  transform: none;
  filter: drop-shadow(0 16px 25px rgb(0 0 0 / 35%));
}

.journey-visual .phone-setting { max-width: 48%; }
.journey-visual .phone-map { max-width: 52%; }

.journey-visual .visual-caption {
  position: static;
  display: grid;
  gap: 6px;
  padding: 18px 0 0;
  color: #fff;
}

.visual-caption span { color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: 0.12em; }
.visual-caption p { margin: 0; font-size: 14px; font-weight: 800; line-height: 1.5; }
.visual-caption small { color: rgb(255 255 255 / 65%); font-size: 11px; }

.journey-step {
  min-height: 250px;
  border-color: rgb(23 24 21 / 14%);
  opacity: 1;
  transform: none;
}

.journey-step.is-active { border-color: var(--orange); }
.journey-step h3 { max-width: 590px; }
.step-number,
.step-kicker { color: var(--ink); }
.explanation-tag {
  display: inline-flex;
  margin: 20px 0 0 !important;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgb(23 24 21 / 60%);
  background: var(--soft);
  font-size: 11px !important;
  font-weight: 750;
}

.audience-use {
  padding-inline: 0;
  color: #fff;
  background: var(--ink);
}

.audience-use .section-heading h2 span { color: var(--lime); }

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(48px, 7vw, 90px);
}

.use-case {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 22px;
  background: rgb(255 255 255 / 5%);
}

.use-case > span { color: var(--lime); font-size: 12px; font-weight: 900; letter-spacing: 0.1em; }
.use-case-label { margin: auto 0 12px; color: rgb(255 255 255 / 65%); font-size: 14px; font-weight: 700; }
.use-case h3 { margin: 0; font-size: clamp(25px, 2.25vw, 36px); letter-spacing: -0.06em; }
.use-case h3 + p { margin: 16px 0 0; color: rgb(255 255 255 / 72%); line-height: 1.65; }
.use-case b { color: var(--lime); }

.features { padding-inline: 0; }
.feature-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.feature-live,
.feature-record { grid-column: auto; }

.feature-card { min-height: 470px; }
.progress-example, .record-example {
  display: grid;
  gap: 16px;
  margin-top: 46px;
  padding: 22px;
  border: 1px solid rgb(23 24 21 / 12%);
  border-radius: 18px;
  background: rgb(255 255 255 / 72%);
}

.progress-example > span, .record-example > span { color: rgb(23 24 21 / 60%); font-size: 12px; font-weight: 800; }
.progress-example strong, .progress-example b { font-size: 17px; }
.progress-example i { height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--orange) 0 58%, var(--soft) 58%); }
.progress-example small, .record-example small { color: rgb(23 24 21 / 55%); font-size: 11px; line-height: 1.4; }
.record-example div { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.record-example i { aspect-ratio: 1; border-radius: 50%; background: var(--soft); }
.record-example .is-complete { background: var(--orange); }
.record-example .is-missed { border: 2px solid var(--orange); background: transparent; }

.safety { display: block; padding-inline: 0; }
.safety-inner { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(28px, 5vw, 78px); align-items: center; }
.safety-copy { max-width: 650px; }
.hold-demo { margin: 0; }

.final-cta { padding: 0; color: var(--ink); }
.final-cta-inner { min-height: 680px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.final-cta h2,
.final-cta h2 span,
.final-cta .section-index,
.final-cta-inner > p { color: var(--ink); }
.final-cta .store-actions { margin-top: 26px; }
.final-cta .store-button-disabled { color: var(--ink); border-color: rgb(23 24 21 / 32%); background: rgb(255 255 255 / 28%); }
.platform-note { margin-bottom: 0 !important; font-weight: 800; }
.store-status { margin-top: 14px !important; color: var(--ink) !important; font-size: 12px !important; }

footer { padding-inline: 0; }
.footer-meta { display: grid; grid-template-columns: auto minmax(180px, 1fr) auto; align-items: center; gap: 30px; padding-block: 42px; }
.footer-legal a { min-height: 44px; display: inline-flex; align-items: center; }

@keyframes failsafeReveal {
  to { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: failsafeReveal 0.01s ease 2s forwards;
}

html.js-ready .reveal {
  animation: none;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js-ready .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 820px) {
  .site-header { inset-inline: 0; }
  .header-cta { min-height: 44px; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; padding-top: 126px; }
  .hero-copy { max-width: 620px; }
  .hero-visual { height: 530px; }
  .hero-phone { height: min(62svh, 500px); }
  .hero-orbit { width: min(88vw, 600px); }
  .screen-caption { right: 2%; bottom: 1%; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .alarm-contrast { grid-column: auto; grid-template-columns: 1fr; }
  .journey-layout { grid-template-columns: 1fr; margin-top: 54px; }
  .journey-visual { position: relative; top: 0; height: auto; min-height: 520px; }
  .journey-steps { display: grid; grid-template-columns: 1fr; }
  .journey-step { min-height: 0; padding-block: 32px; }
  .use-case-grid { grid-template-columns: 1fr; }
  .use-case { min-height: 230px; }
  .feature-grid { grid-template-columns: 1fr; }
  .safety-inner { grid-template-columns: auto 1fr; }
  .hold-demo { grid-column: 2; }
  .final-cta-inner { min-height: 620px; }
  .footer-meta { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 480px) {
  :root { --page-x: 20px; }
  .header-cta { min-height: 44px; padding-inline: 14px; font-size: 11px; }
  .hero h1 { max-width: 100%; font-size: clamp(38px, 12vw, 52px); white-space: normal; }
  .hero-description { font-size: 16px; }
  .store-actions { align-items: stretch; flex-direction: column; }
  .store-button { width: 100%; min-height: 52px; }
  .hero-visual { height: 470px; }
  .hero-phone { height: 445px; }
  .screen-caption { max-width: 195px; font-size: 10px; }
  .journey-visual { min-height: 470px; padding: 20px; }
  .actual-screen-stack { gap: 8px; }
  .journey-visual .journey-phone { max-height: 390px; }
  .journey-step h3 { font-size: 28px; }
  .feature-card { min-height: 400px; }
  .safety-inner { grid-template-columns: 1fr; }
  .hold-demo { grid-column: auto; }
  .final-cta-inner { min-height: 600px; }
  .final-cta h2 { font-size: clamp(42px, 12vw, 58px); }
}

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