/* ============================================================
   OPERATIVE SUMMIT — Design System v2
   Summit Your Craft.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
  --navy:        #1a2744;
  --navy-dark:   #0f1928;
  --navy-mid:    #1e2f50;
  --navy-light:  #243460;
  --gold:        #c9a84c;
  --gold-light:  #dfc07a;
  --gold-dark:   #a88630;
  --black:       #080c14;
  --white:       #ffffff;
  --off-white:   #f7f8fb;
  --gray-light:  #eaecf2;
  --gray:        #8a93ab;
  --text-dark:   #0f1928;
  --text-body:   #4a5568;
  --text-light:  #6b7590;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(15,25,40,0.10);
  --shadow-lg:  0 16px 56px rgba(15,25,40,0.18);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.30);

  --max-width: 1160px;
  --section-pad: 100px 24px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.78; }

.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad); }
.section--dark  { background: var(--navy-dark); }
.section--navy  { background: var(--navy); }
.section--black { background: var(--black); }
.section--off-white { background: var(--off-white); }

.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4,
.section--black h1, .section--black h2, .section--black h3, .section--black h4 {
  color: var(--white);
}
.section--dark p, .section--navy p, .section--black p {
  color: rgba(255,255,255,0.75);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-header .label { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { font-size: 1.05rem; color: var(--text-light); }
.section--dark .section-header p,
.section--navy .section-header p { color: rgba(255,255,255,0.68); }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav--transparent {
  background: transparent;
}
.nav--scrolled {
  background: rgba(10, 18, 35, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img { height: 50px; width: auto; }
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__links a.active { color: var(--gold); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
  border-radius: var(--radius) !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav__cta:hover {
  background: var(--gold-light) !important;
  box-shadow: var(--shadow-gold) !important;
  color: var(--navy-dark) !important;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.40);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.70);
  transform: translateY(-1px);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--lg {
  font-size: 1rem;
  padding: 17px 38px;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* === VIDEO HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,12,20,0.35) 0%,
    rgba(8,12,20,0.50) 40%,
    rgba(8,12,20,0.80) 80%,
    rgba(8,12,20,0.95) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  width: 100%;
}
.hero__logo {
  height: 360px;
  width: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.hero__logo-fallback {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  display: none;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.50);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* === AUDIENCE SPLIT === */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.audience-card {
  padding: 72px 56px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: filter 0.3s;
}
.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.audience-card:hover::before { opacity: 1; }
.audience-card:hover { filter: brightness(1.05); }
.audience-card--or {
  background: var(--navy-mid);
}
.audience-card--or::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08), transparent 70%);
}
.audience-card--vendor {
  background: var(--navy-dark);
  border-left: 1px solid rgba(201,168,76,0.15);
}
.audience-card--vendor::before {
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08), transparent 70%);
}
.audience-card .label { margin-bottom: 16px; }
.audience-card h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
  line-height: 1.2;
}
.audience-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  max-width: 380px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.audience-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap 0.2s;
}
.audience-card:hover .audience-card__arrow { gap: 16px; }
.audience-card__arrow::after { content: '→'; }

/* === MANIFESTO === */
.manifesto {
  background: var(--black);
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto::before,
.manifesto::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
}
.manifesto::before { top: 0; height: 60px; }
.manifesto::after  { bottom: 0; height: 60px; }
.manifesto__rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 48px;
  opacity: 0.6;
}
.manifesto__rule--bottom { margin: 48px auto 0; }
.manifesto__line {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.manifesto__line em {
  font-style: normal;
  color: var(--gold);
}
.manifesto__sub {
  margin-top: 28px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--navy-dark);
  padding: 72px 24px;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.stats-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
}

/* === MISSION BAR === */
.mission-bar {
  background: var(--navy);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.08), transparent 65%);
  pointer-events: none;
}
.mission-statement {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--white);
  font-style: italic;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
  flex-wrap: wrap;
  line-height: 1.3;
}
.mission-word { display: inline; }
.mission-dot { color: var(--gold); font-style: normal; }
.mission-tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-top: 36px;
  text-align: center;
}
.mission-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}

/* === WHITESPACE GRID === */
.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gap-item {
  background: var(--white);
  padding: 40px 36px;
}
.gap-item__icon { font-size: 2rem; margin-bottom: 18px; }
.gap-item h4 { margin-bottom: 10px; font-size: 1.05rem; }
.gap-item p { font-size: 0.875rem; color: var(--text-light); }
.gap-item--os {
  background: var(--navy-dark);
  grid-column: span 3;
}
.gap-item--os .gap-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}
.gap-item--os h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.gap-item--os p { color: rgba(255,255,255,0.68); font-size: 0.925rem; }

