/* ============================================
   VidProof Foundation Partner — Linear Design System
   ============================================ */

@import url('../fonts.googleapis.com/css2%3Ffamily=Inter:opsz,wght@14..32,300..700&display=swap.css');

:root {
  /* Background Surfaces */
  --bg-marketing: #08090a;
  --bg-panel: #0f1011;
  --bg-surface: #191a1b;
  --bg-elevated: #28282c;

  /* Text & Content */
  --text-primary: #f7f8f8;
  --text-secondary: #d0d6e0;
  --text-tertiary: #8a8f98;
  --text-quaternary: #62666d;

  /* Brand & Accent — VidProof teal */
  --brand: #2ba6b4;
  --accent: #2ba6b4;
  --accent-hover: #35bfce;
  --brand-glow: rgba(43, 166, 180, 0.15);
  --brand-subtle: rgba(43, 166, 180, 0.08);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-standard: rgba(255, 255, 255, 0.08);
  --border-solid: #23252a;
  --border-solid-2: #34343a;

  /* Surfaces */
  --surface-1: rgba(255, 255, 255, 0.02);
  --surface-2: rgba(255, 255, 255, 0.04);
  --surface-3: rgba(255, 255, 255, 0.05);

  /* Misc */
  --overlay: rgba(0, 0, 0, 0.85);
  --success: #27a644;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-card: 8px;
  --radius-panel: 12px;
  --radius-large: 22px;
  --radius-pill: 9999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.6s var(--ease-out);
}

/* ============================================
   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: 'Inter', 'SF Pro Display', -apple-system, system-ui, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-feature-settings: "cv01", "ss03";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
  background: var(--bg-marketing);
}

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

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(113, 112, 255, 0.3);
  color: var(--text-primary);
}

/* ============================================
   Container
   ============================================ */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   Section Labels
   ============================================ */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 510;
  letter-spacing: -0.13px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 2.4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(43, 166, 180, 0.6);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-feature-settings: "cv01", "ss03";
  font-weight: 510;
  font-size: 14px;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: -0.182px;
}

.btn--primary {
  background: #ffffff;
  color: #08090a;
  padding: 10px 20px;
  border-radius: var(--radius-md);
}

.btn--primary {
  transition: background var(--transition), box-shadow var(--transition), transform 0.25s var(--ease-out);
}

.btn--primary:hover {
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(43, 166, 180, 0.4), 0 0 40px rgba(43, 166, 180, 0.35);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform 0.25s var(--ease-out);
}

.btn--ghost:hover {
  border-color: rgba(43, 166, 180, 0.5);
  transform: translateY(-1px);
}

.btn--ghost {
  background: var(--surface-1);
  color: #e2e4e7;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgb(36, 40, 44);
}

.btn--ghost:hover {
  background: var(--surface-3);
  color: var(--text-primary);
}

.btn--lg {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 510;
  letter-spacing: -0.165px;
}

.btn--xl {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 510;
}

/* ============================================
   Scroll Reveal
   ============================================ */

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

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================
   Header
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 9, 10, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.header--scrolled {
  border-bottom-color: var(--border-subtle);
  background: rgba(8, 9, 10, 0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 28px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 13px;
  font-weight: 510;
  color: var(--text-secondary);
  transition: color var(--transition);
  letter-spacing: -0.13px;
}

.header__link:hover {
  color: var(--text-primary);
}

.header__cta {
  padding: 7px 16px;
  font-size: 13px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* ============================================
   Hero
   ============================================ */

.hero {
  background: var(--bg-marketing);
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(94, 106, 210, 0.07) 0%, rgba(113, 112, 255, 0.03) 30%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(43, 166, 180, 0.22), rgba(255, 255, 255, 0.075));
  border: 1px solid rgba(53, 191, 206, 0.42);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
  box-shadow:
    0 0 0 1px rgba(43, 166, 180, 0.12) inset,
    0 0 28px rgba(43, 166, 180, 0.34),
    0 12px 42px rgba(43, 166, 180, 0.18);
  text-shadow: 0 0 18px rgba(53, 191, 206, 0.55);
  overflow: hidden;
}

.hero__badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: badge-shimmer 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badge-shimmer {
  0%, 55% { transform: translateX(-120%); }
  72%, 100% { transform: translateX(120%); }
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-hover);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(43, 166, 180, 0.12), 0 0 18px rgba(53, 191, 206, 0.9);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(40px, 3vw + 24px, 72px);
  font-weight: 510;
  line-height: 1.0;
  letter-spacing: -1.584px;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.165px;
  color: var(--text-tertiary);
  max-width: 640px;
  margin: 0 auto 12px;
}

