/* ============================================
   NOMAD ADS v2 — Premium Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --cream: #F0EDE6;
  --cream-2: #E8E3D9;
  --sand: #D4C9B5;
  --gold: #B8965A;
  --gold-2: #D4A843;
  --gold-glow: rgba(184, 150, 90, 0.15);
  --dark: #1C1A17;
  --dark-2: #2E2B26;
  --dark-3: #242019;
  --text: #3D3830;
  --muted: #7A7268;
  --white: #FAF8F4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}

h1 {
  font-size: clamp(56px, 9vw, 108px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

h2 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw + 0.25rem, 1.75rem);
  font-weight: 500;
}

p {
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  line-height: 1.7;
}

strong {
  font-weight: 600;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 780px;
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding: var(--space-4xl) 0;
}

.section--dark {
  background-color: var(--dark);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: var(--sand);
}

/* --- Section Labels --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.section--dark .section-label {
  color: var(--gold-2);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 150, 90, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--sand);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 26, 23, 0.2);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 240, 232, 0.3);
}

.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--large {
  font-size: 1.0625rem;
  padding: 1rem 2.5rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(240, 237, 230, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 201, 181, 0.4);
  padding: 0.75rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  margin-left: var(--space-sm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ============================================
   HERO — Two Column Layout + Mockup
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(184,150,90,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 60%, rgba(184,150,90,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 85% 40%, rgba(184,150,90,0.05) 0%, transparent 50%),
    var(--cream);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(184, 150, 90, 0.1);
  border: 1px solid rgba(184, 150, 90, 0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.hero__badge-star {
  animation: pulse-star 2s ease-in-out infinite;
}

@keyframes pulse-star {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero__subtitle {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: var(--space-xl);
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--sand);
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--sand);
}

/* Hero entrance animations */
.hero__badge { animation: heroIn 0.6s cubic-bezier(0.23,1,0.32,1) 0.1s both; }
.hero h1 { animation: heroIn 0.7s cubic-bezier(0.23,1,0.32,1) 0.2s both; }
.hero__subtitle { animation: heroIn 0.7s cubic-bezier(0.23,1,0.32,1) 0.3s both; }
.hero__ctas { animation: heroIn 0.7s cubic-bezier(0.23,1,0.32,1) 0.4s both; }
.hero__stats { animation: heroIn 0.7s cubic-bezier(0.23,1,0.32,1) 0.5s both; }

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

/* Hero decorative circles */
.hero__circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,150,90,0.08);
}

.hero__circle--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -10%;
  animation: spin 40s linear infinite;
}

.hero__circle--2 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: 5%;
  animation: spin 25s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   MOCKUP — CSS-only Browser Dashboard
   ============================================ */
.hero__mockup {
  position: relative;
  z-index: 2;
  animation: heroMockupIn 0.9s cubic-bezier(0.23,1,0.32,1) 0.3s both;
}

@keyframes heroMockupIn {
  from { opacity: 0; transform: perspective(1200px) rotateY(-12deg) rotateX(4deg) translateX(40px); }
  to { opacity: 1; transform: perspective(1200px) rotateY(-12deg) rotateX(4deg) translateX(0); }
}

.mockup {
  transform: perspective(1200px) rotateY(-12deg) rotateX(4deg);
  filter: drop-shadow(0 40px 80px rgba(28,26,23,0.25));
  animation: mockupFloat 6s ease-in-out infinite;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(184,150,90,0.2);
}

@keyframes mockupFloat {
  0%, 100% { transform: perspective(1200px) rotateY(-12deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-12deg) rotateX(4deg) translateY(-10px); }
}

