/* ============ TOKENS — DARK PREMIUM (NEON PURPLE PRIMARY) ============ */
:root {
  --bg:            #07000F;
  --bg-soft:       #0C0018;
  --bg-warm:       #110025;
  --surface:       #130028;
  --surface-raised:#1B003A;
  --border:        rgba(168,85,247,0.18);
  --border-strong: rgba(168,85,247,0.32);
  --text:          #F2EEFF;
  --text-dim:      #C4AAEE;
  --text-faint:    #7A60AA;

  /* PRIMARY: NEON PURPLE */
  --accent:        #A855F7;
  --accent-bright: #C084FC;
  --accent-deep:   #7C3AED;
  --accent-soft:   rgba(168,85,247,0.14);
  --accent-glow:   rgba(168,85,247,0.40);

  /* SECONDARY: GOLD */
  --gold:          #D4A017;
  --gold-bright:   #FFD700;
  --gold-dim:      #B8860B;
  --gold-soft:     rgba(212,160,23,0.12);

  --teal:          #2DD4C5;
  --teal-bright:   #51E0D3;
  --teal-soft:     rgba(45,212,197,0.10);
  --good:          #4ADE80;
  --bad:           #F87171;

  --shadow-color:  rgba(0,0,0,0.75);
  --glow-accent:   rgba(168,85,247,0.38);
  --glow-gold:     rgba(212,160,23,0.25);

  --font-display:  "Space Grotesk", sans-serif;
  --font-body:     "Inter", sans-serif;
  --font-mono:     "JetBrains Mono", monospace;
  --radius:        8px;
  --radius-lg:     14px;
  --max-width:     1240px;
}

/* ============ LIGHT THEME — PURPLE NEON ON CREAM ============ */
[data-theme="light"] {
  --bg:            #F4EEFF;
  --bg-soft:       #EAD9FF;
  --bg-warm:       #E0CCFF;
  --surface:       #FFFFFF;
  --surface-raised:#F8F3FF;
  --border:        rgba(124,58,237,0.16);
  --border-strong: rgba(124,58,237,0.30);
  --text:          #160030;
  --text-dim:      #4A2080;
  --text-faint:    #7A58A8;

  --accent:        #7C3AED;
  --accent-bright: #6D28D9;
  --accent-deep:   #5B21B6;
  --accent-soft:   rgba(124,58,237,0.10);
  --accent-glow:   rgba(124,58,237,0.22);

  --gold:          #B8860B;
  --gold-bright:   #D4A017;
  --gold-dim:      #8B6508;
  --gold-soft:     rgba(184,134,11,0.10);

  --good:          #15803D;
  --bad:           #DC2626;
  --shadow-color:  rgba(22,0,48,0.12);
  --glow-accent:   rgba(124,58,237,0.18);
  --glow-gold:     rgba(184,134,11,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.25s ease, color 0.25s ease;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img, video { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 3px; }

.section-inner, .nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ============ KICKERS / TYPOGRAPHY ============ */
.kicker { display: inline-block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 16px; }
.kicker-gold { color: var(--gold-bright); }

.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4.2vw, 52px); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; color: var(--text); }
.lead { font-size: 18px; color: var(--text-dim); max-width: 620px; margin-bottom: 8px; }

.accent-text  { color: var(--accent-bright); }
.accent       { color: var(--accent-bright); }
.gold-text    { color: var(--gold-bright); }
.purple-text  { color: var(--accent-bright); }

/* ============ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: var(--radius); transition: transform 0.15s ease, box-shadow 0.15s ease; white-space: nowrap; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--accent-deep), var(--accent), var(--accent-bright)); color: #fff; box-shadow: 0 2px 4px var(--shadow-color), 0 8px 32px -8px var(--glow-accent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 2px 4px var(--shadow-color), 0 14px 40px -8px var(--glow-accent); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: #0A0010; font-weight: 800; box-shadow: 0 2px 4px var(--shadow-color), 0 8px 32px -8px var(--glow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 2px 4px var(--shadow-color), 0 14px 40px -8px var(--glow-gold); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-bright); background: var(--accent-soft); }
.btn .arrow { transition: transform 0.2s ease; }
.btn-ghost:hover .arrow { transform: translateY(2px); }

/* ============ THEME TOGGLE ============ */
.theme-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border-strong); background: var(--surface); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s ease, transform 0.2s ease; flex-shrink: 0; }
.theme-toggle:hover { border-color: var(--accent); transform: rotate(15deg); }
.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ============ NAV — no masthead offset ============ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(7,0,15,0.88); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: background 0.25s ease, box-shadow 0.25s ease; }
[data-theme="light"] .nav { background: rgba(244,238,255,0.90); }
.nav--scrolled { box-shadow: 0 4px 32px -8px var(--glow-accent); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark { font-family: var(--font-mono); font-size: 11px; font-weight: 700; background: linear-gradient(135deg, var(--accent-deep), var(--accent-bright)); color: #fff; padding: 4px 7px; border-radius: 4px; letter-spacing: 0.04em; }
.nav-logo-text { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: 0.01em; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--text-dim); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--accent-bright); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta { font-size: 14px; font-weight: 700; padding: 10px 20px; border-radius: var(--radius); background: linear-gradient(135deg, var(--accent-deep), var(--accent-bright)); color: #fff; transition: transform 0.15s ease, box-shadow 0.15s ease; box-shadow: 0 4px 16px -4px var(--glow-accent); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px -4px var(--glow-accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; }
.nav-toggle span { height: 2px; background: var(--text); border-radius: 1px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-link--active { color: var(--accent-bright) !important; position: relative; }
.nav-link--active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -24px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-bright)); border-radius: 1px; }

