:root {
  --surface: rgba(255, 255, 255, 0.82);
  --surface-border: rgba(40, 44, 52, 0.08);
  --text: #182019;
  --text-soft: rgba(24, 32, 25, 0.72);
  --green: #3aa167;
  --green-deep: #2c7b4f;
  --green-pale: #dff0e5;
  --gold: #e0a15c;
  --gold-deep: #b86a34;
  --cream: #f7f5f0;
  --shadow-lg: 0 28px 80px rgba(32, 44, 35, 0.12);
  --shadow-md: 0 18px 42px rgba(32, 44, 35, 0.1);
  --shadow-sm: 0 10px 24px rgba(32, 44, 35, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --site-max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#top,
section[id] {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  font-family: "SF Pro Display", "SF Pro Text", "Helvetica Neue", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(224, 161, 92, 0.18), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(58, 161, 103, 0.16), transparent 26%),
    linear-gradient(180deg, #f6f3ee 0%, #f8f7f4 48%, #f2f4ee 100%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-shell { padding: 20px 24px 24px; }
.topbar, .section, .close-card, .site-footer { max-width: var(--site-max); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 8px 7px 14px;
  border: 1px solid rgba(24, 32, 25, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 38px rgba(32, 44, 35, 0.08);
  backdrop-filter: blur(26px) saturate(1.2);
}

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

.brand-logo { width: 48px; }

.brand-title {
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--text);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-soft);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.topnav a:hover { color: var(--text); }
.nav-pill:hover {
  background: rgba(24, 32, 25, 0.05);
  border-color: rgba(24, 32, 25, 0.06);
}

.topnav .button-primary {
  min-height: 36px;
  padding: 0 16px;
  box-shadow: 0 9px 22px rgba(58, 161, 103, 0.2);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.section { padding: 32px 0 44px; }

.site-footer {
  padding: 4px 0 0;
  color: var(--text-soft);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 40px;
  align-items: center;
  min-height: 72vh;
}

.eyebrow, .feature-kicker, .panel-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-deep);
}

.hero h1,
.section-heading h2,
.assistant-copy h2,
.waitlist-copy h2,
.close-card h2 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.section-heading h2,
.assistant-copy h2,
.waitlist-copy h2,
.close-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.hero-text,
.section-heading p,
.assistant-copy p,
.waitlist-copy p,
.close-card p:last-child,
.feature-panel-copy p:last-child {
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--text-soft);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions { margin-top: 30px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green) 0%, #4bb477 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(58, 161, 103, 0.28);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(24, 32, 25, 0.08);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.button-small { min-height: 42px; padding: 0 16px; }
.button-wide { width: 100%; }

.hero-orbit {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.76) 47%, rgba(255, 255, 255, 0.38) 100%),
    linear-gradient(135deg, rgba(224, 161, 92, 0.18), rgba(58, 161, 103, 0.18));
  border: 1px solid rgba(24, 32, 25, 0.05);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.orbit-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
}

.orbit-glow-gold {
  width: 180px;
  height: 180px;
  top: 6%;
  right: 8%;
  background: rgba(224, 161, 92, 0.28);
}

.orbit-glow-green {
  width: 220px;
  height: 220px;
  left: 0;
  bottom: 8%;
  background: rgba(58, 161, 103, 0.24);
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(24, 32, 25, 0.08);
}

.orbit-ring-outer { inset: 10%; }
.orbit-ring-middle { inset: 22%; border-style: dashed; }
.orbit-ring-inner { inset: 33%; border-color: rgba(255, 255, 255, 0.4); }

.orbit-node,
.orbit-core {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-node {
  width: 104px;
  flex-direction: column;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}

.orbit-icon {
  --orbit-icon-filter: none;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 32, 25, 0.08);
  box-shadow: 0 14px 34px rgba(32, 44, 35, 0.1);
  backdrop-filter: blur(18px);
}

