:root {
  --ink: #10231d;
  --muted: #5d6b62;
  --soft: #f5f6ef;
  --paper: #fffdf6;
  --teal: #087c70;
  --teal-dark: #043f3c;
  --mint: #dff8ed;
  --blue: #1f70a8;
  --berry: #c52f70;
  --amber: #f4bd45;
  --line: rgba(16, 35, 29, .13);
  --shadow: 0 28px 70px rgba(13, 38, 31, .16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  right: auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 44px), 1180px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, .76);
  box-shadow: 0 14px 40px rgba(17, 35, 29, .11);
  backdrop-filter: blur(18px) saturate(1.12);
  transform: translateX(-50%);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 246, .92);
  box-shadow: 0 16px 42px rgba(17, 35, 29, .16);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  font-size: 18px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

nav a,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius);
  font-weight: 850;
}

nav a {
  padding: 0 13px;
  color: rgba(16, 35, 29, .72);
  font-size: 14px;
}

nav a:hover {
  color: var(--teal-dark);
  background: rgba(223, 248, 237, .65);
}

.nav-cta {
  padding: 0 15px;
  background: var(--ink);
  color: white;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background: url("assets/hero-kitchen.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 20, 18, .88) 0%, rgba(6, 20, 18, .72) 31%, rgba(6, 20, 18, .2) 58%, rgba(6, 20, 18, .1)),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .08) 58%, rgba(245, 246, 239, .82));
}

.hero-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 76px auto 42px;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8df2d0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(68px, 11vw, 152px);
  line-height: .86;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: .95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.05;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.35;
}

.hero-actions,
.cta-section,
.signal-strip,
.screen-tabs,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-width: 162px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 15px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.nav-cta:hover,
.screen-tabs button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: white;
}

.button.ghost {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .12);
  color: white;
  backdrop-filter: blur(14px);
}

.signal-strip {
  max-width: 870px;
  margin-top: 44px;
}

.signal-strip span {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .8);
  backdrop-filter: blur(16px);
}

.signal-strip b {
  color: white;
}

.proof-band {
  width: min(1180px, calc(100% - 44px));
  margin: -44px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.metric {
  padding: 24px;
  background: rgba(255, 253, 246, .78);
}

.metric b,
.metric span {
  display: block;
}

.metric b {
  color: var(--teal-dark);
  font-size: 26px;
}

.metric span {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 760;
}

section {
  position: relative;
}

.section-grid {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding: 110px 0;
}

.section-copy > p:not(.eyebrow),
.kitchen-panel p,
.launch-copy p,
.screen-copy p,
.timeline-points,
footer p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature-list,
.moat-grid,
.launch-cards {
  display: grid;
  gap: 14px;
}

.feature-list {
  margin-top: 32px;
}

.feature-list article,
.moat-grid article,
.launch-cards article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, .82);
  box-shadow: 0 16px 35px rgba(16, 35, 29, .06);
}

.feature-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
}

.feature-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 950;
}

.feature-list h3,
.feature-list p,
.moat-grid h3,
.moat-grid p,
.launch-cards h3,
.launch-cards p {
  margin: 0;
}

.feature-list p,
.moat-grid p,
.launch-cards p {
  color: var(--muted);
  line-height: 1.48;
}

.phone-stage {
  display: grid;
  place-items: center;
  min-height: 620px;
}

.phone-frame {
  width: min(330px, 82vw);
  padding: 10px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(198, 232, 224, .88)),
    #f9fbf4;
  box-shadow:
    0 38px 90px rgba(7, 38, 32, .24),
    inset 0 0 0 1px rgba(8, 124, 112, .18);
}

.phone-frame.tilted {
  transform: rotate(-3deg);
}