.hero__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-tertiary);
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 80px;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 28px 48px;
  background: linear-gradient(180deg, rgba(43, 166, 180, 0.08) 0%, rgba(43, 166, 180, 0.02) 100%);
  border: 1px solid rgba(43, 166, 180, 0.28);
  border-radius: var(--radius-panel);
  box-shadow: 0 0 60px rgba(43, 166, 180, 0.15), inset 0 1px 0 rgba(43, 166, 180, 0.15);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.3s var(--ease-out);
}

.hero__trust-item:hover {
  transform: translateY(-2px);
}

.hero__trust-number {
  font-size: 36px;
  font-weight: 590;
  color: var(--text-primary);
  letter-spacing: -0.8px;
  background: linear-gradient(180deg, #ffffff 0%, var(--brand) 140%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__trust-label {
  font-size: 13px;
  font-weight: 510;
  color: var(--text-quaternary);
  letter-spacing: -0.13px;
}

.hero__trust-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(43, 166, 180, 0.4), transparent);
}

.hero__visual {
  margin-top: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero__image {
  width: 100%;
  border-radius: var(--radius-panel);
  border: 1px solid var(--border-standard);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ============================================
   Problem
   ============================================ */

.problem {
  background: var(--bg-marketing);
  padding: 120px 0;
  position: relative;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.problem__title {
  font-size: clamp(32px, 2vw + 20px, 48px);
  font-weight: 510;
  line-height: 1.05;
  letter-spacing: -1.056px;
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.problem__top {
  text-align: center;
  margin-bottom: 3rem;
}

.problem__lead {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-tertiary);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: -0.165px;
}

.problem__card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--surface-2);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-panel);
  overflow: hidden;
  margin-bottom: 3.5rem;
}

.problem__card-text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem__card-text p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
  letter-spacing: -0.165px;
}

.problem__card-text p:last-child {
  margin-bottom: 0;
}

.problem__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem__text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  max-width: 50ch;
  line-height: 1.6;
}

.problem__text p:last-child {
  margin-bottom: 0;
}

.problem__text strong {
  color: var(--text-secondary);
  font-weight: 510;
}

.problem__highlight {
  font-size: 18px;
  font-weight: 590;
  color: var(--text-primary);
  border-left: 3px solid var(--brand);
  padding: 4px 0 4px 18px;
  margin-top: 12px;
  line-height: 1.55;
  text-shadow: 0 0 30px rgba(43, 166, 180, 0.25);
}

.problem__icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.problem__icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--surface-1);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-card);
  text-align: center;
  color: var(--text-tertiary);
  transition: border-color var(--transition), background var(--transition);
}

.problem__icon-card:hover {
  border-color: var(--border-solid-2);
  background: var(--surface-2);
}

.problem__icon-card svg {
  color: var(--text-quaternary);
}

.problem__icon-card span {
  font-size: 13px;
  font-weight: 510;
  letter-spacing: -0.13px;
}

.problem__image {
  width: 100%;
  border-radius: var(--radius-panel);
  border: 1px solid var(--border-standard);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.problem__icon-card--broken {
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.04);
}

.problem__icon-card--broken svg {
  color: #ef4444;
}

.problem__icon-card--broken span {
  color: #ef4444;
  font-weight: 590;
}

.problem__icon-card--broken:hover {
  border-color: rgba(239, 68, 68, 0.3);
}

.problem__transition {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 48px;
  position: relative;
}

.problem__transition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.problem__transition p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.165px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.problem__transition strong {
  color: var(--text-primary);
  font-weight: 510;
}

/* ============================================
   Guide (How VidProof Works)
   ============================================ */

.guide {
  background: var(--bg-panel);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.guide::before,
.guide::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.guide::before { top: 0; }
.guide::after { bottom: 0; }

.guide__title {
  font-size: clamp(32px, 2vw + 20px, 48px);
  font-weight: 510;
  line-height: 1.0;
  letter-spacing: -1.056px;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 24px;
}

.guide__intro {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-tertiary);
  letter-spacing: -0.18px;
  text-align: center;
  margin: 0 auto 56px;
}

.guide__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.guide__step {
  text-align: center;
  padding: 0 24px;
  transition: transform 0.35s var(--ease-out);
}

.guide__step:hover {
  transform: translateY(-6px);
}

