:root {
  --obsidian: #080810;
  --obsidian-2: #0e0e1a;
  --obsidian-3: #131320;
  --obsidian-4: #1a1a2e;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dim: #8a6f42;
  --white: #f8f6f2;
  --white-dim: rgba(248,246,242,0.7);
  --white-faint: rgba(248,246,242,0.15);
  --white-ghost: rgba(248,246,242,0.05);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(201,169,110,0.2);
  --shadow-gold: 0 0 60px rgba(201,169,110,0.08);
  --shadow-deep: 0 40px 100px rgba(0,0,0,0.6);
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--obsidian);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NOISE TEXTURE OVERLAY */
body::before {
  content: '';
  position: static;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* TYPOGRAPHY */
.display { font-family: 'Cormorant Garamond', serif; }

/* GOLD RULE */
.gold-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}
.gold-rule.left { margin: 0 0 24px; }

/* SECTION LABELS */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

/* NAV */
nav {
  position: relative;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,16,0.98);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-logo span { color: var(--gold); }

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(30,30,60,0.8) 0%, transparent 60%),
              var(--obsidian);
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hero-eyebrow {
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.2s forwards;
}

.hero-eyebrow-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  padding: 10px 24px;
  backdrop-filter: blur(10px);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* VIDEO PANEL */
.video-panel {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 0.4s forwards;
}

.video-frame {
  position: relative;
  background: var(--obsidian-3);
  border: 1px solid var(--glass-border);
  padding: 3px;
  box-shadow: var(--shadow-deep), var(--shadow-gold);
}

.video-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 2;
}

.video-frame::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  z-index: 2;
}

.video-inner {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #05050d;
}

.video-inner iframe,
.video-inner video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0d1f 0%, #05050d 100%);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--transition);
  box-shadow: 0 0 0 12px rgba(201,169,110,0.1), 0 20px 60px rgba(201,169,110,0.3);
}

.play-btn::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  animation: ripple 2s infinite;
}

.video-placeholder:hover .play-btn {
  transform: scale(1.08);
  box-shadow: 0 0 0 16px rgba(201,169,110,0.12), 0 24px 70px rgba(201,169,110,0.4);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--obsidian);
  margin-left: 4px;
}

.video-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  position: relative;
  z-index: 1;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 4px;
}

.video-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white-dim);
}

.video-meta-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* VIDEO CORNER ACCENTS */
.corner-accent {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
}
.corner-tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.corner-tr { top: 8px; right: 8px; border-width: 1px 1px 0 0; }
.corner-bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.corner-br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

/* FORM PANEL */
.form-panel {
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 0.6s forwards;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-headline em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-dim);
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white-dim);
  letter-spacing: 0.01em;
}

.hero-bullets li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* APPLICATION FORM */
.app-form {
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-deep);
}

.app-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-header { margin-bottom: 28px; text-align: center; }

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 12.5px;
  color: var(--white-dim);
  letter-spacing: 0.03em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group { position: relative; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}

.form-input,
.form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 14px;
  outline: none;
  transition: all 0.25s var(--transition);
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: rgba(248,246,242,0.25);
  font-size: 13px;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select option {
  background: var(--obsidian-3);
  color: var(--white);
}

.form-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #b8903d 100%);
  color: var(--obsidian);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  padding: 17px 32px;
  cursor: pointer;
  margin-top: 18px;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.form-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.form-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.35);
}

.form-cta:hover::before { opacity: 1; }
.form-cta:active { transform: translateY(0); }

.form-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(248,246,242,0.4);
  letter-spacing: 0.05em;
}

.reassurance-icon {
  width: 12px;
  height: 12px;
  stroke: var(--gold-dim);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TRUST STRIP */
#trust {
  padding: 32px 60px;
  background: var(--obsidian-2);
  border-top: 1px solid rgba(201,169,110,0.08);
  border-bottom: 1px solid rgba(201,169,110,0.08);
  overflow: hidden;
}

.trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
  position: relative;
}

.trust-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--glass-border);
}

.trust-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.trust-desc {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 5px;
  display: block;
}

/* SECTIONS SHARED */
.section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header { max-width: 660px; margin-bottom: 60px; }
.section-header.center { margin: 0 auto 60px; text-align: center; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 18px;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--white-dim);
  font-weight: 300;
}

/* WHY DIFFERENT */
#why {
  background: linear-gradient(180deg, var(--obsidian) 0%, var(--obsidian-2) 100%);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--glass-border);
  padding: 36px 30px;
  position: relative;
  transition: all 0.35s var(--transition);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.why-card:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(201,169,110,0.06);
}

.why-card:hover::before { opacity: 1; }

.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.why-card-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-dim);
  font-weight: 300;
}

/* ROLE */
#role { background: var(--obsidian-2); }

.role-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.role-list { list-style: none; display: flex; flex-direction: column; gap: 0; }

.role-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  transition: all 0.25s var(--transition);
}

.role-item:first-child { border-top: 1px solid rgba(201,169,110,0.08); }
.role-item:hover { padding-left: 8px; }