/* ============ HERO ============ */
.hero { position: relative; padding-top: 120px; background: var(--bg); overflow: hidden; min-height: 100svh; display: flex; flex-direction: column; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 30%, rgba(168,85,247,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 15% 65%, rgba(124,58,237,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 50% 80%, rgba(212,160,23,0.06) 0%, transparent 60%);
}
.hero-video-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video-bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; transition: opacity 0.4s; }
.hero-video-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,0,15,0.42) 0%, rgba(7,0,15,0.72) 65%, var(--bg) 100%); }

/* Light theme: video more visible, lighter overlay — glass card handles text contrast */
[data-theme="light"] .hero-video-bg video { opacity: 0.45; }
[data-theme="light"] .hero-video-bg::after { background: linear-gradient(180deg, rgba(244,238,255,0.52) 0%, rgba(244,238,255,0.62) 65%, var(--bg) 100%); }

/* Audio control button — shared for hero + video gallery */
.video-audio-btn {
  position: absolute; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(10,0,25,0.65); backdrop-filter: blur(10px);
  border: 1px solid rgba(168,85,247,0.4);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, opacity 0.2s;
  opacity: 0.72;
}
.video-audio-btn:hover { background: rgba(168,85,247,0.5); border-color: var(--accent); transform: scale(1.08); opacity: 1; }
.video-audio-btn svg { width: 18px; height: 18px; pointer-events: none; }
[data-theme="light"] .video-audio-btn { background: rgba(255,255,255,0.75); color: var(--accent-deep); border-color: rgba(124,58,237,0.35); }
[data-theme="light"] .video-audio-btn:hover { background: rgba(124,58,237,0.15); }

/* Hero audio button — fixed so it's always visible above the fold */
.hero-audio-btn { position: fixed; bottom: 28px; right: 28px; z-index: 200; }

/* Video gallery audio button placement */
.video-main .video-audio-btn,
.video-portrait-item .video-audio-btn { bottom: 48px; right: 12px; }

.hero-top { max-width: var(--max-width); margin: 0 auto; padding: 48px 32px 0; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; position: relative; z-index: 2; flex: 1; }

/* Copy area: subtle glass card to lift text off video in all themes */
.hero-copy {
  position: relative;
  padding: 40px 44px 40px 40px;
  border-radius: var(--radius-lg);
  background: rgba(7,0,15,0.44);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(168,85,247,0.20);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(168,85,247,0.12);
}
[data-theme="light"] .hero-copy {
  background: rgba(255,255,255,0.72);
  border-color: rgba(124,58,237,0.18);
  box-shadow: 0 8px 40px rgba(22,0,48,0.10), inset 0 1px 0 rgba(124,58,237,0.10);
}

.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: rgba(200,175,255,0.90); margin-bottom: 24px; text-transform: uppercase; }
[data-theme="light"] .hero-eyebrow { color: var(--text-dim); }
.lot-tag { color: var(--accent-bright); border: 1px solid var(--accent); padding: 3px 10px; border-radius: 100px; background: var(--accent-soft); font-weight: 700; letter-spacing: 0.06em; box-shadow: 0 0 12px var(--glow-accent); white-space: nowrap; }
.divider-dot { color: rgba(200,175,255,0.55); }
[data-theme="light"] .divider-dot { color: var(--text-faint); }

.hero-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 5.8vw, 68px); line-height: 1.04; letter-spacing: -0.025em; margin-bottom: 24px; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 0 60px rgba(168,85,247,0.25); }
[data-theme="light"] .hero-title { color: var(--text); text-shadow: none; }
.hero-title .line { display: block; }
.hero-title .line-gold { color: var(--gold-bright); text-shadow: 0 0 30px rgba(212,160,23,0.45); }
[data-theme="light"] .hero-title .line-gold { color: var(--gold); text-shadow: none; }

.hero-sub { font-size: 18px; color: rgba(220,205,255,0.88); max-width: 500px; margin-bottom: 36px; line-height: 1.65; }
[data-theme="light"] .hero-sub { color: var(--text-dim); }
.hero-actions { display: flex; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(168,85,247,0.22); }
[data-theme="light"] .hero-badges { border-top-color: var(--border); }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(200,175,255,0.80); padding: 6px 12px; border: 1px solid rgba(168,85,247,0.22); border-radius: 100px; background: rgba(20,0,40,0.55); backdrop-filter: blur(6px); }
[data-theme="light"] .hero-badge { color: var(--text-dim); border-color: var(--border); background: rgba(255,255,255,0.7); }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px var(--glow-accent); }
.hero-badge-dot--gold { background: var(--gold-bright); box-shadow: 0 0 6px var(--glow-gold); }

.hero-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 80px -20px var(--glow-accent), 0 0 0 1px var(--border); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(168,85,247,0.08) 0%, transparent 60%); z-index: 1; pointer-events: none; }

