:root {
  color-scheme: light;
  --background: #fff8df;
  --surface: #ffffff;
  --surface-soft: #fffdf7;
  --ink: #212424;
  --muted: #65758f;
  --sage: #567d6e;
  --sage-deep: #315f52;
  --gold: #fabc17;
  --gold-soft: #fff1bd;
  --blue: #244fd6;
  --line: rgba(33, 36, 36, 0.1);
  --shadow: 0 28px 80px rgba(33, 36, 36, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 32%, rgba(255, 255, 255, 0.9), rgba(255, 248, 223, 0) 340px),
    linear-gradient(180deg, #fff8df 0, #fffaf0 620px, #fbfaf6 980px),
    var(--background);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: var(--sage-deep);
  font-weight: 650;
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(250, 188, 23, 0.68);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(33, 36, 36, 0.06);
  background: rgba(255, 248, 223, 0.76);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
  min-width: 0;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(86, 125, 110, 0.22);
}

.brand-name {
  color: #171717;
  font-size: 20px;
  font-weight: 820;
  white-space: nowrap;
}

.nav-links,
.site-footer nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a,
.site-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #5f6f8b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
}

.nav-links a:hover,
.site-footer nav a:hover {
  color: #171717;
}

.nav-links .nav-cta {
  min-width: 126px;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #030303;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(3, 3, 3, 0.16);
}

.nav-links .nav-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.landing-hero {
  min-height: clamp(760px, calc(100dvh - 90px), 960px);
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
}

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

.eyebrow {
  color: var(--sage);
  font-weight: 780;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-copy .eyebrow,
.ecosystem-heading .eyebrow {
  margin: 0 0 10px;
}

.hero-status {
  width: fit-content;
  min-height: 34px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(250, 188, 23, 0.4);
  border-radius: 999px;
  background: rgba(255, 246, 204, 0.74);
  color: #a76f00;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  color: var(--ink);
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-top: 42px;
  font-size: clamp(68px, 8.2vw, 116px);
  line-height: 0.86;
  max-width: 720px;
}

h1 span {
  display: block;
  margin-top: 12px;
  color: #99a9c1;
  font-size: 0.86em;
  font-style: italic;
  font-weight: 700;
}

h2 {
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1;
}

h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
}

.hero-lede {
  max-width: 650px;
  margin: 34px 0 0;
  color: #65758f;
  font-size: clamp(22px, 2.25vw, 26px);
  line-height: 1.22;
  overflow-wrap: break-word;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(250, 188, 23, 0.17);
}

.store-availability {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  width: min(100%, 620px);
  margin-top: 38px;
}

.store-card {
  min-height: 58px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.store-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(33, 36, 36, 0.12);
}

.store-icon img {
  width: 34px;
  height: 34px;
  display: block;
}

.store-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.store-kicker {
  color: #99a9c1;
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.store-label {
  color: var(--ink);
  font-size: 18px;
  font-weight: 860;
  line-height: 1.1;
}

.store-chip {
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #8a6400;
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 58px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 260px;
  padding: 0 28px;
  border-radius: 14px;
  text-decoration: none;
  background: var(--gold);
  color: #1f2323;
  font-weight: 780;
  box-shadow: 0 14px 30px rgba(250, 188, 23, 0.26);
}

.button.secondary {
  min-width: 0;
  padding: 0 4px;
  gap: 12px;
  background: transparent;
  color: #99a9c1;
  box-shadow: none;
}

.hero-visual {
  justify-self: center;
  position: relative;
  perspective: 1200px;
}

.hero-visual::before,
.feature-visual::before {
  content: "";
  position: absolute;
  inset: 12% -12% 12% -12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(250, 188, 23, 0.18), rgba(86, 125, 110, 0.08) 42%, rgba(255, 255, 255, 0) 68%);
  z-index: -1;
}

.phone-frame {
  width: min(360px, 82vw);
  padding: 12px;
  border-radius: 54px;
  background: linear-gradient(145deg, #1f2c3d, #0b1727 62%, #22364e);
  box-shadow: 0 34px 85px rgba(28, 42, 63, 0.22);
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 414 / 896;
  object-fit: cover;
  border-radius: 42px;
  background: white;
}

.hero-phone {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(4deg) translateY(4px);
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
  will-change: transform;
}

.ecosystem-section {
  padding: 28px 16px 112px;
  background: #fbfaf6;
}

.ecosystem-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px);
  border-radius: 46px;
  background: #2c2c2a;
  color: #ffffff;
}

.ecosystem-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
}

.ecosystem-heading .eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
}

.ecosystem-heading h2 {
  max-width: 660px;
  color: #ffffff;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: 0.95;
}

.ecosystem-heading p {
  max-width: 330px;
  color: #c2c7d0;
  font-size: 17px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: clamp(44px, 6vw, 76px);
}

.ecosystem-card {
  min-height: 288px;
  padding: 46px 46px 38px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ecosystem-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 34px;
}

.ecosystem-icon svg {
  width: 26px;
  height: 26px;
}

.ecosystem-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.icon-gold {
  background: var(--gold);
  color: #111111;
}

.icon-light {
  background: #ffffff;
  color: #151515;
}

