/* ==========================================================================
   ANTHROPIC IPO LANDING PAGE — DESIGN SYSTEM & STYLES
   Theme: Warm Obsidian, Carbon, & Anthropic Terracotta / Amber Glow
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700;800&display=swap');

:root {
  /* Surface colors */
  --bg-deep: #090908;
  --bg-surface-1: #121211;
  --bg-surface-2: #181716;
  --bg-card: rgba(255, 255, 255, 0.025);
  --bg-card-hover: rgba(255, 255, 255, 0.045);
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(204, 120, 92, 0.35);

  /* Typography colors */
  --text-primary: #FFFFFF;
  --text-secondary: #D6D3D1;
  --text-muted: #A8A29E;
  --text-dim: #78716C;

  /* Brand Accents */
  --terracotta: #CC785C;
  --terracotta-light: #E07A5F;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --gain-green: #34D399;
  --gain-bg: rgba(52, 211, 153, 0.12);

  /* Gradients & Glows */
  --glow-warm: radial-gradient(ellipse 65% 100% at 50% 0%, rgba(204, 120, 92, 0.12), transparent 70%);
  --glow-ambient: radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.08), transparent 60%);

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

/* Typography styles */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 12px;
}

.glow-title {
  text-shadow: 0 0 50px rgba(224, 122, 95, 0.22);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  color: #090908;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #FFFFFF;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  background: #F5F5F4;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224, 122, 95, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  color: #FFFFFF;
}

/* ==========================================================================
   1. NAVBAR
   ========================================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 9, 8, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  height: 30px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ==========================================================================
   2. HERO SECTION & LIVE COUNTDOWN
   ========================================================================== */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 90px;
  background: var(--bg-deep);
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 620px;
  background: radial-gradient(ellipse 65% 60% at 50% 10%, rgba(204, 120, 92, 0.16), rgba(217, 119, 6, 0.04) 55%, transparent 75%);
  pointer-events: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(204, 120, 92, 0.1);
  border: 1px solid rgba(204, 120, 92, 0.28);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracotta-light);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--terracotta);
  box-shadow: 0 0 10px var(--terracotta);
  animation: pulse 2s ease-in-out infinite;
  will-change: transform, opacity, box-shadow;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px var(--terracotta-light); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 22px;
  color: #FFFFFF;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Countdown */
.countdown-box {
  margin: 0 auto 40px;
  max-width: 600px;
}

.countdown-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.countdown-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 14px;
  min-width: 90px;
  backdrop-filter: blur(8px);
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  font-feature-settings: "tnum";
}

.countdown-unit {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.countdown-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 12px;
}

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

/* ==========================================================================
   3. KEY FACTS METRICS STRIP
   ========================================================================== */
.facts-section {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface-1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}

.fact-item {
  text-align: center;
  position: relative;
}

.fact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.fact-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.fact-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fact-sub {
  font-size: 0.78rem;
  color: var(--terracotta-light);
  margin-top: 4px;
  font-weight: 500;
}

/* ==========================================================================
   4. BUSINESS PILLARS (SPLIT SECTIONS)
   ========================================================================== */
.pillar-section {
  padding: 90px 0;
  background: var(--bg-surface-1);
}

.pillar-section.alt {
  background: var(--bg-deep);
}

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

.split-grid.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.split-grid.reverse .split-content {
  order: 2;
}

.split-grid.reverse .split-media {
  order: 1;
}

.pillar-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.pillar-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.pillar-bullets {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.bullet-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(204, 120, 92, 0.15);
  color: var(--terracotta-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

.split-media {
  position: relative;
}

.media-card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 120, 92, 0.35);
}

.media-card img, .media-card svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   5. MID-PAGE CALLOUT BANNER
   ========================================================================== */
.callout-banner {
  padding: 50px 0;
  background: var(--bg-deep);
  position: relative;
}

.callout-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 44px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.callout-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: linear-gradient(180deg, var(--terracotta-light), var(--amber));
  border-radius: 4px;
}

.callout-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.callout-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  max-width: 580px;
}

/* ==========================================================================
   6. INVESTMENT THESIS VECTORS (01 - 05)
   ========================================================================== */
.thesis-section {
  padding: 90px 0;
  background: var(--bg-surface-1);
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

.thesis-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thesis-row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 22px 28px;
  transition: all 0.25s ease;
}

.thesis-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(204, 120, 92, 0.3);
  transform: translateX(4px);
}

.thesis-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.thesis-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--terracotta-light);
  min-width: 32px;
}