.phone-frame img {
  width: 100%;
  border-radius: 25px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

.kitchen-intelligence {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: 0;
  min-height: 720px;
  background: #10231d;
  color: white;
}

.kitchen-photo {
  min-height: 520px;
}

.kitchen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kitchen-panel {
  display: grid;
  align-content: center;
  padding: clamp(38px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(8, 124, 112, .26), rgba(31, 112, 168, .18)),
    #10231d;
}

.kitchen-panel .eyebrow {
  color: #8df2d0;
}

.kitchen-panel p {
  color: rgba(255, 255, 255, .76);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.check-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
  font-weight: 850;
}

.screens-section {
  padding: 108px 0;
  background:
    linear-gradient(180deg, #f5f6ef, #ebf3ec 45%, #f7f6ef);
}

.section-heading {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 30px;
}

.section-heading.compact {
  text-align: center;
}

.section-heading.compact h2 {
  margin-left: auto;
  margin-right: auto;
}

.screen-tabs {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 24px;
}

.screen-tabs button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, .72);
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.screen-tabs button.active {
  background: var(--teal-dark);
  color: white;
  border-color: var(--teal-dark);
}

.screen-showcase {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(8, 124, 112, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 246, .92), rgba(223, 248, 237, .74)),
    var(--paper);
  box-shadow: var(--shadow);
}

.screen-phone {
  justify-self: center;
  width: min(310px, 78vw);
}

.screen-phone img {
  transition: opacity .16s ease;
}

.screen-copy h3 {
  max-width: 650px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.moat-section {
  padding: 110px 0;
  background: var(--paper);
}

.moat-grid {
  width: min(1180px, calc(100% - 44px));
  margin: 36px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.moat-grid article {
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, .92), rgba(245, 246, 239, .9));
}

.moat-grid h3,
.launch-cards h3 {
  color: var(--teal-dark);
}

.timeline-section {
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.05fr);
}

.timeline-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-points li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-top: 1px solid var(--line);
}

.timeline-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.launch-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: 110px max(22px, calc((100vw - 1180px) / 2));
  color: white;
  background:
    linear-gradient(135deg, rgba(6, 63, 60, .96), rgba(16, 35, 29, .98)),
    #10231d;
}

.launch-section .eyebrow {
  color: #8df2d0;
}

.launch-copy p {
  color: rgba(255, 255, 255, .76);
}

.launch-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-cards article {
  min-height: 250px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .13);
  color: white;
  box-shadow: none;
}

.launch-cards b {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: rgba(141, 242, 208, .14);
  color: #8df2d0;
}

.launch-cards h3 {
  color: white;
}

.launch-cards p {
  color: rgba(255, 255, 255, .72);
}

.cta-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 96px 0;
  align-items: center;
  justify-content: space-between;
}

.cta-section h2 {
  max-width: 780px;
}

.cta-section .button {
  min-height: 56px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px max(22px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #eef2e9;
}

footer p {
  max-width: 680px;
  margin: 0;
  font-size: 13px;
}

footer a {
  color: var(--teal-dark);
  font-weight: 900;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-inner {
    margin-top: 92px;
  }

  .proof-band,
  .section-grid,
  .screen-showcase,
  .launch-section {
    grid-template-columns: 1fr;
  }

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

  .section-grid,
  .screens-section,
  .moat-section,
  .timeline-section,
  .launch-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .kitchen-intelligence {
    grid-template-columns: 1fr;
  }

  .kitchen-photo {
    min-height: 360px;
  }

  .moat-grid,
  .launch-cards,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 0;
  }

  .phone-frame.tilted {
    transform: none;
  }

  footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
  }

  .brand span {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 20, 18, .9), rgba(6, 20, 18, .62)),
      linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(245, 246, 239, .82));
  }

  .hero-inner,
  .proof-band,
  .section-grid,
  .section-heading,
  .screen-tabs,
  .screen-showcase,
  .moat-grid,
  .cta-section {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(56px, 18vw, 82px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .button,
  .hero-actions a,
  .screen-tabs button {
    width: 100%;
  }

  .signal-strip span {
    width: 100%;
  }

  .proof-band {
    margin-top: -28px;
    grid-template-columns: 1fr;
  }

  .metric {
    padding: 18px;
  }

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

  .feature-list span {
    margin-bottom: 12px;
  }

  .screen-showcase {
    padding: 18px;
  }

  .kitchen-panel {
    padding: 34px 20px;
  }

  .launch-section {
    padding-left: 14px;
    padding-right: 14px;
  }
}
