:root {
  --ink: #090d1a;
  --ink-elevated: #101628;
  --surface: #151c31;
  --surface-soft: #1a2239;
  --paper: #f5f6ff;
  --muted: #a7aec6;
  --quiet: #747d9a;
  --accent: #8f91ff;
  --accent-bright: #b9bbff;
  --accent-deep: #5259d9;
  --cyan: #8fd7ed;
  --line: rgba(197, 204, 255, 0.14);
  --line-strong: rgba(197, 204, 255, 0.25);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);

  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;

  --step--1: clamp(0.76rem, 0.73rem + 0.12vw, 0.84rem);
  --step-0: clamp(0.96rem, 0.91rem + 0.18vw, 1.08rem);
  --step-1: clamp(1.18rem, 1.05rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.55rem, 1.25rem + 1.2vw, 2.3rem);
  --step-3: clamp(2.2rem, 1.65rem + 2.2vw, 3.8rem);
  --step-4: clamp(3.7rem, 2.2rem + 5.7vw, 7.9rem);

  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 7rem;
  --space-9: 10rem;
  --radius-sm: 0.7rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --content: 74rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 8%, rgba(58, 75, 192, 0.2), transparent 31rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
  content: "";
  pointer-events: none;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: var(--space-4) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  border-radius: 22%;
  box-shadow: 0 6px 18px rgba(35, 57, 193, 0.35);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
}

.site-header nav a,
.footer-links a {
  color: var(--muted);
  font-size: var(--step--1);
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-header nav a:hover,
.footer-links a:hover {
  color: var(--paper);
}

.site-header .nav-download {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--paper);
}

.site-header .nav-download:hover {
  border-color: var(--accent);
  background: rgba(143, 145, 255, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  min-height: calc(100vh - 86px);
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: clamp(4rem, 8vh, 7rem) 0 var(--space-8);
}

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

.eyebrow {
  margin: 0 0 var(--space-4);
  color: var(--accent-bright);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  text-wrap: balance;
}

h1 {
  max-width: 7ch;
  font-size: var(--step-4);
  letter-spacing: -0.06em;
  line-height: 0.82;
}

h1 span {
  color: var(--accent-bright);
  font-style: italic;
}

.hero-intro {
  max-width: 35rem;
  margin: var(--space-5) 0 0;
  color: var(--muted);
  font-size: var(--step-1);
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(10, 12, 29, 0.3);
  color: #11152b;
}

.button-primary:hover {
  box-shadow: 0 14px 38px rgba(85, 91, 217, 0.32);
  transform: translateY(-2px);
}

.button-primary:active {
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(1px) scale(0.99);
}

.release-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--quiet);
  font-size: var(--step--1);
  font-weight: 600;
}

.focus-field {
  position: relative;
  display: grid;
  min-height: 38rem;
  place-items: center;
  isolation: isolate;
}

.focus-field::before {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 92, 229, 0.25), rgba(37, 47, 111, 0.05) 52%, transparent 70%);
  content: "";
  filter: blur(10px);
}

.focus-ring {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(143, 145, 255, 0.16);
  border-radius: 3.5rem;
  transform: rotate(-5deg);
}

.ring-one {
  width: 92%;
  height: 84%;
}

.ring-two {
  width: 74%;
  height: 102%;
  border-color: rgba(143, 145, 255, 0.08);
  transform: rotate(7deg);
}

.ambient-tile {
  position: absolute;
  z-index: -1;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.65rem;
  background: rgba(20, 26, 47, 0.62);
  color: rgba(167, 174, 198, 0.38);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  filter: blur(0.35px);
}

.tile-one {
  top: 12%;
  left: 0;
  transform: rotate(-8deg);
}

.tile-two {
  top: 28%;
  right: -1%;
  transform: rotate(7deg);
}

.tile-three {
  bottom: 15%;
  left: 3%;
  transform: rotate(4deg);
}

