:root {
  color-scheme: light;
  --cream: #fff7ef;
  --pink: #ff6fae;
  --red: #d7263d;
  --coral: #ff8a5b;
  --ink: #161616;
  --blue: #4da3ff;
  --gray: #f4f6fa;
  --paper: #fffaf4;
  --muted: #6d5d58;
  --line: rgba(22, 22, 22, 0.16);
  --shadow: 0 24px 60px rgba(77, 35, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 111, 174, 0.22), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(77, 163, 255, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(215, 38, 61, 0.055) 25%, transparent 25%) 0 0 / 34px 34px,
    var(--cream);
  font-family: Avenir Next, Trebuchet MS, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(22, 22, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 22, 22, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mix-blend-mode: multiply;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 247, 239, 0.92);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--red);
  text-decoration: none;
  text-shadow: 1px 1px 0 #ffffff, 2px 2px 0 rgba(22, 22, 22, 0.14);
}

.brand-mark span {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.brand-mark strong {
  font-family: "Brush Script MT", "Snell Roundhand", "Segoe Script", cursive;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
}

.brand-mark.small strong {
  font-size: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

main {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 6vw, 82px) clamp(48px, 7vw, 88px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 2px solid rgba(22, 22, 22, 0.08);
  transform: rotate(-8deg);
}

.hero::before {
  width: 420px;
  height: 420px;
  left: -170px;
  top: 150px;
  border-radius: 999px;
  background: rgba(255, 138, 91, 0.2);
}

.hero::after {
  width: 560px;
  height: 180px;
  right: -120px;
  bottom: 80px;
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.13);
}

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

.overline {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  color: var(--red);
  font-family: "Brush Script MT", "Snell Roundhand", "Segoe Script", cursive;
  font-size: clamp(86px, 15vw, 186px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow:
    2px 2px 0 #ffffff,
    5px 5px 0 rgba(22, 22, 22, 0.12);
}

.hero h2,
.section-heading h2,
.info-split h2,
.legal-page h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h2 {
  max-width: 620px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.hero-line,
.section-heading p,
.info-copy p,
.legal-lede,
.legal-card p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-line {
  max-width: 610px;
  margin-top: 20px;
}

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

.hero-actions span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.app-store-button,
.text-link,
.email-link {
  font-weight: 950;
  text-decoration: none;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--pink) 55%, var(--coral));
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.app-store-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-showcase {
  position: relative;
  min-height: clamp(420px, 48vw, 650px);
  border: 2px solid var(--ink);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(215, 38, 61, 0.1) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  box-shadow: var(--shadow), 10px 10px 0 rgba(22, 22, 22, 0.95);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(215, 38, 61, 0.45);
  border-radius: 12px;
}

.soda-sign {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 128px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--blue);
  transform: rotate(-7deg);
}

.soda-sign span,
.soda-sign em {
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soda-sign strong {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 0.82;
}

.hero-sticker {
  position: absolute;
  z-index: 1;
  width: clamp(150px, 24vw, 270px);
  aspect-ratio: 1;
  object-fit: contain;
  border: 2px solid rgba(22, 22, 22, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(22, 22, 22, 0.12);
}

.hero-sticker-primary {
  left: 50%;
  top: 46%;
  width: clamp(210px, 34vw, 390px);
  transform: translate(-50%, -50%) rotate(2deg);
}

.hero-sticker-left {
  left: clamp(18px, 6vw, 70px);
  bottom: clamp(26px, 6vw, 76px);
  transform: rotate(-9deg);
}

.hero-sticker-right {
  right: clamp(18px, 6vw, 70px);
  top: clamp(64px, 10vw, 120px);
  transform: rotate(8deg);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 82px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 32px;
}

.section-heading h2,
.info-split h2,
.legal-page h1 {
  color: var(--ink);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
}

.section-heading p {
  max-width: 700px;
  margin-top: 14px;
}

.sticker-section {
  background: var(--paper);
  border-block: 2px solid var(--ink);
}

.selected-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.sticker-card {
  margin: 0;
  min-width: 0;
  padding: clamp(10px, 1.4vw, 16px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff9f2 100%);
  box-shadow: 5px 5px 0 rgba(215, 38, 61, 0.2);
}

.sticker-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.sticker-card figcaption {
  margin-top: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.feature-band {
  background:
    linear-gradient(135deg, rgba(255, 111, 174, 0.12), rgba(255, 138, 91, 0.18)),
    var(--cream);
}

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

.feature-grid article {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--coral);
}

.feature-grid span {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 950;
}

.feature-grid strong {
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.04;
}

.info-split {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  border-top: 2px solid var(--ink);
  background: var(--paper);
}

.support-panel {
  background: var(--gray);
}

.info-copy p {
  max-width: 780px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  border-bottom: 3px solid var(--blue);
}

.email-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.email-link.large {
  margin-top: 30px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 82px);
  border-top: 2px solid var(--ink);
  background: var(--cream);
}

.site-footer p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.legal-page {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) clamp(18px, 6vw, 40px);
}

.legal-page .overline {
  margin-bottom: 18px;
}

.legal-lede {
  margin-top: 24px;
  max-width: 780px;
}

.legal-card {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 6px 6px 0 rgba(77, 163, 255, 0.45);
}

.legal-card h2 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

@media (max-width: 980px) {
  .hero,
  .info-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-showcase {
    min-height: 560px;
  }

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

@media (max-width: 680px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(78px, 24vw, 120px);
  }

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

  .hero-showcase {
    min-height: 430px;
    box-shadow: var(--shadow), 6px 6px 0 var(--ink);
  }

  .soda-sign {
    width: 96px;
    top: 18px;
    left: 18px;
  }

  .soda-sign strong {
    font-size: 38px;
  }

  .hero-sticker-primary {
    width: min(66vw, 250px);
  }

  .hero-sticker-left,
  .hero-sticker-right {
    width: min(34vw, 140px);
  }

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

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

  .feature-grid article {
    min-height: 118px;
  }
}

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