/* === ROLES GRID === */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.role-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.role-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.30);
}
.role-card__icon { font-size: 2.2rem; margin-bottom: 16px; }
.role-card h4 { font-size: 1rem; margin-bottom: 8px; }
.role-card p { font-size: 0.85rem; color: var(--text-light); }

/* === EVENT TEASE === */
.event-tease {
  background: var(--black);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.event-tease::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.07), transparent 65%);
  pointer-events: none;
}
.event-tease .container { position: relative; z-index: 1; }
.event-tease-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.event-tease__left .label { margin-bottom: 16px; }
.event-tease__left h2 { color: var(--white); margin-bottom: 20px; }
.event-tease__left p { color: rgba(255,255,255,0.68); margin-bottom: 32px; }
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201,168,76,0.20);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.event-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.event-meta-row:last-child { border-bottom: none; }
.event-meta-row span:first-child {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.event-meta-row span:last-child {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.product-tag {
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
}

/* === FOUNDERS === */
.founder-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.founder-card__photo {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 3px solid var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.7rem;
  text-align: center;
}
.founder-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-card__body .label { margin-bottom: 6px; }
.founder-card__body h3 { font-size: 1.3rem; margin-bottom: 4px; }
.founder-card__title {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.founder-card__body p { font-size: 0.9rem; color: var(--text-body); }

/* === BLOCKQUOTE === */
.blockquote {
  border-left: 3px solid var(--gold);
  padding: 28px 36px;
  background: var(--off-white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.blockquote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.65;
}
.blockquote cite {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  font-style: normal;
}

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(201,168,76,0.12), transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band .label { margin-bottom: 18px; }
.cta-band h2 { color: var(--white); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.68); font-size: 1.05rem; max-width: 520px; margin: 0 auto 44px; }
.cta-band__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
}

/* === BADGE === */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
}
.badge--featured { background: var(--gold); color: var(--navy-dark); }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }
.pricing-card__header {
  padding: 30px 30px 26px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--off-white);
}
.pricing-card--featured .pricing-card__header {
  background: var(--navy-dark);
  border-bottom-color: rgba(255,255,255,0.08);
}
.pricing-card__tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.pricing-card__name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 16px;
}
.pricing-card--featured .pricing-card__name { color: var(--white); }
.pricing-card__price {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
}
.pricing-card--featured .pricing-card__price { color: var(--gold); }
.pricing-card__price-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: var(--font-sans);
}
.pricing-card--featured .pricing-card__price-sub { color: rgba(255,255,255,0.45); }
.pricing-card__body { padding: 28px 30px; }
.pricing-card__body ul { list-style: none; margin-bottom: 28px; }
.pricing-card__body ul li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
}
.pricing-card__body ul li:last-child { border-bottom: none; }
.pricing-card__body ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* === FORMS === */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.14);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* === COMPARE TABLE === */
.compare-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow);
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th {
  padding: 16px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gray-light);
  background: var(--off-white);
}
.compare-table th:last-child { color: var(--gold-dark); }
.compare-table td { padding: 14px 22px; border-bottom: 1px solid var(--gray-light); color: var(--text-body); }
.compare-table td:last-child { color: var(--navy); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--off-white); }

/* === GOLD RULE === */
.gold-rule { width: 48px; height: 3px; background: var(--gold); border: none; margin: 20px 0; }
.gold-rule--center { margin: 20px auto; }

/* === GRID LAYOUTS === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* === CHECK LIST === */
.check-list { list-style: none; }
.check-list li { display: flex; gap: 12px; font-size: 0.925rem; padding: 6px 0; }
.check-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--navy-dark);
  padding: 130px 24px 88px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(201,168,76,0.09), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .label { margin-bottom: 16px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; max-width: 760px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 620px; line-height: 1.7; }

/* === FOOTER === */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 72px 24px 40px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer__inner { max-width: var(--max-width); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer__brand img { height: 48px; margin-bottom: 18px; }
.footer__brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 11px; }
.footer__col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}
.footer__bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--white); }

/* === MOBILE === */
@media (max-width: 960px) {
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .event-tease-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 700px) {
  :root { --section-pad: 72px 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .audience-split { grid-template-columns: 1fr; }
  .audience-card { padding: 48px 32px; }
  .audience-card--vendor { border-left: none; border-top: 1px solid rgba(201,168,76,0.15); }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: rgba(10,18,35,0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px 36px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    gap: 4px;
  }
  .nav__links.open a { padding: 13px 16px; font-size: 1rem; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: clamp(2.8rem, 12vw, 4rem); }
  .manifesto__line { font-size: clamp(1.8rem, 8vw, 3rem); }
  .gap-grid { grid-template-columns: 1fr; }
  .gap-item--os { grid-column: span 1; }
  .gap-item--os .gap-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
  .gold-rule { margin: 16px auto; }
}