.role-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-dim);
  min-width: 24px;
  padding-top: 2px;
}

.role-text { font-size: 15px; font-weight: 400; color: var(--white); line-height: 1.5; }

.role-text span {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--white-dim);
  margin-top: 4px;
}

/* COMPENSATION */
#comp {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--obsidian) 0%, var(--obsidian-3) 100%);
}

#comp::after {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.comp-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.comp-card.featured {
  background: linear-gradient(145deg, rgba(201,169,110,0.12) 0%, rgba(201,169,110,0.04) 100%);
  border-color: rgba(201,169,110,0.4);
}

.comp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--glass-border);
}

.comp-card.featured::before {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
}

.comp-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
}

.comp-card.featured .comp-label { color: var(--gold); }

.comp-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.comp-card.featured .comp-value { color: var(--gold-light); }

.comp-desc { font-size: 13.5px; font-weight: 300; color: var(--white-dim); line-height: 1.6; }

.comp-disclaimer {
  text-align: center;
  font-style: italic;
  color: rgba(248,246,242,0.3);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
}

/* IDEAL CANDIDATE */
#ideal { background: var(--obsidian-2); }

.ideal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.trait-list { display: flex; flex-direction: column; gap: 16px; }

.trait-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--glass);
  border: 1px solid rgba(201,169,110,0.1);
  transition: all 0.25s var(--transition);
}

.trait-item:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
}

.trait-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.05) 100%);
  border: 1px solid rgba(201,169,110,0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.trait-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.trait-text p { font-size: 13px; font-weight: 300; color: var(--white-dim); line-height: 1.5; }

.deal-breakers {
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}

.deal-breakers h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.db-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.db-list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--white-dim);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.db-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: rgba(200,80,80,0.7);
  font-size: 16px;
  line-height: 1.2;
}

.want-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 13px;
  line-height: 1.4;
}

/* PROCESS */
#process { background: var(--obsidian); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  opacity: 0.3;
}

.process-step { text-align: center; padding: 0 20px; }

.step-circle {
  width: 56px;
  height: 56px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--transition);
}

.process-step:hover .step-circle {
  background: rgba(201,169,110,0.1);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201,169,110,0.2);
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc { font-size: 13.5px; font-weight: 300; color: var(--white-dim); line-height: 1.6; }

/* TESTIMONIALS */
#testimonials { background: var(--obsidian-2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 32px;
  position: relative;
  transition: all 0.3s var(--transition);
}

.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--gold-dim);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
  opacity: 0.5;
}

.testi-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-3px);
}

.testi-quote {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 24px;
  padding-top: 32px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.testi-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--obsidian);
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 600; color: var(--white); }
.author-role { font-size: 11.5px; font-weight: 400; color: var(--gold-dim); margin-top: 2px; }
.author-earnings { margin-left: auto; text-align: right; }

.author-earnings-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
}

.author-earnings-label { font-size: 10px; color: var(--white-dim); letter-spacing: 0.08em; text-transform: uppercase; }

/* FAQ */
#faq { background: var(--obsidian); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item { border-bottom: 1px solid rgba(201,169,110,0.1); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid rgba(201,169,110,0.1); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  gap: 20px;
  transition: color 0.25s;
}

.faq-q:hover { color: var(--gold-light); }

.faq-chevron {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--transition);
  color: var(--gold);
  font-size: 14px;
}

.faq-item.open .faq-chevron {
  background: var(--gold);
  color: var(--obsidian);
  transform: rotate(45deg);
}

.faq-a {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--white-dim);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition), padding 0.4s;
  padding: 0;
}

.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* FINAL CTA */
#cta {
  background: linear-gradient(160deg, var(--obsidian-3) 0%, var(--obsidian) 100%);
  text-align: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
}

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

.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8903d 100%);
  color: var(--obsidian);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 44px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(201,169,110,0.35);
}

.cta-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--obsidian);
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.25s;
}

.cta-btn:hover svg { transform: translateX(4px); }

/* FOOTER */
footer {
  background: var(--obsidian);
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 48px 60px 32px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.footer-logo span { color: var(--gold); }

.footer-links { display: flex; gap: 28px; list-style: none; }

.footer-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 12px; color: rgba(248,246,242,0.25); letter-spacing: 0.04em; }

.footer-disclaimer {
  font-size: 11px;
  color: rgba(248,246,242,0.2);
  max-width: 600px;
  text-align: right;
  line-height: 1.5;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 18px 30px; }
  #hero { padding: 100px 30px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 70px 30px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .role-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .ideal-split { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 30px; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  #trust { padding: 28px 30px; }
  #cta { padding: 80px 30px; }
  footer { padding: 36px 30px 24px; }
}

@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  .nav-cta { display: none; }
  #hero { padding: 90px 20px 50px; }
  .section { padding: 60px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .app-form { padding: 24px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; gap: 30px; }
  .trust-stat::after { display: none; }
  .footer-inner, .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; max-width: 100%; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .form-reassurance { flex-direction: column; gap: 10px; }
}
