@charset "UTF-8";

:root {
  --paper: #f9f6f0;
  --paper-deep: #eee7dd;
  --card: #fffefb;
  --ink: #25201b;
  --ink-soft: #685d53;
  --ink-faint: #74695f;
  --line: #ddd2c3;
  --flame: #d43c0e;
  --flame-bright: #ff6822;
  --flame-deep: #a61d06;
  --flame-soft: #ffd8ad;
  --herb: #3e7962;
  --herb-deep: #225745;
  --gold: #df9a2a;
  --charcoal: #171615;
  --charcoal-soft: #272321;
  --white: #fffefb;
  --shadow: 0 24px 70px rgba(74, 49, 28, 0.12);
  --shadow-small: 0 12px 34px rgba(74, 49, 28, 0.1);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --page: min(1180px, calc(100vw - 48px));
  --font: ui-rounded, "SF Pro Rounded", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 222, 179, 0.36), transparent 26rem),
    var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.23;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

button,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px #7f250c;
}

::selection {
  color: #fff;
  background: var(--flame);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 12px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section-pad {
  position: relative;
  padding: 128px 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding-top: max(14px, env(safe-area-inset-top));
  transition: padding 260ms ease;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100vw - 40px));
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 12px 10px 14px;
  background: rgba(255, 254, 251, 0.76);
  border: 1px solid rgba(130, 104, 82, 0.16);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(61, 41, 24, 0.07);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  transition: min-height 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.site-header.is-compact {
  padding-top: max(8px, env(safe-area-inset-top));
}

.site-header.is-compact .nav-shell {
  min-height: 60px;
  background: rgba(255, 254, 251, 0.92);
  box-shadow: 0 12px 36px rgba(61, 41, 24, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 5px 14px rgba(166, 29, 6, 0.16);
}

.brand > span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--ink-faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 70px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--flame);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  color: #fff;
  background: var(--flame);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 7px 16px rgba(212, 60, 14, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 20px rgba(212, 60, 14, 0.28);
}

.nav-share {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-share:hover {
  background: #fff;
  transform: translateY(-1px);
}

.nav-share svg {
  width: 16px;
  height: 16px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 900px;
  padding: 160px 0 92px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -310px;
  left: -10%;
  height: 430px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(212, 60, 14, 0.08), transparent 68%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(4px);
}

.hero-glow-one {
  top: 90px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 152, 72, 0.2), rgba(255, 224, 183, 0.08) 48%, transparent 70%);
}

.hero-glow-two {
  bottom: 20px;
  left: -230px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(62, 121, 98, 0.12), transparent 65%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: 14px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--flame-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--flame);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(212, 60, 14, 0.1);
}

.eyebrow span::after {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(212, 60, 14, 0.38);
  border-radius: 50%;
  animation: signal-pulse 2.4s ease-out infinite;
}

@keyframes signal-pulse {
  from { transform: scale(0.5); opacity: 0.85; }
  to { transform: scale(1.6); opacity: 0; }
}

.hero h1,
.section-heading h2,
.watch-copy h2,
.final-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 5.4vw, 70px);
  font-weight: 820;
  line-height: 1.06;
  letter-spacing: -0.065em;
}

.hero h1 em {
  display: inline-block;
  color: var(--flame);
  font-style: normal;
  white-space: nowrap;
}

.hero-lede {
  max-width: 525px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 0;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  min-width: 190px;
  color: #fff;
  background: linear-gradient(135deg, var(--flame-bright), var(--flame) 45%, var(--flame-deep));
  box-shadow: 0 14px 30px rgba(166, 29, 6, 0.24), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(166, 29, 6, 0.32), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button-quiet {
  color: var(--ink);
  background: rgba(255, 254, 251, 0.64);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.button-quiet:hover {
  background: #fff;
  box-shadow: var(--shadow-small);
}

.play-dot {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--flame);
  background: rgba(212, 60, 14, 0.1);
  border-radius: 50%;
}

.play-dot svg {
  width: 11px;
  height: 11px;
  margin-left: 2px;
  fill: currentColor;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  font-size: 12px;
  font-weight: 650;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  width: 15px;
  height: 15px;
  color: var(--herb);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 650px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  top: 70px;
  right: -10px;
  width: 530px;
  height: 530px;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.88) 0 38%, transparent 39%),
    conic-gradient(from 12deg, rgba(212, 60, 14, 0.14), rgba(223, 154, 42, 0.07), rgba(62, 121, 98, 0.1), rgba(212, 60, 14, 0.14));
  border-radius: 50%;
  box-shadow: 0 30px 100px rgba(166, 29, 6, 0.1);
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px dashed rgba(166, 29, 6, 0.19);
  border-radius: 50%;
  animation: orbit-spin 28s linear infinite;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--flame);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(166, 29, 6, 0.25);
}

.orbit-one {
  top: 34px;
  right: -24px;
  width: 600px;
  height: 600px;
}

.orbit-one::before { top: 80px; left: 64px; }
.orbit-one::after { right: 15px; bottom: 170px; background: var(--gold); }

.orbit-two {
  top: 104px;
  right: 46px;
  width: 460px;
  height: 460px;
  border-color: rgba(62, 121, 98, 0.14);
  animation-direction: reverse;
  animation-duration: 22s;
}

.orbit-two::before { top: 205px; left: -7px; background: var(--herb); }
.orbit-two::after { top: -7px; right: 210px; }

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

.heat-wave {
  position: absolute;
  z-index: -1;
  width: 50px;
  height: 140px;
  opacity: 0.32;
  border: solid rgba(212, 60, 14, 0.4);
  border-width: 0 0 0 2px;
  border-radius: 50%;
  filter: blur(1px);
  animation: heat-rise 4s ease-in-out infinite;
}

.heat-wave-one { top: 65px; right: 100px; transform: rotate(12deg); }
.heat-wave-two { top: 95px; left: 98px; animation-delay: -2s; transform: rotate(-12deg); }

@keyframes heat-rise {
  0%, 100% { opacity: 0; translate: 0 20px; }
  48% { opacity: 0.4; translate: 0 -5px; }
}

