*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --white: #ffffff;
  --off-white: #f5f5f7;
  --light: #e8e8ed;
  --mid-light: #d2d2d7;
  --mid: #86868b;
  --dark-mid: #6e6e73;
  --dark: #1d1d1f;
  --black: #000000;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --gold: #bf9b5a;
  --gold-light: #d4b47e;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 56px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--dark);
}
.nav-logo svg { width: 28px; height: 18px; }
.nav-logo-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-links a.nav-active {
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.75);
  padding-bottom: 2px;
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-signin { font-size: 13px; color: var(--blue); text-decoration: none; }
.nav-signin:hover { text-decoration: underline; }

/* Profile icon button in nav */
.nav-profile-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bf9b5a 0%, #d4b47e 100%);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
  overflow: hidden;
  position: relative;
}
.nav-profile-btn:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(191,155,90,0.4); }
.nav-profile-btn img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: none; }
.nav-profile-btn .nav-profile-initial {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
}

/* Profile switcher dropdown */
.nav-profile-wrap { position: relative; display: none; align-items: center; }
.nav-profile-wrap.visible { display: flex; }
.profile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(18,18,18,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 10px;
  min-width: 200px;
  z-index: 1000;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.profile-dropdown.open { display: block; }
.profile-dropdown-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 4px 8px 8px;
}
.profile-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.profile-dd-item:hover { background: rgba(255,255,255,0.07); }
.profile-dd-item.active-profile { background: rgba(191,155,90,0.1); }
.profile-dd-avatar {
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.profile-dd-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
.profile-dd-check { font-size: 13px; color: #bf9b5a; }
.profile-dd-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 6px 0; }
.profile-dd-link {
  display: block;
  padding: 9px 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.profile-dd-link:hover { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.8); }

.btn-pill {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 980px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-pill:hover { background: var(--blue-hover); }

.btn-pill-lg {
  padding: 9px 18px;
  font-size: 14px;
}

.btn-link {
  background: transparent;
  color: var(--blue);
  border: none;
  font-family: inherit;
  font-size: 17px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: color 0.15s;
}
.btn-link:hover { color: var(--blue-hover); }
.btn-link::after { content: ' ›'; }

.btn-link-white { color: rgba(255,255,255,0.75); }
.btn-link-white:hover { color: #fff; }

/* ─── HERO ─── */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(191,155,90,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,113,227,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-h1 {
  font-size: clamp(44px, 6.8vw, 110px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.03;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-h1 .gold {
  background: linear-gradient(135deg, #d4b47e 0%, #f0d9a8 45%, #bf9b5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  max-width: 520px;
  line-height: 1.58;
  letter-spacing: -0.01em;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-chevron {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
  z-index: 2;
}

.chevron-icon {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.25);
  border-bottom: 1.5px solid rgba(255,255,255,0.25);
  transform: rotate(45deg);
  animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
  0%,100% { transform: rotate(45deg) translate(0,0); }
  50% { transform: rotate(45deg) translate(3px,3px); }
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to { opacity:1; transform:translateY(0); }
}

/* ─── DARK TAGLINE ─── */
.tagline {
  background: var(--black);
  padding: 0 24px 110px;
  text-align: center;
}
.tagline h2 {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.88);
  line-height: 1.14;
  max-width: 680px;
  margin: 0 auto;
}
.tagline h2 em { font-style: normal; color: var(--gold-light); }

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  background: var(--black);
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header .hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.page-header h1 .gold {
  background: linear-gradient(135deg, #d4b47e 0%, #f0d9a8 45%, #bf9b5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  max-width: 540px;
  line-height: 1.58;
  letter-spacing: -0.01em;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── SECTION ─── */
.section { padding: 110px 24px; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.bg-white { background: var(--white); }
.bg-off { background: var(--off-white); }
.bg-black { background: var(--black); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.chip-gold { color: var(--gold-light); }

.sec-h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.06;
  color: var(--dark);
  margin-bottom: 16px;
}
.sec-h2.light { color: var(--white); }

.sec-p {
  font-size: 19px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.sec-p.light { color: rgba(255,255,255,0.5); }

/* ─── HOW IT WORKS — 3 UP ─── */
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
  border-radius: 20px;
  overflow: visible;
  max-width: 1100px;
  margin: 0 auto;
}
.three-card {
  background: var(--white);
  padding: 48px 36px;
  transition: background 0.2s;
}
.bg-off .three-card { background: var(--off-white); }
.bg-off .three-card:hover { background: var(--white); }
.three-card:hover { background: var(--off-white); }
.three-num {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--mid-light);
  line-height: 1;
  margin-bottom: 20px;
}
.three-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 10px;
}
.three-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
}

/* ─── TILE GRID ─── */
.tile-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.tile-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.tile-dark {
  background: #1c1c1e;
  border-radius: 20px;
  padding: 40px 32px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.2s;
}
.tile-dark:hover { transform: translateY(-4px); background: #2c2c2e; }

.tile-light {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--light);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;
}
.tile-light:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

.tile-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.icon-blue  { background: rgba(0,113,227,0.14); }
.icon-gold  { background: rgba(191,155,90,0.14); }
.icon-gray  { background: rgba(134,134,139,0.14); }

.tile-dark h3 {
  font-size: 24px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 10px;
}
.tile-dark p { font-size: 15px; color: rgba(255,255,255,0.48); line-height: 1.65; margin-bottom: 24px; }
.tile-dark .tag { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; display:block; }
.tile-dark .big-num { font-size: 38px; font-weight: 600; letter-spacing: -0.03em; color: var(--white); }
.tile-dark .big-num sub { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.35); letter-spacing: 0; }

.tile-light h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--dark); margin-bottom: 12px; }
.tile-light .phase { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--mid); margin-bottom: 12px; }
.tile-light .big-num-blue { font-size: 44px; font-weight: 600; letter-spacing: -0.04em; color: var(--blue); line-height: 1; margin-bottom: 12px; }
.tile-light p { font-size: 13px; color: var(--mid); line-height: 1.65; }

.feature-pills {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 0;
}
.feature-pills li {
  font-size: 14px; color: rgba(255,255,255,0.42);
  display: flex; align-items: center; gap: 10px;
}
.feature-pills li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); opacity: 0.55; flex-shrink: 0;
}

