@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900&display=swap');

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

:root {
  --black:   #000201;
  --surface: #0E0E0E;
  --surface-2: #161616;
  --surface-3: #1E1E1E;
  --border:  rgba(255,255,255,0.07);
  --border-hi: rgba(255,255,255,0.13);
  --text:    #FAFAFA;
  --text-2:  #999999;
  --text-3:  #555555;
  --accent:  #C8FF00;
  --accent-dim: rgba(200,255,0,0.10);
  --emerald: #34D399;
  --emerald-dim: rgba(52,211,153,0.10);
  --grad: linear-gradient(135deg, #34D399 0%, #C8FF00 100%);
  --grad-h: linear-gradient(90deg,  #34D399 0%, #C8FF00 100%);
  --border-lime: rgba(200,255,0,0.11);
  --border-lime-hi: rgba(200,255,0,0.24);
  --nav-h:   68px;
  --max-w:   1240px;
  --r:       10px;
  --r-lg:    16px;
  --ease:    0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }

/* ── Type ── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
}

.display {
  font-size: clamp(48px, 7.5vw, 100px);
  font-weight: 900;
  letter-spacing: -0.038em;
  line-height: 1.02;
}

.heading {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.1;
}

.subheading {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn-primary { background: var(--grad); color: var(--black); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 0 28px rgba(52,211,153,0.22); }

.btn-outline { border: 1px solid var(--border-hi); color: var(--text); }
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: var(--surface); }

.btn-ghost { color: var(--text-2); }
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: 9px; }

/* ── Navbar ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(0,2,1,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.nav-wordmark {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-right: 36px;
  flex-shrink: 0;
}
.bang { color: var(--emerald); }

.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 7px;
  transition: all var(--ease);
}
.nav-link:hover,
.nav-item:hover > .nav-link { color: var(--text); background: var(--surface); }

.nav-caret {
  width: 14px; height: 14px;
  opacity: 0.4;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-item:hover > .nav-link .nav-caret { transform: rotate(180deg); opacity: 0.8; }

/* ── Dropdown ── */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.16s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dd-item {
  display: block;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--ease);
}
.dd-item:hover { background: var(--surface-2); color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }

.nav-signin {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 7px 14px;
  border-radius: 7px;
  transition: all var(--ease);
}
.nav-signin:hover { color: var(--text); background: var(--surface); }

.nav-join {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--black);
  background: var(--grad);
  padding: 8px 18px;
  border-radius: 7px;
  transition: all var(--ease);
}
.nav-join:hover { filter: brightness(1.08); box-shadow: 0 0 20px rgba(52,211,153,0.22); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1002;
  padding: 84px 28px 40px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }

.mob-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 24px;
  color: var(--text-2);
  background: none; border: none; cursor: pointer;
}

.mob-group { border-bottom: 1px solid var(--border); padding: 16px 0; }
.mob-group-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.mob-links { display: flex; flex-direction: column; gap: 2px; }
.mob-links a { display: block; padding: 9px 0; font-size: 15px; color: var(--text-2); }
.mob-links a:hover { color: var(--text); }
.mob-actions { padding-top: 24px; display: flex; flex-direction: column; gap: 10px; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 0%, rgba(52,211,153,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 80% 0%, rgba(200,255,0,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px 5px 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 36px;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--grad);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-out infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(100,230,160,0.6); }
  60%  { box-shadow: 0 0 0 7px rgba(100,230,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(100,230,160,0); }
}

.hero-title { margin-bottom: 24px; }
.hero-title .line2 { display: block; color: var(--accent); }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

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

/* ── Marquee ── */
.marquee-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-label { text-align: center; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 20px; }
.marquee-wrap { overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  padding: 0 28px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.marquee-logo {
  width: 18px; height: 18px;
  opacity: 0.8;
  flex-shrink: 0;
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Vydia-style feature grid ── */
.feat-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-lime);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.feat-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--border-lime);
  border-bottom: 1px solid var(--border-lime);
  transition: background var(--ease);
}

.feat-cell:nth-child(3n) { border-right: none; }
.feat-cell:nth-last-child(-n+3) { border-bottom: none; }
.feat-cell:hover { background: rgba(255,255,255,0.018); }

.feat-cell h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.feat-cell p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
}

.feat-cell a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 14px;
  transition: gap var(--ease);
}
.feat-cell a:hover { gap: 8px; }