.phone-device {
  position: absolute;
  top: 5px;
  left: 92px;
  z-index: 2;
  width: 318px;
  height: 642px;
  padding: 9px;
  background: linear-gradient(145deg, #5c5751, #171615 17%, #060606 78%, #4b4540);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 56px;
  box-shadow: 0 48px 85px rgba(37, 27, 19, 0.27), inset 0 0 0 1px #000;
  transform: rotate(-2.5deg);
}

.phone-device::before {
  position: absolute;
  top: 88px;
  left: -4px;
  width: 3px;
  height: 72px;
  content: "";
  background: #2c2926;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 86px #2c2926;
}

.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 4;
  width: 92px;
  height: 24px;
  background: #050505;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  padding: 15px 14px 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 105% -3%, rgba(255, 197, 128, 0.36), transparent 29%),
    linear-gradient(150deg, #fffdfa, #f2e9dc);
  border-radius: 48px;
}

.phone-screen::after {
  position: absolute;
  right: 30%;
  bottom: 8px;
  left: 30%;
  height: 4px;
  content: "";
  background: rgba(16, 15, 14, 0.85);
  border-radius: 999px;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 7px 15px;
  color: #37302a;
  font-size: 8px;
  font-weight: 800;
}

.app-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 10px;
}

.app-title-row > span:first-child {
  display: grid;
}

.app-title-row small {
  color: #88796b;
  font-size: 8px;
  font-weight: 600;
}

.app-title-row strong {
  color: #27211c;
  font-size: 16px;
  letter-spacing: -0.04em;
}

.round-avatar {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--flame-bright), var(--flame-deep));
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(166, 29, 6, 0.24);
}

.round-avatar svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.nearest-card {
  position: relative;
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  padding: 17px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, var(--flame-bright), var(--flame) 54%, var(--flame-deep));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 13px 24px rgba(166, 29, 6, 0.2);
}

.nearest-card > div {
  display: grid;
}

.nearest-card small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 8px;
  font-weight: 700;
}

.nearest-card strong {
  margin: 2px 0;
  font-size: 32px;
  font-variant-numeric: tabular-nums;
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.nearest-card > div span {
  width: fit-content;
  padding: 3px 7px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(54, 13, 2, 0.15);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 700;
}

.hero-flame {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.hero-flame svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.mini-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 3px 7px;
  font-size: 9px;
}

.mini-section-title span {
  color: #8c7f73;
  font-size: 7px;
}

.phone-cooktop {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 45%),
    linear-gradient(145deg, #403a36, #171513 72%);
  border: 1px solid #5b524b;
  border-radius: 22px;
  box-shadow: 0 12px 22px rgba(21, 16, 12, 0.2), inset 0 1px rgba(255, 255, 255, 0.08);
}

.burner {
  display: grid;
  min-height: 116px;
  place-items: center;
  align-content: center;
  padding: 9px 4px;
  color: #29231e;
  background: linear-gradient(145deg, #fffdf8, #eadfce);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  box-shadow: inset 0 -4px 10px rgba(86, 62, 42, 0.08), 0 4px 8px rgba(0, 0, 0, 0.13);
}

.burner-ring {
  position: relative;
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  margin-bottom: 4px;
  background: conic-gradient(var(--burner-color) var(--burner-fill), #ddd3c6 0);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.025);
}

.burner-ring::after {
  position: absolute;
  inset: 6px;
  content: "";
  background: radial-gradient(circle, #453d36 0 25%, #1e1a17 26% 54%, #5e554e 56% 62%, #24201d 64%);
  border-radius: 50%;
}

.burner-ring i {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 18px;
  background: var(--burner-color);
  border-radius: 70% 15% 70% 70%;
  filter: drop-shadow(0 0 7px var(--burner-color));
  transform: rotate(45deg);
}

.burner small {
  color: #776b60;
  font-size: 7px;
  font-weight: 700;
}

.burner strong {
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.burner-hot { --burner-color: #ea4b18; --burner-fill: 82%; }
.burner-herb { --burner-color: #4d9878; --burner-fill: 54%; }
.burner-gold { --burner-color: #dfa02a; --burner-fill: 68%; }
.burner-idle { --burner-color: #a89d91; --burner-fill: 8%; opacity: 0.72; }

.phone-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8px;
  margin-top: 10px;
  text-align: center;
  font-size: 8px;
  font-weight: 800;
}

.phone-bottom-row span,
.phone-bottom-row strong {
  padding: 8px 4px;
  border-radius: 10px;
}

.phone-bottom-row span {
  color: var(--herb-deep);
  background: rgba(62, 121, 98, 0.1);
  border: 1px solid rgba(62, 121, 98, 0.14);
}

.phone-bottom-row strong {
  color: #fff;
  background: var(--flame);
  box-shadow: 0 5px 12px rgba(166, 29, 6, 0.18);
}

.watch-device {
  position: absolute;
  right: 8px;
  bottom: 42px;
  z-index: 4;
  width: 218px;
  height: 255px;
  padding: 13px;
  background: linear-gradient(145deg, #9b9188, #24211f 12%, #080808 78%, #746b63);
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 57px;
  box-shadow: 0 34px 60px rgba(29, 21, 15, 0.33), inset 0 0 0 2px #050505;
  transform: rotate(5deg);
}

.watch-device::before,
.watch-device::after {
  position: absolute;
  left: 50%;
  z-index: -1;
  width: 112px;
  height: 80px;
  content: "";
  background: linear-gradient(90deg, #161412, #45413e 50%, #171513);
  transform: translateX(-50%);
}

.watch-device::before { top: -62px; border-radius: 36px 36px 8px 8px; }
.watch-device::after { bottom: -62px; border-radius: 8px 8px 36px 36px; }

.watch-crown {
  position: absolute;
  top: 64px;
  right: -18px;
  width: 14px;
  height: 35px;
  background: repeating-linear-gradient(0deg, #393532 0 2px, #171513 2px 4px);
  border: 2px solid #5d5650;
  border-radius: 8px;
}

.watch-side {
  position: absolute;
  top: 112px;
  right: -12px;
  width: 8px;
  height: 28px;
  background: #22201e;
  border-radius: 0 5px 5px 0;
}

.watch-screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 102, 33, 0.2), transparent 38%),
    #080808;
  border-radius: 45px;
}

.watch-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
}

.watch-title svg {
  width: 16px;
  height: 16px;
  color: var(--flame-bright);
  fill: currentColor;
}

.watch-screen > strong {
  margin: 10px 0 8px;
  font-size: 41px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.07em;
}

.watch-progress {
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
}

.watch-progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--flame), var(--flame-bright));
  border-radius: inherit;
}

.watch-screen > small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.floating-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px 10px 10px;
  background: rgba(255, 254, 251, 0.86);
  border: 1px solid rgba(130, 104, 82, 0.18);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(62, 39, 23, 0.14);
  backdrop-filter: blur(16px);
  animation: chip-float 4s ease-in-out infinite;
}

.floating-chip > span:last-child {
  display: grid;
  line-height: 1.25;
}

.floating-chip small {
  color: var(--ink-faint);
  font-size: 7px;
  font-weight: 700;
}

.floating-chip strong {
  font-size: 10px;
  font-weight: 800;
}

.chip-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--herb);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 900;
}

.chip-icon-dark {
  color: var(--flame-bright);
  background: var(--charcoal);
}

.chip-icon svg {
  width: 14px;
  height: 14px;
}

.chip-sync {
  top: 52px;
  left: 0;
}

.chip-alert {
  right: 0;
  bottom: 275px;
  animation-delay: -2s;
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.visual-caption {
  position: absolute;
  right: 78px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-faint);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.visual-caption i {
  width: 3px;
  height: 3px;
  background: var(--flame);
  border-radius: 50%;
}

.feature-ticker {
  position: relative;
  z-index: 3;
  width: 104%;
  margin-left: -2%;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-1.2deg);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 18px 0;
  animation: ticker-scroll 4.8s ease-out 1 both;
}

.ticker-track span {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.ticker-track b {
  color: var(--flame-bright);
  font-size: 10px;
}

@keyframes ticker-scroll {
  to { transform: translateX(-12%); }
}

.problem-section {
  padding-top: 158px;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 90px;
}

.section-heading h2,
.watch-copy h2,
.final-card h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.section-heading > p:not(.section-kicker),
.watch-copy > p:not(.section-kicker):not(.system-note) {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.section-heading > p strong {
  color: var(--flame-deep);
  font-weight: 800;
}

.section-heading blockquote {
  position: relative;
  margin: 35px 0 0;
  padding: 14px 0 14px 22px;
  color: var(--herb-deep);
  border-left: 3px solid var(--herb);
  font-size: 14px;
  font-weight: 750;
}

.task-stack {
  position: relative;
  min-height: 480px;
  padding-top: 34px;
}

.task-stack::before {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 10px;
  left: 36px;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95), transparent 66%),
    linear-gradient(145deg, rgba(212, 60, 14, 0.12), rgba(223, 154, 42, 0.08));
  border: 1px solid rgba(212, 60, 14, 0.08);
  border-radius: 46% 54% 38% 62% / 48% 40% 60% 52%;
  transform: rotate(5deg);
}

.task-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: 86%;
  min-height: 94px;
  align-items: center;
  gap: 15px;
  padding: 17px 18px;
  background: rgba(255, 254, 251, 0.86);
  border: 1px solid rgba(130, 104, 82, 0.18);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(67, 45, 28, 0.11);
  backdrop-filter: blur(14px);
}