/* ============ TICKER ============ */
.ticker-row { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); overflow: hidden; padding: 13px 0; margin-top: 0; position: relative; z-index: 2; }
.ticker-track { display: flex; gap: 14px; white-space: nowrap; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--accent-bright); animation: ticker 32s linear infinite; width: max-content; }
.ticker-track span:nth-child(even) { color: var(--gold-bright); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SOCIAL STRIP ============ */
.social-strip { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 20px 32px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.social-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--text-dim); padding: 9px 18px; border: 1px solid var(--border); border-radius: 100px; transition: all 0.2s ease; }
.social-link:hover { border-color: var(--accent); color: var(--accent-bright); background: var(--accent-soft); box-shadow: 0 0 16px var(--glow-accent); }
.social-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--gold-bright); padding: 9px 18px; border: 1px solid var(--gold-soft); border-radius: 100px; background: var(--gold-soft); letter-spacing: 0.04em; }

/* ============ FEATURED LANDSCAPE BANNER ============ */
.featured-banner { position: relative; overflow: hidden; }
.featured-banner img { width: 100%; height: 500px; object-fit: cover; display: block; }
.featured-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%); pointer-events: none; }

/* ============ PORTRAIT GALLERY ============ */
.portrait-gallery { padding: 64px 0; background: var(--bg); }
.portrait-gallery-grid { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portrait-item { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.portrait-item:hover { transform: translateY(-6px) scale(1.01); border-color: var(--accent); box-shadow: 0 20px 60px -16px var(--glow-accent); }
.portrait-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ COLLECTIONS ============ */
.collections { background: var(--surface); border-bottom: 1px solid var(--border); padding: 96px 0; position: relative; overflow: hidden; }
.collections::before { content: ""; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse 80% 60% at 100% 50%, var(--accent-soft) 0%, transparent 70%); pointer-events: none; }
.collections-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; position: relative; z-index: 1; }
.collections-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.collection-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.collection-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 20px 48px -16px var(--glow-accent); }
.collection-visual { height: 180px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cv-pkm  { background: linear-gradient(135deg, rgba(212,160,23,0.18), rgba(168,85,247,0.10)); }
.cv-op   { background: linear-gradient(135deg, rgba(168,85,247,0.16), rgba(45,212,197,0.08)); }
.cv-dbs  { background: linear-gradient(135deg, rgba(248,113,113,0.12), rgba(168,85,247,0.10)); }
.cv-slabs{ background: linear-gradient(135deg, rgba(168,85,247,0.10), rgba(212,160,23,0.08)); }
.collection-box { width: 72px; height: 96px; border-radius: var(--radius); border: 1px solid var(--border-strong); background: var(--surface); box-shadow: 0 10px 24px -6px var(--shadow-color); }
.collection-info { padding: 18px 20px 22px; }
.collection-tag { font-family: var(--font-mono); font-size: 11px; color: var(--accent-bright); letter-spacing: 0.06em; }
.collection-info h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin: 6px 0; }
.collection-info p { font-size: 13px; color: var(--text-dim); }

/* ============ VIDEO GALLERY ============ */
.video-gallery { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; }
.video-gallery-head { padding: 0 32px; max-width: var(--max-width); margin: 0 auto 40px; }
.video-showcase { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; align-items: stretch; }
.video-main { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); position: relative; background: var(--surface); box-shadow: 0 0 0 1px var(--border), 0 32px 64px -20px var(--glow-accent); }
.video-main video { width: 100%; height: 100%; object-fit: cover; min-height: 360px; display: block; }
.video-portrait-pair { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.video-portrait-item { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); position: relative; background: var(--surface); box-shadow: 0 0 0 1px var(--border); }
.video-portrait-item video { width: 100%; height: 100%; object-fit: cover; min-height: 170px; display: block; }
.video-main:hover, .video-portrait-item:hover { border-color: var(--accent); box-shadow: 0 0 32px var(--glow-accent); }
.video-overlay-label { position: absolute; bottom: 12px; left: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: #fff; background: rgba(168,85,247,0.6); backdrop-filter: blur(6px); padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(168,85,247,0.4); }

/* ============ WE BUY SLABS ============ */
/* Image is an absolute backdrop; overlay flows normally so content can never be clipped on small screens */
.buy-slabs { position: relative; overflow: hidden; background: var(--bg); }
.buy-slabs-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.buy-slabs-overlay { position: relative; background: linear-gradient(180deg, rgba(7,0,15,0.93) 0%, rgba(12,0,28,0.90) 60%, rgba(7,0,15,0.95) 100%); display: flex; align-items: center; min-height: 520px; }
.buy-slabs-content { max-width: var(--max-width); margin: 0 auto; padding: 60px 32px; width: 100%; }
.buy-slabs-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: 1.0; margin-bottom: 12px; text-transform: uppercase; letter-spacing: -0.02em; }
.buy-slabs-title .line1 { color: #fff; }
.buy-slabs-title .line2 { color: var(--gold-bright); }
.buy-slabs-sub { font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 28px); font-weight: 700; color: var(--accent-bright); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.02em; }
.buy-slabs-market { font-family: var(--font-mono); font-size: 14px; color: var(--text-dim); margin-bottom: 36px; }
.buy-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.buy-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--accent-bright); border: 1px solid var(--accent); padding: 5px 12px; border-radius: 100px; background: var(--accent-soft); }
.buy-contacts { display: flex; gap: 14px; flex-wrap: wrap; }
.buy-contact-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 13px; font-weight: 600; padding: 11px 22px; border-radius: var(--radius); border: 1.5px solid; transition: all 0.2s ease; letter-spacing: 0.03em; }
.buy-contact-btn--wa { background: rgba(37,211,102,0.12); border-color: #25D366; color: #25D366; }
.buy-contact-btn--wa:hover { background: rgba(37,211,102,0.22); box-shadow: 0 0 20px rgba(37,211,102,0.3); }
.buy-contact-btn--ig { background: rgba(228,64,95,0.12); border-color: #E4405F; color: #E4405F; }
.buy-contact-btn--ig:hover { background: rgba(228,64,95,0.22); box-shadow: 0 0 20px rgba(228,64,95,0.3); }
.buy-contact-btn--email { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-bright); }
.buy-contact-btn--email:hover { background: rgba(168,85,247,0.22); box-shadow: 0 0 20px var(--glow-accent); }
.buy-contact-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============ PSA SHOWCASE ============ */
.psa-showcase { background: var(--bg-soft); padding: 0; border-top: 1px solid var(--border); }
.psa-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.psa-image { position: relative; overflow: hidden; }
.psa-image img { width: 100%; height: 480px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.psa-image:hover img { transform: scale(1.03); }
.psa-image-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,0,15,0.75) 0%, transparent 60%); }
.psa-copy { padding: 60px 48px; display: flex; flex-direction: column; justify-content: center; background: var(--surface); border-left: 1px solid var(--border); }
.psa-copy h2 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; line-height: 1.15; margin-bottom: 18px; }
.psa-copy p { font-size: 16px; color: var(--text-dim); margin-bottom: 28px; line-height: 1.7; }
.psa-stats { display: flex; gap: 28px; margin-bottom: 32px; }
.psa-stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--accent-bright); display: block; }
.psa-stat-label { font-size: 12px; color: var(--text-faint); }

