:root {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', 'Avenir Next', 'Segoe UI', sans-serif;

  --bg: #120f10;
  --bg-soft: #191516;
  --surface: rgba(255, 248, 242, 0.08);
  --surface-strong: rgba(255, 248, 242, 0.12);
  --surface-soft: rgba(255, 248, 242, 0.06);
  --border: rgba(255, 245, 238, 0.12);
  --border-strong: rgba(255, 245, 238, 0.18);

  --text: #fff6f0;
  --text-soft: rgba(255, 246, 240, 0.75);
  --text-faint: rgba(255, 246, 240, 0.48);

  --mint: #1f8e85;
  --peach: #f08a62;
  --sand: #c7b39f;
  --rose: #d77a94;
  --blue: #6f8cb6;
  --ink: #23191b;

  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.22);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;

  --page-width: 1320px;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 142, 133, 0.25), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(240, 138, 98, 0.22), transparent 24%),
    linear-gradient(180deg, #120f10 0%, #171213 40%, #120f10 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

button,
.button {
  font: inherit;
}

.ambient-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ambient-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.6;
  transition: transform 600ms var(--ease-smooth);
}

.ambient-orb-a {
  width: 38rem;
  height: 38rem;
  top: -10rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(31, 142, 133, 0.32), transparent 70%);
}

.ambient-orb-b {
  width: 36rem;
  height: 36rem;
  top: 12rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(240, 138, 98, 0.28), transparent 70%);
}

.ambient-orb-c {
  width: 28rem;
  height: 28rem;
  bottom: -8rem;
  left: 28%;
  background: radial-gradient(circle, rgba(111, 140, 182, 0.22), transparent 70%);
}

.ambient-grid,
.ambient-noise {
  position: absolute;
  inset: 0;
}

.ambient-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
  opacity: 0.25;
}

.ambient-noise {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 0, transparent 30%),
    radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.02) 0, transparent 28%);
  mix-blend-mode: soft-light;
}

.site-header,
.section-shell,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 1.35rem 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.text-link {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.text-link:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms var(--ease-smooth),
    border-color 180ms var(--ease-smooth),
    background-color 180ms var(--ease-smooth),
    color 180ms var(--ease-smooth),
    box-shadow 180ms var(--ease-smooth);
}

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

.button-primary {
  background:
    linear-gradient(135deg, rgba(31, 142, 133, 0.9), rgba(240, 138, 98, 0.92));
  color: #fffdfa;
  box-shadow: 0 18px 36px rgba(193, 104, 76, 0.22);
}

.button-secondary,
.button-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--border-strong);
  background: var(--surface-strong);
}