.guide__step-icon {
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.guide__step:hover .guide__step-icon {
  background: rgba(43, 166, 180, 0.12);
  border-color: rgba(43, 166, 180, 0.4);
  color: var(--accent);
  box-shadow: 0 0 40px rgba(43, 166, 180, 0.25);
}

.guide__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 590;
  color: #ffffff;
  background: var(--brand);
  border-radius: 50%;
  margin-bottom: 20px;
}

.guide__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--surface-2);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-panel);
  color: var(--accent);
}

.guide__step-title {
  font-size: 20px;
  font-weight: 590;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.24px;
}

.guide__step-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.165px;
  color: var(--text-tertiary);
  max-width: 240px;
  margin: 0 auto;
}

.guide__step-connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: var(--text-quaternary);
}

.guide__footnote {
  margin-top: 56px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-quaternary);
  letter-spacing: -0.165px;
  font-style: italic;
}

.guide__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.guide__showcase-img {
  width: 100%;
  border-radius: var(--radius-panel);
  border: 1px solid var(--border-standard);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s var(--ease-out);
}

.guide__showcase-img:hover {
  transform: scale(1.02);
}

/* ============================================
   Opportunity
   ============================================ */

.opportunity {
  background: var(--bg-marketing);
  padding: 120px 0;
  text-align: center;
}

.opportunity__title {
  font-size: clamp(32px, 2vw + 20px, 48px);
  font-weight: 510;
  line-height: 1.0;
  letter-spacing: -1.056px;
  color: var(--text-primary);
  max-width: 640px;
  margin: 0 auto 56px;
}

.opportunity__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 56px;
  text-align: left;
}

.opportunity__benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 12px 16px;
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition), transform 0.3s var(--ease-out);
}

.opportunity__benefit:hover {
  border-color: rgba(43, 166, 180, 0.45);
  background: rgba(43, 166, 180, 0.05);
  transform: translateX(4px);
}

.opportunity__benefit svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
  transition: transform 0.3s var(--ease-out);
}

.opportunity__benefit:hover svg {
  transform: scale(1.15);
}

.opportunity__revenue {
  margin-bottom: 40px;
}

.opportunity__revenue-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 48px 72px;
  background: linear-gradient(180deg, rgba(43, 166, 180, 0.1) 0%, rgba(43, 166, 180, 0.02) 100%);
  border: 1px solid rgba(43, 166, 180, 0.35);
  border-radius: var(--radius-panel);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(43, 166, 180, 0.18), inset 0 1px 0 rgba(43, 166, 180, 0.2);
}

.opportunity__revenue-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.opportunity__revenue-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(43, 166, 180, 0.18) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
}

.opportunity__revenue.revealed .opportunity__revenue-inner::after {
  animation: shimmer-sweep 2.4s var(--ease-out) 0.3s 1;
}

@keyframes shimmer-sweep {
  0% { left: -60%; opacity: 0; }
  20% { opacity: 1; }
  100% { left: 160%; opacity: 0; }
}

.opportunity__revenue-label {
  font-size: 12px;
  font-weight: 510;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--accent);
}

.opportunity__revenue-amount {
  font-size: clamp(44px, 4vw + 14px, 64px);
  font-weight: 590;
  letter-spacing: -1.5px;
  line-height: 1.0;
  background: linear-gradient(180deg, #ffffff 0%, var(--brand) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text-primary);
}

.opportunity__revenue-note {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-tertiary);
  letter-spacing: -0.165px;
}

.opportunity__cta {
  margin-top: 8px;
}

/* ============================================
   White-label Opportunity
   ============================================ */

.whitelabel {
  background: var(--bg-panel);
  padding: 120px 0;
  position: relative;
}

.whitelabel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.whitelabel__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.whitelabel__title {
  font-size: clamp(32px, 2vw + 20px, 48px);
  font-weight: 510;
  line-height: 1.0;
  letter-spacing: -1.056px;
  color: var(--text-primary);
  margin: 16px auto 24px;
}

.whitelabel__lead {
  font-size: clamp(17px, 0.5vw + 14px, 19px);
  line-height: 1.55;
  color: var(--text-secondary);
  letter-spacing: -0.22px;
  max-width: 640px;
  margin: 0 auto 48px;
}

.whitelabel__statement {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 48px;
  background: linear-gradient(180deg, rgba(43, 166, 180, 0.06) 0%, rgba(43, 166, 180, 0.015) 100%);
  border: 1px solid rgba(43, 166, 180, 0.28);
  border-radius: var(--radius-panel);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(43, 166, 180, 0.1), inset 0 1px 0 rgba(43, 166, 180, 0.15);
}