.orbit-icon::before {
  content: "";
  width: 34px;
  height: 34px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: var(--orbit-icon-filter);
}

.orbit-icon-shopping {
  --orbit-icon-filter: invert(40%) sepia(31%) saturate(847%) hue-rotate(94deg) brightness(93%) contrast(88%);
}

.orbit-icon-shopping::before {
  background-image: url("./assets/cart.svg");
}

.orbit-icon-pantry {
  --orbit-icon-filter: invert(49%) sepia(29%) saturate(868%) hue-rotate(94deg) brightness(95%) contrast(88%);
}

.orbit-icon-pantry::before {
  background-image: url("./assets/box.svg");
}

.orbit-icon-cook {
  --orbit-icon-filter: invert(55%) sepia(56%) saturate(685%) hue-rotate(350deg) brightness(88%) contrast(85%);
}

.orbit-icon-cook::before {
  background-image: url("./assets/oven-mitts.svg");
}

.orbit-icon-plan {
  --orbit-icon-filter: invert(36%) sepia(29%) saturate(786%) hue-rotate(94deg) brightness(91%) contrast(88%);
}

.orbit-icon-plan::before {
  background-image: url("./assets/calendar.svg");
}

.orbit-shopping { top: 10%; left: 50%; transform: translateX(-50%); }
.orbit-pantry { top: 50%; right: 3%; transform: translateY(-50%); }
.orbit-cook { bottom: 10%; left: 50%; transform: translateX(-50%); }
.orbit-plan { top: 50%; left: 3%; transform: translateY(-50%); }

.orbit-core {
  inset: 31%;
  flex-direction: column;
  gap: 14px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(58, 161, 103, 0.96), rgba(44, 123, 79, 0.92)),
    rgba(44, 123, 79, 0.92);
  color: #fff;
  box-shadow: 0 26px 54px rgba(58, 161, 103, 0.38);
  z-index: 2;
}

.orbit-core-logo {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
}

.orbit-core-logo img {
  width: 68px;
}

.orbit-core span {
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.floating-panel,
.loop-card,
.feature-carousel,
.assistant-layout,
.waitlist-shell,
.close-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px);
}

.floating-panel {
  max-width: 370px;
  margin: 18px auto 0;
  padding: 22px 24px;
  border-radius: 24px;
}

.panel-title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.panel-copy { margin: 0; color: var(--text-soft); line-height: 1.6; }
.section-heading { max-width: 720px; margin-bottom: 32px; }

.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.loop-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.loop-step {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(58, 161, 103, 0.14);
  color: var(--green-deep);
  font-weight: 700;
}

.loop-card h3,
.feature-panel h3,
.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
  line-height: 1.15;
}

.loop-card p,
.why-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--text-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  padding: 26px 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px);
}

.feature-carousel {
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: background 320ms ease, box-shadow 320ms ease;
}

