:root {
  --color-background: #ffffff;
  --color-surface: #fffdf8;
  --color-surface-quiet: #f6f2eb;
  --color-surface-strong: #ffffff;
  --color-text: #333333;
  --color-muted: #696969;
  --color-muted-strong: #474747;
  --color-border: #e8e1d9;
  --color-border-strong: #d6cabf;
  --color-primary: #303030;
  --color-primary-active: #171717;
  --color-primary-soft: #f4e8dd;
  --color-accent: #ff815f;
  --color-accent-soft: #ffe4d7;
  --color-sage: #e6efe4;
  --color-blue: #e5edf2;
  --color-rose: #f1e4df;
  --color-amber: #f2eccf;
  --color-success: #23624a;
  --color-warning: #8a5a12;
  --color-danger: #8f2e28;
  --shadow-soft: 0 18px 50px rgba(30, 30, 30, 0.08);
  --shadow-phone: 0 34px 90px rgba(30, 30, 30, 0.22);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --page-width: 1120px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--color-background);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  font-family: "SF Pro Display", "Avenir Next", "SF Pro Text", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

main {
  overflow: hidden;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(36, 71, 55, 0.34);
  outline-offset: 4px;
}

.page {
  width: min(100% - 32px, 940px);
  margin: 0 auto;
  padding: 28px 0 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}

.product-header {
  width: min(100% - 32px, var(--page-width));
  margin: 0 auto;
  padding: 18px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: var(--color-surface-strong);
  box-shadow: 0 10px 26px rgba(31, 41, 31, 0.08);
  font-weight: 800;
}

.image-mark {
  overflow: hidden;
  border: 0;
  background: transparent;
}

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

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-subtitle {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  font-size: 14px;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--color-muted-strong);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  border-color: var(--color-border);
  color: var(--color-text);
  background: var(--color-surface);
}

.nav .nav-download {
  min-width: 116px;
  justify-content: center;
  margin-left: 12px;
  border-color: var(--color-primary);
  color: #ffffff;
  background: var(--color-primary);
}

.nav .nav-download:hover {
  color: #ffffff;
  background: var(--color-primary-active);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-text);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 680;
}

h2 {
  margin-top: 40px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 680;
}

h3 {
  margin-top: 28px;
  font-size: 21px;
  font-weight: 680;
}

p {
  margin: 14px 0 0;
  max-width: 760px;
  font-size: 17px;
}

.lede {
  color: var(--color-muted);
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.45;
}

.meta {
  color: var(--color-muted);
  font-size: 14px;
}

.product-hero {
  width: min(100% - 32px, var(--page-width));
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 0.86fr);
  column-gap: clamp(34px, 6vw, 74px);
  row-gap: 0;
  align-items: center;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 112px) 0 clamp(40px, 6vw, 74px);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 670px;
}

.hero-copy h1 {
  max-width: 690px;
  font-size: clamp(56px, 7.1vw, 88px);
  font-weight: 760;
  line-height: 0.98;
}

.accent-word {
  display: block;
  color: var(--color-accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-link,
.secondary-link,
.store-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-link {
  border: 1px solid var(--color-primary);
  color: var(--color-surface-strong);
  background: var(--color-primary);
}

.secondary-link {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-surface);
}

.store-button {
  min-width: 170px;
  min-height: 54px;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 9px 16px 10px;
  border: 1px solid #050505;
  color: #ffffff;
  background: #050505;
  line-height: 1.1;
}

.store-button span {
  font-size: 11px;
  font-weight: 560;
  opacity: 0.78;
}

.store-button strong {
  font-size: 15px;
  font-weight: 760;
}

.primary-link:hover,
.store-button:hover {
  background: var(--color-primary-active);
  transform: translateY(-1px);
}

.secondary-link:hover {
  border-color: var(--color-border-strong);
  background: var(--color-surface-strong);
  transform: translateY(-1px);
}

.hero-facts {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-self: start;
  max-width: 650px;
  margin: 34px 0 0;
}

.hero-facts div {
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.hero-facts dt {
  margin: 0;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.42;
}

.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -2% 7% 18%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 129, 95, 0.24), transparent 46%),
    radial-gradient(circle at 70% 62%, rgba(36, 71, 55, 0.18), transparent 52%),
    var(--color-primary-soft);
  filter: blur(2px);
  opacity: 0.72;
}

.phone-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 33, 29, 0.12);
  border-radius: 32px;
  background: var(--color-surface);
  box-shadow: var(--shadow-phone);
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-primary {
  z-index: 2;
  width: min(86%, 338px);
  right: 7%;
  top: 2%;
}

.phone-secondary {
  z-index: 1;
  width: min(66%, 254px);
  left: 2%;
  bottom: 10%;
  transform: rotate(-8deg);
  opacity: 0.9;
}