.task-card + .task-card {
  margin-top: 16px;
}

.task-card-two { margin-left: 10%; transform: rotate(1.2deg); }
.task-card-three { margin-left: 3%; transform: rotate(-0.8deg); }

.task-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--flame-bright), var(--flame-deep));
  border-radius: 16px;
  box-shadow: 0 9px 18px rgba(166, 29, 6, 0.2);
  font-size: 14px;
  font-weight: 850;
}

.task-symbol-green {
  background: linear-gradient(135deg, #5b9a7f, var(--herb-deep));
  box-shadow: 0 9px 18px rgba(34, 87, 69, 0.18);
}

.task-symbol-gold {
  color: #5c3805;
  background: linear-gradient(135deg, #ffd16b, var(--gold));
  box-shadow: 0 9px 18px rgba(160, 102, 17, 0.16);
}

.task-card > div {
  display: grid;
  line-height: 1.15;
}

.task-card small {
  color: var(--ink-faint);
  font-size: 10px;
  font-weight: 650;
}

.task-card strong {
  margin-top: 5px;
  font-size: 25px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.task-state {
  padding: 6px 9px;
  color: var(--flame-deep);
  background: rgba(212, 60, 14, 0.09);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
}

.task-state-green { color: var(--herb-deep); background: rgba(62, 121, 98, 0.1); }
.task-state-gold { color: #79500f; background: rgba(223, 154, 42, 0.12); }

.task-result {
  position: absolute;
  right: -8px;
  bottom: -16px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  color: #fff;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(23, 22, 21, 0.25);
}

.task-result > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--flame);
  border-radius: 13px;
  font-size: 20px;
  font-weight: 850;
}

.task-result p {
  display: grid;
  margin: 0;
  line-height: 1.2;
}

.task-result strong { font-size: 11px; }
.task-result small { margin-top: 4px; color: rgba(255, 255, 255, 0.52); font-size: 8px; }

.sync-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 194, 126, 0.25), transparent 25rem),
    linear-gradient(180deg, #f2ebe1, #f8f4ee);
  border-block: 1px solid rgba(130, 104, 82, 0.09);
}

.heading-center {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.heading-center .section-kicker {
  justify-content: center;
}

.heading-center > p:not(.section-kicker) {
  margin-inline: auto;
}

.sync-demo {
  max-width: 1040px;
  margin: 62px auto 0;
}

.scenario-tabs {
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: 4px;
  margin: 0 auto 18px;
  padding: 5px;
  overflow-x: auto;
  background: rgba(255, 254, 251, 0.68);
  border: 1px solid var(--line);
  border-radius: 16px;
  scrollbar-width: none;
}

.scenario-tabs::-webkit-scrollbar { display: none; }

.scenario-tab {
  min-width: max-content;
  padding: 10px 16px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.scenario-tab.is-active {
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 6px 16px rgba(23, 22, 21, 0.18);
}

.demo-panel {
  position: relative;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 254, 251, 0.88);
  border: 1px solid rgba(130, 104, 82, 0.17);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.demo-panel::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(212, 60, 14, 0.1), transparent 68%);
  pointer-events: none;
}

.demo-topline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(130, 104, 82, 0.14);
}

.demo-topline > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.demo-topline small {
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 700;
}

.demo-topline strong {
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.finish-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--herb-deep);
  background: rgba(62, 121, 98, 0.09);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 780;
}

