:root {
  color-scheme: light;
  --ink: #101114;
  --muted: #62656c;
  --soft: #9699a0;
  --line: rgba(16, 17, 20, 0.12);
  --line-strong: rgba(16, 17, 20, 0.18);
  --paper: #ffffff;
  --surface: #f5f6f7;
  --surface-warm: #fff2eb;
  --orange: #f26422;
  --orange-dark: #d94f12;
  --shadow: 0 24px 70px rgba(16, 17, 20, 0.1);
  --shadow-soft: 0 12px 30px rgba(16, 17, 20, 0.09);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

body,
button,
a {
  font-family: inherit;
}

a {
  color: inherit;
}

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

a:focus-visible {
  outline: 3px solid rgba(242, 100, 34, 0.35);
  outline-offset: 4px;
}

img {
  max-width: 100%;
}

.page {
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
}

section[id] {
  scroll-margin-top: 104px;
}

.shell {
  width: min(1080px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  margin-top: 18px;
  padding: 7px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(16, 17, 20, 0.065);
  backdrop-filter: blur(26px) saturate(1.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
}

.brand-mark img,
.closing-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.store-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(16, 17, 20, 0.1);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  background: #2a2c31;
  box-shadow: 0 12px 26px rgba(16, 17, 20, 0.14);
}

.store-button.compact {
  min-height: 42px;
  justify-self: end;
  padding-inline: 14px;
  border-radius: 14px;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(16, 17, 20, 0.08);
}

.apple-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  min-height: calc(100svh - 104px);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  padding-block: 74px 110px;
}

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

.hero h1,
.hero p,
.statement p,
.statement h2,
.section-heading p,
.section-heading h2,
.workflow-step p,
.workflow-step h3,
.recipes-copy p,
.recipes-copy h2,
.privacy-copy h2,
.privacy-copy p,
.closing h2,
.policy h1,
.policy p,
.policy-grid h2,
.policy-grid p {
  margin-top: 0;
}

.hero h1 {
  max-width: 9.7ch;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: clamp(62px, 8.1vw, 116px);
  font-weight: 780;
  letter-spacing: -0.085em;
  line-height: 0.9;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.26;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.text-button span {
  font-size: 20px;
  font-weight: 400;
  line-height: 0.7;
}

.text-button:hover {
  gap: 13px;
  color: var(--orange);
}

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

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

.proof-list li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.device {
  position: relative;
  overflow: hidden;
  background: #101010;
  border: 5px solid #171717;
  box-shadow: 0 22px 52px rgba(16, 17, 20, 0.16), 0 6px 14px rgba(16, 17, 20, 0.1);
}

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

.device img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-hero {
  width: min(330px, 72vw);
  aspect-ratio: 1242 / 2688;
  border-radius: 52px;
  transform: rotate(2deg);
}

.statement {
  padding: 124px 0 132px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.statement p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.statement h2,
.section-heading h2,
.recipes-copy h2,
.closing h2,
.policy h1 {
  color: var(--ink);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.statement h2 {
  margin-bottom: 0;
}

.workflow {
  padding-bottom: 124px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 64px);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.workflow-step {
  min-width: 0;
  padding: 24px clamp(16px, 2.4vw, 32px) 0;
  border-right: 1px solid var(--line);
}

.workflow-step:first-child {
  padding-left: 0;
}

.workflow-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 780;
}

.workflow-step h3 {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 740;
  letter-spacing: -0.045em;
}

.workflow-step > p {
  min-height: 48px;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.48;
}

.device-step {
  width: min(100%, 260px);
  aspect-ratio: 1242 / 2688;
  margin-inline: auto;
  border-radius: 42px;
}

.workflow-step:first-child .device-step {
  margin-left: 0;
}

.workflow-step:last-child .device-step {
  margin-right: 0;
}

.recipes {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
  padding: 116px 0;
  border-top: 1px solid var(--line);
}

.recipes-copy > p:not(.section-kicker) {
  max-width: 460px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 520;
  line-height: 1.58;
}

.recipes-copy h2 {
  margin-bottom: 24px;
}

.recipe-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.recipe-panel-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 22px 14px;
}

.recipe-panel-header h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.045em;
}

.recipe-list {
  margin: 0;
  padding: 0 8px 8px;
  list-style: none;
}

.recipe-row {
  display: grid;
  grid-template-columns: 34px minmax(120px, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
}

.recipe-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.recipe-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.recipe-details {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.recipe-details strong {
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recipe-details small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recipe-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(48px, auto));
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-align: right;
}

.recipe-values b {
  font-weight: 650;
}

.privacy-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
}

.privacy-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.privacy-copy h2 {
  margin-bottom: 7px;
  font-size: 22px;
  font-weight: 740;
  letter-spacing: -0.04em;
}

.privacy-copy p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.45;
}

.privacy-band .text-button {
  justify-self: end;
  white-space: nowrap;
}

.closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 0 140px;
  text-align: center;
}

.closing-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 17px;
  background: transparent;
}

.closing h2 {
  margin-bottom: 32px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  min-height: 116px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
}

