:root {
  --bg: #0a0d12;
  --bg-soft: #121722;
  --panel: rgba(19, 24, 36, 0.82);
  --panel-strong: #171d29;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3f2ee;
  --muted: #b7bfca;
  --warm: #ffd24f;
  --warm-deep: #ffbf1f;
  --accent: #7ab0ff;
  --accent-soft: #c7dbff;
  --success: #dff7e8;
  --success-text: #123323;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 210, 79, 0.16), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(122, 176, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #0b0e14 0%, #0d1118 42%, #090c12 100%);
  color: var(--text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

body.modal-open {
  overflow: hidden;
}

button,
a,
input,
summary {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  margin-bottom: 28px;
  background: rgba(11, 15, 22, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm), #fff0b0);
  box-shadow: 0 0 0 6px rgba(255, 210, 79, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
}

.section-grid,
.section,
.trust-bar {
  margin-bottom: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-visual,
.trust-bar,
.section,
.cta-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy {
  padding: 56px;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2,
.modal-inner h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  max-width: 11ch;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--warm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.hero-text,
.section-heading p,
.compare-card p,
.design-card p,
.signal-card p,
.artist-card p,
.faq-item p,
.cta-panel p,
.modal-copy,
.waitlist-form span,
.waitlist-form em {
  color: var(--muted);
}

.hero-text {
  margin: 22px 0 0;
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.65;
}

.cta-row,
.hero-points,
.drop-grid,
.comparison-grid,
.signal-grid,
.gallery-grid {
  display: grid;
}

.cta-row {
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
  margin: 32px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible,
summary:hover,
summary:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #221600;
  font-weight: 700;
  background: linear-gradient(135deg, #ffe07a, var(--warm-deep));
  box-shadow: 0 18px 38px rgba(255, 191, 31, 0.28);
}

.button-secondary,
.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
}

.button-block {
  width: 100%;
}

.hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.proof-list li {
  position: relative;
  padding: 16px 16px 16px 40px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: var(--accent-soft);
}

.hero-points li::before,
.proof-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm), #fff4c2);
}

.hero-visual {
  min-height: 680px;
  padding: 26px;
  overflow: hidden;
}

.visual-stage {
  position: relative;
  height: 100%;
  min-height: 628px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, #151b28 0%, #10151f 100%);
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.glow-one {
  width: 220px;
  height: 220px;
  top: 40px;
  right: 20px;
  background: rgba(255, 210, 79, 0.16);
}

.glow-two {
  width: 280px;
  height: 280px;
  left: -40px;
  bottom: 40px;
  background: rgba(122, 176, 255, 0.14);
}

.mug-scene {
  position: absolute;
  inset: 0;
}

.mug-card {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.card-main {
  width: min(100% - 80px, 420px);
  height: 480px;
  left: 36px;
  bottom: 36px;
  padding: 26px;
}

.card-side {
  width: 180px;
  height: 180px;
  padding: 18px;
}

.side-a {
  right: 34px;
  top: 66px;
}

.side-b {
  right: 62px;
  bottom: 78px;
}

.mug-shape {
  position: relative;
  width: 240px;
  height: 280px;
  margin: 20px auto 24px;
  border-radius: 40px 40px 54px 54px;
  background: linear-gradient(180deg, #f6f0dc 0%, #d8cfbc 100%);
  box-shadow: inset 0 -20px 32px rgba(0, 0, 0, 0.12), 0 30px 50px rgba(0, 0, 0, 0.28);
}

.mug-shape::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto;
  height: 20px;
  border-radius: 999px;
  background: rgba(61, 52, 34, 0.16);
}

.handle {
  position: absolute;
  right: -44px;
  top: 76px;
  width: 88px;
  height: 110px;
  border: 16px solid #d8cfbc;
  border-left: 14px solid transparent;
  border-radius: 0 48px 48px 0;
}

.ear {
  position: absolute;
  top: -34px;
  width: 46px;
  height: 108px;
  background: linear-gradient(180deg, #f0de78 0%, #dfc954 100%);
  border-radius: 30px 30px 18px 18px;
}

.ear::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 28px;
  background: #2f2f37;
  border-radius: 30px 30px 10px 10px;
}

.ear.left {
  left: 40px;
  transform: rotate(-12deg);
}

.ear.right {
  right: 44px;
  transform: rotate(12deg);
}

.cheek {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(228, 112, 84, 0.8);
  bottom: 70px;
}

.cheek.left {
  left: 36px;
}

.cheek.right {
  right: 36px;
}

.mug-meta,
.card-side span {
  display: block;
  color: var(--muted);
}

.mug-meta strong,
.artist-card strong,
.signal-card strong,
.design-card h3,
.compare-card h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.mini-pattern {
  height: 112px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.mini-a {
  background:
    radial-gradient(circle at 30% 36%, rgba(255, 210, 79, 0.95), transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(122, 176, 255, 0.8), transparent 22%),
    linear-gradient(135deg, #20293a, #131925);
}

.mini-b {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #2f3544, #161c28);
}

.trust-bar {
  padding: 22px 28px;
}

.trust-bar p {
  margin: 0;
  color: var(--accent-soft);
  text-align: center;
}

.section {
  padding: 34px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.cta-panel h2,
.modal-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 14ch;
}

.section-heading.narrow h2 {
  max-width: 18ch;
}

.section-heading p,
.cta-panel p {
  max-width: 62ch;
  line-height: 1.65;
}

.drop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.design-card,
.compare-card,
.signal-card,
.artist-card,
.gallery-card,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
}

.design-card {
  padding: 18px;
}

.design-art {
  height: 210px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.art-dawn {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 231, 150, 0.9), transparent 18%),
    linear-gradient(160deg, #645133, #242736 60%, #10131a);
}

.art-night {
  background:
    radial-gradient(circle at 72% 22%, rgba(122, 176, 255, 0.78), transparent 18%),
    linear-gradient(135deg, #2d3647, #111723 70%);
}

.art-cloud {
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 244, 204, 0.82), transparent 22%),
    linear-gradient(180deg, #74726c, #282b31 75%);
}

.art-moss {
  background:
    radial-gradient(circle at 32% 44%, rgba(206, 225, 163, 0.66), transparent 18%),
    linear-gradient(160deg, #4a5340, #161b19 72%);
}

.accent-amber .design-card,
.accent-amber {
  box-shadow: inset 0 1px 0 rgba(255, 222, 147, 0.08);
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(16, 21, 31, 0.92);
}

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

.compare-card {
  padding: 24px;
}

.compare-good {
  background: linear-gradient(180deg, rgba(255, 210, 79, 0.08), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 210, 79, 0.28);
}

.artist-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.proof-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.artist-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.artist-card {
  min-height: 220px;
  padding: 22px;
}

.tone-one {
  background: linear-gradient(180deg, rgba(255, 210, 79, 0.08), rgba(255, 255, 255, 0.03));
}

.tone-two {
  background: linear-gradient(180deg, rgba(122, 176, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.artist-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.04);
}

.gallery-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.gallery-card {
  min-height: 190px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 48%),
    linear-gradient(180deg, #21293b, #111722);
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 396px;
}

.gallery-card.wide {
  grid-column: span 2;
}

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

.signal-card {
  padding: 24px;
}

.section-faq .faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 20px;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-weight: 600;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 22px;
  padding-right: 14px;
  line-height: 1.65;
}

.section-cta {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.cta-panel {
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.waitlist-modal {
  width: min(calc(100% - 24px), 560px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 0;
  background: transparent;
  color: var(--text);
}

.waitlist-modal::backdrop {
  background: rgba(4, 7, 12, 0.72);
  backdrop-filter: blur(8px);
}

.modal-inner {
  position: relative;
  padding: 30px;
  background: linear-gradient(180deg, #161c28 0%, #10151f 100%);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
}

.waitlist-form span {
  font-size: 0.94rem;
}

.waitlist-form em {
  font-style: normal;
}

.waitlist-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.waitlist-form input:focus {
  border-color: rgba(255, 210, 79, 0.56);
  box-shadow: 0 0 0 4px rgba(255, 210, 79, 0.12);
}

.form-error {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(184, 60, 60, 0.16);
  border: 1px solid rgba(255, 120, 120, 0.26);
  color: #ffd8d8;
}

.modal-success-state {
  padding-top: 10px;
}

.modal-success-state p:last-of-type {
  margin-bottom: 24px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero,
  .artist-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .drop-grid,
  .signal-grid,
  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-card.tall,
  .gallery-card.wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 220px;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max));
    padding-top: 14px;
  }

  .site-header {
    border-radius: 28px;
    padding: 14px 16px;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .header-link {
    display: none;
  }

  .hero-copy,
  .section,
  .cta-panel,
  .modal-inner {
    padding: 24px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .cta-row,
  .comparison-grid,
  .drop-grid,
  .signal-grid,
  .artist-cards,
  .gallery-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .cta-row {
    gap: 12px;
  }

  .button,
  .cta-row .button,
  .cta-row a {
    width: 100%;
  }

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

  .visual-stage {
    min-height: 466px;
  }

  .card-main {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
    height: 360px;
    padding: 18px;
  }

  .mug-shape {
    width: 180px;
    height: 208px;
  }

  .handle {
    right: -34px;
    top: 56px;
    width: 70px;
    height: 86px;
  }

  .ear {
    height: 82px;
    width: 38px;
    top: -26px;
  }

  .card-side {
    width: 124px;
    height: 124px;
    padding: 12px;
  }

  .mini-pattern {
    height: 64px;
    margin-bottom: 8px;
  }

  .side-a {
    right: 16px;
    top: 16px;
  }

  .side-b {
    right: 18px;
    bottom: 28px;
  }

  .cta-panel {
    align-items: stretch;
  }
}