/* ============ CHAPTER DIVIDER ============ */
.chapter-divider { position: relative; padding: 120px 0; background: var(--bg-warm); text-align: center; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.chapter-divider::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 50%, var(--accent-soft) 0%, transparent 70%); }
.chapter-divider-inner { position: relative; z-index: 2; }
.chapter-divider-kicker { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; color: var(--accent-bright); text-transform: uppercase; margin-bottom: 18px; display: block; }
.chapter-divider-title { font-family: var(--font-display); font-size: clamp(28px, 4.4vw, 50px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.chapter-divider-sub { font-size: 17px; color: var(--text-dim); max-width: 560px; margin: 0 auto; }
.chapter-divider-line { width: 1px; height: 64px; background: linear-gradient(180deg, transparent, var(--accent-bright), transparent); margin: 36px auto 0; }

/* ============ TEXT LINK ============ */
.text-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--accent-bright); margin-top: 32px; transition: gap 0.2s ease; }
.text-link:hover { gap: 10px; }
.inline-link { color: var(--accent-bright); border-bottom: 1px solid var(--accent); }
.inline-link:hover { filter: brightness(1.15); }

/* ============ SECTION GENERIC ============ */
.section { padding: 110px 0; }

/* ============ GROUP GLANCE ============ */
.group-section { background: var(--bg); }
.company-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.company-pill { display: flex; flex-direction: column; gap: 6px; padding: 20px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.company-pill:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 12px 36px -12px var(--glow-accent); }
.company-pill--active { border-color: var(--accent); background: linear-gradient(160deg, var(--surface) 60%, var(--accent-soft)); }
.company-pill--teal { border-color: var(--teal); background: linear-gradient(160deg, var(--surface) 60%, var(--teal-soft)); }
.company-pill-tag { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); }
.company-pill-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.company-pill-desc { font-size: 12.5px; color: var(--text-dim); }
.status-chip { display: inline-block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; padding: 2px 8px; border-radius: 100px; margin-top: 6px; }
.status-chip--live { background: rgba(74,222,128,0.12); color: var(--good); }
.status-chip--progress { background: var(--accent-soft); color: var(--accent-bright); }

/* ============ SUPPLY GAP ============ */
.supply-gap { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.gap-col-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--border-strong); }
.gap-col-title--bad { color: var(--bad); border-color: var(--bad); }
.gap-col-title--good { color: var(--good); border-color: var(--good); }
.gap-list li { position: relative; padding: 12px 0 12px 26px; font-size: 15px; color: var(--text-dim); border-bottom: 1px solid var(--border); }
.gap-list li::before { content: "×"; position: absolute; left: 0; color: var(--bad); font-weight: 700; font-size: 16px; }
.gap-list--good li::before { content: "✓"; color: var(--good); font-size: 13px; }