.finish-badge span {
  width: 6px;
  height: 6px;
  background: var(--herb);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(62, 121, 98, 0.1);
}

.timeline-head {
  display: grid;
  grid-template-columns: 225px 1fr 62px;
  gap: 18px;
  padding: 20px 2px 8px;
  color: var(--ink-faint);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline-head span:nth-child(2) { text-align: center; }
.timeline-head span:last-child { text-align: right; }

.timeline-stage {
  display: grid;
  gap: 10px;
}

.timeline-row {
  --left: 0%;
  --width: 100%;
  --accent: var(--flame);
  --delay: 0s;
  --duration: 5s;
  display: grid;
  grid-template-columns: 225px minmax(200px, 1fr) 62px;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 11px 2px;
}

.timeline-row:nth-child(2) { --left: 20%; --width: 80%; --accent: var(--herb); --delay: 1s; --duration: 4s; }
.timeline-row:nth-child(3) { --left: 83%; --width: 17%; --accent: var(--gold); --delay: 4.15s; --duration: 0.85s; }

.dish-label {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.dish-label > span:last-child {
  display: grid;
  min-width: 0;
  line-height: 1.3;
}

.dish-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--accent), 0 3px 7px rgba(0, 0, 0, 0.1);
}

.dish-name {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dish-meta {
  margin-top: 4px;
  color: var(--ink-faint);
  font-size: 9px;
  font-weight: 600;
}

.timeline-track {
  position: relative;
  height: 15px;
  background:
    repeating-linear-gradient(90deg, rgba(104, 93, 83, 0.1) 0 1px, transparent 1px 25%),
    rgba(104, 93, 83, 0.06);
  border-radius: 99px;
}

.timeline-track::after {
  position: absolute;
  top: -7px;
  right: -1px;
  bottom: -7px;
  width: 2px;
  content: "";
  background: var(--herb);
  border-radius: 2px;
  box-shadow: 0 0 0 5px rgba(62, 121, 98, 0.08);
}

.timeline-bar {
  position: absolute;
  top: 0;
  left: var(--left);
  width: var(--width);
  height: 100%;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent), transparent 77%);
  border-radius: inherit;
}

.timeline-bar::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent), white 22%));
  border-radius: inherit;
  transform: scaleX(1);
  transform-origin: left;
}

.timeline-flame {
  position: absolute;
  top: 50%;
  left: calc(var(--left) - 11px);
  z-index: 2;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(40, 27, 18, 0.17);
  transform: translateY(-50%);
}

.timeline-flame svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.start-time {
  justify-self: end;
  color: var(--ink-soft);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.timeline-stage.is-playing .timeline-bar::after {
  animation: timeline-fill var(--duration) linear var(--delay) both;
}

.timeline-stage.is-playing .timeline-flame {
  animation: flame-pop 500ms ease var(--delay) both;
}

@keyframes timeline-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes flame-pop {
  0% { opacity: 0; transform: translateY(-50%) scale(0.4); }
  70% { opacity: 1; transform: translateY(-50%) scale(1.15); }
  100% { opacity: 1; transform: translateY(-50%) scale(1); }
}

.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(130, 104, 82, 0.14);
}

.demo-footer p {
  max-width: 570px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.button-dark {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 10px 16px;
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 9px 20px rgba(23, 22, 21, 0.18);
}

.button-dark svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.watch-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 48%, rgba(255, 102, 33, 0.16), transparent 25rem),
    radial-gradient(circle at 12% 15%, rgba(62, 121, 98, 0.12), transparent 28rem),
    var(--charcoal);
}

.watch-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.45;
  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: 42px 42px;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent, black 30%, black 70%, transparent);
}

.watch-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 90px;
  min-height: 600px;
}

.section-kicker-light {
  color: #ff9c65;
}

.watch-copy h2,
.final-card h2 {
  color: #fff;
}

.watch-copy > p:not(.section-kicker):not(.system-note) {
  color: rgba(255, 255, 255, 0.6);
}

.sync-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}

.sync-route > div {
  display: grid;
  min-width: 102px;
  padding: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
}

.sync-route > div > span {
  margin-bottom: 12px;
  color: var(--flame-bright);
  font-size: 18px;
}

.sync-route small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
}

.sync-route strong {
  margin-top: 2px;
  font-size: 10px;
}

.sync-route > i {
  color: rgba(255, 255, 255, 0.25);
  font-style: normal;
}

.system-note {
  display: flex;
  max-width: 510px;
  align-items: flex-start;
  gap: 8px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.65;
}

.system-note > span {
  display: grid;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  place-items: center;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.watch-playground {
  position: relative;
  display: grid;
  min-height: 490px;
  place-items: center;
}

.watch-hint {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 6;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(-50%);
}

.watch-halo {
  position: absolute;
  width: 430px;
  height: 430px;
  background:
    radial-gradient(circle, transparent 0 36%, rgba(255, 102, 33, 0.08) 36.5% 37%, transparent 37.5% 52%, rgba(255, 102, 33, 0.05) 52.5% 53%, transparent 53.5% 68%, rgba(255, 102, 33, 0.03) 68.5% 69%, transparent 69.5%);
  border-radius: 50%;
  animation: halo-breathe 4s ease-in-out infinite;
}

@keyframes halo-breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}

