:root {
  --navy: #12213a;
  --navy-muted: #3a4a66;
  --navy-soft: #6b7a94;
  --cream: #fff6e8;
  --cream-deep: #f3e2c6;
  --sun: #ffc107;
  --sun-bright: #ffd54a;
  --tangerine: #ff6b2c;
  --mint: #2ee6a6;
  --sky: #5ec8ff;
  --white: #ffffff;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-sans: "Figtree", system-ui, sans-serif;
  --radius: 1.75rem;
  --border: 3px solid var(--navy);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--navy);
  font-family: var(--font-sans);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 12% -8%, #ffd54a 0%, transparent 42%),
    radial-gradient(circle at 92% 8%, #5ec8ff 0%, transparent 38%),
    radial-gradient(circle at 80% 100%, #ff6b2c33 0%, transparent 40%),
    radial-gradient(circle at 0% 80%, #2ee6a633 0%, transparent 36%);
  background-attachment: fixed;
  overflow-x: clip;
}

::selection {
  background: var(--sun);
  color: var(--navy);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

@media (min-width: 640px) {
  .wrap {
    width: min(72rem, calc(100% - 3rem));
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--cream) 80%, transparent);
  backdrop-filter: blur(12px);
  padding-top: max(0.75rem, env(safe-area-inset-top));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.sun-mark {
  position: relative;
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: var(--border);
  background: var(--sun);
  box-shadow: 3px 3px 0 0 var(--navy);
}

.sun-mark span {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--tangerine);
}

.brand-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-tag {
  display: none;
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-soft);
}

@media (min-width: 640px) {
  .brand-name {
    font-size: 1.25rem;
  }

  .brand-tag {
    display: block;
  }
}

.chip {
  display: inline-block;
  border-radius: 999px;
  border: var(--border);
  background: var(--white);
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero {
  padding: 2rem 0 3.5rem;
}

@media (min-width: 640px) {
  .hero {
    padding: 3.5rem 0 5rem;
  }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-block;
  transform: rotate(-2deg);
  border-radius: 999px;
  border: var(--border);
  background: var(--sun);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 0 var(--navy);
}

h1 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.mark {
  position: relative;
  display: inline-block;
}

.mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  z-index: -1;
  width: 100%;
  height: 0.35em;
  background: color-mix(in srgb, var(--mint) 80%, transparent);
}

.lede {
  margin: 1.25rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 500;
  color: var(--navy-muted);
  line-height: 1.45;
}

.ticket {
  border-radius: var(--radius);
  border: var(--border);
  background: var(--white);
  padding: 1.1rem;
  box-shadow: 8px 12px 0 0 var(--navy);
}

.ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.ticket-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

.fit {
  border-radius: 999px;
  border: var(--border);
  background: var(--sun);
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 3px 3px 0 0 var(--navy);
}

.ticket h2 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ticket p {
  margin: 0.55rem 0 0;
  color: var(--navy-muted);
  font-weight: 500;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.pill {
  border-radius: 999px;
  background: var(--cream-deep);
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.pill.mint {
  background: var(--mint);
}

.sample-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.sample {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  gap: 0.7rem;
  align-items: center;
  border-radius: 1.1rem;
  border: var(--border);
  background: var(--cream);
  padding: 0.65rem 0.75rem;
}

.rank {
  display: flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: var(--border);
  background: var(--sun);
  font-family: var(--font-display);
  font-weight: 800;
}

.sample strong {
  display: block;
  font-size: 0.95rem;
}

.sample span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-soft);
}

.sample em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.how {
  padding: 0 0 4rem;
}

.section-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border-radius: var(--radius);
  border: var(--border);
  background: var(--white);
  padding: 1.25rem;
  box-shadow: 8px 12px 0 0 var(--navy);
}

.card-num {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: var(--border);
  background: var(--sky);
  font-family: var(--font-display);
  font-weight: 800;
}

.card h3 {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0.5rem 0 0;
  color: var(--navy-muted);
  font-weight: 500;
  line-height: 1.45;
}

.about {
  padding: 0 0 4.5rem;
}

.about-panel {
  border-radius: var(--radius);
  border: var(--border);
  background: var(--white);
  padding: 1.4rem;
  box-shadow: 8px 12px 0 0 var(--navy);
}

@media (min-width: 800px) {
  .about-panel {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    padding: 1.8rem 2rem;
  }
}

.about-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-panel p {
  margin: 0 0 0.85rem;
  color: var(--navy-muted);
  font-weight: 500;
  line-height: 1.5;
}

.about-panel p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 0 0 max(2rem, env(safe-area-inset-bottom));
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy-soft);
}

.site-footer p {
  margin: 0 0 0.4rem;
}