/* ============ ZENSKA SPOTLIGHT ============ */
.zenska-spotlight { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.zenska-spotlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.zenska-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--gold-bright); background: var(--gold-soft); border: 1px solid var(--gold-dim); padding: 6px 14px; border-radius: 100px; margin-bottom: 22px; }
.zenska-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-bright); animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@media (prefers-reduced-motion: reduce) { .zenska-badge-dot { animation: none; } }
.zenska-spotlight h2 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; margin-bottom: 18px; line-height: 1.2; }
.zenska-spotlight p.lead { color: var(--text-dim); margin-bottom: 28px; }
.zenska-stats { display: flex; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.zenska-stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--teal-bright); display: block; }
.zenska-stat-label { font-size: 12px; color: var(--text-faint); max-width: 180px; }
.zenska-visual { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; position: relative; }
.zenska-visual-mark { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -0.01em; }
.zenska-visual-tag { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); margin-bottom: 24px; }
.zenska-progress-label { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-bottom: 8px; }
.zenska-progress-track { height: 8px; border-radius: 100px; background: var(--border); overflow: hidden; margin-bottom: 28px; }
.zenska-progress-fill { height: 100%; width: 62%; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); border-radius: 100px; }
.zenska-feature-list { display: flex; flex-direction: column; gap: 16px; }
.zenska-feature { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text-dim); }
.zenska-feature-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-bright); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 1px; }

/* ============ CATALOGUE ============ */
.catalogue { background: var(--bg); }
.catalogue-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.cat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.cat-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 16px 40px -14px var(--glow-accent); }
.cat-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.cat-tag { font-family: var(--font-mono); font-size: 12px; font-weight: 700; padding: 4px 9px; border-radius: var(--radius); background: var(--accent-soft); letter-spacing: 0.04em; border: 1px solid var(--accent); color: var(--accent-bright); }
.cat-card--op .cat-tag { background: rgba(45,212,197,0.10); border-color: var(--teal); color: var(--teal-bright); }
.cat-card--dbs .cat-tag { background: rgba(248,113,113,0.10); border-color: var(--bad); color: var(--bad); }
.cat-card--other .cat-tag { color: var(--text-dim); border-color: var(--border-strong); background: var(--bg-soft); }
.cat-rarity { font-size: 11px; color: var(--gold-bright); font-family: var(--font-mono); }
.cat-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.cat-card p { font-size: 14px; color: var(--text-dim); }

.rollout { margin-top: 80px; }
.rollout-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 32px; }
.rollout-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.rollout-item { padding: 0 20px 0 20px; border-left: 2px solid var(--border-strong); }
.rollout-item:first-child { border-left: 2px solid var(--accent-bright); }
.rollout-lot { font-family: var(--font-mono); font-size: 11px; color: var(--accent-bright); display: block; margin-bottom: 10px; }
.rollout-item h4 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.rollout-item p { font-size: 14px; color: var(--text-dim); }

/* ============ AUTHENTICATE ============ */
.authenticate { background: var(--surface); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.authenticate::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 40% 60% at 15% 50%, var(--accent-soft) 0%, transparent 70%); pointer-events: none; }
.authenticate-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.seal-wrap { display: flex; justify-content: center; }
.seal { width: 280px; height: 280px; border-radius: 50%; display: block; position: relative; }
.seal-svg { width: 100%; height: 100%; }
.seal-ring-outer { fill: none; stroke: var(--accent); stroke-width: 1.5; }
.seal-ring-inner { fill: none; stroke: var(--border-strong); stroke-width: 1; stroke-dasharray: 3 4; }
.seal-arc-text { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.05em; fill: var(--accent-bright); }
.seal-shield { fill: var(--surface); stroke: var(--accent); stroke-width: 2; transition: fill 0.25s ease, transform 0.4s ease; transform-origin: 100px 100px; }
.seal-check { fill: none; stroke: var(--accent-bright); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.seal:hover .seal-shield { fill: var(--accent-soft); transform: scale(1.04); }
.seal { animation: seal-spin 38s linear infinite; }
@media (prefers-reduced-motion: reduce) { .seal { animation: none; } }
@keyframes seal-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.auth-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.auth-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--text-dim); }
.auth-num { font-family: var(--font-mono); font-size: 12px; color: #fff; background: var(--accent); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* ============ PARTNERS ============ */
.partners { background: var(--bg); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.partner-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; background: var(--surface); transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.partner-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px -8px var(--glow-accent); }
.partner-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--accent-bright); }
.partner-card p { font-size: 14px; color: var(--text-dim); }
.partner-cta { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.partner-cta p { color: var(--text-dim); font-size: 14px; max-width: 480px; }

/* ============ PAGE HERO ============ */
.page-hero { padding: 128px 0 64px; background: var(--bg); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 30% 40%, var(--accent-soft) 0%, transparent 70%); }
.page-hero > .section-inner { position: relative; z-index: 1; }
.page-hero--contact { background: var(--bg-soft); }
.page-hero-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 24px; max-width: 760px; }
.page-hero-lead { font-size: 18px; max-width: 680px; color: var(--text-dim); }