/* ── Section header ── */
.sec-hd { margin-bottom: 52px; }
.sec-hd.center { text-align: center; max-width: 520px; margin-left: auto; margin-right: auto; }
.sec-hd h2 { margin-bottom: 14px; }
.sec-hd p { color: var(--text-2); font-size: 16px; line-height: 1.65; }

/* ── For-whom ── */
.whom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-lime);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.whom-col {
  padding: 40px 32px;
  border-right: 1px solid var(--border-lime);
  transition: background var(--ease);
}
.whom-col:last-child { border-right: none; }
.whom-col:hover { background: rgba(255,255,255,0.018); }

.whom-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.whom-col h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.whom-list { display: flex; flex-direction: column; gap: 10px; }
.whom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.whom-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── CTA band ── */
.cta-band {
  background: var(--surface);
  border: 1px solid var(--border-lime);
  border-radius: var(--r-lg);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: var(--accent);
  filter: blur(100px);
  opacity: 0.04;
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(28px,4.5vw,52px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 14px; }
.cta-band p  { color: var(--text-2); font-size: 17px; margin-bottom: 36px; }
.cta-band .btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Let's talk row ── */
.talk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--surface);
  border: 1px solid var(--border-lime);
  border-radius: var(--r-lg);
  padding: 52px 56px;
  margin-bottom: 72px;
}
.talk-text h3 { font-size: clamp(22px,3vw,32px); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 6px; }
.talk-text p  { font-size: 15px; color: var(--text-2); }

/* ── Footer ── */
.footer { border-top: 1px solid var(--border); padding: 72px 0 40px; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .wordmark { font-size: 28px; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 14px; }
/* .bang handles footer wordmark too */
.footer-brand p { font-size: 13.5px; color: var(--text-2); max-width: 220px; line-height: 1.6; }

.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13.5px; color: var(--text-2); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 12.5px; color: var(--text-3); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 12.5px; color: var(--text-3); transition: color var(--ease); }
.footer-links a:hover { color: var(--text-2); }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 152px 0 72px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ph-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% -10%, rgba(200,255,0,0.055) 0%, transparent 60%);
  pointer-events: none;
}
.ph-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 75%);
  pointer-events: none;
}
.ph-content { position: relative; z-index: 1; }

/* ── Split layout ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }

/* ── Feature list ── */
.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-2); line-height: 1.55; }
.feat-check {
  width: 18px; height: 18px;
  background: var(--emerald-dim);
  border: 1px solid rgba(52,211,153,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--emerald); font-size: 10px;
  margin-top: 2px;
}

/* ── Info card ── */
.info-box {
  background: var(--surface);
  border: 1px solid var(--border-lime);
  border-radius: var(--r-lg);
  padding: 36px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.info-row:last-child { border-bottom: none; }
.info-row .lbl { color: var(--text-2); }
.info-row .val { font-weight: 600; }

/* ── Pill wrap ── */
.pill-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  background: var(--surface-2);
  border: 1px solid var(--border-lime);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--ease);
}
.pill:hover { border-color: var(--border-lime-hi); color: var(--text); }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); margin-bottom: 18px; }
.breadcrumb a { color: var(--text-3); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--text-2); }
.breadcrumb .sep { opacity: 0.3; }

/* ── Card (inner pages) ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border-lime);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.22s ease;
}
.card:hover { border-color: var(--border-lime-hi); transform: translateY(-2px); box-shadow: 0 0 28px rgba(200,255,0,0.05); }
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 9px; letter-spacing: -0.01em; }
.card p  { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── Resources card ── */
.res-card {
  background: var(--surface);
  border: 1px solid var(--border-lime);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: all 0.22s ease;
}
.res-card:hover { border-color: var(--border-lime-hi); transform: translateY(-2px); box-shadow: 0 0 28px rgba(200,255,0,0.05); }
.res-card .tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.res-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 10px; }
.res-card p  { font-size: 13.5px; color: var(--text-2); line-height: 1.6; flex: 1; }
.res-card .res-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--accent); margin-top: 18px; transition: gap var(--ease); }
.res-card .res-link:hover { gap: 8px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--emerald); }
.faq-icon { font-size: 20px; color: var(--text-3); transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--emerald); }
.faq-a { display: none; padding-bottom: 20px; font-size: 14.5px; color: var(--text-2); line-height: 1.65; }
.faq-item.open .faq-a { display: block; }