/* ─── SPLIT LAYOUT ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.split-text .sec-h2 { text-align: left; }
.split-text .sec-p { text-align: left; }
.split-text .chip { display: block; text-align: left; }

/* archive filters */
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 36px; }
.fpill {
  background: rgba(0,0,0,0.05); border: none; border-radius: 980px;
  padding: 6px 14px; font-family: inherit; font-size: 13px; color: var(--dark-mid);
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.fpill:hover, .fpill.active { background: var(--blue); color: #fff; }
.perf-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* perf cards */
.card-stack { display: flex; flex-direction: column; gap: 10px; }
.perf-card {
  background: var(--white); border-radius: 16px; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  cursor: pointer; transition: transform 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s;
}
.perf-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.perf-card h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: var(--dark); margin-bottom: 3px; }
.perf-card p { font-size: 13px; color: var(--mid); }
.badge {
  font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 980px; white-space: nowrap;
}
.badge-free  { background: rgba(52,199,89,0.1); color: #1a7a3a; }
.badge-pass  { background: rgba(0,113,227,0.1); color: var(--blue); }
.badge-vault { background: rgba(191,155,90,0.1); color: var(--gold); }

/* artist features */
.promise-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
}
.promise-card {
  background: var(--off-white); border-radius: 16px; padding: 26px 22px; transition: background 0.2s;
}
.promise-card:hover { background: var(--light); }
.promise-card .ico { font-size: 20px; margin-bottom: 12px; display: block; }
.promise-card h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--dark); margin-bottom: 5px; }
.promise-card p { font-size: 13px; color: var(--mid); line-height: 1.55; }