/* ============ ORG CHART ============ */
.structure-section { background: var(--surface); }
.org-chart { margin-top: 48px; display: flex; flex-direction: column; align-items: center; }
.org-parent { background: var(--surface-raised); border: 1px solid var(--accent); border-radius: var(--radius-lg); padding: 20px 40px; text-align: center; display: flex; flex-direction: column; gap: 4px; box-shadow: 0 4px 24px -8px var(--glow-accent); }
.org-parent-label { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--accent-bright); letter-spacing: 0.01em; }
.org-parent-sub { font-size: 12px; color: var(--text-faint); font-family: var(--font-mono); }
.org-lines { width: 2px; height: 36px; background: var(--accent); }
.org-children { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; position: relative; }
.org-children::before { content: ""; position: absolute; top: -18px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border-strong); }
.org-child { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 18px; text-align: center; position: relative; }
.org-child::before { content: ""; position: absolute; top: -18px; left: 50%; width: 2px; height: 18px; background: var(--border-strong); }
.org-child--featured { border-color: var(--accent); background: linear-gradient(160deg, var(--bg) 60%, var(--accent-soft)); }
.org-child-tag { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-bottom: 8px; }
.org-child h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.org-child-sector { font-size: 12px; color: var(--text-dim); }
.group-note { font-size: 14px; color: var(--text-dim); text-align: center; margin-top: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============ COMPANY PROFILES ============ */
.company-profiles { background: var(--bg); border-top: 1px solid var(--border); }
.profile-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-top: 28px; }
.profile-card--featured { border-color: var(--accent); background: linear-gradient(160deg, var(--surface) 70%, var(--accent-soft)); }
.profile-head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.profile-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--accent); }
.profile-head h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; }
.profile-sector { font-size: 13px; color: var(--text-faint); font-family: var(--font-mono); }
.profile-desc { font-size: 15px; color: var(--text-dim); max-width: 760px; margin-bottom: 18px; }
.profile-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.profile-tag { font-size: 12px; padding: 5px 12px; border-radius: 100px; border: 1px solid var(--border-strong); color: var(--text-dim); font-family: var(--font-mono); }

/* ============ LEVERAGE ============ */
.group-leverage { background: var(--surface); }
.leverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.leverage-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; transition: border-color 0.2s ease; }
.leverage-card:hover { border-color: var(--accent); }
.leverage-icon { display: block; font-size: 22px; color: var(--accent-bright); margin-bottom: 14px; }
.leverage-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.leverage-card p { font-size: 13.5px; color: var(--text-dim); }

/* ============ ABOUT CTA ============ */
.about-cta { background: var(--bg); }
.about-cta-inner { text-align: center; }
.about-cta-inner .lead { margin: 0 auto 28px; }

/* ============ ZENSKA DEEP DIVE ============ */
.zenska-deepdive { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.zenska-deepdive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 44px; }
.zenska-pillars { display: flex; flex-direction: column; gap: 20px; }
.zenska-pillar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 24px; }
.zenska-pillar-num { font-family: var(--font-mono); font-size: 12px; color: var(--accent-bright); }
.zenska-pillar h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin: 6px 0; }
.zenska-pillar p { font-size: 13.5px; color: var(--text-dim); }
.zenska-roadmap { display: flex; flex-direction: column; }
.zenska-roadmap-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.zenska-roadmap-item:last-child { border-bottom: none; }
.zenska-roadmap-marker { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--border-strong); flex-shrink: 0; margin-top: 4px; }
.zenska-roadmap-marker--done { background: var(--good); border-color: var(--good); }
.zenska-roadmap-marker--active { background: var(--accent-bright); border-color: var(--accent-bright); box-shadow: 0 0 0 4px var(--accent-soft); }
.zenska-roadmap-marker--pending { background: transparent; }
.zenska-roadmap-stage { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); display: block; margin-bottom: 4px; }
.zenska-roadmap-item h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.zenska-roadmap-item p { font-size: 13px; color: var(--text-dim); }
.zenska-quote { background: var(--surface); border-left: 3px solid var(--accent-bright); border-radius: var(--radius); padding: 22px 26px; margin-top: 28px; }
.zenska-quote p { font-size: 15px; color: var(--text-dim); font-style: italic; }

/* ============ CONTACT ============ */
.contact-section { background: var(--bg); padding-top: 90px; }
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }

/* Form card */
.contact-form-wrap {
  position: relative;
  background: linear-gradient(170deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  box-shadow: 0 24px 64px -24px var(--glow-accent), 0 2px 8px var(--shadow-color);
  overflow: hidden;
}
.contact-form-wrap::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright), var(--gold-bright)); }
.contact-form-wrap::after { content: ""; position: absolute; top: -80px; right: -80px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%); pointer-events: none; }
.contact-form-kicker { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 10px; }
.contact-form-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.contact-form-sub { font-size: 14px; color: var(--text-dim); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; position: relative; z-index: 1; }
.form-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 12px; font-weight: 600; color: var(--text-dim); font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.form-row label .req { color: var(--accent-bright); }
.form-row input, .form-row select, .form-row textarea {
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: 10px;
  padding: 13px 16px; color: var(--text); font-family: var(--font-body); font-size: 16px;
  resize: vertical; width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-faint); opacity: 0.7; }