/* ── Form ── */
.form-group  { margin-bottom: 16px; }
.form-label  { display: block; font-size: 13px; font-weight: 500; color: var(--text-2); margin-bottom: 6px; }
.form-label .req { color: var(--accent); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: all var(--ease);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(52,211,153,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: var(--surface); color: var(--text); }
.form-textarea { resize: vertical; min-height: 108px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-wrap { position: relative; }
.social-pfx { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: 0.06em; pointer-events: none; }
.social-wrap .form-input { padding-left: 52px; }
.form-hint { font-size: 12px; color: var(--text-3); margin-top: 5px; }
.form-btn {
  width: 100%; padding: 14px;
  background: var(--grad); color: var(--black);
  border: none; border-radius: 8px;
  font-size: 14.5px; font-weight: 700;
  cursor: pointer; transition: all var(--ease);
  margin-top: 4px;
}
.form-btn:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 0 24px rgba(52,211,153,0.22); }

/* ── Join split ── */
.join-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1.15fr; }
.join-left {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 0 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.join-right { padding: 80px 56px; overflow-y: auto; }

.join-perks { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.join-perk { display: flex; align-items: flex-start; gap: 14px; }
.join-perk-line {
  width: 1px; height: 24px;
  background: var(--border-hi);
  flex-shrink: 0; margin-top: 8px;
}
.join-perk-text h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 2px; }
.join-perk-text p  { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ── Stat numbers (inner page use only) ── */
.stat-xl {
  font-size: clamp(36px,5vw,56px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

/* ── Feature Slider ── */
.feat-slider-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feat-slide {
  display: none;
  padding: 96px 0 20px;
}
.feat-slide.active {
  display: block;
  animation: slideIn 0.38s cubic-bezier(0.22,1,0.36,1) both;
}
.feat-slide.slide-out {
  animation: slideOut 0.22s ease both;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.feat-slide-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.feat-slide-num {
  display: block;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--text-3);
  margin-bottom: 28px;
}

.feat-slide-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.97;
  margin-bottom: 28px;
}

.feat-slide-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 32px;
}

.feat-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--emerald);
  transition: gap var(--ease);
}
.feat-slide-link:hover { gap: 12px; }

.feat-slide-visual {
  height: 420px;
  border: 1px solid var(--border-lime);
  border-radius: var(--r-lg);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feat-slider-footer {
  padding: 40px 0 64px;
}

.feat-slider-nav {
  display: flex;
  gap: 10px;
}

.feat-nav-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-lime);
  background: none;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
}
.feat-nav-btn:hover {
  border-color: var(--border-lime-hi);
  background: var(--surface);
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(200,255,0,0.08);
}

/* ── Slide Visuals ── */

