/* ========== RESET & TOKENS ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

:root {
  --bg: #141413;
  --bg-2: #1b1b19;
  --bg-raised: #1f1f22;
  --bg-socket: #0e0e0d;
  --gold: #ecd096;
  --gold-2: #c9a86e;
  --gold-hi: #f6e6bb;
  --gold-dim: #b89a6a;
  --bronze: #574b3a;
  --grad-gold: linear-gradient(180deg, #f4dca8, #c9a86e);
  --grad-gold-soft: linear-gradient(180deg, #e6c684, #a07e44);
  --ink: #ece6d8;
  --ink-2: #b8b2a4;
  --ink-3: #8a8275;
  --ink-on-gold: #1a1813;
  --hair: rgba(236,208,150,.14);
  --hair-2: rgba(236,208,150,.08);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;
  --sp-1: 6px;
  --sp-2: 12px;
  --sp-3: 20px;
  --sp-4: 32px;
  --sp-5: 52px;
  --sp-6: 84px;
  --shadow-1: 0 1px 2px rgba(0,0,0,.4);
  --shadow-2: 0 8px 28px rgba(0,0,0,.45);
  --shadow-glow: 0 0 24px rgba(236,208,150,.18);
  --font-display: 'Cinzel', serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --maxw: 1080px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--gold); text-decoration: none; }
img { display: block; max-width: 100%; }

/* ========== AMBIENT CANVAS ========== */
#starfield {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ========== LAYOUT ========== */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; z-index: 1; }

/* ========== NAV ========== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 19, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--hair-2);
  transition: background 0.4s ease;
}

.topbar-inner {
  max-width: var(--maxw);
  width: 100%;
  display: flex;
  align-items: center;
}

.topbar .badge { width: 30px; height: 30px; flex: none; }

.topbar .brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 15px;
  color: var(--gold);
  margin-left: 12px;
}

.topbar .nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  list-style: none;
  align-items: center;
}

.topbar .nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color 0.3s ease;
  text-decoration: none;
}

.topbar .nav-links a:hover { color: var(--ink); }

.nav-cta {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 12.5px !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  color: var(--ink-on-gold) !important;
  background: var(--grad-gold);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-glow);
  transition: box-shadow 0.2s ease, transform 0.12s ease;
}

.nav-cta:hover {
  box-shadow: 0 0 30px rgba(236,208,150,.32);
  transform: translateY(-1px);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 28px 100px;
  position: relative;
  background:
    radial-gradient(130% 90% at 50% -10%, #24241f 0%, var(--bg) 55%, var(--bg-socket) 100%);
}

.hero-medallion {
  width: 148px;
  height: 148px;
  margin-bottom: var(--sp-3);
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.5));
}

.hero-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 8vw, 72px);
  letter-spacing: .32em;
  padding-left: .32em;
  margin-bottom: var(--sp-4);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: var(--sp-3);
  color: var(--ink);
  letter-spacing: .01em;
}

.hero h1 em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: var(--sp-5);
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========== BUTTONS ========== */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  border-radius: var(--r-pill);
  padding: 13px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--grad-gold);
  color: var(--ink-on-gold);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(236,208,150,.32);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold-dim);
  color: var(--gold);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(236,208,150,.06);
}

/* ========== SECTION PATTERNS ========== */
.sec {
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--hair-2);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 14px;
}

.sec-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: var(--sp-3);
  letter-spacing: .01em;
  color: var(--ink);
}

.sec-heading em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-desc {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: var(--sp-5);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--hair-2);
}

/* ========== PRODUCTS ========== */
.products { padding: var(--sp-6) 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  align-items: start;
}

.product-card {
  background: var(--bg-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2), var(--shadow-glow);
}

.product-visual {
  height: 240px;
  background:
    radial-gradient(60% 60% at 50% 38%, #2a2a26, #131311 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-visual-inner { position: relative; z-index: 1; }

.product-icon {
  width: 100px;
  height: 100px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--hair);
  background: rgba(236,208,150,.04);
}

.product-icon svg {
  width: 48px;
  height: 48px;
  opacity: 0.7;
}

.product-visual .product-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-glow { opacity: 0.22; }

.product-glow-kick { background: var(--gold-hi); }
.product-glow-snare { background: var(--gold-2); }

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
}

.pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hair);
  color: var(--ink-2);
}

.pill.on {
  border-color: transparent;
  background: rgba(126,244,113,.14);
  color: #7ef471;
}

.pill.soon {
  border-color: transparent;
  background: rgba(236,208,150,.12);
  color: var(--gold);
}

.product-info {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-desc { flex: 1; }

.product-actions { margin-top: auto; }

.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: .02em;
  color: var(--ink);
}

.product-type {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 16px;
  font-weight: 400;
}

.product-desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 400;
}

.product-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.product-card:hover .product-link { gap: 10px; }

.product-link svg { width: 12px; height: 12px; }

.product-price {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-current {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}

.price-original {
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: line-through;
}

.product-discount {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: #7ef471;
  background: rgba(126,244,113,.14);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-actions .btn-sm {
  padding: 9px 20px;
  font-size: 12.5px;
}

.product-actions .product-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  padding: 0;
}

.product-owned {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--gold);
}

.product-trial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  transition: all 0.2s ease;
  text-decoration: none;
}
.product-trial:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: rgba(236,208,150,.06);
}

/* Coming soon card */
.product-card-soon {
  border-style: dashed;
  border-color: var(--hair-2);
}

.product-card-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--hair);
}

.product-visual-img img {
  width: 80%;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-sm);
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.5));
}

.product-card-soon .product-visual {
  background: var(--bg-socket);
}

.product-icon-soon {
  background: transparent;
  border: 1px dashed var(--hair);
}

/* ========== PHILOSOPHY ========== */
.philosophy { padding: var(--sp-6) 0; }

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.philosophy-left .sec-heading {
  font-size: clamp(30px, 4.5vw, 48px);
  margin-bottom: 0;
}

.philosophy-right { padding-top: 8px; }

.philosophy-right p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 24px;
}

.philosophy-right p:last-child { margin-bottom: 0; }

.philosophy-values {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: var(--sp-5);
  grid-column: 1 / -1;
}

.value-item {
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--hair-2);
  border-radius: var(--r-lg);
  transition: border-color 0.3s ease;
}

.value-item:hover {
  border-color: var(--hair);
}

.value-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: .18em;
  margin-bottom: 14px;
  font-weight: 500;
}

.value-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: .01em;
}

.value-desc {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.6;
  font-weight: 400;
}

/* ========== FOUNDERS ========== */
.founders { padding: var(--sp-6) 0; }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: var(--sp-5);
}

.founder-card {
  background: var(--bg-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 40px;
  transition: border-color 0.3s ease;
}

.founder-card:hover {
  border-color: var(--gold-dim);
}

.founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-socket);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-dim);
  letter-spacing: .08em;
  border: 1px solid var(--hair);
}

.founder-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: .01em;
}

.founder-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.founder-desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  font-weight: 400;
}

/* ========== CTA ========== */
.cta-section {
  padding: var(--sp-6) 0;
  text-align: center;
  position: relative;
  background:
    radial-gradient(60% 50% at 50% 60%, rgba(236,208,150,.04), transparent 70%);
}

.cta-section .sec-heading {
  font-size: clamp(30px, 4.5vw, 48px);
  margin-bottom: var(--sp-3);
}

.cta-sub {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 460px;
  margin: 0 auto var(--sp-4);
  font-weight: 400;
  line-height: 1.7;
}

.email-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 13px 15px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--bg-socket);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  color: var(--ink);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.email-input::placeholder { color: var(--ink-3); }

.email-input:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(236,208,150,.12);
}

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid var(--hair);
  padding: var(--sp-5) 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.footer-brand .brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .1em;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 10px;
  transition: color 0.3s ease;
  font-weight: 400;
  text-decoration: none;
}

.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  margin-top: var(--sp-5);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--hair-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .04em;
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger > .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger > .fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .philosophy-values {
    grid-template-columns: 1fr;
  }
  .founders-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links {
    gap: 40px;
  }
  .topbar .nav-links {
    display: none;
  }
  .email-form {
    flex-direction: column;
  }
  .hero-medallion {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
}