.form-row input:hover, .form-row select:hover, .form-row textarea:hover { border-color: var(--accent); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft), 0 0 20px -6px var(--glow-accent); background: var(--surface); }
.form-row textarea { min-height: 120px; line-height: 1.6; }
.form-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A855F7' fill='none' stroke-width='1.8'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-color: var(--bg); padding-right: 42px; cursor: pointer; }
.form-row select:focus { background-color: var(--surface); }
.form-row select option { background: var(--surface); color: var(--text); }
.contact-submit { width: 100%; justify-content: center; margin-top: 6px; padding: 16px 28px; font-size: 16px; }
.contact-submit svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-note { font-size: 13px; color: var(--text-faint); text-align: center; line-height: 1.5; }
.contact-note--success { color: var(--good) !important; font-weight: 600; }
[data-theme="light"] .contact-form-wrap { background: linear-gradient(170deg, #FFFFFF 0%, var(--surface-raised) 100%); }
.contact-info-wrap { display: flex; flex-direction: column; gap: 28px; }
.ledger-card { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); overflow: hidden; }
.ledger-head { padding: 18px 24px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.ledger-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--accent-bright); }
.ledger-list { padding: 8px 24px 20px; }
.ledger-row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.ledger-row:last-child { border-bottom: none; }
.ledger-row dt { color: var(--text-faint); }
.ledger-row dd { color: var(--text); font-weight: 500; text-align: right; min-width: 0; overflow-wrap: anywhere; }
.contact-channels { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.contact-channels h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.channel-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.channel-row:last-child { border-bottom: none; }
.channel-label { color: var(--text-faint); }
.channel-value { color: var(--accent-bright); }
.contact-note-box { background: var(--accent-soft); border: 1px solid var(--accent); border-radius: var(--radius-lg); padding: 18px 20px; font-size: 13.5px; color: var(--text-dim); }
.contact-note-box strong { color: var(--accent-bright); }

/* ============ FOOTER ============ */
.footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.footer-brand p { font-size: 13px; color: var(--text-faint); margin-top: 12px; line-height: 1.7; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--accent-bright); text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-dim); margin-bottom: 12px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--accent-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 12px; color: var(--text-faint); flex-wrap: wrap; gap: 12px; }
.footer-tag { font-family: var(--font-mono); letter-spacing: 0.1em; color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; color: var(--text-dim); transition: all 0.2s ease; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent-bright); background: var(--accent-soft); box-shadow: 0 0 12px var(--glow-accent); }
.footer-social a svg { width: 16px; height: 16px; }