/* Distribution — floating tags */
.vis-tags {
  position: relative;
  width: 100%; height: 100%;
}
.vis-tag {
  position: absolute;
  top: 50%; left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  padding: 9px 20px 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.vis-tag svg { flex-shrink: 0; width: 18px; height: 18px; }

/* Royalties — earnings display */
.vis-royalties {
  padding: 28px;
  width: 100%;
}
.vis-roy-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.vis-roy-amount {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.vis-roy-amount span { font-size: 0.6em; opacity: 0.7; }
.vis-roy-change {
  font-size: 12.5px;
  color: var(--emerald);
  margin-bottom: 28px;
}
.vis-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 80px;
  margin-bottom: 12px;
}
.vis-bar {
  flex: 1;
  height: var(--h, 50%);
  background: var(--surface-3);
  border-radius: 4px 4px 0 0;
  border: 1px solid var(--border);
  transition: height 0.3s ease;
}
.vis-bar-hi { background: var(--grad); border-color: transparent; }
.vis-roy-platforms {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* Publishing — certificate card */
.vis-publishing {
  width: 100%;
  padding: 32px;
}
.vis-pub-doc {
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  padding: 28px;
}
.vis-pub-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.vis-pub-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.vis-pub-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vis-pub-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.vis-pub-row:last-child { border-bottom: none; }
.vis-pub-row span:first-child { color: var(--text-3); }
.vis-pub-row span:last-child { font-weight: 600; }
.vis-pub-badge {
  background: var(--emerald-dim);
  color: var(--emerald);
  border: 1px solid rgba(52,211,153,0.22);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
}

/* Analytics — chart */
.vis-analytics {
  width: 100%;
  padding: 24px;
  overflow: hidden;
}
.vis-analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.vis-analytics-header span { font-size: 11px; color: var(--text-3); letter-spacing: 0.05em; text-transform: uppercase; }
.vis-analytics-header strong { font-size: clamp(20px, 3vw, 28px); font-weight: 900; letter-spacing: -0.03em; }
.vis-chart { width: 100%; height: auto; margin-bottom: 16px; display: block; max-height: 100px; }
.vis-analytics-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.vis-analytics-stat {
  flex: 1;
  padding: 10px 12px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.vis-analytics-stat:last-child { border-right: none; }
.vis-analytics-stat span { display: block; font-size: 10px; color: var(--text-3); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vis-analytics-stat strong { font-size: 12px; font-weight: 600; white-space: nowrap; }

/* YouTube Content ID */
.vis-contentid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 36px;
}
.vis-cid-play {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--emerald-dim);
  border: 1px solid rgba(52,211,153,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  box-shadow: 0 0 40px rgba(52,211,153,0.10);
}
.vis-cid-badge {
  background: var(--emerald-dim);
  color: var(--emerald);
  border: 1px solid rgba(52,211,153,0.22);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.vis-cid-stats {
  display: flex;
  gap: 40px;
}
.vis-cid-stat span { display: block; font-size: 11px; color: var(--text-3); margin-bottom: 4px; }
.vis-cid-stat strong { font-size: 22px; font-weight: 800; letter-spacing: -0.025em; }

/* Smart Links */
.vis-smartlink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px 28px;
  text-align: center;
}
.vis-sl-url {
  background: var(--surface-2);
  border: 1px solid var(--border-lime);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: 0.01em;
}
.vis-sl-arrow { color: var(--text-3); opacity: 0.4; }
.vis-sl-platforms {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.vis-sl-pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-align: left;
}

/* ── Hero orbs ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
}
.hero-orb-1 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(52,211,153,0.09) 0%, transparent 68%);
  top: -220px; left: -260px;
  animation: orb1 22s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 68%);
  bottom: -160px; right: -180px;
  animation: orb2 28s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(126,232,155,0.05) 0%, transparent 68%);
  top: 35%; left: 55%;
  animation: orb3 19s ease-in-out infinite alternate;
}
@keyframes orb1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(80px, 60px) scale(1.12); }
}
@keyframes orb2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, -80px) scale(1.08); }
}
@keyframes orb3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-50px, 40px) scale(0.92); }
}

/* ── Numbered feature grid (Vydia-style, all visible at once) ── */
.num-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.num-feat-cell {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
  position: relative;
}
.num-feat-cell:nth-child(2n)       { border-right: none; }
.num-feat-cell:nth-last-child(-n+2){ border-bottom: none; }
.num-feat-cell:hover { background: rgba(255,255,255,0.018); }
.num-feat-number {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.num-feat-cell h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}
.num-feat-cell p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 380px;
}
.num-feat-cell a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 18px;
  transition: gap var(--ease);
}
.num-feat-cell a:hover { gap: 8px; }

/* ── Anim ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.anim { animation: fadeUp 0.55s ease both; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }
.d4 { animation-delay: 0.32s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .feat-table { grid-template-columns: repeat(2, 1fr); }
  .feat-cell:nth-child(3n) { border-right: 1px solid var(--border); }
  .feat-cell:nth-child(2n) { border-right: none; }
  .feat-cell:nth-last-child(-n+2) { border-bottom: none; }
  .feat-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .whom-row { grid-template-columns: 1fr; }
  .whom-col { border-right: none; border-bottom: 1px solid var(--border); }
  .whom-col:last-child { border-bottom: none; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.rev { direction: ltr; }
}

@media (max-width: 1024px) {
  .feat-slide-grid { grid-template-columns: 1fr; gap: 32px; }
  .feat-slide-visual { height: auto; min-height: 260px; }
  .feat-slide-title { font-size: clamp(36px, 6vw, 56px); }
  .vis-tags { height: 260px; }
  .feat-slide { padding: 64px 0 0; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 20px; }
  .feat-table { grid-template-columns: 1fr; }
  .feat-cell { border-right: none !important; }
  .feat-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .feat-cell:last-child { border-bottom: none; }
  .num-feat-grid { grid-template-columns: 1fr; }
  .num-feat-cell { border-right: none !important; }
  .num-feat-cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .num-feat-cell:last-child { border-bottom: none; }
  .num-feat-cell { padding: 32px 24px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 24px; }
  .talk-row { flex-direction: column; text-align: center; padding: 40px 24px; }
  .section { padding: 64px 0; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-orb-1 { width: 360px; height: 360px; top: -80px; left: -120px; }
  .hero-orb-2 { width: 280px; height: 280px; }
  .hero-orb-3 { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .join-wrap { grid-template-columns: 1fr; }
  .join-left { display: none; }
  .join-right { padding: 100px 24px 60px; }
  .page-hero { padding: 120px 0 56px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
