:root {
  --orange: #FF6B00;
  --orange-soft: #FF8C38;
  --ink: #1E1E1E;
  --muted: #6E6E6E;
  --beige: #F4F1EA;
  --line: #E7E2D8;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 17px;
  line-height: 1.6;
}

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

main:focus { outline: none; }

a { color: var(--orange); }

a:focus-visible,
.skip:focus {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 720px; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  padding: 12px 16px;
  z-index: 10;
}
.skip:focus { left: 12px; top: 12px; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  flex-wrap: wrap;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand img { border-radius: 8px; }
.site-header nav { display: flex; gap: 20px; flex-wrap: wrap; }
.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
}
.site-header nav a:hover { color: var(--orange); }

/* Hero */
.hero {
  background: linear-gradient(180deg, #FFF6EF 0%, #fff 100%);
  padding: 56px 0 24px;
}
.hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}
h1 {
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.lede {
  font-size: clamp(17px, 2.2vw, 19px);
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 34em;
}
/* Not a button: nothing to press until the store listings are live, so it
   reads as a status badge rather than an affordance. */
.cta {
  display: inline-block;
  margin: 0;
  background: #FFF1E6;
  color: #B44A00;
  border: 1px solid var(--orange-soft);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
}
.home-link {
  display: inline-block;
  margin: 0;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
}
.home-link:hover {
  background: var(--orange-soft);
}
.cta-note {
  font-size: 15px;
  color: var(--muted);
  margin: 12px 0 0;
}
/* The launch list. A hairline card rather than a section of its own: the
   page has one thing to say while the stores are empty, and this is a
   footnote to it. */
.waitlist {
  margin: 32px 0 0;
  padding: 24px;
  max-width: 34em;
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.waitlist-title {
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 6px;
}
.waitlist-lede {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 14px;
}
.waitlist-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.waitlist input {
  flex: 1 1 15em;
  min-width: 0;
  font: inherit;
  font-size: 16px; /* Anything smaller and iOS Safari zooms the page on focus. */
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.waitlist button {
  font: inherit;
  font-weight: 700;
  padding: 12px 22px;
  color: #fff;
  background: var(--orange);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}
.waitlist button:hover { background: var(--orange-soft); }
.waitlist button[disabled] { opacity: 0.6; cursor: default; }
.waitlist-note {
  font-size: 14px;
  color: var(--muted);
  margin: 12px 0 0;
}
/* Empty until something has happened, so it takes no room until it does. */
.waitlist-status {
  font-size: 15px;
  font-weight: 600;
  margin: 12px 0 0;
}
.waitlist-status:empty { display: none; }
.waitlist-status.is-error { color: #B44A00; }

/* Present to a screen reader, absent to everyone else — the field's label,
   which the design says is the placeholder. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hero-shot img,
.feature-shot img {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(30, 30, 30, 0.10);
  margin: 0 auto;
  max-width: 280px;
}
.feature-shot img { max-width: 260px; }
figure { margin: 0; }

/* Sections */
.section { padding: 64px 0; }
.section.alt { background: var(--beige); }
h2 {
  font-size: clamp(24px, 4vw, 32px);
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}
h3 {
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
p { margin: 0 0 16px; }
.section p { color: var(--muted); }
.section h3 + p { margin-bottom: 0; }

/* How it works */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Features */
.feature {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.feature:first-of-type { border-top: 0; padding-top: 0; }
.feature-copy p { max-width: 34em; }

/* Small feature grid */
.grid {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.grid p { color: var(--muted); margin: 0; }

.language {
  margin: 32px 0 0;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  font-weight: 600;
  color: var(--ink) !important;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  font-size: 15px;
}
.footer-inner { display: grid; gap: 14px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin: 0;
}
.footer-brand img { border-radius: 6px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.site-footer nav a { color: var(--muted); }
.copyright { color: var(--muted); margin: 0; }

@media (min-width: 760px) {
  .hero { padding: 88px 0 48px; }
  .hero-inner { grid-template-columns: 1.15fr 1fr; }
  .section { padding: 88px 0; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1.15fr 1fr; gap: 56px; }
  .feature.reverse .feature-copy { order: 2; }
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .site-footer nav { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