/* ============ LIGHT THEME OVERLAYS — purple surfaces have white text ============ */
[data-theme="light"] .chapter-divider { background: linear-gradient(135deg, var(--accent-deep), var(--accent)); }
[data-theme="light"] .chapter-divider .chapter-divider-kicker,
[data-theme="light"] .chapter-divider .chapter-divider-title,
[data-theme="light"] .chapter-divider .chapter-divider-sub { color: #fff; }
[data-theme="light"] .ticker-track { color: var(--accent-deep); }
[data-theme="light"] .ticker-track span:nth-child(even) { color: var(--gold); }
/* Light theme: keep dark overlay on buy-slabs so white text stays readable over image */
[data-theme="light"] .buy-slabs-overlay { background: linear-gradient(180deg, rgba(15,0,40,0.94) 0%, rgba(20,0,50,0.92) 60%, rgba(15,0,40,0.96) 100%); }
[data-theme="light"] .buy-slabs-title .line1 { color: #fff; }
[data-theme="light"] .buy-slabs-sub { color: var(--accent-bright); }
[data-theme="light"] .buy-slabs-market { color: rgba(220,205,255,0.90); }
[data-theme="light"] .buy-tag { background: rgba(168,85,247,0.25); color: #c084fc; border-color: rgba(168,85,247,0.5); }
[data-theme="light"] .hero::before { background: radial-gradient(ellipse 55% 60% at 75% 30%, rgba(124,58,237,0.12) 0%, transparent 65%), radial-gradient(ellipse 45% 40% at 15% 65%, rgba(124,58,237,0.08) 0%, transparent 65%); }

/* ============ RESPONSIVE ============ */

/* --- TABLET / LANDSCAPE (≤ 980px) --- */
@media (max-width: 980px) {
  .section-inner, .nav-inner, .portrait-gallery-grid,
  .video-gallery-head, .video-showcase { padding-left: 24px; padding-right: 24px; }

  /* Nav */
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg-soft); border-bottom: 1px solid var(--border); flex-direction: column; padding: 20px 24px; gap: 18px; z-index: 50; }
  .nav-links--open { display: flex; box-shadow: 0 24px 48px -12px var(--shadow-color); }
  .nav-links a { font-size: 15px; padding: 4px 0; }
  .nav-toggle { display: flex; }
  .nav-toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle--active span:nth-child(2) { opacity: 0; }
  .nav-toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero-top { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { padding: 32px 28px; }
  .hero-eyebrow { flex-wrap: wrap; justify-content: center; gap: 6px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { margin-top: 28px; }

  /* Social strip */
  .social-strip { padding: 14px 20px; gap: 10px; }
  .social-link, .contact-pill { font-size: 12px; padding: 6px 12px; }

  /* Portrait gallery */
  .portrait-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* Collections */
  .collections-head { flex-direction: column; align-items: flex-start; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }

  /* Video gallery */
  .video-showcase { grid-template-columns: 1fr; }
  .video-portrait-pair { grid-template-rows: none; grid-template-columns: 1fr 1fr; }

  /* Buy slabs */
  .buy-slabs-content { padding: 48px 24px; }

  /* PSA */
  .psa-showcase-grid { grid-template-columns: 1fr; }
  .psa-copy { padding: 40px 24px; }

  /* Catalogue / rollout */
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .rollout-track { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  /* Auth */
  .authenticate-grid { grid-template-columns: 1fr; text-align: center; }
  .auth-list { text-align: left; }

  /* Partners */
  .partner-grid { grid-template-columns: 1fr; }

  /* About page */
  .zenska-deepdive-grid { grid-template-columns: 1fr; }
  .gap-grid { grid-template-columns: 1fr; gap: 48px; }
  .company-row { grid-template-columns: repeat(2, 1fr); }
  .org-children { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .org-children::before, .org-child::before { display: none; }
  .leverage-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* --- PHONE / SMALL TABLET (≤ 640px) --- */
@media (max-width: 640px) {
  .section-inner, .nav-inner, .portrait-gallery-grid,
  .video-gallery-head, .video-showcase { padding-left: 16px; padding-right: 16px; }

  .section { padding: 64px 0; }
  .hero { padding-top: 80px; }
  .page-hero { padding: 90px 0 48px; }

  /* Hero */
  .hero-copy { padding: 24px 20px; }
  .hero-title { font-size: clamp(34px, 9vw, 48px); }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 10px; padding: 5px 10px; }

  /* Social strip */
  .social-strip { flex-wrap: wrap; justify-content: flex-start; gap: 8px; padding: 12px 16px; }
  .social-link { font-size: 12px; padding: 6px 10px; gap: 5px; }
  .contact-pill { font-size: 12px; padding: 6px 10px; }
  .social-link svg, .contact-pill svg { width: 14px; height: 14px; }

  /* Portrait gallery — single column on small phones */
  .portrait-gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .portrait-gallery { padding: 40px 0; }

  /* Collections */
  .collections { padding: 56px 0; }
  .collections-head { gap: 16px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .collection-visual { min-height: 90px; }
  .collection-info { padding: 16px; }

  /* Featured banner */
  .featured-banner img { height: 200px; object-fit: cover; }

  /* Video gallery */
  .video-gallery { padding: 56px 0; }
  .video-portrait-pair { grid-template-columns: 1fr; }
  .video-main video { min-height: 220px; }
  .video-portrait-item video { min-height: 200px; }
  .video-main .video-audio-btn, .video-portrait-item .video-audio-btn { bottom: 40px; right: 10px; width: 36px; height: 36px; }

  /* Buy slabs */
  .buy-slabs-content { padding: 48px 16px; }
  .buy-slabs-title { font-size: clamp(28px, 8vw, 44px); }
  .buy-slabs-sub { font-size: clamp(14px, 4vw, 18px); }
  .buy-tags { gap: 8px; margin-bottom: 24px; }
  .buy-tag { font-size: 10px; padding: 4px 10px; }
  .buy-contacts { flex-direction: column; gap: 10px; }
  .buy-contact-btn { width: 100%; justify-content: center; padding: 13px 16px; }

  /* PSA */
  .psa-copy { padding: 32px 16px; }
  .psa-stats { gap: 12px; flex-wrap: wrap; }
  .psa-stat-num { font-size: 22px; }

  /* Catalogue */
  .catalogue-grid { grid-template-columns: 1fr; }
  .rollout-track { grid-template-columns: 1fr; }
  .rollout-item { padding: 20px; }

  /* Chapter divider */
  .chapter-divider { padding: 64px 0; }
  .chapter-divider-title { font-size: clamp(24px, 6vw, 36px); }

  /* Auth */
  .seal-svg { width: 160px; height: 160px; margin: 0 auto; }
  .auth-list { gap: 14px; }

  /* Partners */
  .partner-cta { flex-direction: column; align-items: flex-start; }
  .partner-cta > div { flex-direction: column; width: 100%; }
  .partner-cta .btn { width: 100%; text-align: center; justify-content: center; }

  /* About page */
  .company-row { grid-template-columns: 1fr; }
  .org-children { grid-template-columns: 1fr; gap: 16px; }
  .leverage-grid { grid-template-columns: 1fr; }
  .zenska-pillars { grid-template-columns: 1fr; }
  .profile-card { padding: 24px 16px; }

  /* Contact page */
  .contact-section { padding-top: 56px; }
  .contact-grid { gap: 28px; }
  .contact-form-wrap { padding: 26px 18px 24px; }
  .form-duo { grid-template-columns: 1fr; }
  .ledger-row { flex-direction: column; gap: 4px; }
  .ledger-row dd { text-align: left; word-break: break-word; }

  /* Footer */
  .footer { padding: 48px 0 28px; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-cols { gap: 28px; }
  .footer-col { min-width: 120px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- SMALL PHONES (≤ 480px) --- */
@media (max-width: 480px) {
  .section-inner, .nav-inner, .portrait-gallery-grid,
  .video-gallery-head, .video-showcase { padding-left: 14px; padding-right: 14px; }

  .nav-logo-text { font-size: 15px; }
  .nav-right .nav-cta { display: none; } /* hide on tiny screens — hamburger is enough */

  .hero-copy { padding: 20px 16px; }
  .hero-title { font-size: clamp(30px, 9vw, 42px); }

  .social-strip { gap: 6px; padding: 10px 14px; }
  .social-link, .contact-pill { font-size: 11px; padding: 5px 9px; gap: 4px; }

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

  .btn { padding: 12px 20px; font-size: 13px; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }

  .buy-slabs-title { font-size: clamp(26px, 8vw, 38px); }
  .buy-slabs-content { padding: 32px 14px; }

  .section-title { font-size: clamp(26px, 7vw, 38px); }
  .lead { font-size: 15px; }

  .rollout-item h4 { font-size: 14px; }
  .cat-card { padding: 20px 16px; }

  .footer-cols { flex-direction: column; gap: 24px; }
}
