:root {
  --brand: #ff7622;
  --brand-deep: #e85a0c;
  --ink: #1c1917;
  --muted: #57534e;
  --line: rgba(28, 25, 23, 0.1);
  --paper: #fff7f0;
  --white: #ffffff;
  --dark: #0c0a09;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

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

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* —— Top bar —— */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2rem);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.topbar.is-solid {
  background: rgba(255, 247, 240, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.brand img {
  height: 2.15rem;
  width: auto;
}

.topbar__links {
  display: none;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.topbar__links a {
  color: rgba(255, 255, 255, 0.9);
}

.topbar.is-solid .topbar__links a {
  color: var(--muted);
}

.topbar__links a:hover {
  color: var(--brand);
}

@media (min-width: 800px) {
  .topbar__links {
    display: flex;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 0.85rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  border-radius: 999px;
}

.btn--solid {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 118, 34, 0.35);
}

.btn--solid:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  animation: drift 20s var(--ease) infinite alternate;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(12, 10, 9, 0.88) 0%,
      rgba(12, 10, 9, 0.55) 42%,
      rgba(12, 10, 9, 0.25) 70%,
      rgba(255, 118, 34, 0.2) 100%
    ),
    linear-gradient(180deg, rgba(12, 10, 9, 0.35) 0%, transparent 30%, rgba(12, 10, 9, 0.85) 100%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 2rem));
  margin: 0 auto 0 0;
  padding: calc(var(--nav) + 4rem) clamp(1rem, 4vw, 3rem) 4.5rem;
}

.hero__brand-mark {
  margin: 0 0 1.1rem;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.85s var(--ease) 0.1s forwards;
}

.hero__brand-mark img {
  height: clamp(2.8rem, 8vw, 3.6rem);
  width: auto;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 6.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 12ch;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.85s var(--ease) 0.25s forwards;
}

.hero__lede {
  margin: 0 0 1.6rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 36ch;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.85s var(--ease) 0.4s forwards;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.85s var(--ease) 0.55s forwards;
}

/* —— Cuisines —— */
.cuisines {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.cuisines__row {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.cuisines__row::-webkit-scrollbar {
  display: none;
}

.cuisine {
  flex: 0 0 auto;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: #fff0e6;
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 118, 34, 0.2);
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.section__title,
.app-show h2,
.partner h2,
.contact h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.app-show {
  background: var(--white);
}

.app-show__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 880px) {
  .app-show__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.app-show__text p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 40ch;
}

.checklist {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.6rem;
  font-weight: 600;
  color: var(--ink);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 118, 34, 0.2);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 10.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 0.75rem;
  background: var(--dark);
  color: #fff;
  transition: transform 0.25s var(--ease);
}

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

.store__label {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0.04em;
}

.store__name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
}

.app-note {
  margin: 1rem 0 0 !important;
  font-size: 0.88rem !important;
}

/* Phone mock */
.phone {
  display: flex;
  justify-content: center;
}

.phone__bezel {
  width: min(280px, 78vw);
  border-radius: 2rem;
  padding: 0.7rem;
  background: linear-gradient(160deg, #2a2623, #0c0a09);
  box-shadow:
    0 30px 60px rgba(12, 10, 9, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: float-phone 5s var(--ease) infinite alternate;
}

.phone__notch {
  width: 38%;
  height: 0.55rem;
  margin: 0.2rem auto 0.7rem;
  border-radius: 999px;
  background: #1c1917;
}

.phone__screen {
  border-radius: 1.4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 118, 34, 0.35), transparent 50%),
    linear-gradient(180deg, #fff7f0, #ffe8d6);
  min-height: 420px;
  padding: 1rem;
}

.phone__top {
  margin-bottom: 1rem;
}

.phone__top img {
  height: 1.5rem;
  width: auto;
  margin-bottom: 0.35rem;
}

.phone__top p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.phone__card {
  background: #fff;
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
  box-shadow: 0 8px 20px rgba(28, 25, 23, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 3px solid var(--brand);
}

.phone__card strong {
  font-size: 0.92rem;
}

.phone__card span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.phone__card--1 {
  animation: slide-in 0.7s var(--ease) 0.2s both;
}
.phone__card--2 {
  animation: slide-in 0.7s var(--ease) 0.4s both;
}
.phone__card--3 {
  animation: slide-in 0.7s var(--ease) 0.6s both;
}

/* How */
.how {
  background:
    linear-gradient(180deg, transparent, rgba(255, 118, 34, 0.06), transparent);
}

.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.steps li {
  padding-top: 1rem;
  border-top: 3px solid var(--brand);
}

.steps__n {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Partner */
.partner {
  background: var(--dark);
  color: #fff;
}

.partner .eyebrow {
  color: var(--brand);
}

.partner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 36ch;
}

.partner__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .partner__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .partner__grid article:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 4rem;
  }
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--brand);
  border-bottom: 1px solid transparent;
}

.text-link:hover {
  border-bottom-color: var(--brand);
}

/* Contact */
.contact__box {
  max-width: 520px;
}

.contact__box > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.waitlist {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

@media (min-width: 520px) {
  .waitlist {
    flex-direction: row;
  }
}

.waitlist input {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1.15rem;
  border-radius: 0.85rem;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
}

.waitlist input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 118, 34, 0.18);
}

.waitlist__note {
  margin: 0.85rem 0 0;
  font-weight: 600;
  color: var(--brand-deep);
}

.contact__mail {
  margin-top: 1.25rem !important;
  font-size: 0.92rem;
}

.contact__mail a {
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid rgba(28, 25, 23, 0.25);
}

/* Footer */
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  gap: 1.25rem;
}

.footer__brand img {
  height: 2rem;
  width: auto;
  margin-bottom: 0.65rem;
}

.footer__taphint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.5;
}

.footer__taphint strong {
  color: var(--ink);
}

.footer__taphint a {
  color: var(--brand-deep);
  font-weight: 700;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer__links a {
  color: var(--muted);
}

.footer__links a:hover {
  color: var(--brand);
}

.footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Legal pages */
.legal-page .topbar {
  background: rgba(255, 247, 240, 0.96);
  box-shadow: 0 1px 0 var(--line);
}

.legal {
  padding: calc(var(--nav) + 2.5rem) 0 4rem;
}

.legal__wrap {
  max-width: 720px;
}

.legal h1 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.legal__meta {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal__body h2 {
  margin: 1.8rem 0 0.6rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
}

.legal__body p,
.legal__body li {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.legal__body a {
  color: var(--brand-deep);
  font-weight: 700;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes drift {
  from {
    transform: scale(1.05) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

@keyframes float-phone {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero__img,
  .hero__brand-mark,
  .hero h1,
  .hero__lede,
  .hero__cta,
  .phone__bezel,
  .phone__card,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
