@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@600;700;800&display=swap");

:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --ink: #f4f4f4;
  --muted: #8c8c8c;
  --muted-2: #5c5c5c;
  --line: #2e2e2e;
  --line-strong: #4a4a4a;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --accent: #ffffff;
  --ink-inv: #000000;
  --shadow: none;
  --shadow-lg: none;
  --radius: 0;
  --radius-sm: 0;
  --spring: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font: "DM Sans", "IBM Plex Sans", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --max: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page-width {
  width: var(--max);
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  background-image: none;
}

/* Header — clean sticky bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: var(--max);
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.header-inner nav {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2px;
}

.header-inner nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s var(--spring), background 0.25s var(--spring);
}

.header-inner nav a svg {
  width: 15px;
  height: 15px;
  opacity: 0.7;
}

.header-inner nav a:hover,
.header-inner nav a.active {
  color: var(--accent);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn,
.login-link,
.menu-button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.25s var(--spring), background 0.2s, border-color 0.2s;
}

.lang-btn {
  min-width: 40px;
  font-size: 12px;
  font-weight: 700;
}

.login-link {
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.login-link svg {
  width: 15px;
  height: 15px;
}

.menu-button {
  display: none;
  width: 36px;
  place-items: center;
}

/* Hard wipe invert — Uiverse / Refero mono */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  transition: color 0.28s var(--spring), transform 0.2s var(--spring);
  z-index: 0;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--spring);
  z-index: -1;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:hover {
  color: var(--ink-inv);
}

.btn:active {
  transform: translate(1px, 1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--ink-inv);
}

.btn-primary::before {
  background: var(--bg);
  transform-origin: right;
}

.btn-primary:hover {
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

.btn-small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

/* Hero */
.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(#d4d4d8 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(#000, transparent 85%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 28px;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--accent);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero h1 .line {
  display: block;
}

.hero h1 .muted {
  color: var(--muted-2);
}

.hero-lead {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 140px));
  gap: 12px;
  padding-top: 8px;
}

.hero-meta div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.hero-meta strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.hero-meta span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Section heads */
.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
  max-width: 560px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head .label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-head h2 em {
  font-style: normal;
  color: var(--muted);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

/* Spotlight cards (React Bits style) */
.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.spot-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  padding: 24px;
  min-height: 240px;
  transition: transform 0.35s var(--spring), border-color 0.3s;
  --mx: 50%;
}

.spot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 60%
  );
  background-size: 220% 100%;
  background-position: var(--mx, 50%) 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.spot-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.spot-card:hover::after {
  opacity: 1;
}

.spot-card > * {
  position: relative;
  z-index: 1;
}

.spot-card .big {
  color: var(--accent);
}

.spot-card .idx {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.spot-card h3 {
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.03em;
}

.spot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.spot-card .big {
  margin-top: 28px;
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: -0.04em;
  opacity: 0.14;
}

/* Media */
.media-carousel {
  display: grid;
  grid-template-columns: 88px 1fr 88px;
  gap: 12px;
  align-items: center;
}

.media-side {
  height: 360px;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.3s, transform 0.35s var(--spring);
}

.media-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.media-side:hover {
  opacity: 1;
  transform: scale(1.02);
}

.media-main {
  position: relative;
  height: 520px;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: #111;
  transition: transform 0.45s var(--spring);
}

.media-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
  transition: opacity 0.4s var(--spring), transform 0.55s var(--spring);
}

.media-main.is-swap img {
  opacity: 0.35;
  transform: scale(1.03);
}

.media-top {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.media-info {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 18px 20px;
  border-radius: 0;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  color: #fff;
}

.media-info > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.media-info h3 {
  margin: 6px 0 4px;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.03em;
}

.media-info p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.media-controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.media-controls > button {
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: 0.25s var(--spring);
}

.media-controls > button:hover {
  border-color: var(--ink);
  transform: scale(1.06);
}

.media-dots {
  display: flex;
  gap: 6px;
}

.media-dots button {
  width: 28px;
  height: 3px;
  border: 0;
  border-radius: 99px;
  background: #d4d4d8;
  cursor: pointer;
  padding: 0;
  transition: 0.3s var(--spring);
}

.media-dots button.active {
  width: 36px;
  background: var(--accent);
}

.media-controls > span {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* CTA */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--surface);
  color: var(--accent);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
}

