* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #6f6a60;
  --paper: #f6f3ec;
  --paper-warm: #e9e2d3;
  --milk: #fbf8f1;
  --line: rgba(183, 177, 165, 0.3);
  --line-strong: rgba(183, 177, 165, 0.54);
  --line-brass: rgba(185, 155, 94, 0.48);
  --wood: #7b766b;
  --stone: #b7b1a5;
  --brass: #8e6a35;
  --brass-on-dark: #b99b5e;
  --matte-champagne-brass: #e5d5c0;
  --quiet-luxury-forest: #013220;
  --gold: var(--brass);
  --gold-deep: var(--brass);
  --gold-on-dark: var(--brass-on-dark);
  --tomato: #a6533f;
  --sage: #d8dccf;
  --fresh: #053f1b;
  --honey: #b7b1a5;
  --citron: #d8dccf;
  --deep: #053f1b;
  --deep-2: #032d13;
  --forest-soft: rgba(5, 63, 27, 0.08);
  --shadow: 0 18px 56px rgba(26, 26, 26, 0.08);
  --brass-glow: rgba(185, 155, 94, 0.16);
  --serif: "Forum", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --surface-transition: 160ms cubic-bezier(0.2, 0.75, 0.24, 1);
  --surface-radius-card: 14px;
  --surface-radius-modal: 14px;
  --surface-radius-tile: 8px;
  --surface-radius-pill: 999px;
  --surface-border: var(--line-strong);
  --surface-border-soft: var(--line);
  --surface-shadow: var(--shadow);
  --surface-shadow-strong: 0 18px 56px rgba(26, 26, 26, 0.11);
  --surface-bg-base: var(--paper);
  --surface-bg-soft: var(--milk);
  --surface-bg-muted: var(--paper-warm);
  --surface-bg-cream: var(--sage);
  --surface: var(--milk);
  --surface-border-strong: var(--line-strong);
  --surface-card-top: var(--paper);
  --surface-card-bottom: var(--paper-warm);
  --surface-card-strip: var(--line-brass);
  --surface-tile-bg: rgba(246, 243, 236, 0.78);
  --surface-focus-ring: rgba(185, 155, 94, 0.3);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface-bg-base);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.surface-card {
  --surface-card-top: var(--surface-bg-soft);
  --surface-card-bottom: var(--surface-bg-base);
  --surface-card-strip: 0px;
  --surface-card-border: rgba(185, 155, 94, 0.22);
  position: relative;
  border-radius: var(--surface-radius-card);
  border: 0.5px solid var(--surface-card-border);
  background: linear-gradient(180deg, var(--surface-card-top), var(--surface-card-bottom));
  box-shadow: 0 20px 56px rgba(26, 26, 26, 0.07);
  transition:
    border-color var(--surface-transition),
    box-shadow var(--surface-transition),
    transform var(--surface-transition);
}

.surface-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  border-radius: 999px;
  background: var(--surface-card-strip);
  opacity: 0;
  transition: opacity var(--surface-transition);
}

.surface-card.surface-card--topline::before {
  opacity: 1;
}

.surface-tile {
  border: 1px solid var(--surface-border-soft);
  border-radius: var(--surface-radius-tile);
  background: var(--surface-tile-bg);
}

.surface-pressed {
  box-shadow: inset 0 10px 26px rgba(26, 26, 26, 0.04);
}

.nowrap {
  white-space: nowrap;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.88);
  border-bottom: 0.5px solid var(--line-brass);
  backdrop-filter: blur(18px);
}

.harbor-site-header {
  z-index: 30;
}

.harbor-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}

.harbor-account {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.harbor-social-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}

.harbor-social-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.harbor-social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 77, 30, 0.14);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(246, 243, 236, 0.82);
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.04);
  transition:
    transform var(--surface-transition),
    border-color var(--surface-transition),
    color var(--surface-transition),
    box-shadow var(--surface-transition),
    background-color var(--surface-transition);
}

.harbor-social-link svg {
  width: 18px;
  height: 18px;
}

.harbor-social-link:hover,
.harbor-social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(159, 118, 45, 0.34);
  color: var(--gold);
  box-shadow: 0 10px 20px rgba(26, 26, 26, 0.08);
}

.harbor-social-edit {
  width: 40px;
  height: 40px;
}

.harbor-account[hidden],
.harbor-account-menu[hidden],
.harbor-auth[hidden],
.harbor-dashboard[hidden] {
  display: none !important;
}

.harbor-icon-button {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(11, 77, 30, 0.18);
  border-radius: 999px;
  padding: 0;
  color: var(--deep);
  background: rgba(246, 243, 236, 0.9);
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.06);
  transition:
    transform var(--surface-transition),
    background-color var(--surface-transition),
    border-color var(--surface-transition),
    color var(--surface-transition),
    box-shadow var(--surface-transition);
}

.harbor-icon-button svg {
  width: 20px;
  height: 20px;
}

.harbor-icon-button:hover {
  transform: translateY(-1px);
  border-color: rgba(159, 118, 45, 0.34);
  box-shadow: 0 12px 24px rgba(26, 26, 26, 0.08);
}

.harbor-icon-button[data-open="true"] {
  color: var(--paper);
  background: var(--deep);
  border-color: rgba(194, 161, 90, 0.9);
}

.harbor-icon-button:focus-visible {
  outline: 3px solid var(--surface-focus-ring);
  outline-offset: 3px;
}

#account-button {
  border-color: transparent;
}

#account-button:hover {
  border-color: transparent;
}

#account-button svg {
  width: 24px;
  height: 24px;
}

.harbor-account-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 40;
  display: grid;
  gap: 10px;
  width: min(280px, calc(100vw - 32px));
  padding: 16px;
}

