/* Yoki Origins — static closure landing page
   Self-contained, no external requests. Brand tokens mined from
   yoki-origins/tailwind.config.ts (pink palette). Display font = Laila 600,
   the same font the original LP used (src/app/page.tsx), self-hosted. */

/* latin */
@font-face {
  font-family: "Laila";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/laila-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Laila";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/laila-600-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --pink-100: #FFE0E5;
  --pink-200: #FF899D;
  --pink-300: #F9BDC7;
  --ink: #2b2230;
  --ink-soft: #6b5f70;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(120, 40, 60, 0.14);
  --max: 1080px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Laila", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(180deg, #fff6f8 0%, #ffeef2 40%, #ffe4ea 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 64px 24px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  /* NOTE: blossom-bg.webp is a WATERMARKED Adobe Stock comp — replace with a
     licensed / clean image before deploying to production. */
  background: url("assets/blossom-bg.webp") center top / cover no-repeat;
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,240,244,0.55) 55%, rgba(255,228,234,0.98) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }

.hero__logo {
  width: min(340px, 72vw);
  margin: 0 auto 8px;
  filter: drop-shadow(0 8px 18px rgba(150, 60, 80, 0.22));
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
  /* solid pill so it stays legible over the light sakura background */
  background: var(--pink-200);
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(120,40,60,0.25);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(30px, 5.2vw, 50px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.hero p.lead {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 34px;
}

/* ---------- BUTTONS ---------- */
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--pink-200);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(120,40,60,0.22); }
.btn--ghost {
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  border-color: var(--pink-300);
}
.btn--ghost:hover { transform: translateY(-2px); background: #fff; }
.btn__icon { height: 20px; width: 20px; border-radius: 50%; }

/* ---------- COLLECT SECTION ---------- */
.section { padding: 72px 0; }
.section__head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section__head h2 { font-family: var(--display); font-size: clamp(26px, 3.6vw, 36px); font-weight: 600; margin-bottom: 14px; }
.section__head p { color: var(--ink-soft); font-size: 17px; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--pink-100);
}
.card__art {
  height: 230px;
  background: radial-gradient(circle at 50% 40%, var(--pink-100), var(--pink-300));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.card__art img {
  max-height: 190px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(120,40,60,0.25));
}
.card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.card__tag { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink-200); font-weight: 700; margin-bottom: 6px; }
.card h3 { font-family: var(--display); font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 20px; flex-grow: 1; }
.stats { display: flex; gap: 26px; margin-bottom: 22px; }
.stat b { display: block; font-size: 20px; font-weight: 800; color: var(--ink); }
.stat span { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }

/* per-collection link buttons (OpenSea + Soneium explorer) */
.link-row { display: flex; gap: 12px; flex-wrap: wrap; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  border: 1.5px solid var(--pink-100);
  background: #fff;
  color: var(--ink);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.icon-btn:hover { transform: translateY(-2px); border-color: var(--pink-300); box-shadow: 0 8px 18px rgba(120,40,60,0.12); }
.icon-btn img { height: 20px; width: 20px; }

/* ---------- LORE STRIP ---------- */
.lore { text-align: center; padding-top: 8px; padding-bottom: 72px; }
.lore .wrap { max-width: 720px; }
.lore p { font-family: var(--display); font-size: clamp(18px, 2.5vw, 23px); color: var(--ink); font-weight: 600; line-height: 1.5; }
.lore p::before { content: "🌸"; display: block; font-size: 22px; margin-bottom: 14px; opacity: 0.9; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: #e9e0ee;
  padding: 48px 0 40px;
}
footer .wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.foot-logos { display: flex; align-items: center; gap: 22px; opacity: 0.95; }
.foot-logos .astar { height: 26px; width: auto; filter: brightness(0) invert(1); }
.foot-logos .divider { width: 1px; height: 26px; background: rgba(255,255,255,0.25); }
.foot-logos .soneium { height: 22px; width: auto; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.foot-links a { color: #cdbfd6; font-size: 14px; transition: color 0.15s; }
.foot-links a:hover { color: #fff; }
.copyright { font-size: 13px; color: #9a8ba6; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 48px 20px 64px; }
  .foot-logos { flex-wrap: wrap; justify-content: center; }
}