.whitelabel__statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.whitelabel__statement p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  letter-spacing: -0.18px;
  margin: 0;
  text-wrap: pretty;
}

.whitelabel__statement strong {
  color: var(--text-primary);
  font-weight: 590;
}

@media (max-width: 720px) {
  .whitelabel {
    padding: 80px 0;
  }
  .whitelabel__statement {
    padding: 32px 24px;
  }
  .whitelabel__statement p {
    font-size: 16px;
  }
}

/* ============================================
   Offer
   ============================================ */

.offer {
  background: var(--bg-panel);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.offer__title {
  font-size: clamp(32px, 2vw + 20px, 48px);
  font-weight: 510;
  line-height: 1.0;
  letter-spacing: -1.056px;
  color: var(--text-primary);
  max-width: 560px;
  margin: 0 auto 16px;
}

.offer__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-tertiary);
  max-width: 540px;
  margin: 0 auto 56px;
}

.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.offer__card {
  background: var(--surface-1);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition), transform 0.35s var(--ease-out), box-shadow var(--transition);
}

.offer__card:hover {
  border-color: rgba(43, 166, 180, 0.5);
  background: linear-gradient(180deg, rgba(43, 166, 180, 0.06), rgba(43, 166, 180, 0.02));
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(43, 166, 180, 0.18);
}

.offer__card-highlight {
  transition: transform 0.35s var(--ease-out);
}

.offer__card:hover .offer__card-highlight {
  transform: scale(1.05);
}

.offer__card-highlight {
  font-size: 32px;
  font-weight: 510;
  color: var(--accent);
  letter-spacing: -0.704px;
  margin-bottom: 8px;
  line-height: 1.13;
  display: inline-block;
}

.offer__card-title {
  font-size: 15px;
  font-weight: 590;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.165px;
}

.offer__card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-tertiary);
  letter-spacing: -0.182px;
}

.offer__card--featured {
  border-color: rgba(43, 166, 180, 0.35);
  background: rgba(43, 166, 180, 0.04);
  position: relative;
}

.offer__card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-card);
  padding: 1px;
  background: linear-gradient(180deg, rgba(43, 166, 180, 0.4), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.offer__card--featured:hover {
  background: rgba(43, 166, 180, 0.08);
}

.offer__grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: calc(66.666% + 8px);
  margin: 0 auto;
}

.offer__cta {
  margin-top: 40px;
}

.offer__fineprint {
  margin-top: 32px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-tertiary);
  letter-spacing: -0.13px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  opacity: 0.8;
}

.offer__fineprint strong {
  color: var(--text-secondary);
  font-weight: 590;
}

.offer__fineprint sup {
  font-size: 10px;
  vertical-align: super;
}

/* ============================================
   Who Is This For
   ============================================ */

.who {
  background: var(--bg-marketing);
  padding: 120px 0;
  position: relative;
}

.who::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.who__title {
  font-size: clamp(32px, 2vw + 20px, 48px);
  font-weight: 510;
  line-height: 1.0;
  letter-spacing: -1.056px;
  color: var(--text-primary);
  max-width: 520px;
  margin-bottom: 48px;
}

.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.who__checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.who__image {
  position: relative;
}

.who__image img {
  width: 100%;
  border-radius: var(--radius-panel);
  border: 1px solid var(--border-standard);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.who__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition), transform 0.3s var(--ease-out);
}

.who__item:hover {
  border-color: rgba(43, 166, 180, 0.4);
  background: rgba(43, 166, 180, 0.04);
  transform: translateX(4px);
}

.who__check {
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.who__item:hover .who__check {
  transform: scale(1.15) rotate(-5deg);
  background: rgba(43, 166, 180, 0.28);
}

.who__item:hover {
  border-color: var(--border-standard);
  background: var(--surface-2);
}

.who__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(43, 166, 180, 0.15);
  border: 1px solid rgba(43, 166, 180, 0.4);
  color: var(--accent);
  border-radius: 50%;
  color: var(--accent);
  margin-top: 1px;
}

.who__check svg {
  width: 14px;
  height: 14px;
}

.who__item p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  letter-spacing: -0.165px;
}

.who__cta {
  margin-top: 48px;
}

/* ============================================
   Process (Timeline)
   ============================================ */