.thesis-meta {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.thesis-name {
  font-size: 1.18rem;
  font-weight: 700;
  color: #FFFFFF;
}

.thesis-tags {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(217, 119, 6, 0.1);
  padding: 3px 10px;
  border-radius: 9999px;
}

.thesis-arrow {
  color: var(--text-dim);
  font-size: 1.2rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.thesis-row:hover .thesis-arrow {
  color: var(--terracotta-light);
  transform: translate(2px, -2px);
}

.thesis-desc {
  margin-top: 10px;
  padding-left: 52px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   7. PRESS MARQUEE STRIP
   ========================================================================== */
.press-strip {
  background: #090908;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 38px 0;
  overflow: hidden;
}

.press-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.press-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  will-change: transform;
}

.press-strip:hover .press-track {
  animation-play-state: paused;
}

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

.press-card {
  flex: 0 0 auto;
  width: 320px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.press-outlet {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-light);
}

.press-quote {
  font-size: 0.88rem;
  color: #FFFFFF;
  line-height: 1.45;
  font-style: italic;
}

/* ==========================================================================
   8. HISTORICAL TECH & AI IPO PERFORMANCE TABLE
   ========================================================================== */
.table-section {
  padding: 90px 0;
  background: var(--bg-surface-1);
}

.table-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 36px;
}

.ipo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.ipo-table thead {
  background: rgba(255, 255, 255, 0.035);
}

.ipo-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ipo-table td {
  padding: 18px 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-feature-settings: "tnum";
}

.ipo-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.company-cell {
  font-weight: 700;
  color: #FFFFFF;
}

.company-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-dim);
}

.gain-badge {
  display: inline-block;
  font-weight: 800;
  color: var(--gain-green);
  background: var(--gain-bg);
  padding: 4px 12px;
  border-radius: 9999px;
  font-feature-settings: "tnum";
}

.table-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 18px;
}

/* Mobile cards fallback */
.table-cards-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.mobile-ipo-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
}

.mobile-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.mobile-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-card-item {
  display: flex;
  flex-direction: column;
}

.mobile-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.mobile-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 2px;
}

/* ==========================================================================
   9. VALUE PROPOSITION («CO SE DOZVÍTE»)
   ========================================================================== */
.value-section {
  padding: 90px 0;
  background: var(--bg-deep);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(204, 120, 92, 0.3);
}

.value-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--terracotta-light);
  margin-bottom: 12px;
}

.value-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.value-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   10. UNDERWRITERS STRIP
   ========================================================================== */
.underwriters-section {
  padding: 60px 0;
  background: var(--bg-surface-1);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.banks-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.bank-item {
  height: 48px;
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.bank-item:hover {
  opacity: 1;
}

.bank-item img, .bank-item svg {
  height: 100%;
  width: auto;
}

/* ==========================================================================
   11. LEAD CAPTURE FORM (#formular)
   ========================================================================== */
.form-section {
  padding: 100px 0;
  background: var(--bg-deep);
  position: relative;
}

.form-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 500px;
  background: radial-gradient(ellipse 70% 60% at 50% 15%, rgba(204, 120, 92, 0.15), transparent 70%);
  pointer-events: none;
}

.form-box {
  max-width: 540px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 38px 36px;
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 10;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  text-align: left;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input, .form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #FFFFFF;
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--terracotta-light);
  box-shadow: 0 0 0 3px rgba(204, 120, 92, 0.15);
}

.form-input::placeholder {
  color: var(--text-dim);
}

.phone-wrapper {
  display: flex;
  gap: 10px;
}

.phone-prefix {
  flex: 0 0 110px;
}

.phone-number {
  flex: 1;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.checkbox-group input {
  margin-top: 3px;
  accent-color: var(--terracotta);
  cursor: pointer;
}

.checkbox-group a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  margin-top: 22px;
  padding: 15px 24px;
  font-size: 1rem;
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.76rem;
  color: var(--text-dim);
}

.trust-tag {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-tag svg {
  color: var(--gain-green);
}

/* Success notification inside form */
.form-alert {
  display: none;
  padding: 16px;
  border-radius: 12px;
  margin-top: 16px;
  font-size: 0.88rem;
  text-align: center;
}

.form-alert.success {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34D399;
}

/* ==========================================================================
   12. FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background: var(--bg-surface-1);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: rgba(204, 120, 92, 0.35);
  background: rgba(255, 255, 255, 0.035);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--terracotta-light);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  display: none;
  padding: 0 24px 22px 24px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-content {
  display: block;
}

/* ==========================================================================
   13. FOOTER & INFORMATIVE DISCLAIMER BANNER
   ========================================================================== */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 40px;
}

/* Prominent Informative Disclaimer Banner */
.disclaimer-banner {
  background: rgba(217, 119, 6, 0.06);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.disclaimer-icon {
  flex-shrink: 0;
  color: var(--amber-light);
  margin-top: 2px;
}

.disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.disclaimer-text strong {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ==========================================================================
   14. MOBILE STICKY BOTTOM CTA
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(18, 18, 17, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-sticky-info {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

.mobile-sticky-sub {
  font-size: 0.72rem;
  color: var(--terracotta-light);
}

.mobile-sticky-btn {
  padding: 10px 18px;
  font-size: 0.84rem;
  white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .split-grid, .split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-grid.reverse .split-content {
    order: 1;
  }
  .split-grid.reverse .split-media {
    order: 2;
  }
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .fact-item:nth-child(2)::after {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  .callout-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .countdown-grid {
    gap: 8px;
  }
  .countdown-cell {
    min-width: 70px;
    padding: 12px 8px;
  }
  .countdown-num {
    font-size: 1.8rem;
  }
  .table-wrap {
    display: none;
  }
  .table-cards-mobile {
    display: flex;
  }
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .fact-item::after {
    display: none !important;
  }
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
}