.icon-muted {
  background: #6d5d32;
  color: var(--gold);
}

.icon-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.ecosystem-card h3 {
  max-width: 220px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.08;
}

.ecosystem-card p {
  max-width: 250px;
  margin: 20px 0 0;
  color: #b9bec7;
  font-size: 16px;
}

.waitlist-section {
  max-width: 920px;
  margin: 0 auto;
  padding: 86px 24px 126px;
  text-align: center;
}

.waitlist-section h2 {
  color: #2a2a28;
  font-size: clamp(54px, 7vw, 84px);
  line-height: 0.96;
}

.waitlist-section p {
  max-width: 620px;
  margin: 24px auto 0;
  color: #68728a;
  font-size: 19px;
}

.waitlist-form {
  max-width: 860px;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px 180px;
  gap: 18px;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form button {
  min-height: 62px;
  border-radius: 18px;
  font: inherit;
  font-weight: 760;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  border: 1px solid rgba(104, 114, 138, 0.18);
  padding: 0 28px;
  background: #ffffff;
  color: var(--ink);
}

.waitlist-form select {
  appearance: none;
  padding-right: 42px;
  background:
    linear-gradient(45deg, transparent 50%, #68728a 50%) calc(100% - 24px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, #68728a 50%, transparent 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    #ffffff;
}

.waitlist-form input::placeholder {
  color: #9aa4b7;
}

.waitlist-form button {
  border: 0;
  background: #2c2c2a;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(44, 44, 42, 0.18);
  cursor: pointer;
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.waitlist-message {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: #315f52;
  font-size: 15px;
  font-weight: 720;
  text-align: left;
}

.waitlist-message.is-error {
  color: #9b301d;
}

.waitlist-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 46px 22px 64px;
}

.hero {
  max-width: 740px;
  margin-bottom: 30px;
}

.hero h1,
.card h1 {
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.02;
  margin: 8px 0 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(33, 36, 36, 0.06);
}

.card h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  margin: 32px 0 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.updated {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

.site-footer {
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 42px;
  border-top: 1px solid rgba(104, 114, 138, 0.12);
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
}

.landing-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(38px, 10vw, 150px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 22px;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(33, 36, 36, 0.12);
}

.landing-footer strong {
  color: var(--ink);
  font-size: 18px;
}

.footer-brand p {
  max-width: 340px;
  margin: 0;
  color: #8993a6;
  font-size: 15px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.footer-links nav {
  display: grid;
  gap: 14px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: #c2c8d4;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links nav a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  color: #424b60;
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
}

.footer-links nav a:hover {
  color: #171717;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 58px;
  padding-top: 32px;
  border-top: 1px solid rgba(104, 114, 138, 0.1);
  color: #9aa4b7;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .landing-hero {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    padding-top: 58px;
  }

  .hero-visual {
    justify-self: center;
  }

  .ecosystem-heading,
  .landing-footer {
    grid-template-columns: 1fr;
  }

  .ecosystem-heading p {
    max-width: 620px;
  }

  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .ecosystem-card {
    padding: 34px;
  }

  .footer-links {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .nav {
    padding: 10px 18px 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-links {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 0 13px;
    border: 1px solid rgba(33, 36, 36, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: clamp(39px, 13vw, 54px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

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

  h3 {
    font-size: clamp(24px, 7vw, 32px);
  }

  p,
  li {
    font-size: 16px;
  }

  .page {
    padding-top: 34px;
  }

  .landing-hero {
    min-height: auto;
    padding: 42px 18px 56px;
    gap: 34px;
  }

  .hero-copy {
    width: min(100%, calc(100vw - 36px));
    max-width: 100%;
  }

  .hero-lede {
    max-width: 100%;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.52;
    hyphens: auto;
  }

  .store-availability {
    width: 100%;
    gap: 10px;
    margin-top: 14px;
  }

  .store-card {
    min-height: 66px;
    padding: 11px 13px;
    border-radius: 18px;
  }

  .store-icon,
  .store-icon img {
    width: 40px;
    height: 40px;
  }

  .button-row {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-phone {
    width: min(276px, 72vw);
    transform: rotate(1.1deg);
  }

  .ecosystem-section {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 28px;
    padding-bottom: 64px;
  }

  .ecosystem-panel {
    padding: 34px 24px;
    border-radius: 28px;
  }

  .ecosystem-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .ecosystem-heading p {
    font-size: 16px;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .ecosystem-card {
    min-height: auto;
    padding: 28px;
    border-radius: 24px;
  }

  .ecosystem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
  }

  .ecosystem-card h3 {
    font-size: 24px;
  }

  .ecosystem-card p {
    max-width: 100%;
    font-size: 15px;
  }

  .waitlist-section {
    padding: 64px 18px 82px;
    text-align: left;
  }

  .waitlist-section p {
    font-size: 17px;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .waitlist-form input,
  .waitlist-form select,
  .waitlist-form button {
    min-height: 56px;
  }

  .landing-footer {
    align-items: flex-start;
    padding: 52px 18px 34px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 16px;
  }

  .nav-links a {
    padding: 0 11px;
  }

  .ecosystem-panel {
    padding: 30px 20px;
  }

  .ecosystem-card {
    padding: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