.footer-brand {
  font-size: 16px;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.site-footer small {
  justify-self: end;
  color: var(--soft);
  font-size: 12px;
}

.policy {
  padding: 106px 0 156px;
}

.policy h1 {
  max-width: 9ch;
  margin-bottom: 22px;
}

.policy-lede {
  max-width: 650px;
  margin-bottom: 92px;
  color: var(--muted);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.policy-grid section {
  min-height: 250px;
  padding: 34px 44px 42px 0;
  border-bottom: 1px solid var(--line);
}

.policy-grid section:nth-child(odd) {
  padding-right: 44px;
  border-right: 1px solid var(--line);
}

.policy-grid section:nth-child(even) {
  padding-left: 44px;
}

.policy-grid section > span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.policy-grid h2 {
  margin: 18px 0 14px;
  font-size: 28px;
  font-weight: 740;
  letter-spacing: -0.045em;
}

.policy-grid p {
  max-width: 480px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.62;
}

.policy-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.policy-contact p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.policy-contact a {
  color: var(--orange-dark);
  font-size: 20px;
  font-weight: 720;
  text-decoration: none;
}

.effective {
  margin-top: 24px;
  color: var(--soft);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

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

  .reveal,
  .reveal.visible,
  .store-button,
  .text-button {
    transform: none;
    transition: none;
  }
}

@media (max-width: 920px) {
  .shell {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    margin-top: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding: 8px 10px 4px;
    border-top: 1px solid var(--line);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 62px;
    padding-block: 86px 116px;
  }

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

  .hero-visual {
    min-height: 540px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-step,
  .workflow-step:first-child,
  .workflow-step:last-child {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .workflow-step > p {
    max-width: 520px;
    min-height: 0;
  }

  .device-step,
  .workflow-step:first-child .device-step,
  .workflow-step:last-child .device-step {
    margin-inline: auto;
  }

  .recipes {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .recipes-copy > p:not(.section-kicker) {
    max-width: 580px;
  }

  .privacy-band {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .privacy-band .text-button {
    grid-column: 2;
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 36px 0;
    text-align: center;
  }

  .footer-brand,
  .site-footer small {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    position: sticky;
    top: 10px;
    grid-template-columns: 1fr auto;
    border-radius: 20px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .store-button.compact {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .store-button.compact .apple-icon {
    width: 16px;
    height: 16px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero {
    gap: 34px;
    padding-block: 74px 94px;
  }

  .hero h1 {
    max-width: 8.4ch;
    margin-bottom: 24px;
    font-size: clamp(56px, 17vw, 88px);
  }

  .hero-lede {
    max-width: 330px;
    font-size: 20px;
  }

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

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

  .hero-actions .text-button {
    justify-content: center;
    min-height: 44px;
  }

  .proof-list {
    justify-content: space-between;
    gap: 12px;
    margin-top: 34px;
    font-size: 11px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .device-hero {
    width: min(286px, 78vw);
    border-radius: 46px;
  }

  .statement {
    padding: 84px 0 92px;
  }

  .statement p {
    max-width: 250px;
    margin-inline: auto;
    line-height: 1.4;
  }

  .statement h2,
  .section-heading h2,
  .recipes-copy h2,
  .closing h2,
  .policy h1 {
    font-size: clamp(43px, 13vw, 66px);
  }

  .section-heading {
    display: block;
    padding-bottom: 24px;
  }

  .workflow {
    padding-bottom: 84px;
  }

  .workflow-step,
  .workflow-step:first-child,
  .workflow-step:last-child {
    padding-block: 24px;
  }

  .workflow-step h3 {
    font-size: 24px;
  }

  .workflow-step > p {
    margin-block: 12px 20px;
    font-size: 14px;
  }

  .device-step {
    width: min(250px, 76vw);
    border-radius: 39px;
  }

  .recipes {
    gap: 34px;
    padding: 84px 0;
  }

  .recipes-copy > p:not(.section-kicker) {
    font-size: 16px;
  }

  .recipe-panel {
    border-radius: 18px;
  }

  .recipe-panel-header {
    padding: 16px 16px 12px;
  }

  .recipe-list {
    padding-inline: 4px;
  }

  .recipe-row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    min-height: 66px;
    padding: 9px 6px;
  }

  .recipe-icon {
    width: 26px;
    height: 26px;
  }

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

  .recipe-details strong {
    font-size: 14px;
  }

  .recipe-details small {
    font-size: 11px;
  }

  .recipe-values {
    display: none;
  }

  .privacy-band {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0;
  }

  .privacy-icon {
    width: 30px;
    height: 30px;
  }

  .privacy-icon svg {
    width: 22px;
    height: 22px;
  }

  .privacy-copy h2 {
    font-size: 18px;
  }

  .privacy-copy p {
    font-size: 13px;
  }

  .privacy-band .text-button {
    grid-column: 2;
    font-size: 13px;
  }

  .closing {
    padding: 96px 0 110px;
  }

  .closing-mark {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
  }

  .closing h2 {
    margin-bottom: 28px;
  }

  .closing .store-button {
    width: 100%;
  }

  .policy {
    padding: 78px 0 110px;
  }

  .policy-lede {
    margin-bottom: 60px;
    font-size: 24px;
  }

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

  .policy-grid section,
  .policy-grid section:nth-child(odd),
  .policy-grid section:nth-child(even) {
    min-height: auto;
    padding: 28px 0 32px;
    border-right: 0;
  }

  .policy-grid h2 {
    margin-top: 14px;
    font-size: 24px;
  }

  .policy-grid p {
    font-size: 14px;
  }

  .policy-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 48px;
  }
}