.feature-carousel-theme-shopping {
  background:
    radial-gradient(circle at 70% 34%, rgba(224, 161, 92, 0.18), transparent 26%),
    radial-gradient(circle at 24% 82%, rgba(58, 161, 103, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f2f4ef 100%);
}

.feature-carousel-theme-inventory {
  background:
    radial-gradient(circle at 72% 28%, rgba(58, 161, 103, 0.16), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(224, 161, 92, 0.13), transparent 26%),
    linear-gradient(180deg, #f7faf6 0%, #eef4ee 100%);
}

.feature-carousel-theme-recipes {
  background:
    radial-gradient(circle at 74% 34%, rgba(224, 161, 92, 0.22), transparent 28%),
    radial-gradient(circle at 22% 74%, rgba(58, 161, 103, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf5ec 0%, #f3f5ef 100%);
}

.feature-carousel-theme-receipts {
  background:
    radial-gradient(circle at 76% 36%, rgba(224, 161, 92, 0.18), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(58, 161, 103, 0.14), transparent 24%),
    linear-gradient(180deg, #faf6ef 0%, #eef4ef 100%);
}

.feature-carousel-theme-planning {
  background:
    radial-gradient(circle at 74% 30%, rgba(224, 161, 92, 0.18), transparent 28%),
    radial-gradient(circle at 24% 76%, rgba(58, 161, 103, 0.14), transparent 26%),
    linear-gradient(180deg, #fbf7ef 0%, #eff3ee 100%);
}

.feature-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.feature-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(24, 32, 25, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.feature-tab.is-active {
  background: linear-gradient(135deg, var(--green) 0%, #4bb477 100%);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 4px 10px rgba(58, 161, 103, 0.14);
}

.feature-stage {
  position: relative;
}

.feature-panel {
  position: relative;
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 0;
}

.feature-panel.is-active {
  display: grid;
}

.feature-panel-copy {
  grid-area: copy;
  max-width: none;
  align-self: center;
}

.feature-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(280px, 1fr);
  grid-template-areas: "copy phone";
  align-items: stretch;
  min-height: 392px;
  border-radius: inherit;
  overflow: hidden;
  padding: 24px 28px;
  background: transparent;
  gap: 28px;
}

.feature-selector-top {
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 28px;
  margin: 0 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.feature-selector-top::-webkit-scrollbar {
  display: none;
}

.feature-selector-top .feature-tab {
  scroll-snap-align: start;
}

.device-showcase {
  grid-area: phone;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.iphone-frame {
  position: relative;
  box-sizing: border-box;
  width: auto;
  height: 100%;
  max-height: 454px;
  aspect-ratio: 235 / 480;
  padding: 8px;
  border-radius: 44px;
  background:
    linear-gradient(180deg, #20221f 0%, #0f120f 40%, #2e3230 100%);
  box-shadow:
    0 28px 58px rgba(18, 22, 19, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.iphone-buttons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.iphone-buttons::before,
.iphone-buttons::after {
  content: "";
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.iphone-buttons::before {
  left: -2px;
  top: 140px;
  height: 66px;
  box-shadow: 0 86px 0 rgba(255, 255, 255, 0.2);
}

.iphone-buttons::after {
  right: -2px;
  top: 184px;
  height: 92px;
}

.iphone-screen {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  padding: 0;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8faf7 0%, #eef3ee 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.screen-placeholder {
  position: relative;
  display: flex;
  min-height: 100%;
  margin-top: 26px;
  padding: 24px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 32px;
  border: 1px dashed rgba(24, 32, 25, 0.16);
  text-align: center;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(224, 161, 92, 0.14), rgba(58, 161, 103, 0.14));
}

.screen-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.placeholder-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(58, 161, 103, 0.12);
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.screen-placeholder strong {
  max-width: 12ch;
  font-size: 1.78rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.screen-placeholder p {
  max-width: 18ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.screen-media {
  display: flex;
  height: 100%;
  min-height: 100%;
  margin-top: 0;
  border-radius: 36px 36px 24px 24px;
  overflow: hidden;
  background: #f1f1f4;
}

.screen-media img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 1101px) {
  .device-showcase {
    align-items: center;
  }

  .iphone-frame {
    width: 210px;
    height: auto;
    max-height: none;
    aspect-ratio: 235 / 480;
  }
}

.assistant-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.assistant-points {
  padding-left: 18px;
  margin: 22px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.assistant-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.assistant-phone-crop {
  display: flex;
  justify-content: center;
  height: 468px;
  overflow: hidden;
  background: transparent;
}

.assistant-phone-frame {
  position: relative;
  width: 304px;
  margin-block: -48px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 26px 38px rgba(18, 22, 19, 0.16));
}

.assistant-phone-buttons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.assistant-phone-buttons::before,
.assistant-phone-buttons::after {
  content: "";
  position: absolute;
  width: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.assistant-phone-buttons::before {
  left: -2px;
  top: 118px;
  height: 62px;
  box-shadow: 0 78px 0 rgba(255, 255, 255, 0.2);
}

.assistant-phone-buttons::after {
  right: -2px;
  top: 154px;
  height: 86px;
}

.assistant-phone-screen {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 564px;
  padding: 16px 12px;
  border-left: 8px solid #20221f;
  border-right: 8px solid #20221f;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247, 235, 222, 0.98), rgba(246, 249, 243, 0.98));
  box-shadow: none;
}

.chat-shell {
  display: grid;
  gap: 8px;
  width: 100%;
}

.chat-bubble {
  max-width: 94%;
  padding: 14px 16px;
  border-radius: 22px;
  line-height: 1.6;
  font-size: 0.94rem;
}

.chat-bubble-assistant {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 32, 25, 0.08);
  color: var(--text);
}

.chat-bubble-user {
  margin-left: auto;
  background: linear-gradient(135deg, var(--green) 0%, #50b978 100%);
  color: #fff;
}

.waitlist-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.waitlist-copy {
  max-width: 760px;
}

.waitlist-form {
  display: grid;
  gap: 18px;
}

.form-primary-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.form-primary-row .button {
  width: 100%;
  min-width: 0;
}

.submit-stack {
  display: grid;
  gap: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field { display: grid; gap: 10px; }

.field span,
.survey-group legend {
  font-weight: 600;
}

.field em {
  color: var(--text-soft);
  font-style: normal;
  font-weight: 500;
}

.field-note {
  display: block;
  margin-top: -2px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(24, 32, 25, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 15px 16px;
  color: var(--text);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(58, 161, 103, 0.5);
  box-shadow: 0 0 0 5px rgba(58, 161, 103, 0.1);
}

.optional-feedback {
  border: 1px solid rgba(24, 32, 25, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
}

.optional-feedback summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.optional-feedback summary::-webkit-details-marker {
  display: none;
}

.optional-feedback summary::after {
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
  color: var(--text-soft);
}

.optional-feedback[open] summary::after {
  content: "−";
}

.optional-feedback-body {
  display: grid;
  gap: 18px;
  padding: 0 18px 18px;
}

.feedback-submit-slot {
  display: grid;
}

.feedback-submit-slot .button,
.feedback-submit-slot .submit-stack {
  width: 100%;
}

.survey-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 14px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(24, 32, 25, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
}

.survey-group legend {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.survey-group label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
  color: var(--text-soft);
}

.survey-group input {
  margin-top: 2px;
  accent-color: var(--green);
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(24, 32, 25, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--text-soft);
  line-height: 1.45;
  font-weight: 600;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.is-success {
  border: 1px solid rgba(58, 161, 103, 0.2);
  background: rgba(58, 161, 103, 0.12);
  color: var(--green-deep);
}

.form-status.is-error {
  border: 1px solid rgba(179, 74, 77, 0.18);
  background: rgba(179, 74, 77, 0.1);
  color: #9f3b3f;
}

.close-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.close-card .eyebrow,
.close-card h2,
.close-card p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.close-card p:last-child {
  max-width: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .feature-tab, .reveal { transition: none; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .hero,
  .assistant-layout,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .hero-orbit {
    width: 100%;
  }

  .loop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-visual {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    min-height: 0;
    gap: 22px;
    overflow: hidden;
    padding: 32px 24px 24px;
  }

  .feature-panel-copy,
  .device-showcase {
    grid-area: auto;
  }

  .feature-panel-copy {
    text-align: center;
  }

  .device-showcase {
    justify-content: center;
    align-items: center;
  }

}

@media (max-width: 1240px) {
  .section-features .feature-visual {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    min-height: 0;
    gap: 22px;
    overflow: hidden;
    padding: 32px 24px 24px;
  }

  .section-features .feature-panel-copy,
  .section-features .device-showcase {
    grid-area: auto;
  }

  .section-features .feature-panel-copy {
    text-align: center;
  }

  .section-features .feature-panel-copy p:last-child {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .section-features .device-showcase {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 760px) {
  #top,
  section[id] {
    scroll-margin-top: 66px;
  }
  .site-shell { padding: 14px; }
  .topbar {
    top: 10px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
  }
  .brand {
    flex: 0 0 auto;
    gap: 8px;
  }
  .brand-logo { width: 36px; }
  .brand-title {
    font-size: 1rem;
  }
  .topnav {
    width: auto;
    margin-left: auto;
    overflow: visible;
    padding: 0;
  }
  .topnav .nav-pill {
    display: none;
  }
  .topnav .button {
    min-height: 34px;
    padding: 0 12px;
  }
  .mobile-menu-toggle {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(24, 32, 25, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.52);
    color: var(--text);
    box-shadow: 0 8px 20px rgba(32, 44, 35, 0.08);
    cursor: pointer;
  }
  .mobile-menu-toggle span {
    grid-area: 1 / 1;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease;
  }
  .mobile-menu-toggle span:first-child {
    transform: translateY(-4px);
  }
  .mobile-menu-toggle span:last-child {
    transform: translateY(4px);
  }
  .topbar.is-menu-open .mobile-menu-toggle span:first-child {
    transform: rotate(45deg);
  }
  .topbar.is-menu-open .mobile-menu-toggle span:last-child {
    transform: rotate(-45deg);
  }
  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(24, 32, 25, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 54px rgba(32, 44, 35, 0.18);
    backdrop-filter: blur(30px) saturate(1.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(247, 245, 240, 0.7);
    color: var(--text);
    font-weight: 600;
  }
  .mobile-menu a:hover {
    background: rgba(24, 32, 25, 0.05);
    color: var(--text);
  }
  .topbar.is-menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .hero { min-height: auto; gap: 26px; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 4.1rem); }
  .loop-grid,
  .form-primary-row,
  .form-grid,
  .survey-group {
    grid-template-columns: 1fr;
  }

  .assistant-layout,
  .waitlist-shell,
  .close-card,
  .feature-carousel {
    padding: 24px;
  }

  .orbit-node {
    width: 76px;
    gap: 6px;
    padding: 0;
    font-size: 0.62rem;
  }

  .orbit-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .orbit-icon::before {
    width: 27px;
    height: 27px;
  }

  .orbit-core { inset: 32%; }
  .orbit-core-logo {
    width: 52px;
    height: 52px;
  }

  .orbit-core-logo img { width: 50px; }
  .orbit-core span { font-size: 0.95rem; }
  .orbit-cook { bottom: 10%; }
  .floating-panel {
    margin-top: 12px;
  }

  .feature-visual {
    padding: 18px 12px 18px;
  }

  .assistant-phone-frame {
    width: 278px;
    margin-block: -40px;
  }

  .assistant-phone-crop {
    height: 430px;
  }

  .assistant-phone-screen {
    display: flex;
    align-items: center;
    min-height: 512px;
    padding: 14px 12px;
  }

  .chat-bubble {
    font-size: 0.88rem;
  }

  .iphone-frame {
    width: min(100%, 214px);
    height: auto;
    aspect-ratio: auto;
  }

  .iphone-screen {
    min-height: 396px;
  }

  .screen-placeholder {
    min-height: 344px;
    margin-top: 22px;
    padding: 18px 14px;
  }

  .screen-media {
    min-height: 396px;
    margin-top: 0;
  }

  .screen-media img {
    min-height: 396px;
  }

  .screen-placeholder strong {
    font-size: 1.34rem;
  }

  .feature-tab {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.95rem;
  }

  .form-primary-row .button {
    min-width: 0;
  }

  .feature-selector-top {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
    gap: 8px;
  }

  .feature-selector-top .feature-tab {
    flex: 1 1 auto;
    min-width: 0;
  }
}