.harbor-account-label {
  margin: 0;
  color: var(--stone);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.harbor-account-email {
  margin: 0;
  color: var(--deep);
  font-weight: 760;
  word-break: break-word;
}

.harbor-account-expiry {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.harbor-menu-action {
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
}

.brand-name-roux {
  color: var(--deep);
}

.brand-name-chef {
  display: inline-block;
  color: var(--gold);
  transform: translateY(1px);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  color: color-mix(in srgb, var(--deep) 64%, transparent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  padding: 8px 0;
  transition: color 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--deep);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/images/rouxchef-hero-premium.png");
  background-position: 48% 52px;
  background-size: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 43, 38, 0.04) 0%, rgba(8, 43, 38, 0) 32%, rgba(8, 43, 38, 0.16) 100%),
    linear-gradient(90deg, rgba(246, 243, 236, 0.08) 0%, rgba(246, 243, 236, 0) 28%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(76% 68% at 18% 34%, rgba(246, 243, 236, 0.98) 0%, rgba(246, 243, 236, 0.94) 28%, rgba(246, 243, 236, 0.72) 50%, rgba(246, 243, 236, 0.22) 66%, rgba(246, 243, 236, 0) 74%),
    linear-gradient(180deg, rgba(246, 243, 236, 0.24) 0%, rgba(246, 243, 236, 0.04) 30%, rgba(246, 243, 236, 0.8) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 1200px;
  min-height: 780px;
  margin: 0 auto;
  padding: 118px 20px 64px;
  align-items: center;
  gap: 36px;
}

.hero-copy {
  min-width: 0;
  max-width: 680px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro .kicker,
.chef-proof .kicker,
.conversion .kicker,
.faq .kicker {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 3.62rem;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 2.55rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text,
.section-copy p,
.emphasis p,
.feature-card span,
details p,
.footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 600px;
  margin-bottom: 32px;
  font-size: 1.16rem;
  overflow-wrap: break-word;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--surface-radius-pill);
  padding: 0 26px;
  border: 0.5px solid transparent;
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

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

.button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--surface-focus-ring);
  outline-offset: 3px;
}

.button.primary {
  color: var(--matte-champagne-brass);
  background: var(--quiet-luxury-forest);
  border-color: color-mix(in srgb, var(--matte-champagne-brass) 74%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(229, 213, 192, 0.2),
    0 10px 24px rgba(1, 50, 32, 0.11),
    0 0 0 1px rgba(185, 155, 94, 0.12);
}

.button.primary:hover {
  background: var(--quiet-luxury-forest);
  box-shadow:
    inset 0 1px 0 rgba(229, 213, 192, 0.26),
    0 14px 28px rgba(1, 50, 32, 0.14),
    0 0 0 1px rgba(185, 155, 94, 0.14);
}

.button.secondary {
  color: var(--deep);
  background: rgba(251, 248, 241, 0.58);
  border-color: var(--line-brass);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-phone {
  display: none;
}

.phone-shell {
  position: relative;
  width: min(100%, 320px);
  border-radius: 42px;
  padding: 9px;
  border: 0.5px solid rgba(185, 155, 94, 0.38);
  background: var(--paper-warm);
  box-shadow:
    0 22px 64px rgba(8, 43, 38, 0.18),
    inset 1px 1px 0 rgba(246, 243, 236, 0.7),
    inset -1px -1px 0 var(--brass-glow);
}

.phone-shell::before,
.phone-shell::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.phone-shell::before {
  top: 22px;
  width: 72px;
  height: 21px;
  border-radius: 999px;
  background: var(--deep-2);
  box-shadow: inset 0 0 0 1px rgba(246, 243, 236, 0.08);
}

.phone-shell::after {
  bottom: 18px;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: rgba(11, 77, 30, 0.18);
}

.mini-phone {
  border-radius: 34px;
  padding: 10px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.phone-screen,
.mini-screen {
  min-height: 100%;
  border-radius: 26px;
  background: var(--paper);
  border: 1px solid rgba(246, 243, 236, 0.26);
}

.phone-screen {
  width: 100%;
  min-height: 552px;
  padding: 58px 20px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-screen--capture,
.mini-screen--capture {
  position: relative;
  min-height: auto;
  padding: 0;
  background: #f6f1e6;
}

.phone-screen--capture {
  aspect-ratio: 1440 / 3120;
}

.mini-screen--capture {
  aspect-ratio: 1440 / 3120;
}

.screen-capture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.phone-top,
.ingredient-row,
.recipe-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-top {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.phone-top strong {
  color: var(--deep);
}

.phone-screen h2 {
  margin-bottom: 18px;
  font-size: 1.28rem;
  line-height: 1.1;
  text-wrap: balance;
}

.phone-cta {
  width: 100%;
  min-height: 50px;
  margin-bottom: 18px;
  border: 0.5px solid color-mix(in srgb, var(--matte-champagne-brass) 74%, transparent);
  border-radius: var(--surface-radius-pill);
  color: var(--matte-champagne-brass);
  background: var(--quiet-luxury-forest);
  box-shadow:
    inset 0 1px 0 rgba(229, 213, 192, 0.2),
    0 0 0 1px var(--brass-glow);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.phone-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 17px;
}

.source-pills span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 0.5px solid var(--line-brass);
  border-radius: var(--surface-radius-pill);
  padding: 0 10px;
  color: var(--deep);
  background: var(--surface-tile-bg);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ingredient-row {
  min-height: 40px;
  margin-bottom: 7px;
  padding: 0 11px;
  border: 0;
  border-bottom: 1px solid rgba(183, 177, 165, 0.18);
  border-radius: var(--surface-radius-tile);
  background: var(--surface-tile-bg);
  font-size: 0.84rem;
  gap: 8px;
}

.ingredient-row small {
  color: var(--muted);
  font-weight: 760;
}

.recipe-card {
  display: block;
  margin-top: auto;
  padding: 15px;
  border: 0.5px solid color-mix(in srgb, var(--matte-champagne-brass) 54%, transparent);
  border-radius: 18px;
  background: var(--quiet-luxury-forest);
  color: var(--matte-champagne-brass);
  box-shadow: 0 16px 34px rgba(1, 50, 32, 0.16);
}

.recipe-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--brass-on-dark);
  font-size: 0.75rem;
  font-weight: 760;
  text-transform: uppercase;
}

.recipe-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
  line-height: 1.18;
}

.recipe-card p {
  margin: 0;
  color: var(--matte-champagne-brass);
  font-size: 0.8rem;
}

.section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 86px 20px;
  scroll-margin-top: 92px;
}

.section-copy {
  max-width: 690px;
}

.section-copy p {
  font-size: 1.06rem;
}

.legal-page {
  padding-top: 86px;
}

.legal-hero {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 86px 20px 46px;
}

.legal-hero .kicker {
  color: var(--gold);
}

.legal-hero h1 {
  margin-bottom: 18px;
  color: var(--deep);
}

.legal-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  gap: 28px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px 96px;
}

.legal-note {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border-radius: 8px;
  --surface-card-top: rgba(251, 248, 241, 0.94);
  --surface-card-bottom: var(--paper-warm);
  --surface-card-strip: rgba(194, 161, 90, 0.48);
  --surface-card-border: var(--surface-border-strong);
}

.legal-note p {
  margin: 0;
  color: var(--muted);
}

.legal-note a:not(.button) {
  color: var(--deep);
  font-weight: 800;
  border-bottom: 1px solid rgba(11, 77, 30, 0.18);
}

.legal-note-title {
  color: var(--gold) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-button {
  width: 100%;
  margin-top: 4px;
}

.legal-content {
  display: grid;
  gap: 20px;
  padding-top: 4px;
}

.legal-content h2 {
  margin: 18px 0 -6px;
  color: var(--deep);
  font-size: 1.65rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content p {
  margin: 0;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
}

.legal-content a {
  color: var(--deep);
  font-weight: 800;
  border-bottom: 1px solid rgba(11, 77, 30, 0.18);
}

.legal-content a:hover,
.legal-note a:not(.button):hover {
  color: var(--gold);
  border-bottom-color: rgba(194, 161, 90, 0.42);
}

.intro {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.outcome-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: outcome;
  padding: 48px clamp(22px, 4vw, 34px) 12px;
  background: transparent;
}

.outcome-strip::before {
  content: "Tonight should feel like";
  position: absolute;
  top: 18px;
  left: clamp(22px, 4vw, 34px);
  color: var(--stone);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-strip span {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 62px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(183, 177, 165, 0.12);
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 1.08;
}

.outcome-strip span::before {
  counter-increment: outcome;
  content: "0" counter(outcome);
  color: var(--stone);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  align-self: baseline;
  padding-top: 0.45em;
}

.brand-values {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 78px;
}

.brand-values-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-brass);
  border-bottom: 1px solid var(--line-brass);
}

.value-item {
  display: grid;
  gap: 9px;
  justify-items: center;
  padding: 28px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.value-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.value-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.value-icon {
  display: block;
  width: 35px;
  height: 35px;
  color: var(--brass);
  stroke-width: 1.4;
}

.value-item h3 {
  margin: 0;
  color: var(--deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-item p {
  max-width: 150px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.outcome-strip span:last-child {
  border-bottom: 0;
}

.feature-grid {
  position: relative;
  display: grid;
  gap: 0;
  counter-reset: feature;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 34px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card::before {
  counter-increment: feature;
  content: "0" counter(feature);
  display: block;
  width: 36px;
  height: auto;
  padding: 3px 0 9px;
  border: 0;
  border-bottom: 1px solid var(--line-brass);
  border-radius: 0;
  color: var(--brass);
  background: transparent;
  box-shadow: none;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.feature-card p {
  grid-column: 2;
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-card h3,
.feature-card span {
  grid-column: 2;
}

.feature-card:last-child {
  border-bottom: 0;
}

.feature-card span {
  display: block;
}

.chef-proof {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.chef-proof-copy {
  max-width: 680px;
}

.chef-proof-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

.proof-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.proof-item:last-child {
  border-bottom: 0;
}

.proof-item span {
  grid-row: span 2;
  color: var(--stone);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.2;
}

.proof-item strong {
  color: var(--deep);
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-item p {
  margin: 0;
  color: var(--muted);
}

.section.product-flow {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 84px max(20px, calc((100% - 1160px) * 0.5)) 94px;
  overflow: hidden;
  border-top: 1px solid rgba(183, 177, 165, 0.2);
  border-bottom: 1px solid rgba(183, 177, 165, 0.2);
  background:
    linear-gradient(180deg, rgba(233, 226, 211, 0.62) 0%, rgba(246, 243, 236, 0.94) 22%, rgba(246, 243, 236, 1) 100%);
}

.product-flow .section-copy {
  max-width: 720px;
}

.product-flow .kicker {
  color: var(--gold);
}

.product-flow h2 {
  color: var(--deep);
}

.screens {
  display: grid;
  gap: 22px;
  max-width: 1080px;
  margin: 42px auto 0;
  align-items: start;
}

.screen-device {
  width: min(100%, 340px);
  margin: 0 auto;
}

.mini-phone {
  position: relative;
  border-radius: 42px;
  padding: 9px;
  border: 0.5px solid rgba(185, 155, 94, 0.42);
  background: linear-gradient(180deg, rgba(246, 243, 236, 0.96), rgba(233, 226, 211, 0.9));
  box-shadow:
    0 18px 40px rgba(26, 26, 26, 0.08),
    inset 1px 1px 0 rgba(246, 243, 236, 0.58),
    inset -1px -1px 0 var(--brass-glow);
}

.mini-phone::before,
.mini-phone::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.mini-phone::before {
  top: 22px;
  width: 72px;
  height: 21px;
  border-radius: 999px;
  background: var(--deep-2);
  box-shadow: inset 0 0 0 1px rgba(246, 243, 236, 0.08);
}

.mini-phone::after {
  bottom: 18px;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: rgba(11, 77, 30, 0.18);
}

.mini-screen {
  min-height: 552px;
  padding: 58px 20px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.screen-card {
  margin: 0;
  display: grid;
  gap: 18px;
  align-items: center;
  max-width: none;
  padding: 24px;
  border: 1px solid rgba(183, 177, 165, 0.24);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(251, 248, 241, 0.96), rgba(233, 226, 211, 0.78));
  box-shadow: 0 16px 34px rgba(26, 26, 26, 0.05);
}

.screen-caption {
  width: 100%;
  text-align: left;
}

.screen-caption p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen-caption strong {
  display: block;
  margin: 0 0 8px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

.screen-caption span {
  display: block;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.mini-screen p {
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-screen strong {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.22rem;
  line-height: 1.1;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.mini-screen span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.mini-screen button {
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  border: 0.5px solid color-mix(in srgb, var(--matte-champagne-brass) 74%, transparent);
  border-radius: var(--surface-radius-pill);
  color: var(--matte-champagne-brass);
  background: var(--quiet-luxury-forest);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  box-shadow:
    inset 0 1px 0 rgba(229, 213, 192, 0.2),
    0 0 0 1px var(--brass-glow);
}

.mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 18px;
}

.mini-pills i,
.mini-recipe-list i {
  font-style: normal;
}

.mini-pills i {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 0.5px solid var(--line-brass);
  border-radius: var(--surface-radius-pill);
  padding: 0 10px;
  color: var(--deep);
  background: var(--surface-tile-bg);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mini-suggestion {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 14px;
  border: 0.5px solid var(--line-brass);
  border-radius: var(--surface-radius-tile);
  background: var(--surface-tile-bg);
}

.mini-suggestion small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-suggestion b {
  color: var(--deep);
  font-size: 0.94rem;
  line-height: 1.25;
}

.mini-recipe-list {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.mini-recipe-list i {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(183, 177, 165, 0.18);
  border-radius: var(--surface-radius-tile);
  color: var(--deep);
  background: var(--surface-tile-bg);
  font-size: 0.78rem;
  font-weight: 700;
}

.mini-recipe-list b {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: var(--surface-radius-pill);
  background: var(--quiet-luxury-forest);
  color: var(--matte-champagne-brass);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
}

.scan-line {
  position: relative;
  height: 126px;
  margin-top: auto;
  border-radius: var(--surface-radius-card);
  background:
    repeating-linear-gradient(
      180deg,
      rgba(5, 63, 27, 0.1),
      rgba(5, 63, 27, 0.1) 2px,
      transparent 2px,
      transparent 12px
    ),
    rgba(246, 243, 236, 0.84);
  border: 1px solid var(--line);
}

.scan-line::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 48%;
  height: 1px;
  background: var(--brass);
}

.progress-lines {
  display: grid;
  gap: 11px;
  margin-top: auto;
}

.progress-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fresh), rgba(11, 77, 30, 0.18));
}

.progress-lines i:nth-child(2) {
  width: 72%;
  background: linear-gradient(90deg, var(--line-strong), rgba(183, 177, 165, 0.2));
}

.progress-lines i:nth-child(3) {
  width: 48%;
  background: linear-gradient(90deg, var(--sage), rgba(216, 220, 207, 0.2));
}

.conversion {
  display: grid;
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.conversion-copy {
  display: grid;
  gap: clamp(42px, 7vw, 84px);
  align-content: center;
}

.emphasis {
  display: grid;
  gap: 20px;
  align-items: start;
}

.emphasis h2 {
  max-width: 690px;
  margin-bottom: 0;
}

.emphasis p {
  max-width: 610px;
  margin: 0;
  padding-left: 16px;
  border-left: 1px solid var(--line-brass);
  font-size: 1.08rem;
  line-height: 1.62;
}

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

.waitlist-form {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--surface-radius-card);
  --surface-card-top: var(--milk);
  --surface-card-bottom: var(--paper);
}

.harbor-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 118px 20px 70px;
  display: grid;
  gap: 24px;
}

.harbor-shell {
  display: grid;
  gap: 18px;
  padding: 22px;
  --surface-card-top: var(--paper);
  --surface-card-bottom: var(--paper-warm);
  --surface-card-strip: 0px;
}

.harbor-command-head {
  display: grid;
  gap: 8px;
}

.harbor-subtitle {
  margin-bottom: 6px;
  color: var(--muted);
}

.harbor-boot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.harbor-boot-spinner {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid rgba(11, 77, 30, 0.12);
  border-top-color: var(--deep);
  border-radius: 999px;
  animation: harbor-spin 0.9s linear infinite;
}

.harbor-boot-copy {
  display: grid;
  gap: 3px;
}

.harbor-boot-title,
.harbor-boot-note {
  margin: 0;
}

.harbor-boot-title {
  color: var(--deep);
  font-weight: 700;
}

.harbor-boot-note {
  color: var(--muted);
}

.harbor-auth,
.harbor-dashboard {
  display: grid;
  gap: 18px;
}

.harbor-auth-header {
  display: grid;
  gap: 8px;
  padding: 2px 2px 0;
}

.harbor-auth-step {
  margin-bottom: 0;
}

.harbor-auth-header h2 {
  margin-bottom: 0;
  font-size: 1.9rem;
}

.harbor-auth-copy {
  margin: 0;
  max-width: 600px;
  color: var(--muted);
}

.harbor-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.harbor-dashboard-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.harbor-dashboard-top .harbor-muted,
.harbor-dashboard-top small,
.harbor-admin {
  margin: 0;
}

.harbor-admin {
  margin-top: 0;
  color: var(--deep);
  font-weight: 760;
}

.harbor-dashboard-surface {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.harbor-dialog {
  width: min(760px, calc(100% - 40px));
  max-width: none;
  border: 0;
  border-radius: 16px;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.harbor-dialog::backdrop {
  background: rgba(11, 24, 18, 0.38);
  backdrop-filter: blur(8px);
}

.harbor-dialog-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.harbor-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.harbor-dialog-copy {
  display: grid;
  gap: 6px;
}

.harbor-dialog-title {
  margin: 0;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.08;
}

.harbor-dialog-note {
  margin: 0;
  max-width: 54ch;
  color: var(--muted);
}

.harbor-dialog-close {
  width: 40px;
  height: 40px;
}

.harbor-social-fields {
  display: grid;
  gap: 12px;
}

.harbor-social-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.harbor-social-row-platform {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.harbor-social-row-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--surface-border-soft);
  border-radius: 999px;
  color: var(--deep);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

.harbor-social-row-icon svg {
  width: 17px;
  height: 17px;
}

.harbor-social-row-label {
  color: var(--deep);
  font-weight: 700;
}

.harbor-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.harbor-surface-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.harbor-surface-head-meta {
  display: grid;
  gap: 6px;
}

.harbor-surface-kicker {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.harbor-surface-kicker--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.harbor-kicker-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.harbor-kicker-icon svg {
  width: 18px;
  height: 18px;
}

.harbor-kicker-icon--queue {
  color: var(--deep);
}

.harbor-surface-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.harbor-surface-head h2 {
  margin-bottom: 0;
  font-size: 1.75rem;
  line-height: 1.05;
}

.harbor-count-badge {
  margin: 0;
  border: 1px solid var(--surface-border-soft);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 74%, transparent);
  font-size: 0.82rem;
  font-weight: 700;
}

.harbor-surface-note {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
}

.harbor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.harbor-kicker {
  margin-bottom: 8px;
}

.harbor-step-note {
  margin: 0;
  color: var(--muted);
}

.harbor-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.harbor-form-actions--end {
  justify-content: flex-end;
}

.harbor-form-actions .button {
  flex: 0 0 auto;
}

.harbor-text-button {
  border: 0;
  padding: 0;
  color: var(--deep);
  background: transparent;
  font-weight: 760;
  cursor: pointer;
}

.harbor-text-button:hover {
  color: var(--gold);
  transform: none;
}

.harbor-text-button:focus-visible {
  outline: 3px solid var(--surface-focus-ring);
  outline-offset: 3px;
  border-radius: 999px;
}

.harbor-refresh-button {
  align-self: flex-start;
  margin-top: 2px;
}

.harbor-refresh-button svg {
  transition: transform var(--surface-transition);
}

.harbor-refresh-button[data-loading="true"] svg {
  animation: harbor-spin 0.9s linear infinite;
}

.harbor-list {
  display: grid;
  gap: 12px;
}

.harbor-feedback-form {
  display: grid;
  gap: 16px;
  padding: 18px 0 0;
  border-top: 1px solid var(--surface-border-soft);
}

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

.harbor-feedback-grid-wide {
  grid-column: 1 / -1;
}

.harbor-feedback-row {
  gap: 14px;
}

.harbor-feedback-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.harbor-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--surface-border-soft);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--deep);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: capitalize;
}

.harbor-badge--severity {
  color: var(--gold-deep);
}

.harbor-feedback-review {
  display: grid;
  gap: 12px;
}

.harbor-dashboard-surface--feedback {
  gap: 18px;
}

.harbor-feedback-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.harbor-feedback-form-copy {
  display: grid;
  gap: 6px;
}

.harbor-feedback-form-note {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.harbor-upload-stack {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}

.harbor-dropzone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 96px;
  border: 1px dashed rgba(11, 77, 30, 0.18);
  border-radius: 12px;
  padding: 18px 20px;
  background: rgba(251, 248, 241, 0.82);
  cursor: pointer;
  transition:
    border-color var(--surface-transition),
    background-color var(--surface-transition),
    box-shadow var(--surface-transition),
    transform var(--surface-transition);
}

.harbor-dropzone:hover,
.harbor-dropzone:focus-visible,
.harbor-dropzone[data-dragging="true"] {
  border-color: rgba(159, 118, 45, 0.4);
  background: rgba(251, 248, 241, 0.98);
  box-shadow: inset 0 0 0 1px rgba(159, 118, 45, 0.14);
}

.harbor-dropzone:focus-visible {
  outline: 3px solid var(--surface-focus-ring);
  outline-offset: 3px;
}

.harbor-dropzone-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.harbor-dropzone-title {
  margin: 0;
  color: var(--deep);
  font-weight: 760;
}

.harbor-dropzone-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.harbor-dropzone-button {
  flex: 0 0 auto;
}

.harbor-upload-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.harbor-upload-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  border: 1px solid var(--surface-border-soft);
  border-radius: 999px;
  padding: 5px 8px 5px 12px;
  background: rgba(246, 243, 236, 0.92);
}

.harbor-upload-chip a {
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.harbor-upload-chip-remove {
  border: 0;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition:
    color var(--surface-transition),
    background-color var(--surface-transition);
}

.harbor-upload-chip-remove:hover,
.harbor-upload-chip-remove:focus-visible {
  color: var(--deep);
  background: rgba(11, 77, 30, 0.08);
  outline: none;
}

.harbor-inline-disclosure {
  border-top: 1px solid var(--surface-border-soft);
  padding-top: 10px;
}

.harbor-inline-disclosure summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.harbor-inline-disclosure summary::-webkit-details-marker {
  display: none;
}

.harbor-inline-disclosure[open] {
  display: grid;
  gap: 10px;
}

.harbor-inline-disclosure[open] summary {
  color: var(--deep);
}

.harbor-queue-disclosure {
  padding: 10px 14px 14px;
}

.harbor-queue-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  padding: 6px 2px;
}

.harbor-queue-summary::-webkit-details-marker {
  display: none;
}

.harbor-queue-summary-copy {
  display: grid;
  gap: 2px;
}

.harbor-queue-summary-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep);
  font-weight: 760;
}

.harbor-queue-summary-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.harbor-queue-summary-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.harbor-queue-action {
  width: 40px;
  height: 40px;
}

.harbor-list--feedback {
  padding-top: 10px;
}

.harbor-feedback-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.harbor-feedback-links a {
  color: var(--deep);
  font-weight: 700;
}

.harbor-compact-textarea {
  min-height: 88px;
}

.harbor-row {
  border: 1px solid var(--surface-border-soft);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  background: var(--surface-tile-bg);
}

.harbor-row-main {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: flex-start;
}

.harbor-row-identity {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.harbor-row-title {
  margin: 0;
  color: var(--deep);
  font-weight: 760;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.harbor-row-subtitle {
  margin: 0;
  color: var(--muted);
}

.harbor-row-actions {
  display: inline-flex;
}

.harbor-row-actions .button {
  min-height: 40px;
}

.harbor-row-side {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.harbor-row-source {
  display: inline-grid;
  gap: 3px;
  margin: 0;
  justify-items: end;
  color: var(--muted);
  text-align: right;
}

.harbor-row-label {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.harbor-row-note,
.harbor-row-agent {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-top: 2px;
}

.harbor-row-note-value,
.harbor-row-date {
  margin: 0;
}

.harbor-row-note-value {
  color: var(--body);
}

.harbor-row-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.harbor-row-footer-side {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.harbor-row-date {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.harbor-delete-icon {
  width: 40px;
  height: 40px;
  min-height: 40px;
  color: var(--muted);
  border-color: rgba(11, 77, 30, 0.14);
  background: rgba(246, 243, 236, 0.82);
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.04);
  opacity: 1;
}

.harbor-delete-icon:hover,
.harbor-delete-icon:focus-visible {
  color: var(--tomato);
  border-color: rgba(194, 88, 63, 0.34);
  background: rgba(255, 248, 245, 0.96);
  box-shadow: 0 8px 18px rgba(194, 88, 63, 0.12);
}

.harbor-delete-icon svg {
  width: 16px;
  height: 16px;
}

.harbor-muted {
  margin: 0;
  color: var(--muted);
}

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

label {
  display: grid;
  gap: 10px;
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 720;
}

.waitlist-form label,
.contact-card label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  background: var(--milk);
  color: var(--ink);
  box-shadow: none;
  transition:
    border-color var(--surface-transition),
    background-color var(--surface-transition),
    box-shadow var(--surface-transition);
}

input {
  min-height: 54px;
  padding: 0 16px;
}

select {
  min-height: 54px;
  padding: 0 48px 0 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(11, 77, 30, 0.68) 50%),
    linear-gradient(135deg, rgba(11, 77, 30, 0.68) 50%, transparent 50%),
    linear-gradient(180deg, rgba(11, 77, 30, 0.08), rgba(11, 77, 30, 0));
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px),
    100% 0;
  background-size:
    6px 6px,
    6px 6px,
    48px 100%;
  background-repeat: no-repeat;
  cursor: pointer;
}

textarea {
  min-height: 122px;
  padding: 15px 16px;
  resize: vertical;
}

.waitlist-form input,
.waitlist-form textarea,
.contact-card input,
.contact-card textarea {
  border: 0;
  border-bottom: 1px solid var(--line-brass);
  border-radius: 0;
  background: transparent;
  padding-right: 0;
  padding-left: 0;
}

.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder,
.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(111, 106, 96, 0.66);
  font-family: var(--serif);
  font-style: italic;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus,
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--brass);
  box-shadow: none;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(11, 77, 30, 0.24);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(159, 118, 45, 0.5);
  box-shadow: inset 0 0 0 1px rgba(159, 118, 45, 0.1);
}

.form-button {
  width: 100%;
  min-height: 54px;
  border-radius: var(--surface-radius-pill);
}

.form-button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status[data-state="success"] {
  color: var(--fresh);
}

.form-status[data-state="error"] {
  color: var(--tomato);
}

.contact-dialog {
  width: min(560px, calc(100% - 40px));
  max-width: none;
  border: 0;
  border-radius: 16px;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.contact-dialog::backdrop {
  background: rgba(11, 77, 30, 0.42);
  backdrop-filter: blur(10px);
}

.contact-card {
  position: relative;
  display: grid;
  gap: 18px;
  max-height: min(92vh, 700px);
  overflow: auto;
  margin: 0;
  padding: clamp(22px, 4vw, 30px);
  border-radius: var(--surface-radius-modal);
  --surface-card-top: var(--milk);
  --surface-card-bottom: var(--paper);
}

.contact-card .kicker {
  margin-bottom: -6px;
}

.contact-card h2 {
  margin-bottom: 0;
  font-size: 1.95rem;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-card textarea {
  min-height: 102px;
}

.contact-card input {
  min-height: 48px;
}

.contact-card .form-button {
  min-height: 54px;
}

.dialog-close {
  position: absolute;
  top: 28px;
  right: 30px;
  min-height: 34px;
  border: 0;
  padding: 0;
  color: var(--stone);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dialog-close:hover {
  color: var(--deep);
}

.contact-honey-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.confirmation-dialog {
  width: min(430px, calc(100% - 40px));
  max-width: none;
  border: 0;
  border-radius: 16px;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.confirmation-dialog::backdrop {
  background: rgba(11, 77, 30, 0.42);
  backdrop-filter: blur(10px);
}

.confirmation-card {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 28px;
  border-radius: 16px;
  --surface-card-top: var(--paper);
  --surface-card-bottom: var(--paper);
}

.confirmation-mark {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper-warm);
}

.confirmation-mark::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 11px;
  width: 11px;
  height: 19px;
  border: solid var(--deep);
  border-width: 0 3px 3px 0;
  transform: rotate(42deg);
}

.confirmation-card .kicker {
  margin-bottom: -4px;
}

.confirmation-card h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.confirmation-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.confirmation-card .button {
  width: 100%;
  margin-top: 4px;
}

.faq {
  display: grid;
  gap: 26px;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

details:last-child {
  border-bottom: 0;
}

summary {
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  color: var(--deep);
  font-weight: 640;
  line-height: 1.35;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  content: "";
}

summary::after {
  content: "+";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(159, 118, 45, 0.22);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

summary:hover::after {
  border-color: rgba(159, 118, 45, 0.46);
  color: var(--deep);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 0 22px;
}

.footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 44px 20px 28px;
  background: var(--quiet-luxury-forest);
  color: var(--matte-champagne-brass);
  border-top: 1px solid rgba(229, 213, 192, 0.14);
}

.footer p {
  margin-bottom: 0;
  color: rgba(229, 213, 192, 0.88);
}

.footer-inner {
  display: grid;
  gap: 28px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.footer .brand {
  color: var(--matte-champagne-brass);
}

.footer .brand-mark {
  width: 52px;
  height: 52px;
}

.footer .brand-name-roux {
  color: var(--matte-champagne-brass);
}

.footer .brand-name-chef {
  color: var(--gold-on-dark);
}

.footer .brand-logo {
  width: 52px;
  height: 52px;
  filter: brightness(1.08) contrast(0.94);
}

.footer-meta {
  display: grid;
  gap: 8px;
  max-width: 430px;
}

.footer-meta p:first-child {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1.05;
}

.footer-copy {
  color: rgba(229, 213, 192, 0.66);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(229, 213, 192, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(229, 213, 192, 0.16);
}

.footer-legal,
.footer-credit,
.footer-utility {
  margin: 0;
  color: rgba(229, 213, 192, 0.52);
  font-size: 0.78rem;
}

.footer-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.footer-utility a {
  color: inherit;
  border-bottom: 1px solid rgba(229, 213, 192, 0.12);
}

.footer-utility a:hover {
  color: var(--gold-on-dark);
  border-bottom-color: rgba(194, 161, 90, 0.42);
}

.footer .footer-credit {
  color: rgba(229, 213, 192, 0.46);
  font-size: 0.72rem;
}

.footer .footer-credit a {
  color: inherit;
  border-bottom: 1px solid rgba(229, 213, 192, 0.14);
}

.footer .footer-credit a:hover {
  color: var(--gold-on-dark);
  border-bottom-color: rgba(194, 161, 90, 0.42);
}

@media (min-width: 700px) {
  .site-header {
    padding: 18px 34px;
  }

  .nav-links {
    display: flex;
  }

  .hero-inner {
    max-width: 1228px;
    padding-left: 34px;
    padding-right: 34px;
  }

  h1 {
    font-size: 3.95rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .section {
    max-width: 1228px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .legal-hero {
    padding-left: 34px;
    padding-right: 34px;
  }

  .legal-layout {
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
    gap: 54px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .outcome-strip {
    grid-template-columns: 1fr;
  }

  .outcome-strip span {
    padding: 20px 0;
  }

  .outcome-strip span:nth-child(odd) {
    border-right: 0;
  }

  .outcome-strip span:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(183, 177, 165, 0.12);
  }

  .outcome-strip span:last-child {
    border-bottom: 0;
  }

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

  .feature-card {
    padding: 34px 0 36px;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:nth-child(odd) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .feature-card:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }

  .feature-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .chef-proof {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  }

  .waitlist,
  .faq,
  .intro {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  }

  .conversion {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  }

  .footer {
    display: block;
    max-width: none;
    padding: 52px 34px 30px;
  }

  .footer-inner {
    max-width: 1228px;
    grid-template-columns: minmax(210px, 0.72fr) minmax(280px, 1fr) minmax(160px, 0.35fr);
    gap: 40px;
    align-items: center;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-self: end;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1228px;
  }

  .footer-utility {
    justify-content: center;
  }
}

@media (min-width: 760px) and (max-width: 1059px) {
  .screen-card {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
  }

  .screen-card:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  }

  .screen-card:nth-child(even) .screen-device {
    order: 2;
  }

  .screen-card:nth-child(even) .screen-caption {
    order: 1;
  }
}

@media (min-width: 1060px) {
  .hero {
    min-height: 824px;
    padding: 26px 0 24px;
    background: linear-gradient(180deg, var(--milk) 0%, var(--paper) 100%);
  }

  .hero-media {
    inset: 54px 28px 28px auto;
    width: min(49vw, 760px);
    border-radius: 34px;
    background-position: 56% center;
    box-shadow:
      0 28px 76px rgba(26, 26, 26, 0.12),
      inset 0 0 0 1px rgba(251, 248, 241, 0.32);
    overflow: hidden;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(8, 43, 38, 0.02) 0%, rgba(8, 43, 38, 0) 30%, rgba(8, 43, 38, 0.2) 100%),
      radial-gradient(40% 54% at 28% 44%, rgba(246, 243, 236, 0.16) 0%, rgba(246, 243, 236, 0) 100%);
  }

  .hero-shade {
    background:
      radial-gradient(74% 74% at 17% 34%, rgba(251, 248, 241, 0.98) 0%, rgba(251, 248, 241, 0.96) 24%, rgba(251, 248, 241, 0.84) 40%, rgba(251, 248, 241, 0.42) 55%, rgba(251, 248, 241, 0.08) 66%, rgba(251, 248, 241, 0) 74%),
      linear-gradient(180deg, rgba(246, 243, 236, 0.1) 0%, rgba(246, 243, 236, 0) 28%, rgba(246, 243, 236, 0.56) 100%);
  }

  .hero-inner {
    max-width: 1228px;
    min-height: 772px;
    padding-left: 34px;
    padding-right: 34px;
    align-items: center;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-phone {
    display: block;
    position: absolute;
    z-index: 3;
    right: calc(min(49vw, 760px) - 98px);
    bottom: 56px;
    width: 262px;
    transform: rotate(-5deg);
    transform-origin: 50% 88%;
  }

  .phone-shell {
    box-shadow:
      0 6px 14px rgba(26, 26, 26, 0.14),
      22px 42px 110px rgba(8, 43, 38, 0.1),
      inset 1px 1px 0 rgba(246, 243, 236, 0.74),
      inset -1px -1px 0 var(--brass-glow);
  }

  .hero-phone .phone-screen--capture::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(251, 242, 224, 0.05) 0%, rgba(251, 242, 224, 0.02) 100%),
      linear-gradient(90deg, rgba(248, 236, 214, 0.03) 0%, rgba(248, 236, 214, 0) 34%);
    pointer-events: none;
  }
}

@media (min-width: 1060px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-card {
    padding: 34px 30px 36px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .feature-card:nth-child(odd),
  .feature-card:nth-child(even),
  .feature-card:nth-last-child(-n + 2) {
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: 0;
  }

  .feature-card:first-child {
    padding-left: 0;
  }

  .feature-card:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .screen-card {
    grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
    gap: clamp(28px, 3vw, 40px);
    padding: 26px 28px;
  }

  .screen-card:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  }

  .screen-card:nth-child(even) .screen-device {
    order: 2;
  }

  .screen-card:nth-child(even) .screen-caption {
    order: 1;
  }

  .screen-device.raised {
    transform: none;
  }

  .screen-caption {
    max-width: 420px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-phone {
    display: none !important;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(246, 243, 236, 0.98) 0%, rgba(246, 243, 236, 0.9) 58%, rgba(246, 243, 236, 0.5) 100%),
      linear-gradient(0deg, rgba(246, 243, 236, 0.98) 0%, rgba(246, 243, 236, 0) 24%);
  }

  .hero-inner {
    display: block;
    width: 100%;
    max-width: none;
    min-height: 720px;
    padding-top: 112px;
    padding-bottom: 54px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy,
  .hero-text,
  .section-copy {
    width: min(350px, calc(100vw - 56px));
    max-width: min(350px, calc(100vw - 56px));
    overflow-wrap: anywhere;
  }

  h1 {
    width: min(350px, calc(100vw - 56px));
    max-width: min(350px, calc(100vw - 56px));
    font-size: 2.34rem;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions {
    display: grid;
    width: min(350px, calc(100vw - 56px));
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .section {
    overflow: hidden;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section.product-flow {
    padding: 64px 20px;
  }

  .screen-device {
    width: min(100%, 304px);
  }

  .brand-values {
    padding: 0 20px 58px;
  }

  .brand-values-inner {
    grid-template-columns: 1fr;
  }

  .value-item,
  .value-item:nth-child(odd),
  .value-item:nth-last-child(-n + 2) {
    min-width: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-item:last-child {
    border-bottom: 0;
  }

  .value-item h3,
  .value-item p {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .feature-grid {
    width: 100%;
    min-width: 0;
  }

  .feature-card {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .feature-card p,
  .feature-card h3,
  .feature-card span {
    grid-column: auto;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .feature-card::before {
    margin-bottom: 18px;
  }

  .feature-card h3 {
    font-size: 1.05rem;
  }

  .harbor-page {
    padding-top: 112px;
  }

  .harbor-header-actions {
    gap: 8px;
  }

  .harbor-social-tools {
    gap: 8px;
  }

  .harbor-social-nav {
    gap: 6px;
  }

  .harbor-social-link,
  .harbor-social-edit {
    width: 36px;
    height: 36px;
  }

  .harbor-auth-header h2,
  .harbor-surface-head h2 {
    font-size: 1.72rem;
  }

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

  .harbor-form-actions--end {
    align-items: stretch;
  }

  .harbor-form-actions .button {
    width: 100%;
  }

  .harbor-text-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .harbor-shell {
    padding: 16px;
  }

  .harbor-card,
  .harbor-dashboard-surface {
    padding: 16px;
  }

  .harbor-dialog {
    width: min(100% - 24px, 760px);
  }

  .harbor-dialog-card {
    padding: 18px;
  }

  .harbor-dialog-head {
    align-items: flex-start;
  }

  .harbor-dialog-title {
    font-size: 1.72rem;
  }

  .harbor-social-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .harbor-feedback-grid {
    grid-template-columns: 1fr;
  }

  .harbor-feedback-form {
    padding: 16px 0 0;
  }

  .harbor-feedback-form-head {
    align-items: flex-start;
  }

  .harbor-dropzone {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .harbor-dropzone-button {
    width: 100%;
  }

  .harbor-queue-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .harbor-queue-summary-actions {
    width: 100%;
    justify-content: space-between;
  }

  .harbor-account-menu {
    width: min(280px, calc(100vw - 24px));
  }
}