.demo-watch-frame {
  position: relative;
  z-index: 3;
  width: 292px;
  height: 342px;
  padding: 16px;
  background: linear-gradient(145deg, #766d66, #23201e 9%, #060606 81%, #72675f);
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 72px;
  box-shadow: 0 45px 80px rgba(0, 0, 0, 0.42), inset 0 0 0 2px #050505;
}

.demo-watch-frame::before,
.demo-watch-frame::after {
  position: absolute;
  left: 50%;
  z-index: -1;
  width: 150px;
  height: 110px;
  content: "";
  background: linear-gradient(90deg, #111, #393431 50%, #111);
  transform: translateX(-50%);
}

.demo-watch-frame::before { top: -88px; border-radius: 44px 44px 10px 10px; }
.demo-watch-frame::after { bottom: -88px; border-radius: 10px 10px 44px 44px; }

.demo-watch-crown {
  position: absolute;
  top: 82px;
  right: -24px;
  width: 19px;
  height: 48px;
  background: repeating-linear-gradient(0deg, #47413d 0 2px, #161412 2px 5px);
  border: 2px solid #6b625b;
  border-radius: 10px;
}

.demo-watch-screen {
  --progress: 0deg;
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 102, 33, 0.2), transparent 35%),
    linear-gradient(150deg, #111, #050505);
  border: 0;
  border-radius: 58px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.demo-watch-screen::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.hold-progress {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--flame-bright);
  box-shadow: 0 0 18px var(--flame-bright);
  transform: scaleX(0);
  transform-origin: left;
}

.demo-watch-screen.is-holding .hold-progress {
  transition: transform 450ms linear;
  transform: scaleX(1);
}

.demo-watch-top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
}

.demo-watch-top svg {
  width: 20px;
  height: 20px;
  color: var(--flame-bright);
  fill: currentColor;
}

.demo-watch-screen > strong {
  position: relative;
  z-index: 2;
  margin: 38px 0 32px;
  font-size: 56px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.08em;
}

.watch-ring {
  position: absolute;
  top: 88px;
  left: 50%;
  width: 148px;
  height: 148px;
  padding: 4px;
  background: conic-gradient(var(--flame-bright) var(--progress), rgba(255, 255, 255, 0.08) 0);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transition: background 300ms linear;
}

.watch-ring i {
  display: block;
  width: 100%;
  height: 100%;
  background: #090909;
  border-radius: inherit;
}

.watch-action {
  position: relative;
  z-index: 2;
  padding: 7px 11px;
  color: #ffb181;
  background: rgba(255, 102, 33, 0.12);
  border: 1px solid rgba(255, 102, 33, 0.18);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 750;
}

.demo-watch-screen.is-running .watch-action {
  color: #83c7a9;
  background: rgba(62, 121, 98, 0.12);
  border-color: rgba(62, 121, 98, 0.22);
}

.haptic-pulse {
  position: absolute;
  z-index: 1;
  width: 320px;
  height: 320px;
  opacity: 0;
  border: 1px solid rgba(255, 102, 33, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.watch-toggle {
  position: absolute;
  bottom: 2px;
  left: 50%;
  z-index: 7;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  font-size: 10px;
  cursor: pointer;
  transform: translateX(-50%);
}

.watch-toggle span {
  color: var(--flame-bright);
  font-size: 9px;
}

.watch-toggle strong {
  font-size: 10px;
}

.watch-toggle[aria-pressed="true"] span {
  color: #83c7a9;
}

.watch-playground.is-pulsing .haptic-pulse {
  animation: haptic-ring 1.1s ease-out;
}

.watch-playground.is-pulsing .pulse-two {
  animation-delay: 140ms;
}

@keyframes haptic-ring {
  0% { opacity: 0.8; transform: scale(0.72); }
  100% { opacity: 0; transform: scale(1.25); }
}

.features-section {
  background:
    radial-gradient(circle at 6% 30%, rgba(62, 121, 98, 0.08), transparent 25rem),
    var(--paper);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.feature-card {
  position: relative;
  min-height: 360px;
  padding: 32px;
  overflow: hidden;
  background: rgba(255, 254, 251, 0.86);
  border: 1px solid rgba(130, 104, 82, 0.16);
  border-radius: 30px;
  box-shadow: 0 16px 45px rgba(73, 49, 30, 0.08);
}

.feature-card h3 {
  max-width: 430px;
  margin: 13px 0 0;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.feature-card p {
  max-width: 460px;
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.feature-index {
  color: var(--flame-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-card-stove {
  grid-column: span 7;
  min-height: 470px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 102, 33, 0.16), transparent 18rem),
    linear-gradient(145deg, #332e2a, #171615 68%);
  border-color: rgba(255, 255, 255, 0.07);
}

.feature-card-stove .feature-index { color: #ff9c65; }
.feature-card-stove h3 { color: #fff; }
.feature-card-stove p { color: rgba(255, 255, 255, 0.5); }

.mini-stove {
  position: absolute;
  right: 25px;
  bottom: -76px;
  left: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 19px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 40%),
    #0e0d0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.26), inset 0 1px rgba(255, 255, 255, 0.06);
  transform: perspective(650px) rotateX(17deg);
  transform-origin: bottom;
}

.mini-stove > span {
  display: grid;
  min-height: 132px;
  place-items: center;
  align-content: center;
  color: var(--ink);
  background: linear-gradient(145deg, #fffdfa, #e8ddcf);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 21px;
  box-shadow: inset 0 -5px 12px rgba(54, 39, 25, 0.08);
}

.mini-stove i {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  background: radial-gradient(circle, #3d3935 0 22%, #141312 23% 48%, #69615b 49% 54%, #201e1c 55% 66%, var(--flame) 67% 71%, transparent 72%);
  border-radius: 50%;
}

.mini-stove i::after {
  position: absolute;
  top: 17px;
  left: 19px;
  width: 13px;
  height: 17px;
  content: "";
  background: var(--flame-bright);
  border-radius: 70% 15% 70% 70%;
  filter: drop-shadow(0 0 7px var(--flame));
  transform: rotate(45deg);
}

.mini-stove b {
  color: var(--ink-faint);
  font-size: 9px;
}

.mini-stove strong {
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

.mini-stove > span:nth-child(2) i { filter: hue-rotate(120deg) saturate(0.72); }
.mini-stove > span:nth-child(3) i { filter: hue-rotate(345deg) saturate(0.72); }
.mini-stove > span:nth-child(4) { opacity: 0.64; }
.mini-stove > span:nth-child(4) i { filter: grayscale(1); }

.feature-card-live {
  grid-column: span 5;
  color: #fff;
  background: linear-gradient(155deg, #407d64, #1b4b3c);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-card-live .feature-index { color: #bde8d5; }
.feature-card-live h3 { color: #fff; }

.lock-screen {
  position: absolute;
  right: 30px;
  bottom: -102px;
  left: 30px;
  height: 270px;
  padding: 24px 18px;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 102, 33, 0.3), transparent 48%),
    #11110f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -20px 50px rgba(5, 19, 14, 0.24);
}

.lock-island {
  display: block;
  width: 130px;
  margin: 0 auto 48px;
  padding: 8px 14px;
  color: #fff;
  background: #000;
  border-radius: 99px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-size: 8px;
  font-weight: 700;
  text-align: center;
}

.lock-screen > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.lock-screen > div > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--flame);
  border-radius: 11px;
}

.lock-screen svg { width: 18px; height: 18px; fill: currentColor; }
.lock-screen p { display: grid; margin: 0; }
.lock-screen small { color: rgba(255, 255, 255, 0.46); font-size: 8px; }
.lock-screen strong { font-size: 10px; }

.feature-card-tools {
  grid-column: span 5;
  background:
    radial-gradient(circle at 85% 20%, rgba(223, 154, 42, 0.14), transparent 17rem),
    rgba(255, 254, 251, 0.9);
}

.appliance-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 38px;
}

.appliance-cloud span {
  padding: 10px 14px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  box-shadow: 0 7px 16px rgba(55, 39, 24, 0.06);
  font-size: 11px;
  font-weight: 700;
}

.appliance-cloud span:nth-child(2),
.appliance-cloud span:nth-child(5) {
  color: var(--herb-deep);
  background: rgba(62, 121, 98, 0.08);
  border-color: rgba(62, 121, 98, 0.2);
}

.appliance-cloud span:nth-child(3),
.appliance-cloud span:nth-child(4) {
  color: var(--flame-deep);
  background: rgba(212, 60, 14, 0.07);
  border-color: rgba(212, 60, 14, 0.16);
}

.feature-card-history {
  grid-column: span 7;
  background: linear-gradient(145deg, #fffdf8, #f0e8dc);
}

.history-list {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.history-list > span {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(130, 104, 82, 0.13);
  border-radius: 14px;
}

.history-list i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--flame);
  border-radius: 11px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.history-list span:nth-child(2) i { background: var(--herb); }
.history-list span:nth-child(3) i { color: #5e3b08; background: var(--gold); }
.history-list b { font-size: 11px; }
.history-list small { color: var(--ink-faint); font-size: 10px; font-variant-numeric: tabular-nums; }

.feature-card-unlock {
  display: flex;
  grid-column: span 12;
  min-height: 330px;
  align-items: center;
  justify-content: space-between;
  padding: 46px 52px;
  background:
    radial-gradient(circle at 78% 48%, rgba(255, 255, 255, 0.9), transparent 20rem),
    linear-gradient(135deg, #fff7e7, #f2e2c7);
}

.feature-card-unlock .feature-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.feature-card-unlock img {
  position: absolute;
  top: 50%;
  right: 42px;
  width: 290px;
  height: 290px;
  object-fit: cover;
  border: 1px solid rgba(153, 101, 30, 0.12);
  border-radius: 50%;
  box-shadow: 0 22px 45px rgba(137, 86, 20, 0.15);
  transform: translateY(-50%);
}

.non-subscription {
  display: inline-flex;
  margin-top: 23px;
  padding: 7px 11px;
  color: var(--herb-deep);
  background: rgba(62, 121, 98, 0.1);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
}

.final-section {
  padding-top: 40px;
  background: var(--paper);
}

.final-card {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 133, 58, 0.24), transparent 25rem),
    linear-gradient(145deg, #34261f, #171615 50%, #120c09);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 44px;
  box-shadow: 0 32px 80px rgba(47, 30, 20, 0.2);
  text-align: center;
}

.final-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.final-icon,
.final-card > p,
.final-card h2,
.final-actions {
  position: relative;
  z-index: 2;
}

.final-icon {
  width: 112px;
  height: 112px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 27px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.26), 0 0 60px rgba(255, 102, 33, 0.12);
}

.final-card .section-kicker {
  margin-bottom: 15px;
}

.final-card h2 {
  max-width: 780px;
}

.final-card > p:not(.section-kicker):not(.final-note) {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
}

.final-actions {
  justify-content: center;
  margin-top: 32px;
}

.button-white {
  min-width: 180px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.22);
}

.button-white > span:last-child {
  display: grid;
  line-height: 1.05;
  text-align: left;
}

.button-white small {
  color: var(--ink-faint);
  font-size: 8px;
  font-weight: 650;
}

.button-white strong {
  margin-top: 3px;
  font-size: 15px;
}

.apple-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--flame);
  background: rgba(212, 60, 14, 0.09);
  border-radius: 9px;
  font-size: 10px;
}

.button-outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.11);
}

.final-note {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.final-orbit {
  position: absolute;
  border: 1px solid rgba(255, 102, 33, 0.11);
  border-radius: 50%;
}

.final-orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--flame-bright);
  border: 5px solid var(--charcoal);
  border-radius: 50%;
}

.final-orbit-one {
  width: 670px;
  height: 670px;
}

.final-orbit-one::after { top: 91px; right: 85px; }

.final-orbit-two {
  width: 900px;
  height: 900px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.05);
}

.final-orbit-two::after { bottom: 162px; left: 112px; background: var(--herb); }

.site-footer {
  padding: 34px 0 calc(34px + env(safe-area-inset-bottom));
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-footer img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.brand-footer small {
  text-transform: none;
  letter-spacing: 0.02em;
}

.site-footer p {
  margin: 0;
  color: var(--ink-faint);
  font-size: 10px;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 8px 8px 10px;
  background: rgba(255, 254, 251, 0.92);
  border: 1px solid rgba(130, 104, 82, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(45, 29, 18, 0.2);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(140%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease, visibility 0s linear 320ms;
}

.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.mobile-cta > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mobile-cta img {
  border-radius: 10px;
}

.mobile-cta > span > span {
  display: grid;
  line-height: 1.2;
}

.mobile-cta strong { font-size: 11px; }
.mobile-cta small { margin-top: 3px; color: var(--ink-faint); font-size: 8px; }

.mobile-cta .download-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  color: #fff;
  background: var(--flame);
  border: 0;
  border-radius: 11px;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.toast {
  position: fixed;
  bottom: calc(28px + env(safe-area-inset-bottom));
  left: 50%;
  z-index: 300;
  max-width: min(360px, calc(100vw - 32px));
  padding: 11px 16px;
  color: #fff;
  background: rgba(23, 22, 21, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  font-size: 11px;
  font-weight: 650;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js-ready [data-reveal][data-delay="1"] {
  transition-delay: 120ms;
}

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

@media (max-width: 1080px) {
  :root { --page: min(940px, calc(100vw - 40px)); }

  .hero {
    min-height: auto;
    padding-bottom: 120px;
  }

  .hero-grid {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 18px;
  }

  .hero h1 { font-size: clamp(48px, 6.5vw, 68px); }
  .hero-lede { font-size: 16px; }

  .hero-visual {
    min-height: 610px;
    scale: 0.9;
    transform-origin: center;
  }

  .phone-device { left: 56px; }
  .watch-device { right: -12px; }
  .chip-sync { left: -28px; }

  .problem-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
  }

  .watch-grid { gap: 50px; }
  .feature-card-unlock .feature-copy { max-width: 54%; }
}

@media (max-width: 860px) {
  :root { --page: min(720px, calc(100vw - 36px)); }

  .section-pad { padding: 98px 0; }
  .desktop-nav { display: none; }

  .hero {
    padding-top: 145px;
    padding-bottom: 100px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .hero-copy { width: 100%; min-width: 0; max-width: 660px; margin-inline: auto; }
  .eyebrow { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }

  .hero-visual {
    width: 650px;
    min-height: 670px;
    margin: 38px auto -50px;
    scale: 1;
  }

  .problem-grid,
  .watch-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid { gap: 60px; }
  .problem-section { padding-top: 130px; }
  .task-stack { max-width: 600px; width: 100%; margin-inline: auto; }

  .watch-grid { gap: 40px; }
  .watch-copy { max-width: 640px; }
  .watch-playground { min-height: 530px; }

  .timeline-head,
  .timeline-row {
    grid-template-columns: 190px minmax(180px, 1fr) 55px;
    gap: 14px;
  }

  .feature-card-stove,
  .feature-card-history { grid-column: span 12; }

  .feature-card-live,
  .feature-card-tools { grid-column: span 6; }

  .feature-card-unlock img { right: -10px; width: 270px; height: 270px; }
}

  @media (max-width: 680px) {
  :root {
    --page: calc(100vw - 28px);
    --radius-xl: 30px;
  }

  html { scroll-padding-top: 80px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .section-pad { padding: 82px 0; }

  .page-shell {
    width: auto;
    margin-right: max(14px, env(safe-area-inset-right));
    margin-left: max(14px, env(safe-area-inset-left));
  }

  .site-header { padding-top: max(8px, env(safe-area-inset-top)); }

  .nav-shell {
    width: auto;
    margin-right: max(10px, env(safe-area-inset-right));
    margin-left: max(10px, env(safe-area-inset-left));
    min-height: 58px;
    padding: 7px 8px 7px 9px;
    border-radius: 18px;
  }

  .brand { gap: 8px; }
  .brand img { width: 38px; height: 38px; border-radius: 11px; }
  .brand strong { font-size: 12px; }
  .brand small { font-size: 7px; }
  .nav-download { min-height: 36px; padding: 8px 11px; border-radius: 10px; font-size: 11px; }
  .nav-share { padding: 9px 11px; border-radius: 11px; }
  .nav-share span { display: none; }

  .hero {
    padding-top: 118px;
    padding-bottom: 82px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 15px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 52px);
    line-height: 1.08;
  }

  .hero-lede {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 27px;
  }

  .button { min-height: 50px; }
  .hero-proof { gap: 8px 16px; margin-top: 19px; font-size: 9px; }

  .hero-visual {
    width: 440px;
    min-height: 545px;
    margin: 38px 0 -42px 50%;
    translate: -50% 0;
  }

  .hero-visual::before {
    top: 62px;
    right: 4px;
    width: 390px;
    height: 390px;
  }

  .orbit-one { top: 45px; right: -10px; width: 430px; height: 430px; }
  .orbit-two { top: 100px; right: 40px; width: 330px; height: 330px; }
  .orbit-one::before { top: 50px; left: 45px; }
  .orbit-one::after { right: 9px; bottom: 115px; }
  .orbit-two::before { top: 145px; }
  .orbit-two::after { right: 145px; }

  .phone-device {
    top: 0;
    left: 78px;
    width: 255px;
    height: 514px;
    padding: 7px;
    border-radius: 45px;
    transform: rotate(-2deg);
  }

  .phone-screen { padding: 12px 11px; border-radius: 39px; }
  .phone-island { top: 14px; width: 73px; height: 19px; }
  .phone-status { padding-bottom: 10px; font-size: 6px; }
  .app-title-row { padding-bottom: 7px; }
  .app-title-row strong { font-size: 12px; }
  .app-title-row small { font-size: 6px; }
  .round-avatar { width: 25px; height: 25px; }
  .round-avatar svg { width: 12px; height: 12px; }

  .nearest-card { min-height: 96px; padding: 13px; border-radius: 18px; }
  .nearest-card small { font-size: 6px; }
  .nearest-card strong { font-size: 25px; }
  .nearest-card > div span { font-size: 5px; }
  .hero-flame { width: 38px; height: 38px; }
  .hero-flame svg { width: 20px; height: 20px; }

  .mini-section-title { padding-top: 11px; }
  .phone-cooktop { gap: 7px; padding: 9px; border-radius: 18px; }
  .burner { min-height: 92px; padding: 6px 3px; border-radius: 14px; }
  .burner-ring { width: 42px; height: 42px; }
  .burner-ring::after { inset: 5px; }
  .burner-ring i { width: 10px; height: 14px; }
  .burner strong { font-size: 10px; }
  .phone-bottom-row { gap: 5px; margin-top: 7px; font-size: 6px; }
  .phone-bottom-row span, .phone-bottom-row strong { padding: 6px 3px; }

  .watch-device {
    right: 12px;
    bottom: 22px;
    width: 168px;
    height: 198px;
    padding: 10px;
    border-radius: 44px;
  }

  .watch-device::before,
  .watch-device::after { width: 86px; height: 62px; }
  .watch-device::before { top: -48px; }
  .watch-device::after { bottom: -48px; }
  .watch-screen { padding: 12px; border-radius: 35px; }
  .watch-title { font-size: 7px; }
  .watch-title svg { width: 12px; height: 12px; }
  .watch-screen > strong { margin: 8px 0 6px; font-size: 31px; }
  .watch-screen > small { margin-top: 7px; font-size: 6px; }
  .watch-crown { top: 49px; right: -15px; width: 11px; height: 28px; }
  .watch-side { top: 87px; right: -10px; height: 22px; }

  .floating-chip { padding: 8px 10px 8px 8px; border-radius: 12px; }
  .floating-chip strong { font-size: 8px; }
  .floating-chip small { font-size: 6px; }
  .chip-icon { width: 23px; height: 23px; border-radius: 7px; }
  .chip-sync { top: 38px; left: 14px; }
  .chip-alert { right: -2px; bottom: 210px; }
  .visual-caption { right: 50px; font-size: 7px; }
  .heat-wave { display: none; }

  .ticker-track { padding: 14px 0; }
  .ticker-track span { gap: 22px; padding-left: 22px; font-size: 10px; }

  .problem-section { padding-top: 105px; }
  .problem-grid { gap: 44px; }
  .section-heading h2,
  .watch-copy h2,
  .final-card h2 { font-size: clamp(36px, 10.7vw, 48px); line-height: 1.12; }
  .section-heading > p:not(.section-kicker),
  .watch-copy > p:not(.section-kicker):not(.system-note) { margin-top: 18px; font-size: 14px; }
  .section-heading blockquote { margin-top: 24px; font-size: 12px; }

  .task-stack { min-height: 410px; padding-top: 24px; }
  .task-stack::before { left: 15px; }
  .task-card { width: 94%; min-height: 80px; gap: 10px; padding: 12px; border-radius: 18px; }
  .task-card + .task-card { margin-top: 12px; }
  .task-card-two { margin-left: 6%; }
  .task-symbol { width: 43px; height: 43px; border-radius: 13px; font-size: 12px; }
  .task-card small { font-size: 8px; }
  .task-card strong { font-size: 20px; }
  .task-state { padding: 5px 7px; font-size: 7px; }
  .task-result { right: 0; bottom: 0; }

  .sync-demo { margin-top: 38px; }
  .scenario-tabs { width: 100%; justify-content: flex-start; margin-bottom: 12px; }
  .scenario-tab { padding: 9px 13px; font-size: 12px; }
  .demo-panel { padding: 20px 15px; border-radius: 24px; }
  .demo-topline { padding-bottom: 17px; }
  .demo-topline strong { font-size: 24px; }
  .finish-badge { padding: 6px 8px; font-size: 8px; }
  .timeline-head { display: none; }
  .timeline-stage { gap: 5px; padding-top: 13px; }

  .timeline-row {
    grid-template-columns: 112px minmax(105px, 1fr) 42px;
    gap: 8px;
    min-height: 70px;
  }

  .dish-label { gap: 7px; }
  .dish-dot { width: 8px; height: 8px; border-width: 2px; }
  .dish-name { font-size: 11px; }
  .dish-meta { margin-top: 2px; font-size: 9px; }
  .start-time { font-size: 10px; }
  .timeline-track { height: 11px; }
  .timeline-flame { left: calc(var(--left) - 8px); width: 18px; height: 18px; border-width: 2px; }
  .timeline-flame svg { width: 8px; height: 8px; }
  .demo-footer { align-items: stretch; flex-direction: column; gap: 14px; margin-top: 10px; padding-top: 15px; }
  .demo-footer p { font-size: 11px; }
  .button-dark { width: 100%; }

  .watch-copy { text-align: left; }
  .sync-route { gap: 5px; margin-top: 28px; }
  .sync-route > div { min-width: 0; flex: 1; padding: 11px 9px; border-radius: 14px; }
  .sync-route > div > span { margin-bottom: 8px; font-size: 15px; }
  .sync-route small { font-size: 9px; }
  .sync-route strong { font-size: 10px; }
  .sync-route > i { font-size: 10px; }

  .watch-playground { min-height: 475px; transform: scale(0.9); margin: -20px 0 -28px; }
  .watch-halo { width: 390px; height: 390px; }

  .bento-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 38px; }
  .feature-card,
  .feature-card-stove,
  .feature-card-live,
  .feature-card-tools,
  .feature-card-history,
  .feature-card-unlock {
    grid-column: 1;
  }

  .feature-card { min-height: 330px; padding: 25px; border-radius: 24px; }
  .feature-card h3 { font-size: 22px; }
  .feature-card-stove { min-height: 445px; }
  .mini-stove { right: 14px; bottom: -56px; left: 14px; gap: 8px; padding: 13px; }
  .mini-stove > span { min-height: 116px; border-radius: 17px; }
  .feature-card-live { min-height: 370px; }
  .lock-screen { right: 20px; left: 20px; }
  .feature-card-tools { min-height: 310px; }
  .feature-card-history { min-height: 390px; }

  .feature-card-unlock {
    display: block;
    min-height: 540px;
    padding: 28px;
  }

  .feature-card-unlock .feature-copy { max-width: none; }
  .feature-card-unlock img { top: auto; right: 50%; bottom: 24px; width: 235px; height: 235px; transform: translateX(50%); }

  .final-section { padding-top: 18px; }
  .final-card { min-height: 590px; padding: 58px 22px; border-radius: 30px; }
  .final-icon { width: 92px; height: 92px; border-radius: 23px; }
  .final-card > p:not(.section-kicker):not(.final-note) { font-size: 13px; }
  .final-actions { display: grid; width: 100%; max-width: 330px; }
  .button-white, .button-outline-light { width: 100%; }
  .final-orbit-one { width: 510px; height: 510px; }
  .final-orbit-two { width: 700px; height: 700px; }

  .footer-inner { align-items: flex-start; flex-direction: column; }
  .mobile-cta {
    right: max(12px, env(safe-area-inset-right));
    left: max(12px, env(safe-area-inset-left));
    display: flex;
  }
  .toast { bottom: calc(92px + env(safe-area-inset-bottom)); }
}

@media (max-width: 390px) {
  .hero-visual { margin-bottom: -70px; scale: 0.93; transform-origin: top; }
  .task-state { display: none; }
  .task-card { grid-template-columns: auto 1fr; }
  .timeline-row { grid-template-columns: 96px minmax(92px, 1fr) 38px; gap: 6px; }
  .dish-meta { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .watch-playground { transform: scale(0.83); margin: -45px 0 -52px; }
}

@media (max-width: 340px) {
  .hero-visual {
    margin-bottom: -138px;
    scale: 0.72;
  }

  .timeline-row {
    grid-template-columns: 90px minmax(84px, 1fr) 36px;
  }
}

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

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

  .ticker-track { animation: none; }
  .js-ready [data-reveal] { opacity: 1; transform: none; }
}