.app-window {
  position: relative;
  z-index: 2;
  width: min(100%, 36rem);
  overflow: hidden;
  border: 1px solid rgba(207, 214, 255, 0.22);
  border-radius: 1.25rem;
  background: rgba(19, 24, 42, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    var(--shadow);
  backdrop-filter: blur(24px);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.window-bar {
  position: relative;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  min-height: 2.65rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.window-bar > span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #ee6a5f;
}

.window-bar > span:nth-child(2) {
  background: #e9bd4e;
}

.window-bar > span:nth-child(3) {
  background: #61c454;
}

.window-bar p {
  position: absolute;
  left: 50%;
  margin: 0;
  color: rgba(245, 246, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 600;
  transform: translateX(-50%);
}

.app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.1rem 2.7rem 2.5rem;
  text-align: center;
}

.shield-mark {
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: var(--space-3);
  border: 1px solid rgba(143, 145, 255, 0.35);
  border-radius: 1rem;
  background: rgba(143, 145, 255, 0.11);
  color: var(--accent-bright);
  place-items: center;
}

.shield-mark svg,
.feature-icon svg {
  width: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.app-title {
  margin: 0;
  color: #f5f6ff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.app-subtitle {
  margin: 0.3rem 0 1.75rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.preset-control {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  width: 100%;
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.65rem;
  background: rgba(0, 0, 0, 0.22);
}

.preset-control span {
  padding: 0.48rem 0.25rem;
  border-radius: 0.48rem;
  color: var(--quiet);
  font-size: 0.67rem;
  font-weight: 700;
}

.preset-control .selected {
  background: #555ed2;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  color: white;
}

.mock-button {
  margin-top: 1.1rem;
  padding: 0.65rem 1rem;
  border-radius: 0.6rem;
  background: #656ee4;
  color: white;
  font-size: 0.73rem;
  font-weight: 700;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1.55rem 0 0;
  color: var(--quiet);
  font-size: 0.65rem;
}

.privacy-note svg {
  width: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.floating-timer {
  position: absolute;
  z-index: 3;
  right: -1rem;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 11.7rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(207, 214, 255, 0.22);
  border-radius: 1rem;
  background: rgba(28, 35, 58, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
  transform: rotate(2deg);
}

.timer-dot {
  width: 1.8rem;
  height: 1.8rem;
  border: 0.34rem solid var(--accent);
  border-top-color: rgba(143, 145, 255, 0.25);
  border-radius: 50%;
}

.floating-timer small,
.floating-timer strong {
  display: block;
}

.floating-timer small {
  margin-bottom: 0.1rem;
  color: var(--muted);
  font-size: 0.62rem;
}

.floating-timer strong {
  color: var(--paper);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
}

.hero-footnote {
  grid-column: 1 / -1;
  margin: calc(var(--space-6) * -1) 0 0;
  color: var(--quiet);
  font-size: var(--step--1);
  text-align: center;
}

.section-shell {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: var(--space-9) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 1fr) minmax(16rem, 0.65fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: var(--space-7);
}

.section-heading .eyebrow {
  align-self: start;
}

.section-heading h2,
.download-copy h2 {
  font-size: var(--step-3);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 31rem;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  background: var(--ink-elevated);
}

.feature-card::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(143, 145, 255, 0.1), transparent 45%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--space-6);
  border: 1px solid var(--line-strong);
  border-radius: 0.85rem;
  color: var(--accent-bright);
  place-items: center;
}

.feature-label {
  margin: 0 0 0.65rem;
  color: var(--accent-bright);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.feature-card > p:not(.feature-label) {
  max-width: 33rem;
  margin: var(--space-3) 0 0;
  color: var(--muted);
}

.domain-demo,
.mini-timer,
.week-bars,
.nudge-ladder {
  position: static;
  width: 100%;
  margin-top: auto;
  padding-top: var(--space-5);
}

.domain-demo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.domain-demo svg {
  width: 1.25rem;
  fill: none;
  stroke: var(--quiet);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.domain-pill {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
}

.domain-pill.muted {
  color: var(--quiet);
  text-decoration: line-through;
}

.domain-pill.active {
  background: rgba(143, 145, 255, 0.1);
  color: var(--accent-bright);
}

.nudge-ladder {
  display: grid;
  gap: 0.45rem;
  margin: auto 0 0;
  padding: var(--space-5) 0 0;
  list-style: none;
}

.nudge-ladder li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 0.85rem;
  border-left: 2px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.nudge-ladder li:nth-child(2) {
  margin-left: 1rem;
  border-left-color: rgba(143, 145, 255, 0.55);
}

.nudge-ladder li:nth-child(3) {
  margin-left: 2rem;
  border-left-color: var(--accent);
}

.nudge-ladder span {
  font-size: 0.75rem;
  font-weight: 700;
}

.nudge-ladder small {
  color: var(--quiet);
  font-size: 0.65rem;
}

.mini-timer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.mini-timer span {
  width: 1.5rem;
  height: 1.5rem;
  border: 0.3rem solid var(--accent);
  border-top-color: rgba(143, 145, 255, 0.25);
  border-radius: 50%;
}

.mini-timer small {
  color: var(--muted);
}

.mini-timer strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.week-bars {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 7rem;
  padding: 1rem 1rem 0;
  border-bottom: 1px solid var(--line);
}

.week-bars span {
  width: 7%;
  height: var(--bar);
  border-radius: 999px 999px 0 0;
  background: #323b62;
}

.week-bars .today {
  background: var(--accent);
  box-shadow: 0 0 24px rgba(143, 145, 255, 0.26);
}

.process {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.section-heading.compact {
  display: block;
  margin: 0;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--accent-bright);
  font-size: var(--step--1);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-list h3 {
  margin: 0;
  font-size: var(--step-1);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.process-list p {
  max-width: 42rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.download-section {
  padding-bottom: var(--space-8);
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 30%, rgba(90, 103, 221, 0.28), transparent 23rem),
    var(--surface);
  box-shadow: var(--shadow);
}

.download-card::after {
  position: absolute;
  top: -70%;
  right: -15%;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(143, 145, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.download-card > img {
  border-radius: 23%;
  box-shadow: 0 22px 45px rgba(10, 20, 91, 0.48);
}

.download-copy {
  position: relative;
  z-index: 1;
}

.download-copy .eyebrow {
  margin-bottom: var(--space-3);
}

.download-copy > p:last-child {
  max-width: 33rem;
  margin: var(--space-3) 0 0;
  color: var(--muted);
}

.download-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.download-actions small {
  color: var(--quiet);
  font-size: 0.68rem;
}

.install-note {
  max-width: 54rem;
  margin: var(--space-4) auto 0;
  color: var(--quiet);
  font-size: var(--step--1);
  text-align: center;
}

.install-note strong {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: var(--space-6);
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0.75rem 0 0;
  color: var(--quiet);
  font-size: var(--step--1);
}

.footer-links {
  display: flex;
  gap: var(--space-4);
}

.footer-links a:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-links svg {
  width: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.site-footer .copyright {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.feature-grid [data-reveal]:nth-child(2),
.process-list [data-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.feature-grid [data-reveal]:nth-child(3),
.process-list [data-reveal]:nth-child(3) {
  transition-delay: 180ms;
}

.feature-grid [data-reveal]:nth-child(4) {
  transition-delay: 270ms;
}

.hero-step {
  opacity: 0;
  animation: hero-enter 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-copy .hero-step:nth-child(1) {
  animation-delay: 120ms;
}

.hero-copy .hero-step:nth-child(2) {
  animation-delay: 210ms;
}

.hero-copy .hero-step:nth-child(3) {
  animation-delay: 300ms;
}

.hero-copy .hero-step:nth-child(4) {
  animation-delay: 390ms;
}

.focus-field.hero-step {
  animation-delay: 280ms;
}

.hero-footnote.hero-step {
  animation-delay: 520ms;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: var(--space-7);
  }

  .hero-copy {
    max-width: 44rem;
  }

  .focus-field {
    min-height: 34rem;
  }

  .hero-footnote {
    margin-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr 1.4fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .download-card {
    grid-template-columns: auto 1fr;
  }

  .download-actions {
    grid-column: 1 / -1;
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  :root {
    --space-8: 5.5rem;
    --space-9: 7rem;
  }

  .site-header nav a:not(.nav-download) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: var(--space-7);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-3);
  }

  .focus-field {
    min-height: 28rem;
  }

  .app-window {
    transform: none;
  }

  .app-content {
    padding: 2.5rem 1.4rem 2rem;
  }

  .ambient-tile {
    display: none;
  }

  .floating-timer {
    right: -0.2rem;
    bottom: 2%;
  }

  .section-heading,
  .process {
    display: block;
  }

  .section-heading > p:last-child {
    margin-top: var(--space-4);
  }

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

  .process-list {
    margin-top: var(--space-6);
  }

  .download-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-card > img {
    width: 88px;
    margin: 0 auto;
  }

  .download-actions {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-4);
  }
}

@media (max-width: 430px) {
  .hero,
  .section-shell,
  .site-header,
  .site-footer {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .focus-field {
    min-height: 25rem;
  }

  .focus-ring {
    display: none;
  }

  .floating-timer {
    min-width: 10.4rem;
    padding: 0.75rem;
  }

  .feature-card {
    min-height: 32rem;
    padding: 1.5rem;
  }

  .domain-demo,
  .mini-timer,
  .week-bars,
  .nudge-ladder {
    padding-top: var(--space-4);
  }

  .nudge-ladder small {
    display: none;
  }

  .process-list li {
    grid-template-columns: 2.8rem 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }

  [data-reveal],
  .hero-step {
    opacity: 1;
    transform: none;
  }
}