.process {
  background: var(--bg-panel);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.process__title {
  font-size: clamp(32px, 2vw + 20px, 48px);
  font-weight: 510;
  line-height: 1.0;
  letter-spacing: -1.056px;
  color: var(--text-primary);
  max-width: 560px;
  margin: 0 auto 64px;
}

.process__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 48px;
  text-align: left;
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}

.process__step:hover {
  transform: translateX(6px);
}

.process__step-marker {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.process__step:hover .process__step-marker {
  transform: scale(1.12);
  box-shadow: 0 0 32px rgba(43, 166, 180, 0.4);
  background: rgba(43, 166, 180, 0.22);
}

.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: calc(20px + 32px);
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border-solid-2), var(--border-subtle));
}

.process__step-marker {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(43, 166, 180, 0.12);
  border: 1px solid rgba(43, 166, 180, 0.35);
  box-shadow: 0 0 24px rgba(43, 166, 180, 0.15);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.process__step-marker span {
  font-size: 13px;
  font-weight: 590;
  color: var(--accent);
  letter-spacing: -0.13px;
}

.process__step:first-child .process__step-marker {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 30px rgba(43, 166, 180, 0.4);
}

.process__step:first-child .process__step-marker span {
  color: #ffffff;
}

.process__step-content h3 {
  font-size: 16px;
  font-weight: 590;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.process__step-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-tertiary);
  letter-spacing: -0.165px;
}

.process__cta {
  margin-top: 0;
}

/* ============================================
   Marketing Partner
   ============================================ */

.marketing {
  background: var(--bg-marketing);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.marketing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.marketing::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(43, 166, 180, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.marketing .container {
  position: relative;
  z-index: 1;
}

.marketing__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.marketing__title {
  font-size: clamp(32px, 2vw + 20px, 48px);
  font-weight: 510;
  line-height: 1.05;
  letter-spacing: -1.056px;
  color: var(--text-primary);
  margin: 16px auto 24px;
  text-wrap: balance;
}

.marketing__lead {
  font-size: clamp(17px, 0.5vw + 14px, 19px);
  line-height: 1.55;
  color: var(--text-secondary);
  letter-spacing: -0.22px;
  margin: 0 auto 20px;
  max-width: 600px;
}

.marketing__intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-tertiary);
  letter-spacing: -0.18px;
  max-width: 640px;
  margin: 0 auto;
}

.marketing__intro strong {
  color: var(--text-primary);
  font-weight: 590;
}

.marketing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.marketing__card {
  background: var(--surface-1);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-panel);
  padding: 32px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.marketing__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 166, 180, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.marketing__card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 166, 180, 0.32);
  background: var(--surface-2);
}

.marketing__card:hover::before {
  opacity: 1;
}

.marketing__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(43, 166, 180, 0.1);
  border: 1px solid rgba(43, 166, 180, 0.28);
  border-radius: var(--radius-card);
  color: var(--brand);
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.marketing__card:hover .marketing__card-icon {
  transform: scale(1.08);
  background: rgba(43, 166, 180, 0.16);
}

.marketing__card-title {
  font-size: 17px;
  font-weight: 590;
  color: var(--text-primary);
  letter-spacing: -0.22px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.marketing__card-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-tertiary);
  letter-spacing: -0.165px;
}

.marketing__panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 44px;
  background: linear-gradient(180deg, rgba(43, 166, 180, 0.06) 0%, rgba(43, 166, 180, 0.015) 100%);
  border: 1px solid rgba(43, 166, 180, 0.28);
  border-radius: var(--radius-panel);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  box-shadow: 0 0 60px rgba(43, 166, 180, 0.08), inset 0 1px 0 rgba(43, 166, 180, 0.15);
}

.marketing__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.marketing__panel-text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  letter-spacing: -0.22px;
  margin: 0;
  max-width: 580px;
}

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

@media (max-width: 720px) {
  .marketing {
    padding: 80px 0;
  }
  .marketing__header {
    margin-bottom: 40px;
  }
  .marketing__card {
    padding: 28px 24px;
  }
  .marketing__panel {
    padding: 28px 24px;
  }
  .marketing__panel-text {
    font-size: 16px;
  }
}

/* ============================================
   Apply (Final CTA)
   ============================================ */

.apply {
  background: var(--bg-marketing);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.apply__inner {
  max-width: 580px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--surface-1);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-panel);
  position: relative;
  overflow: hidden;
}

