:root {
  color-scheme: light;
  --ink: #171312;
  --muted: #665e59;
  --paper: #fffaf6;
  --line: rgba(23, 19, 18, 0.14);
  --coral: #ef5b4c;
  --cyan: #1d9bb8;
  --green: #417b5a;
  --gold: #d89c2b;
  --shadow: 0 22px 60px rgba(31, 24, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(23, 19, 18, 0.78);
  backdrop-filter: blur(18px);
  color: #fff;
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(239, 91, 76, 0.28);
  cursor: pointer;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.button.dark {
  background: var(--ink);
  box-shadow: none;
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 15, 13, 0.82) 0%, rgba(20, 15, 13, 0.6) 42%, rgba(20, 15, 13, 0.18) 100%),
    url("./assets/showcase/hero-cosplay-preview.webp") center / cover no-repeat;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 86px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #ffd7c7;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(760px, 100%);
  margin-top: 52px;
}

.stat {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.stat strong {
  display: block;
  font-size: 24px;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.4;
}

.section {
  padding: 80px 0;
}

.soon-strip {
  padding: 36px 0;
  background: #171312;
  color: #fff;
}

.soon-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.soon-grid h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.soon-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.soon-points span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.section.alt {
  background: #f1f7f6;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2,
.landing-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p,
.landing-hero p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(31, 24, 20, 0.08);
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.gallery .flow-card img {
  aspect-ratio: 9 / 4;
}

.gallery figcaption {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
}

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

.preview-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(31, 24, 20, 0.09);
}

.preview-grid img {
  width: 100%;
  aspect-ratio: 27 / 12;
  object-fit: cover;
}

.preview-grid figcaption {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 850;
}

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

.card {
  min-height: 178px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 24, 20, 0.06);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.card a {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 850;
  text-decoration: none;
  color: var(--cyan);
}

.waitlist {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 19, 18, 0.92), rgba(65, 123, 90, 0.74)),
    url("./assets/showcase/cosplay-interest-bg.webp") center / cover no-repeat;
}

.waitlist .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 40px;
  align-items: center;
}

.waitlist h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.waitlist p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
  font-size: 18px;
}

.form-panel {
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.form-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.choice-grid button {
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 19, 18, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.choice-grid button:hover,
.choice-grid button[aria-pressed="true"] {
  border-color: var(--coral);
  background: #fff0eb;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 13px;
  line-height: 1.45;
}

.landing-hero {
  padding: 96px 0 56px;
  background: #f1f7f6;
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
  gap: 38px;
  align-items: center;
}

.landing-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article {
  padding: 64px 0 84px;
}

.article .wrap {
  max-width: 900px;
}

.article h2 {
  margin-top: 34px;
  font-size: 32px;
}

.article p,
.article li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.site-footer {
  padding: 34px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav {
    min-height: 58px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-stats,
  .keyword-grid,
  .feature-grid,
  .waitlist .wrap,
  .landing-grid,
  .soon-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

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

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

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

@media (max-width: 520px) {
  .hero-inner {
    padding-top: 86px;
  }

  .hero-actions {
    display: grid;
  }

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

  .soon-points {
    grid-template-columns: 1fr;
  }

  .gallery .flow-card {
    grid-column: span 1;
  }
}