.feat-table { background: var(--off-white); border-radius: 18px; overflow: hidden; border: 1px solid var(--light); }
.feat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 17px 22px; border-bottom: 1px solid var(--light); transition: background 0.15s;
}
.feat-row:last-child { border-bottom: none; }
.feat-row:hover { background: var(--white); }
.feat-row span:first-child { font-size: 15px; color: var(--dark); }
.s-ok   { font-size: 12px; font-weight: 500; color: #1a7a3a; background: rgba(52,199,89,0.1); padding: 3px 10px; border-radius: 980px; }
.s-beta { font-size: 12px; font-weight: 500; color: var(--gold); background: rgba(191,155,90,0.1); padding: 3px 10px; border-radius: 980px; }
.s-soon { font-size: 12px; font-weight: 500; color: var(--mid); background: rgba(134,134,139,0.1); padding: 3px 10px; border-radius: 980px; }

/* ─── CTA ─── */
.cta-section {
  background: var(--black);
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(0,113,227,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .sec-h2 { font-size: clamp(44px, 6vw, 80px); margin-bottom: 20px; }
.cta-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }

/* ─── FOOTER ─── */
footer { background: var(--off-white); border-top: 1px solid var(--light); padding: 48px 24px 36px; }
.foot-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid var(--light);
}
.foot-col h4 { font-size: 12px; font-weight: 600; color: var(--dark); margin-bottom: 14px; }
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 10px; }
.foot-col ul li a { font-size: 12px; color: var(--mid); text-decoration: none; transition: color 0.15s; }
.foot-col ul li a:hover { color: var(--dark); }
.foot-bottom {
  max-width: 1200px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.foot-bottom p { font-size: 12px; color: var(--mid); }
.foot-links { display: flex; gap: 20px; list-style: none; }
.foot-links a { font-size: 12px; color: var(--mid); text-decoration: none; transition: color 0.15s; }
.foot-links a:hover { color: var(--dark); }

/* ─── REVEAL ─── */
.rv {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.rv.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
/* ─── HAMBURGER MENU ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none; border: none;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  padding: 12px 0 20px;
  flex-direction: column;
}
.nav-mobile-drawer a {
  display: block;
  padding: 13px 28px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.15s, background 0.15s;
}
.nav-mobile-drawer a:hover,
.nav-mobile-drawer a.nav-active { color: #fff; background: rgba(255,255,255,0.05); }
.nav-mobile-drawer a.nav-active { border-left: 2px solid rgba(255,255,255,0.6); padding-left: 26px; }
.nav-mobile-drawer .drawer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 10px 28px;
}
.nav-mobile-drawer .drawer-cta {
  margin: 8px 28px 0;
  display: flex; gap: 10px; align-items: center;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right .nav-signin,
  .nav-right .btn-pill:not(.nav-hamburger) { display: none !important; }
  .nav-profile-wrap { display: none; }
  .nav-profile-wrap.visible { display: flex; }

  .three-up, .tile-grid-3, .tile-grid-4, .split { grid-template-columns: 1fr; }
  .three-up { border-radius: 16px; }
  .three-card:first-child, .three-card:last-child { border-radius: 0; }
  .promise-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: repeat(2,1fr); }

  /* Hero */
  .hero { padding: 0; }
  .hero-h1 { font-size: clamp(36px, 9.5vw, 60px); letter-spacing: -0.03em; text-shadow: 0 2px 24px rgba(0,0,0,0.6); }
  .hero-sub { font-size: 15px; max-width: 320px; text-shadow: 0 1px 12px rgba(0,0,0,0.7); }
  .hero-eyebrow { font-size: 12px; letter-spacing: 0.04em; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .btn-pill-lg { padding: 11px 22px; font-size: 14px; }
  #hero-content { padding: 0 20px 20vh; }
  #hero-logo { height: 160px !important; width: 300px !important; margin-bottom: -40px !important; }
  #hero-vinyl { display: none; }

  /* Section spacing */
  .section-inner { padding-left: 20px; padding-right: 20px; }
  section { padding-top: 72px !important; padding-bottom: 72px !important; }

  /* Born in Britain grid */
  .born-grid, [style*="grid-template-columns:1fr 1fr"] { display: block !important; }
  [style*="grid-template-columns:1fr 1fr"] > * { margin-bottom: 40px; }

  /* Footer */
  .foot-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  footer { padding: 48px 20px 32px; }

  /* Tagline */
  .tagline { padding: 48px 20px; }
  .tagline h2 { font-size: clamp(22px, 6vw, 36px); }

  /* Card grids */
  [style*="repeat(auto-fit,minmax(220px"] { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }

  /* Archive / section headings */
  h2 { font-size: clamp(28px, 7vw, 48px) !important; }
}

/* ─── LOGO ─── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Remove old text logo style */
.nav-logo-text { display: none; }

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: none;
  transition: opacity 0.15s;
  mix-blend-mode: screen;
}
.nav-logo-img:hover { opacity: 0.55; }

/* Hero — large logo inverted to white on dark background */
.hero-logo-wrap {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.1s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: invert(1);
}

/* ─── LOGO ─── */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-text { display: none; }

/* Hero — white logo on dark bg, show as-is */
.hero-logo-wrap {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.1s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: none;
}
.feat-link{
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}

.feat-link:hover{
  background: rgba(0,0,0,0.02);
}

.feat-disabled{
  opacity:0.65;
  cursor:not-allowed;
}
.profile-row input{
  width:100%;
  max-width:420px;
  padding:12px 14px;
  border:1px solid #d2d2d7;
  border-radius:12px;
  font-family:inherit;
  font-size:14px;
  color:#1d1d1f;
  background:#fff;
}

.profile-row input:focus{
  outline:none;
  border-color:#0071e3;
}

.dash-note{
  margin-top:14px;
  font-size:14px;
  color:#86868b;
}

#youtube,
#uploads,
#monetisation,
#membership,
#ai{
  scroll-margin-top:40px;
}