.section-shell {
  width: min(var(--page-width), calc(100vw - 2.8rem));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  padding: 7rem 0 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

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

.hero h1,
.feature-intro h2,
.story-column h2,
.cinema-copy h2 {
  margin: 1.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.9rem, 8vw, 7.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: block;
  color: color-mix(in srgb, var(--text) 78%, var(--sand));
}

.hero-body,
.feature-copy p,
.story-column p,
.cinema-copy p {
  margin: 1.7rem 0 0;
  max-width: 40rem;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.8;
  color: var(--text-soft);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-micro {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-micro span {
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 248, 242, 0.06);
  border: 1px solid rgba(255, 248, 242, 0.08);
  color: var(--text-faint);
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  min-width: 0;
  min-height: 42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
}

.hero-caption-card,
.device-card,
.metrics-panel,
.feature-card,
.story-panel,
.cinema-frame {
  backdrop-filter: blur(22px);
}

.hero-caption-card {
  position: absolute;
  top: 1.5rem;
  left: 0;
  max-width: 15rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 248, 242, 0.08);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.caption-label,
.card-kicker,
.feature-kicker,
.metric-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-caption-card strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.hero-caption-card p {
  margin: 0.55rem 0 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.device-cluster {
  position: relative;
  width: min(100%, 39rem);
  margin: 0 auto;
  padding-inline: 1.25rem;
  min-height: 42rem;
}

.phone-mockup {
  position: relative;
  width: min(22rem, 100%);
  margin: 0 auto;
  padding: 1.1rem;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(22, 18, 20, 0.95), rgba(20, 16, 18, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-topbar,
.phone-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(255, 246, 240, 0.76);
  font-size: 0.8rem;
}

.phone-topbar > *,
.phone-footer > * {
  min-width: 0;
}

.phone-footer {
  margin-top: 1rem;
}

.phone-footer span {
  flex: 0 0 auto;
}

.phone-footer strong {
  max-width: 7.6rem;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.25;
  text-align: right;
}

.schedule-board {
  margin-top: 1rem;
  min-height: 28rem;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.9rem;
}

.time-rail {
  padding-top: 2.3rem;
  display: grid;
  gap: 2.35rem;
  color: rgba(255, 246, 240, 0.35);
  font-size: 0.76rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.schedule-column {
  position: relative;
  min-height: 100%;
  padding: 2rem 0.5rem 0.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.day-pill {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 246, 240, 0.55);
  font-size: 0.74rem;
  font-weight: 700;
}

.day-pill.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.block {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  padding: 0.7rem 0.75rem;
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: white;
}

.block strong,
.block span {
  display: block;
}

.block strong {
  font-size: 0.76rem;
  line-height: 1.35;
}

.block span {
  margin-top: 0.25rem;
  font-size: 0.68rem;
  opacity: 0.82;
}

.block-a { top: 4.1rem; height: 5rem; background: linear-gradient(180deg, rgba(77, 219, 199, 0.88), rgba(67, 162, 152, 0.9)); }
.block-b { top: 11.2rem; height: 6rem; background: linear-gradient(180deg, rgba(171, 146, 255, 0.85), rgba(141, 108, 230, 0.88)); }
.block-c { top: 6.6rem; height: 4.4rem; background: linear-gradient(180deg, rgba(248, 196, 112, 0.9), rgba(226, 148, 83, 0.92)); }
.block-d { top: 13.7rem; height: 4.8rem; background: linear-gradient(180deg, rgba(255, 150, 182, 0.9), rgba(228, 108, 140, 0.92)); }

.device-card {
  position: absolute;
  width: 13.2rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 248, 242, 0.08);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.device-card-back {
  top: 7rem;
  left: 0.9rem;
  transform: rotate(-8deg);
}

.device-card-front {
  right: 0.9rem;
  bottom: 4rem;
  transform: rotate(8deg);
}

.task-stack {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.task-chip {
  padding: 0.65rem 0.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.task-chip.urgent {
  background: rgba(215, 122, 148, 0.16);
  color: #ffd8e4;
}

.quick-wheel {
  position: relative;
  margin-top: 1rem;
  height: 11rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-plus {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 400;
  color: white;
  background: linear-gradient(135deg, var(--mint), var(--peach));
  box-shadow: 0 14px 28px rgba(31, 142, 133, 0.25);
}

.quick-side {
  position: absolute;
  color: var(--text-faint);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-side.left {
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.quick-side.right {
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.quick-side.top {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.section-metrics {
  padding: 0 0 6rem;
}

.metrics-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 34px;
  background: rgba(255, 248, 242, 0.07);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.metric {
  padding: 1.6rem 1.55rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
}

.metric strong {
  display: block;
  margin-top: 0.65rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 600;
}

.feature-section,
.story-section,
.cinema-strip {
  padding: 8rem 0;
}

.feature-intro {
  max-width: 40rem;
}

.feature-intro h2,
.story-column h2,
.cinema-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

.feature-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 242, 0.06);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: clip;
}

.feature-card > *,
.story-section > * {
  min-width: 0;
}

.feature-copy h3 {
  margin: 0.9rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.scene {
  min-height: 20rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(13, 12, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.scene-window,
.task-sheet {
  position: relative;
  height: 100%;
  padding: 1.2rem;
}

.scene-day-rail {
  display: flex;
  gap: 0.55rem;
}

.scene-day-rail span {
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-faint);
  font-size: 0.78rem;
  font-weight: 700;
}

.scene-day-rail .active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
}

.scene-block {
  position: absolute;
  border-radius: 24px;
  opacity: 0.95;
}

.scene-block.mint {
  left: 1.25rem;
  top: 4.7rem;
  width: 9rem;
  height: 7rem;
  background: linear-gradient(180deg, rgba(77, 219, 199, 0.88), rgba(65, 164, 154, 0.92));
}

.scene-block.blue {
  left: 11.2rem;
  top: 8rem;
  width: 8rem;
  height: 8.5rem;
  background: linear-gradient(180deg, rgba(127, 157, 222, 0.86), rgba(92, 122, 191, 0.92));
}

.scene-block.peach {
  right: 1.2rem;
  top: 5.3rem;
  width: 6.5rem;
  height: 5rem;
  background: linear-gradient(180deg, rgba(248, 196, 112, 0.9), rgba(233, 136, 81, 0.92));
}

.task-sheet {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.task-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-weight: 700;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.6rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag.critical { background: rgba(215, 122, 148, 0.16); color: #ffd5e4; }
.tag.soft { background: rgba(111, 140, 182, 0.16); color: #dce7ff; }
.tag.calm { background: rgba(31, 142, 133, 0.16); color: #d6fbf5; }

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 3rem;
  align-items: center;
}

.story-stack {
  display: grid;
  gap: 1rem;
}

.story-panel {
  padding: 1.4rem 1.45rem;
  border-radius: 28px;
  background: rgba(255, 248, 242, 0.07);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.story-panel span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.story-panel strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.15rem;
  line-height: 1.55;
}

.cinema-frame {
  position: relative;
  min-height: 34rem;
  padding: 4rem;
  border-radius: 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(31, 142, 133, 0.28), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(240, 138, 98, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 248, 242, 0.07), rgba(255, 248, 242, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cinema-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 29rem);
  gap: 2.5rem;
  align-items: center;
}

.cinema-copy {
  position: relative;
  max-width: 35rem;
}

.cinema-infographic {
  position: relative;
  min-height: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.companion-phone {
  position: relative;
  width: min(100%, 20rem);
  padding: 0.95rem;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(20, 16, 17, 0.94), rgba(18, 14, 15, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.companion-screen {
  min-height: 25rem;
  padding: 1rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(31, 142, 133, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(240, 138, 98, 0.16), transparent 40%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.companion-screen-head,
.companion-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(255, 246, 240, 0.74);
  font-size: 0.8rem;
}

.companion-rhythm {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.rhythm-node {
  display: grid;
  grid-template-columns: 4.3rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rhythm-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.rhythm-copy strong,
.rhythm-copy span {
  display: block;
}

.rhythm-copy strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.rhythm-copy span {
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.companion-footer {
  margin-top: 0.95rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(31, 142, 133, 0.16);
  color: #dcfcf6;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill.warm {
  background: rgba(240, 138, 98, 0.16);
  color: #ffe1d4;
}

.companion-chip {
  position: absolute;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 248, 242, 0.09);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(18px);
}

.companion-chip-install {
  top: 1rem;
  left: 0;
}

.companion-chip-sync {
  top: 5.2rem;
  right: 0.3rem;
}

.companion-chip-capture {
  left: 1.2rem;
  bottom: 0.8rem;
}

.cinema-glow {
  position: absolute;
  inset: 16% 12% 14% auto;
  width: min(32vw, 28rem);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 241, 229, 0.3), rgba(255, 241, 229, 0.02) 56%, transparent 70%);
  filter: blur(14px);
}

.site-footer {
  width: min(var(--page-width), calc(100vw - 2.8rem));
  margin: 0 auto;
  padding: 0 0 2.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-copy strong {
  font-size: 1rem;
}

.footer-copy span {
  color: var(--text-faint);
  font-size: 0.88rem;
}

.footer-copy small {
  color: var(--text-faint);
  font-size: 0.78rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.55rem;
}

.footer-legal-links a {
  color: var(--text-faint);
  font-size: 0.8rem;
  transition: color 180ms var(--ease-smooth);
}

.footer-legal-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease-smooth),
    transform 700ms var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

  .ambient-orb,
  .reveal,
  .button {
    transition: none;
  }

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

@media (max-width: 1120px) {
  .site-header {
    padding-top: 1.1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding-top: 5rem;
  }

  .hero-stage {
    min-height: 34rem;
  }

  .device-cluster {
    width: min(100%, 34rem);
  }

  .device-card {
    width: 11.8rem;
  }

  .device-card-back {
    top: 6.3rem;
    left: 0.7rem;
  }

  .device-card-front {
    right: 0.7rem;
    bottom: 2.8rem;
  }

  .feature-card,
  .story-section {
    grid-template-columns: 1fr;
  }

  .cinema-frame {
    min-height: 28rem;
    padding: 3rem 2rem;
  }

  .cinema-layout {
    grid-template-columns: 1fr;
  }

  .cinema-infographic {
    min-height: 24rem;
  }

  .cinema-glow {
    inset: auto 10% -10% auto;
    width: 22rem;
    height: 22rem;
  }
}

@media (max-width: 860px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100vw - 1.1rem, 22rem);
  }

  .site-header {
    padding-top: 0.95rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 4.2rem;
    padding-bottom: 4rem;
  }

  .hero-copy,
  .feature-intro,
  .feature-copy,
  .story-column,
  .cinema-copy {
    width: 100%;
    max-width: 19.75rem;
  }

  .hero-body,
  .feature-copy p,
  .story-column p,
  .cinema-copy p {
    max-width: 19.75rem;
  }

  .hero h1,
  .feature-intro h2,
  .story-column h2,
  .cinema-copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .hero-stage,
  .device-cluster {
    min-height: 30rem;
  }

  .hero-caption-card {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 1rem;
  }

  .device-card {
    display: none;
  }

  .phone-mockup {
    width: min(21rem, calc(100vw - 3rem));
  }

  .metrics-panel {
    grid-template-columns: 1fr;
  }

  .feature-section,
  .story-section,
  .cinema-strip {
    padding: 5rem 0;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-grid,
  .story-stack,
  .cinema-layout,
  .metrics-panel,
  .feature-card,
  .scene,
  .cinema-frame {
    width: 100%;
    max-width: 100%;
  }

  .scene {
    min-height: 17rem;
  }

  .scene-window,
  .task-sheet {
    padding: 0.95rem;
  }

  .task-row {
    padding: 0.9rem 0.9rem 0.9rem 1rem;
  }

  .scene-block.blue {
    left: auto;
    right: 1.2rem;
    top: 10rem;
    width: 7rem;
    height: 5.4rem;
  }

  .scene-block.peach {
    width: 5.5rem;
  }

  .cinema-frame {
    border-radius: 32px;
    padding: 2rem 1.35rem;
  }

  .cinema-infographic {
    min-height: 22rem;
  }

  .companion-chip-install {
    top: 0.2rem;
    left: 0.4rem;
  }

  .companion-chip-sync {
    top: 3.3rem;
    right: 0.2rem;
  }

  .companion-chip-capture {
    left: 0.6rem;
    bottom: 0.3rem;
  }

  .site-footer {
    padding-bottom: 1.8rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand-copy span,
  .text-link {
    display: none;
  }

  .site-header,
  .section-shell,
  .site-footer {
    width: min(100vw - 1.2rem, 19.75rem);
  }

  .hero-copy,
  .feature-intro,
  .feature-copy,
  .story-column,
  .cinema-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
    max-width: 8ch;
  }

  .hero-body,
  .feature-copy p,
  .story-column p,
  .cinema-copy p {
    max-width: 18.25rem;
    font-size: 1rem;
    line-height: 1.7;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-micro span:nth-child(n + 4) {
    display: none;
  }

  .device-cluster {
    width: 100%;
    min-height: auto;
    padding-inline: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
  }

  .hero-stage {
    min-height: auto;
    flex-direction: column;
    gap: 0.9rem;
    align-items: stretch;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero-caption-card {
    width: 100%;
    max-width: 14rem;
    margin: 0;
    align-self: flex-start;
  }

  .schedule-board {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.55rem;
  }

  .time-rail {
    font-size: 0.7rem;
  }

  .phone-mockup {
    width: min(18.5rem, calc(100vw - 2.2rem));
    border-radius: 34px;
    padding: 0.9rem;
  }

  .cinema-layout {
    gap: 1.35rem;
  }

  .cinema-frame {
    padding: 1.35rem 0.95rem 1rem;
    border-radius: 28px;
  }

  .cinema-copy {
    max-width: 100%;
  }

  .cinema-copy p {
    max-width: 100%;
  }

  .cinema-infographic {
    width: 100%;
    min-height: auto;
    padding-top: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
  }

  .companion-phone {
    order: 4;
    width: min(100%, 15.4rem);
    margin: 0 auto;
    padding: 0.8rem;
    border-radius: 32px;
  }

  .companion-screen {
    min-height: 19.5rem;
    padding: 0.85rem;
  }

  .rhythm-node {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.8rem;
  }

  .rhythm-time {
    justify-self: start;
  }

  .companion-chip {
    position: static;
    font-size: 0.72rem;
    padding: 0.62rem 0.78rem;
    max-width: none;
    line-height: 1.25;
    white-space: nowrap;
  }

  .scene-block.mint {
    width: 6.2rem;
    height: 5.2rem;
  }

  .scene-block.blue {
    right: 0.9rem;
    top: 8.7rem;
    width: 4.8rem;
    height: 4.4rem;
  }

  .scene-block.peach {
    right: 0.9rem;
    top: 4.3rem;
    width: 4.4rem;
    height: 3.8rem;
  }

  .feature-copy h3 {
    font-size: 1.8rem;
  }

  .feature-intro h2,
  .story-column h2,
  .cinema-copy h2 {
    max-width: 6ch;
    font-size: clamp(2.3rem, 12vw, 3.2rem);
  }

  .story-panel {
    padding: 1.15rem 1rem;
  }
}