.mockup__chrome {
  background: var(--dark-3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup__dots {
  display: flex;
  gap: 6px;
}

.mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup__dots span:nth-child(1) { background: #FF5F57; }
.mockup__dots span:nth-child(2) { background: #FEBC2E; }
.mockup__dots span:nth-child(3) { background: #28C840; }

.mockup__url {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(240,237,230,0.3);
  font-family: var(--font-body);
  margin-left: 8px;
  flex: 1;
}

.mockup__body {
  background: var(--dark-2);
  display: flex;
  min-height: 320px;
}

.mockup__sidebar {
  width: 48px;
  background: var(--dark-3);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.mockup__sidebar-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.mockup__sidebar-item--active {
  background: rgba(184,150,90,0.2);
  border: 1px solid rgba(184,150,90,0.3);
}

.mockup__main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup__stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup__stat-box {
  background: var(--dark-3);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.04);
}

.mockup__stat-label {
  display: block;
  font-size: 9px;
  color: rgba(240,237,230,0.3);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.mockup__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.mockup__stat-box:nth-child(2) .mockup__stat-value {
  color: #28C840;
}

.mockup__campaigns {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup__campaign-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--dark-3);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.03);
}

.mockup__campaign-name {
  display: block;
  width: 45%;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}

.mockup__campaign-status {
  font-size: 9px;
  font-family: var(--font-body);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 500;
}

.mockup__campaign-status--active {
  background: rgba(40,200,64,0.15);
  color: #28C840;
}

.mockup__campaign-status--paused {
  background: rgba(254,188,46,0.15);
  color: #FEBC2E;
}

.mockup__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  padding: 12px;
  background: var(--dark-3);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
}

.mockup__bar {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(to top, var(--gold), rgba(184,150,90,0.3));
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.mockup__bar:hover {
  opacity: 1;
}

/* ============================================
   TRUST BAR — Dark Mode
   ============================================ */
.trust {
  padding: 20px 0;
  background: var(--dark);
  border-top: 1px solid rgba(184,150,90,0.1);
  border-bottom: 1px solid rgba(184,150,90,0.1);
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(240,237,230,0.5);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.trust__icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}

.trust__divider {
  width: 1px;
  height: 20px;
  background: rgba(184,150,90,0.15);
}

/* ============================================
   HOW IT WORKS — Step Cards
   ============================================ */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.step-card {
  position: relative;
  padding: 40px 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  border-radius: 20px;
  border: 1px solid rgba(184,150,90,0.12);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.3s;
}

/* Top edge glow */
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(184,150,90,0.4) 30%,
    rgba(212,168,67,0.6) 50%,
    rgba(184,150,90,0.4) 70%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

/* Radial glow following cursor */
.step-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(184,150,90,0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(28,26,23,0.12), 0 0 0 1px rgba(184,150,90,0.2);
  border-color: rgba(184,150,90,0.25);
}

.step-card:hover::before,
.step-card:hover::after {
  opacity: 1;
}

.step-card__number {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,150,90,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step-card__icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(184,150,90,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  background: rgba(184,150,90,0.06);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.step-card p {
  color: var(--sand);
  font-size: 0.9375rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   FEATURES — Illuminated Cards
   ============================================ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.feature-card {
  padding: 40px 36px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(184,150,90,0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.3s;
}

/* Top edge glow */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(184,150,90,0.4) 30%,
    rgba(212,168,67,0.6) 50%,
    rgba(184,150,90,0.4) 70%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

/* Radial glow following cursor */
.feature-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(184,150,90,0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(184,150,90,0.08), 0 0 0 1px rgba(184,150,90,0.2);
  border-color: rgba(184,150,90,0.25);
}

.feature-card:hover::before,
.feature-card:hover::after {
  opacity: 1;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(184,150,90,0.2);
  background: rgba(184,150,90,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   AUDIENCE — Profile Cards
   ============================================ */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.audience-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,150,90,0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

/* Bottom gold line */
.audience-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.audience-card:hover {
  background: rgba(184,150,90,0.06);
  border-color: rgba(184,150,90,0.25);
  transform: translateY(-4px);
}

.audience-card:hover::before {
  transform: scaleX(1);
}

.audience-card__emoji {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.audience-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--sand);
  line-height: 1.5;
}

/* ============================================
   PRICING — Premium Cards
   ============================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  padding: var(--space-2xl);
  border-radius: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

/* Starter card */
.pricing-card {
  background: var(--cream-2);
  border: 1px solid var(--sand);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* Pro card — dark with gold glow */
.pricing-card--featured {
  background: var(--dark);
  border: 1px solid rgba(184,150,90,0.3);
  box-shadow:
    0 0 0 1px rgba(184,150,90,0.1),
    0 40px 80px rgba(28,26,23,0.2),
    inset 0 1px 0 rgba(184,150,90,0.2);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%,
    rgba(184,150,90,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-card--featured:hover {
  box-shadow:
    0 0 0 1px rgba(184,150,90,0.2),
    0 48px 96px rgba(28,26,23,0.3),
    inset 0 1px 0 rgba(184,150,90,0.3);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.pricing-card--featured .pricing-card__name {
  color: var(--cream);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.pricing-card--featured .pricing-card__price {
  color: var(--white);
}

.pricing-card__price span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-card--featured .pricing-card__price span {
  color: rgba(240,237,230,0.4);
}

.pricing-card__features {
  margin-bottom: var(--space-xl);
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text);
}

.pricing-card--featured .pricing-card__feature {
  color: rgba(240,237,230,0.7);
}

.pricing-card__feature::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

.pricing__note {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.875rem;
  color: var(--muted);
}

/* ============================================
   CTA FINAL — Dramatic
   ============================================ */
.cta-final {
  padding: 160px 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(184,150,90,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(28,26,23,0.8) 0%, transparent 70%),
    var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dot grid pattern */
.cta-final__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184,150,90,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  pointer-events: none;
  z-index: 1;
}

.cta-final__content {
  position: relative;
  z-index: 2;
}

.cta-final h2 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: var(--space-md);
}

.cta-final h2 em {
  color: var(--gold);
  font-style: italic;
}

.cta-final p {
  color: var(--sand);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.cta-final__micro {
  margin-top: var(--space-md);
  font-size: 0.8125rem;
  color: var(--muted);
}

.cta-final__micro span {
  margin: 0 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-2xl) 0;
  background: var(--dark);
  border-top: 1px solid rgba(244, 240, 232, 0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer__logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer__link {
  font-size: 0.875rem;
  color: var(--sand);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__info {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 512px 512px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  padding: 8rem 0 3rem;
  background: var(--dark);
  text-align: center;
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
  line-height: 1.15;
}

.legal-hero p {
  color: var(--sand);
  font-size: 0.9375rem;
}

.legal-content {
  padding: var(--space-3xl) 0;
}

.legal-toc {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.legal-toc h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.legal-toc ol {
  list-style: decimal;
  padding-left: 1.5rem;
}

.legal-toc li {
  padding: 0.25rem 0;
}

.legal-toc a {
  font-size: 0.9375rem;
  color: var(--text);
  transition: color var(--transition);
}

.legal-toc a:hover {
  color: var(--gold);
}

.legal-section {
  margin-bottom: var(--space-2xl);
}

.legal-section h2 {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--sand);
}

.legal-section p {
  margin-bottom: var(--space-sm);
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.legal-section li {
  padding: 0.25rem 0;
  font-size: 0.9375rem;
  color: var(--text);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.9375rem;
}

.legal-table th,
.legal-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--sand);
}

.legal-table th {
  background: var(--dark);
  font-weight: 600;
  color: var(--white);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-table td {
  color: var(--text);
}

.legal-table tr:nth-child(even) td {
  background: rgba(184, 150, 90, 0.03);
}

.legal-table tr:hover td {
  background: rgba(184, 150, 90, 0.06);
}

.legal-table code {
  font-size: 0.8125rem;
  background: var(--cream-2);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-family: monospace;
}

.legal-highlight {
  background: rgba(184, 150, 90, 0.08);
  border-left: 3px solid var(--gold);
  padding: var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: var(--space-md) 0;
  font-size: 0.9375rem;
  color: var(--text);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero__mockup {
    animation: none;
  }

  .mockup {
    transform: none;
    filter: drop-shadow(0 20px 40px rgba(28,26,23,0.15));
    animation: none;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__circle--1 {
    width: 400px;
    height: 400px;
  }

  .hero__circle--2 {
    width: 280px;
    height: 280px;
  }

  .audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-3xl) 0;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 100px 0 40px;
    gap: 32px;
  }

  .hero__circles {
    display: none;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .hero__stat-divider {
    display: none;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .audience__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .trust__inner {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .trust__divider {
    display: none;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__info {
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-final {
    padding: 100px 0;
  }
}

@media (max-width: 480px) {
  .audience__grid {
    grid-template-columns: 1fr;
  }

  .btn--large {
    width: 100%;
  }

  h1 {
    font-size: clamp(40px, 10vw, 56px);
  }
}

/* ============================================
   FOCUS & SELECTION
   ============================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: rgba(184, 150, 90, 0.2);
  color: var(--dark);
}