.apply__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.apply__inner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(94, 106, 210, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.apply__title {
  font-size: clamp(24px, 2vw + 12px, 32px);
  font-weight: 510;
  line-height: 1.13;
  letter-spacing: -0.704px;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.apply__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.apply__urgency {
  font-size: 17px;
  font-weight: 590;
  color: var(--text-primary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.apply__instruction {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-quaternary);
  margin-bottom: 32px;
  letter-spacing: -0.165px;
  position: relative;
  z-index: 1;
}

.apply .btn {
  position: relative;
  z-index: 1;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--bg-marketing);
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer__brand img {
  height: 24px;
  max-height: 24px;
  width: auto;
  max-width: 120px;
}

.footer__brand-name {
  font-size: 16px;
  font-weight: 590;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--brand);
  border-radius: 4px;
}

.footer__tagline {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-quaternary);
  letter-spacing: -0.13px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-size: 13px;
  font-weight: 510;
  color: var(--text-tertiary);
  transition: color var(--transition);
  letter-spacing: -0.13px;
}

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

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-quaternary);
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

/* ============================================
   Responsive — Tablet (1024px)
   ============================================ */

@media (max-width: 1024px) {
  .offer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer__grid-row {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .guide__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide__step-connector {
    display: none;
  }

  .guide__step {
    padding: 0 16px;
  }
}

/* ============================================
   Responsive — Mobile (768px)
   ============================================ */

@media (max-width: 768px) {
  .hero__visual {
    margin-top: 2.5rem;
  }

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

  .who__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .who__image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .header__nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(8, 9, 10, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .header__nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header__nav .header__link {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .header__nav .header__link:last-child {
    border-bottom: none;
  }

  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero__title {
    letter-spacing: -1.056px;
  }

  .hero__actions {
    flex-direction: column;
    margin-bottom: 56px;
  }

  .hero__trust {
    flex-direction: column;
    gap: 20px;
    padding: 24px 32px;
  }

  .hero__trust-divider {
    width: 40px;
    height: 1px;
  }

  .problem,
  .guide,
  .opportunity,
  .offer,
  .who,
  .process,
  .apply {
    padding: 80px 0;
  }

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

  .problem__card-image img {
    max-height: 300px;
  }

  .guide__steps {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 320px;
  }

  .guide__step-connector {
    display: none;
  }

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

  .offer__grid-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .opportunity__revenue-inner {
    padding: 32px 40px;
  }

  .apply__inner {
    padding: 40px 24px;
  }

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

  .footer__copy {
    text-align: left;
  }
}

/* ============================================
   Responsive — Small Mobile (400px)
   ============================================ */

@media (max-width: 400px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .problem,
  .guide,
  .opportunity,
  .offer,
  .who,
  .process,
  .apply {
    padding: 64px 0;
  }

  .hero__badge {
    font-size: 11px;
    padding: 6px 13px;
  }

  .btn--lg {
    padding: 11px 24px;
    font-size: 14px;
  }

  .btn--xl {
    padding: 12px 28px;
    font-size: 15px;
  }

  .problem__icon-card {
    padding: 20px 12px;
  }
}

/* ============================================
   Content Emphasis Utilities
   ============================================ */

/* Inline emphasis — solid brand teal with a soft glow */
.hl {
  color: var(--accent);
  font-weight: 590;
  text-shadow: 0 0 24px rgba(43, 166, 180, 0.35);
}

/* Gradient emphasis — white fading into teal, for display statements */
.hl-gradient {
  font-weight: 590;
  background: linear-gradient(100deg, #7ce3ee 0%, var(--brand) 45%, #a9ecf3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: var(--accent);
}

/* Accent tint — brand teal, no glow (for subtler emphasis) */
.hl-accent {
  color: var(--accent);
  font-weight: 590;
}

/* Key metric pill — bolder inline callout */
.hl-metric {
  display: inline-block;
  color: #ffffff;
  font-weight: 590;
  padding: 1px 10px;
  background: rgba(43, 166, 180, 0.18);
  border: 1px solid rgba(43, 166, 180, 0.45);
  border-radius: 999px;
  letter-spacing: -0.2px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(43, 166, 180, 0.2);
}

/* Pull quote — oversized statement with teal accent bar */
.pull-quote {
  position: relative;
  max-width: 680px;
  margin: 56px auto;
  padding: 8px 0 8px 24px;
  border-left: 3px solid var(--brand);
  font-size: clamp(20px, 1.4vw + 12px, 26px);
  font-weight: 510;
  line-height: 1.35;
  letter-spacing: -0.6px;
  color: var(--text-primary);
  text-align: left;
}

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