.cta-band h2 em {
  font-style: normal;
  color: var(--muted);
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Shop */
.page-hero {
  padding: 88px 0 48px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.page-hero .label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 12px 0;
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 72px);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--muted-2);
}

.page-hero p {
  margin: 0;
  max-width: 480px;
  color: var(--muted);
  font-size: 16px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shop-card {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--spring), border-color 0.3s;
}

.shop-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.shop-card.featured {
  border-color: var(--accent);
}

.shop-visual {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #111;
}

.shop-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.5s var(--spring), filter 0.4s;
}

.shop-card:hover .shop-visual img {
  transform: scale(1.04);
  filter: grayscale(0.35) contrast(1.05);
}

.price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 800;
}

.shop-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 10px;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-body .idx {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.shop-body h2 {
  margin: 8px 0;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.shop-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  min-height: 54px;
}

.shop-body ul {
  list-style: none;
  margin: 16px 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}

.shop-body li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.shop-body li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--accent);
  flex: 0 0 auto;
}

.shop-body .btn {
  margin-top: auto;
  width: 100%;
}

.shop-extra {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.extra-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.extra-card h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 20px;
}

.extra-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.extra-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  text-align: right;
}

/* Legal */
.legal-page {
  padding: 72px 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
}

.legal-layout aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: fit-content;
  position: sticky;
  top: 88px;
}

.legal-layout aside a {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.legal-layout aside a.active {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
}

.legal-head h1 {
  margin: 10px 0;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.legal-head p {
  color: var(--muted);
  max-width: 520px;
}

.legal-sections article {
  margin-top: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.legal-sections h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.legal-sections p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding-top: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-brand > p {
  margin: 16px 0;
  color: var(--muted);
  max-width: 320px;
}

.footer-brand > div {
  display: flex;
  gap: 8px;
}

.footer-brand > div a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.25s var(--spring);
}

.footer-brand > div a:hover {
  border-color: var(--ink);
  transform: scale(1.05);
}

.footer-brand > div a img {
  width: 16px;
  height: 16px;
  filter: grayscale(1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links > div > span {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--muted);
}

.footer-bottom {
  min-height: 56px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom button {
  border: 0;
  background: none;
  color: var(--accent);
  cursor: pointer;
  font-weight: 700;
}

/* Cookie — iOS-ish sheet, mono */
.cookie-root {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: end center;
  padding: 16px;
  background: rgba(10, 10, 10, 0.28);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--spring);
}

.cookie-root.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cookie-sheet {
  width: min(420px, 100%);
  padding: 20px;
  border-radius: 0;
  border: 1px solid var(--line-strong);
  background: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(16px);
  color: var(--accent);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.45s var(--spring);
}

.cookie-root.is-open .cookie-sheet {
  transform: none;
}

.cookie-sheet .handle {
  width: 36px;
  height: 4px;
  margin: 0 auto 14px;
  border-radius: 99px;
  background: #d4d4d8;
}

.cookie-sheet h3 {
  margin: 0 0 8px;
  text-align: center;
  font-family: var(--display);
  font-size: 20px;
}

.cookie-sheet p {
  margin: 0 0 16px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.cookie-actions {
  display: grid;
  gap: 8px;
}

.cookie-actions .btn {
  width: 100%;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 250;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 16px;
  border-radius: 0;
  border: 1px solid var(--line-strong);
  background: #121212;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s var(--spring);
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Blur reveal (React Bits BlurText-inspired) */
.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px);
  transition: opacity 0.7s var(--spring), filter 0.75s var(--spring), transform 0.75s var(--spring);
}

.reveal.is-on {
  opacity: 1;
  filter: none;
  transform: none;
}

@media (max-width: 960px) {
  .header-inner nav {
    display: none;
  }

  .header-inner.is-open nav {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #121212;
  }

  .menu-button {
    display: grid;
    margin-left: auto;
  }

  .header-actions .btn-small {
    display: none;
  }

  .mode-grid,
  .shop-grid,
  .shop-extra,
  .footer-top,
  .footer-links,
  .legal-layout,
  .media-carousel {
    grid-template-columns: 1fr;
  }

  .media-side {
    display: none;
  }

  .media-main {
    height: 380px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }
}
