/* ============================================================
   DataDate Intelligence — Global Stylesheet
   Version: 1.0 | © 2026 DataDate Intelligence, LLC
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS VARIABLES
   ------------------------------------------------------------ */
:root {
  --navy:         #0B1E3D;
  --navy-mid:     #142D58;
  --navy-light:   #1E3F7A;
  --gold:         #C8972A;
  --gold-light:   #E8B84B;
  --gold-pale:    #F5E6C0;
  --cream:        #FAF7F0;
  --white:        #FFFFFF;
  --gray-100:     #F4F3EF;
  --gray-300:     #C8C5BC;
  --gray-500:     #857F72;
  --gray-700:     #3D3A32;
  --danger:       #C0392B;
  --danger-bg:    rgba(192, 57, 43, 0.06);
  --danger-border:rgba(192, 57, 43, 0.25);
  --danger-text:  #8B2315;
  --success:      #27AE60;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    14px;
  --shadow-card:  0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.10);
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ------------------------------------------------------------
   3. NAVIGATION
   ------------------------------------------------------------ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(11, 30, 61, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 151, 42, 0.2);
}

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

.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-back {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-back::before { content: '←'; }
.nav-back:hover { color: var(--gold-light); }

/* ------------------------------------------------------------
   4. PAGE HERO (shared across inner pages)
   ------------------------------------------------------------ */
.page-hero {
  background: var(--navy);
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 151, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 151, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

.page-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.page-meta-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.page-meta-item strong {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
}

/* ------------------------------------------------------------
   5. SECTION UTILITIES
   ------------------------------------------------------------ */
section { padding: 6rem 3rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.section-body {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.8;
}

.section-body.light { color: rgba(255, 255, 255, 0.6); }

/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '→'; }

.btn-pricing {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-pricing.primary { background: var(--navy); color: var(--white); }
.btn-pricing.primary:hover { background: var(--navy-light); }
.btn-pricing.secondary { background: var(--gold); color: var(--navy); }
.btn-pricing.secondary:hover { background: var(--gold-light); }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

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

.btn-submit.navy:hover { background: var(--navy-light); }

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

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

/* ------------------------------------------------------------
   8. BADGES
   ------------------------------------------------------------ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 151, 42, 0.12);
  border: 1px solid rgba(200, 151, 42, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero-badge.danger {
  background: rgba(192, 57, 43, 0.15);
  border-color: rgba(192, 57, 43, 0.35);
  color: #E74C3C;
}

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

.hero-badge.danger .hero-badge-dot { background: #E74C3C; }

/* ------------------------------------------------------------
   9. FORM ELEMENTS (shared)
   ------------------------------------------------------------ */
.form-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 3rem 6rem;
}

.form-intro { margin-bottom: 3rem; }

.form-intro h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.form-intro p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 600px;
}

.form-block {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
}

.form-block-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-block-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group label .req {
  color: var(--danger);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 151, 42, 0.1);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group .hint {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 5px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 13px;
  color: var(--gray-700);
  user-select: none;
  position: relative;
}

.checkbox-item:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--navy);
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.checkbox-item.checked {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.pain-card {
  background: rgba(200, 151, 42, 0.05);
  border: 1px solid rgba(200, 151, 42, 0.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.pain-card label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.5;
}

.pain-card .sub {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 10px;
  font-style: italic;
}

.agreement-block {
  background: var(--navy);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.agreement-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.agreement-item:last-child { margin-bottom: 0; }

.agreement-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}

.agreement-item label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  cursor: pointer;
}

.agreement-item label a { color: var(--gold-light); }
.agreement-item label a:hover { text-decoration: underline; }

.submit-wrap { margin-top: 2rem; }

.submit-note {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   10. FORM FEEDBACK STATES
   ------------------------------------------------------------ */
.form-success {
  display: none;
  background: var(--white);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-top: 4px solid var(--success);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}

.form-success .icon { font-size: 3rem; margin-bottom: 1rem; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}

.form-success .next-steps {
  margin-top: 2rem;
  background: var(--gray-100);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.form-success .next-steps h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-success .next-steps ul { list-style: none; }

.form-success .next-steps li {
  font-size: 14px;
  color: var(--gray-700);
  padding: 5px 0;
  display: flex;
  gap: 8px;
}

.form-success .next-steps li::before {
  content: '→';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.form-error {
  display: none;
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 14px;
  color: var(--danger-text);
}

.submit-error {
  display: none;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 13px;
  color: var(--danger-text);
}

/* ------------------------------------------------------------
   11. NOTICE / HIGHLIGHT BOXES (legal pages)
   ------------------------------------------------------------ */
.notice-box {
  background: var(--white);
  border: 1px solid rgba(200, 151, 42, 0.3);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
}

.notice-box strong { color: var(--navy); }

.warning-box {
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
  font-size: 14px;
  color: var(--danger-text);
  line-height: 1.7;
}

.warning-box strong { color: #8B2315; }

.highlight-box {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
}

.highlight-box strong { color: var(--navy); }

/* ------------------------------------------------------------
   12. LEGAL CONTENT SECTIONS
   ------------------------------------------------------------ */
.content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}

.section-block { margin-bottom: 3rem; scroll-margin-top: 100px; }

.section-block h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.section-number {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 10px;
  vertical-align: middle;
}

.section-block p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.section-block ul { list-style: none; margin: 0.75rem 0 1rem; }

.section-block ul li {
  font-size: 15px;
  color: var(--gray-700);
  padding: 6px 0 6px 1.5rem;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section-block ul li:last-child { border-bottom: none; }

.section-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.col-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.col-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.col-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

.toc-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem 3rem;
}

.toc-inner { max-width: 800px; margin: 0 auto; }

.toc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.toc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.toc-links a {
  font-size: 13px;
  color: var(--navy);
  background: var(--gray-100);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 100px;
  padding: 4px 14px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.toc-links a:hover {
  background: var(--navy);
  color: var(--gold-light);
}

/* ------------------------------------------------------------
   13. CONTACT BLOCK (legal pages)
   ------------------------------------------------------------ */
.contact-block {
  background: var(--navy);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-top: 3rem;
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-block p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.contact-block a { color: var(--gold-light); }
.contact-block a:hover { text-decoration: underline; }

/* ------------------------------------------------------------
   14. WHAT CARD (lead capture pages)
   ------------------------------------------------------------ */
.what-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 151, 42, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.what-card-header {
  background: rgba(200, 151, 42, 0.1);
  border-bottom: 1px solid rgba(200, 151, 42, 0.2);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.what-card-header span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.what-card-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.what-card-price sub { font-size: 0.9rem; vertical-align: baseline; }
.what-card-subprice { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; text-align: right; }

.what-list { padding: 1.25rem 1.5rem; list-style: none; }

.what-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.5;
}

.what-list li:last-child { border-bottom: none; }

.what-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.what-card-footer {
  background: rgba(200, 151, 42, 0.06);
  border-top: 1px solid rgba(200, 151, 42, 0.15);
  padding: 1rem 1.5rem;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* ------------------------------------------------------------
   15. SLOTS COUNTER (founder page)
   ------------------------------------------------------------ */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  margin-bottom: 0.5rem;
}

.slot {
  height: 8px;
  border-radius: 2px;
  background: rgba(200, 151, 42, 0.25);
}

.slot.taken  { background: var(--danger); }
.slot.available { background: var(--gold); }

.slots-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  margin-bottom: 1.5rem;
}

.slots-label strong { color: var(--gold-light); }

/* ------------------------------------------------------------
   16. FOOTER
   ------------------------------------------------------------ */
footer {
  background: #070F1E;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(200, 151, 42, 0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

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

.footer-contact {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact a { color: var(--gold-light); }

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ------------------------------------------------------------
   17. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .content-wrap { padding: 2.5rem 1.5rem 4rem; }
  .toc-strip { padding: 1.5rem; }
  .form-section { padding: 3rem 1.5rem 4rem; }
  .form-block { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }
}

/* ------------------------------------------------------------
   18. HOMEPAGE — HERO
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 5rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(135deg, transparent 0%, rgba(200,151,42,0.04) 100%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,151,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-left { position: relative; z-index: 2; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em { font-style: normal; color: var(--gold); display: block; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* SMS Phone Mockup */
.hero-right {
  position: relative; z-index: 2;
  display: flex; justify-content: center;
  animation: fadeUp 0.7s 0.2s ease both;
}

.phone-frame {
  width: 300px;
  background: #1A1A1A;
  border-radius: 40px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}

.phone-notch {
  width: 100px; height: 28px;
  background: #1A1A1A;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 12px;
  position: relative; z-index: 2;
}

.phone-screen {
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  padding: 20px 16px;
}

.sms-header {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

.sms-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900; font-size: 16px;
  color: var(--navy);
}

.sms-name { color: #fff; font-size: 14px; font-weight: 500; }
.sms-label { color: rgba(255,255,255,0.4); font-size: 11px; }
.sms-time { color: rgba(255,255,255,0.3); font-size: 11px; text-align: center; margin-bottom: 12px; }

.sms-bubble {
  background: #1C1C1E;
  border-radius: 18px 18px 18px 4px;
  padding: 12px 14px;
  margin-bottom: 8px;
  max-width: 85%;
}

.sms-bubble.alert {
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 12px;
  max-width: 100%;
}

.sms-alert-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}

.sms-alert-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--danger);
  animation: pulse 1.5s infinite;
}

.sms-alert-title {
  font-size: 11px; font-weight: 600;
  color: #E74C3C;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sms-bubble p { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.sms-bubble strong { color: var(--gold-light); font-weight: 500; }

.sms-bubble .mono {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}

/* ------------------------------------------------------------
   19. HOMEPAGE — PAIN STRIP
   ------------------------------------------------------------ */
.pain-strip {
  background: var(--navy-mid);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  border-top: 1px solid rgba(200,151,42,0.15);
  border-bottom: 1px solid rgba(200,151,42,0.15);
  flex-wrap: wrap;
}

.pain-stat { text-align: center; }

.pain-stat .number {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.pain-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  max-width: 160px;
}

.pain-divider { width: 1px; height: 50px; background: rgba(200,151,42,0.2); }

/* ------------------------------------------------------------
   20. HOMEPAGE — HOW IT WORKS
   ------------------------------------------------------------ */
.how-section { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.step {
  padding: 2.5rem;
  background: var(--cream);
  transition: background 0.2s;
}

.step:hover { background: var(--gray-100); }

.step-number {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 900;
  color: rgba(200,151,42,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.step p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

.step-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 20px;
}

/* ------------------------------------------------------------
   21. HOMEPAGE — THE PROBLEM
   ------------------------------------------------------------ */
.problem-section { background: var(--navy); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.evergreen-explainer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,151,42,0.2);
  border-radius: 12px;
  overflow: hidden;
}

.evergreen-header {
  background: rgba(200,151,42,0.1);
  border-bottom: 1px solid rgba(200,151,42,0.2);
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 10px;
}

.evergreen-header span {
  font-size: 12px; font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.timeline { padding: 1.5rem; display: flex; flex-direction: column; }

.timeline-item {
  display: flex; gap: 1rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 14px; top: 28px;
  width: 1px; height: 100%;
  background: rgba(255,255,255,0.1);
}

.timeline-dot {
  width: 28px; height: 28px; border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  margin-top: 2px;
}

.timeline-dot.green { background: rgba(39,174,96,0.2); color: #2ECC71; border: 1px solid rgba(39,174,96,0.4); }
.timeline-dot.gold  { background: rgba(200,151,42,0.2); color: var(--gold); border: 1px solid rgba(200,151,42,0.4); }
.timeline-dot.red   { background: rgba(192,57,43,0.2); color: #E74C3C; border: 1px solid rgba(192,57,43,0.4); }

.timeline-content { padding-bottom: 1.5rem; }
.timeline-content h4 { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.timeline-content p  { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.timeline-content .alert-text { color: #E74C3C; font-weight: 500; }

.problem-points { list-style: none; }
.problem-points li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.problem-points li:last-child { border-bottom: none; }

.problem-point-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(200,151,42,0.1);
  border: 1px solid rgba(200,151,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}

.problem-points h4 { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.problem-points p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ------------------------------------------------------------
   22. HOMEPAGE — PRICING
   ------------------------------------------------------------ */
.pricing-section { background: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
  max-width: 820px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: box-shadow 0.2s;
}

.pricing-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.pricing-card.featured { border-color: var(--gold); border-width: 2px; }

.pricing-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.pricing-tier { font-size: 12px; font-weight: 600; color: var(--gray-500); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  color: var(--navy); line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-period  { font-size: 13px; color: var(--gray-500); margin-bottom: 1.5rem; }
.pricing-desc    { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); }

.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--gray-700);
  padding: 6px 0;
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; }
.pricing-note { font-size: 13px; color: var(--gray-500); margin-top: 1rem; }

/* ------------------------------------------------------------
   23. HOMEPAGE — ABOUT
   ------------------------------------------------------------ */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,151,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-card-label { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.about-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.about-card p  { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; }

.about-stack { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 8px; }

.stack-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px; color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
}

.about-copy h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.about-copy p  { font-size: 1rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 1rem; }

/* ------------------------------------------------------------
   24. HOMEPAGE — CONTACT
   ------------------------------------------------------------ */
.contact-section { background: var(--gray-100); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.contact-info p  { font-size: 14px; color: var(--gray-500); line-height: 1.8; margin-bottom: 1.5rem; }

.contact-detail { display: flex; gap: 12px; align-items: center; margin-bottom: 1rem; }

.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}

.contact-detail-text { font-size: 14px; color: var(--gray-700); }
.contact-detail-text span { display: block; font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }

.form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}

.form-submit:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ------------------------------------------------------------
   25. LEAD CAPTURE PAGES — HERO GRID
   ------------------------------------------------------------ */
.lead-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ------------------------------------------------------------
   26. HOMEPAGE RESPONSIVE ADDITIONS
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; }
  .hero-right { display: none; }
  .steps { grid-template-columns: 1fr; }
  .problem-grid,
  .about-grid,
  .contact-grid,
  .pricing-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pain-strip { padding: 2rem 1.5rem; }
  .pain-divider { display: none; }
  .lead-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lead-hero-inner .hero-right { display: none; }
}