/* ========== A/B DEMO PLAYER (Super Kick) ========== */
.skd {
  margin-top: var(--sp-3);
  padding-top: var(--sp-1);
}
.skd-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--sp-2);
}
.skd-label::before, .skd-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hair);
}
.skd-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--sp-2);
}
.skd-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--ink-3);
  background: transparent;
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  padding: 5px 16px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.skd-tab:hover { color: var(--ink-2); border-color: var(--gold-dim); }
.skd-tab.active {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: rgba(236,208,150,.06);
}
.skd-transport {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.skd-play {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: var(--grad-gold);
  color: var(--ink-on-gold);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: transform .12s ease, box-shadow .2s ease;
}
.skd-play:hover { transform: translateY(-1px); }
.skd-play:active { transform: translateY(0); }
.skd-play svg { width: 16px; height: 16px; display: block; }
.skd-play.loading { pointer-events: none; }
.skd-play.loading .skd-ico { display: none; }
.skd-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(26,24,19,.35);
  border-top-color: var(--ink-on-gold);
  border-radius: 50%;
  animation: skd-spin .7s linear infinite;
}
.skd-play.loading .skd-spinner { display: block; }
@keyframes skd-spin { to { transform: rotate(360deg); } }
.skd-ab {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  overflow: hidden;
  background: var(--bg-socket);
}
.skd-ab-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 6px;
  background: transparent;
  border: none;
  color: var(--ink-3);
  cursor: pointer;
  transition: color .2s ease, background .25s ease;
}
.skd-ab-btn.active { color: var(--ink-on-gold); background: var(--grad-gold); }
.skd-ab-btn:not(.active):hover { color: var(--ink-2); }
.skd-progress {
  margin-top: var(--sp-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.skd-bar {
  flex: 1;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--hair-2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.skd-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--grad-gold);
  border-radius: var(--r-pill);
}
.skd-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: .04em;
  white-space: nowrap;
  min-width: 76px;
  text-align: right;
}
.skd-error {
  margin-top: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 11px;
  color: #cf9385;
  display: none;
}
.skd.has-error .skd-error { display: block; }
.skd button:focus-visible, .skd .skd-bar:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ========== PRODUCT PAGE (PDP) ========== */
.pdp { padding: 120px 0 var(--sp-6); }
.pdp-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: var(--sp-4); transition: color .2s ease;
}
.pdp-back:hover { color: var(--gold); }
.pdp-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-5); align-items: center;
}
.pdp-visual {
  border: 1px solid var(--hair); border-radius: var(--r-lg);
  overflow: hidden; background: var(--bg-2);
}
.pdp-visual img { width: 100%; height: auto; display: block; }
.pdp-type {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-dim); margin-bottom: 12px;
}
.pdp-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 5vw, 52px); line-height: 1.1;
  color: var(--ink); margin-bottom: var(--sp-3);
}
.pdp-price {
  font-size: 22px; font-weight: 600; color: var(--gold);
  margin-bottom: var(--sp-3); display: flex; align-items: baseline; gap: 12px;
}
.pdp-price .price-original { color: var(--ink-3); font-size: 16px; text-decoration: line-through; }
.pdp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--sp-3); }
.pdp-desc { color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.pdp-body {
  border-top: 1px solid var(--hair-2);
  margin-top: var(--sp-5); padding-top: var(--sp-5);
}
.pdp-body h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 3vw, 30px); color: var(--ink); margin-bottom: var(--sp-3);
}
.pdp-body p { color: var(--ink-2); line-height: 1.8; margin-bottom: var(--sp-3); max-width: 70ch; }
.pdp-samples { margin-top: var(--sp-5); max-width: 640px; }
.pdp-samples .skd { margin-top: 0; padding-top: 0; border: none; }
@media (max-width: 820px) {
  .pdp-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}
.skd-tab-more { margin-left: auto; color: var(--gold-dim); }
.skd-tab-more:hover { color: var(--gold); border-color: var(--gold-dim); background: rgba(236,208,150,.06); }