.product-section {
  width: min(100% - 32px, var(--page-width));
  margin: clamp(52px, 8vw, 96px) auto 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin-top: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.step-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.step-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin-top: 0;
}

.step-card p {
  color: var(--color-muted);
  font-size: 16px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  align-items: stretch;
}

.showcase-card {
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: var(--color-surface-quiet);
}

.large-showcase {
  background:
    radial-gradient(circle at 78% 68%, rgba(255, 129, 95, 0.2), transparent 42%),
    var(--color-surface);
}

.showcase-card h2 {
  margin-top: 0;
}

.showcase-card p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
}

.showcase-phone {
  align-self: end;
  justify-self: center;
  width: min(74%, 330px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(30, 30, 30, 0.12);
  border-radius: 32px;
  background: var(--color-surface);
  box-shadow: var(--shadow-phone);
}

.compact-phone {
  width: min(68%, 280px);
}

.showcase-phone img {
  width: 100%;
  display: block;
}

.ways-section {
  padding: clamp(30px, 5vw, 56px);
  border-radius: 30px;
  background: #303030;
  color: #ffffff;
}

.ways-section h2,
.ways-section h3,
.ways-section .eyebrow {
  color: #ffffff;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.ways-grid article {
  min-height: 168px;
  padding: 24px;
  background: #303030;
}

.ways-grid h3 {
  margin-top: 0;
}

.ways-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.feature-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(29, 33, 29, 0.08);
  border-radius: var(--radius-md);
}

.feature-card h3 {
  margin-top: 0;
  font-size: 19px;
}

.feature-card p {
  color: var(--color-muted-strong);
  font-size: 15px;
  line-height: 1.52;
}

.mint-card {
  background: var(--color-sage);
}

.sky-card {
  background: var(--color-blue);
}

.rose-card {
  background: var(--color-rose);
}

.butter-card {
  background: var(--color-amber);
}

.screenshot-band {
  width: min(100% - 32px, var(--page-width));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  align-items: end;
  margin: clamp(54px, 8vw, 98px) auto 0;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.screenshot-band figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.screenshot-band img {
  width: 100%;
  display: block;
  border: 1px solid rgba(29, 33, 29, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(31, 41, 31, 0.13);
}

.screenshot-band figcaption {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 650;
  text-align: center;
}

.split-facts {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(32px, 6vw, 62px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-quiet);
}

.split-facts h2 {
  margin-top: 0;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.25rem;
}

.proof-list li {
  padding-left: 4px;
  color: var(--color-muted-strong);
  font-size: 16px;
}

.legal-grid {
  padding-bottom: 10px;
}

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

.card {
  min-height: 164px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.card h2,
.card h3 {
  margin-top: 0;
}

.card p {
  color: var(--color-muted);
  font-size: 15px;
}

.hero {
  padding: clamp(30px, 7vw, 76px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.content {
  max-width: 880px;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.content h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.content h2 {
  margin-top: 38px;
  font-size: clamp(24px, 3vw, 34px);
}

.content h3 {
  margin-top: 28px;
  font-size: 20px;
}

.content p {
  color: var(--color-muted-strong);
}

.content ul,
.content ol {
  margin: 16px 0 0;
  padding-left: 1.35rem;
}

.content li {
  margin: 8px 0;
  color: var(--color-muted-strong);
  font-size: 16px;
}

.callout {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-primary-soft);
}

.callout p {
  margin-top: 0;
  font-size: 15px;
}

.status-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.status-list li {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 44px;
  color: var(--color-muted);
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .hero-copy,
  .hero-visual,
  .hero-facts {
    grid-column: auto;
    grid-row: auto;
  }

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

  .phone-primary {
    right: 18%;
  }

  .phone-secondary {
    left: 15%;
  }

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

  .feature-showcase,
  .step-grid,
  .ways-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 24px, 940px);
    padding-top: 22px;
  }

  .site-header,
  .product-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-header,
  .product-hero,
  .product-section,
  .screenshot-band {
    width: min(100% - 24px, 940px);
  }

  .nav {
    justify-content: flex-start;
  }

  .product-hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .hero-copy h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-facts,
  .grid,
  .feature-grid,
  .screenshot-band,
  .split-facts {
    grid-template-columns: 1fr;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
    margin-top: 8px;
  }

  .phone-primary {
    width: min(70%, 248px);
    right: 5%;
  }

  .phone-secondary {
    width: min(56%, 198px);
    left: 3%;
    bottom: 2%;
  }

  .feature-card {
    min-height: auto;
  }

  .screenshot-band {
    padding: 18px;
  }

  .screenshot-band figure:nth-child(n+3) {
    display: none;
  }
}
