/* ============================================
   CONNECTIVE MOTION — Global Stylesheet
   ============================================ */

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

:root {
  --black: #0D0D0D;
  --offwhite: #F0EDE6;
  --orange: #D4571E;
  --orange-dim: rgba(212,87,30,0.12);
  --white-low: rgba(240,237,230,0.12);
  --white-mid: rgba(240,237,230,0.45);
  --white-high: rgba(240,237,230,0.75);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--offwhite);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 48px;
  border-bottom: 0.5px solid var(--white-low);
  background: rgba(13,13,13,0.93);
  backdrop-filter: blur(14px);
  transition: padding 0.3s;
}
nav.scrolled { padding: 12px 48px; }

.logo { text-decoration: none; line-height: 1.1; }
.logo-top { display: block; font-family: var(--sans); font-size: 10px; font-weight: 300; letter-spacing: 0.25em; color: var(--offwhite); }
.logo-bot { display: block; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; color: var(--orange); }

.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 11px; letter-spacing: 0.12em; color: var(--white-mid); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--offwhite); }

.nav-btns { display: flex; gap: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--offwhite); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 150;
  background: var(--black); padding: 100px 40px 40px;
  flex-direction: column; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 24px; font-family: var(--serif); font-weight: 300; color: var(--offwhite); text-decoration: none; border-bottom: 0.5px solid var(--white-low); padding-bottom: 20px; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-btns { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-fill {
  background: var(--orange); color: var(--offwhite);
  border: none; padding: 10px 22px;
  font-size: 11px; letter-spacing: 0.14em; font-weight: 500;
  font-family: var(--sans); border-radius: 3px;
  cursor: pointer; text-decoration: none; text-transform: uppercase;
  display: inline-block; transition: opacity 0.2s;
}
.btn-fill:hover { opacity: 0.85; }
.btn-fill.btn-lg { padding: 14px 30px; font-size: 11px; }

.btn-ghost {
  background: transparent; color: var(--offwhite);
  border: 0.5px solid rgba(240,237,230,0.4);
  padding: 10px 22px; font-size: 11px; letter-spacing: 0.14em;
  font-family: var(--sans); border-radius: 3px;
  cursor: pointer; text-decoration: none; text-transform: uppercase;
  display: inline-block; transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--offwhite); }
.btn-ghost.btn-lg { padding: 14px 30px; }

.btn-white {
  background: var(--offwhite); color: var(--black);
  border: none; padding: 14px 30px;
  font-size: 11px; letter-spacing: 0.15em; font-weight: 500;
  font-family: var(--sans); border-radius: 3px;
  cursor: pointer; text-decoration: none; text-transform: uppercase;
  display: inline-block; transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.88; }

.btn-outline-white {
  background: transparent; color: var(--offwhite);
  border: 1px solid rgba(240,237,230,0.55);
  padding: 14px 30px; font-size: 11px; letter-spacing: 0.15em;
  font-family: var(--sans); border-radius: 3px;
  cursor: pointer; text-decoration: none; text-transform: uppercase;
  display: inline-block; transition: border-color 0.2s;
}
.btn-outline-white:hover { border-color: var(--offwhite); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.08; }
h2 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 24px; }
h2 em, h1 em, h3 em { font-style: italic; color: var(--orange); }
.eyebrow { font-size: 10px; letter-spacing: 0.3em; color: var(--orange); text-transform: uppercase; margin-bottom: 20px; display: block; }
.section-tag { font-size: 10px; letter-spacing: 0.28em; color: var(--orange); text-transform: uppercase; margin-bottom: 18px; display: block; }
.body-text { font-size: 15px; color: var(--white-mid); line-height: 1.8; }
.lead { font-size: 16px; color: var(--white-mid); line-height: 1.8; max-width: 600px; margin-bottom: 48px; }

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.section-pad { padding: 100px 48px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.two-col-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: start; }

.topo-bg {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 22px, rgba(212,87,30,0.035) 22px, rgba(212,87,30,0.035) 23px),
    repeating-linear-gradient(55deg, transparent, transparent 40px, rgba(212,87,30,0.02) 40px, rgba(212,87,30,0.02) 41px);
}

.dark-card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid var(--white-low);
  border-radius: 8px; padding: 36px;
}
.dark-card + .dark-card { margin-top: 14px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; padding: 160px 48px 80px;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.hero-topo {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(212,87,30,0.04) 24px, rgba(212,87,30,0.04) 25px),
    repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(212,87,30,0.02) 40px, rgba(212,87,30,0.02) 41px);
}
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 65% 35%, rgba(212,87,30,0.07) 0%, transparent 55%); }
.hero-mountain { position: absolute; right: 0; top: 0; bottom: 0; width: 65%; pointer-events: none; }
.hero-mountain svg { width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-h1 { font-size: clamp(52px, 8vw, 96px); font-weight: 300; line-height: 1.0; margin-bottom: 28px; }
.hero-sub { font-size: 16px; color: var(--white-mid); max-width: 500px; line-height: 1.75; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   PLATFORM STRIP
   ============================================ */
.platform-strip {
  border-top: 0.5px solid var(--white-low);
  border-bottom: 0.5px solid var(--white-low);
  padding: 18px 48px; overflow: hidden;
}
.platform-inner { display: flex; align-items: center; gap: 28px; white-space: nowrap; }
.platform-label { font-size: 10px; letter-spacing: 0.2em; color: var(--white-mid); text-transform: uppercase; flex-shrink: 0; }
.platform-logos { display: flex; gap: 20px; align-items: center; animation: ticker 30s linear infinite; }
.plat { font-size: 11px; letter-spacing: 0.15em; color: rgba(240,237,230,0.35); text-transform: uppercase; }
.plat-dot { color: var(--orange); font-size: 14px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   ABOUT / PULLQUOTE
   ============================================ */
.pullquote-block { margin-bottom: 40px; }
.pullquote-line { width: 36px; height: 2px; background: var(--orange); margin-bottom: 20px; }
.pullquote { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); font-weight: 300; font-style: italic; color: var(--offwhite); line-height: 1.4; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-box {
  background: rgba(255,255,255,0.03); border: 0.5px solid var(--white-low);
  border-radius: 6px; padding: 20px;
}
.stat-num { font-family: var(--serif); font-size: 44px; font-weight: 300; color: var(--offwhite); line-height: 1; margin-bottom: 4px; }
.stat-num span { color: var(--orange); }
.stat-label { font-size: 10px; letter-spacing: 0.15em; color: var(--white-mid); text-transform: uppercase; }

/* ============================================
   SPLIT SECTION
   ============================================ */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-card { padding: 80px 56px; }
.split-dark { background: #111111; }
.split-light { background: var(--offwhite); }
.split-h { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.1; margin: 16px 0 20px; }
.split-h em { font-style: italic; color: var(--orange); }
.split-body { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.split-dark .split-body { color: var(--white-mid); }
.split-light .split-body { color: rgba(13,13,13,0.6); }
.split-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.split-list li { font-size: 13px; padding-left: 16px; position: relative; }
.split-list li::before { content: '—'; position: absolute; left: 0; color: var(--orange); }
.split-dark .split-list li { color: var(--white-mid); }
.split-light .split-list li { color: rgba(13,13,13,0.6); }

/* ============================================
   HOW IT WORKS — STEPS
   ============================================ */
.steps-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: start; margin-top: 56px; }
.step-item { padding: 32px; border: 0.5px solid var(--white-low); border-radius: 6px; }
.step-arrow { font-size: 20px; color: var(--orange); align-self: center; padding: 0 16px; }
.step-num-lg { font-family: var(--serif); font-size: 52px; font-weight: 300; color: rgba(212,87,30,0.3); line-height: 1; margin-bottom: 12px; }
.step-title { font-size: 15px; font-weight: 500; color: var(--offwhite); margin-bottom: 10px; }
.step-body { font-size: 13px; color: var(--white-mid); line-height: 1.7; }

/* ============================================
   NICHE GRID
   ============================================ */
.niche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--white-low); border: 0.5px solid var(--white-low); margin-top: 48px; }
.niche-card { background: var(--black); padding: 36px 32px; transition: background 0.25s; }
.niche-card:hover { background: rgba(212,87,30,0.06); }
.niche-num { font-family: var(--serif); font-size: 36px; font-weight: 300; color: rgba(212,87,30,0.3); line-height: 1; margin-bottom: 10px; }
.niche-title { font-size: 15px; font-weight: 500; color: var(--offwhite); margin-bottom: 8px; }
.niche-body { font-size: 13px; color: var(--white-mid); line-height: 1.65; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { background: var(--orange); padding: 90px 48px; text-align: center; }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(42px, 6vw, 76px); font-weight: 300; font-style: italic; color: var(--offwhite); margin-bottom: 14px; }
.cta-banner p { font-size: 15px; color: rgba(240,237,230,0.75); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT FORM
   ============================================ */
.form-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--white-low);
  border-radius: 4px; padding: 12px 16px;
  color: var(--offwhite); font-family: var(--sans);
  font-size: 14px; font-weight: 300;
  transition: border-color 0.2s; outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(212,87,30,0.6); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,237,230,0.25); }
.form-group select option { background: #1a1a1a; color: var(--offwhite); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-list { list-style: none; }
.feature-item {
  padding: 22px 0; border-bottom: 0.5px solid var(--white-low);
  display: grid; grid-template-columns: 20px 1fr; gap: 16px; align-items: start;
}
.feature-item:first-child { border-top: 0.5px solid var(--white-low); }
.feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); margin-top: 8px; flex-shrink: 0; }
.feature-title { font-size: 14px; font-weight: 500; color: var(--offwhite); margin-bottom: 5px; letter-spacing: 0.02em; }
.feature-body { font-size: 13px; color: var(--white-mid); line-height: 1.65; }

/* ============================================
   PROCESS STEPS (subpages)
   ============================================ */
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px;
  padding: 36px 0; border-bottom: 0.5px solid var(--white-low); align-items: start;
}
.process-step:first-child { border-top: 0.5px solid var(--white-low); }
.process-num { font-family: var(--serif); font-size: 48px; font-weight: 300; color: rgba(212,87,30,0.3); line-height: 1; }
.process-title { font-size: 16px; font-weight: 500; color: var(--offwhite); margin-bottom: 8px; }
.process-body { font-size: 13px; color: var(--white-mid); line-height: 1.7; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
details { border-bottom: 0.5px solid var(--white-low); }
details:first-of-type { border-top: 0.5px solid var(--white-low); }
summary {
  padding: 22px 0; font-size: 14px; font-weight: 400;
  color: var(--offwhite); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: 0.02em;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--orange); flex-shrink: 0; }
details[open] summary::after { content: '−'; }
.faq-answer { font-size: 13px; color: var(--white-mid); line-height: 1.75; padding-bottom: 22px; max-width: 640px; }

/* ============================================
   VALUE / WHO STRIPS (subpages)
   ============================================ */
.value-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 0.5px solid var(--white-low); border-bottom: 0.5px solid var(--white-low); }
.value-item { padding: 32px 36px; border-right: 0.5px solid var(--white-low); }
.value-item:last-child { border-right: none; }
.value-bar { width: 28px; height: 2px; background: var(--orange); margin-bottom: 14px; }
.value-title { font-size: 13px; font-weight: 500; color: var(--offwhite); margin-bottom: 6px; }
.value-body { font-size: 12px; color: var(--white-mid); line-height: 1.6; }

.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 0.5px solid var(--white-low); border-bottom: 0.5px solid var(--white-low); }
.stat-strip-item { padding: 36px 48px; border-right: 0.5px solid var(--white-low); }
.stat-strip-item:last-child { border-right: none; }
.stat-strip-num { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--offwhite); line-height: 1; margin-bottom: 6px; }
.stat-strip-num span { color: var(--orange); }
.stat-strip-label { font-size: 11px; letter-spacing: 0.15em; color: var(--white-mid); text-transform: uppercase; }

.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.who-card { background: rgba(255,255,255,0.03); border: 0.5px solid var(--white-low); border-radius: 8px; padding: 28px 24px; transition: border-color 0.2s; }
.who-card:hover { border-color: rgba(212,87,30,0.4); }
.who-platform { font-size: 9px; letter-spacing: 0.2em; color: var(--orange); text-transform: uppercase; margin-bottom: 10px; }
.who-title { font-size: 14px; font-weight: 500; color: var(--offwhite); margin-bottom: 8px; }
.who-body { font-size: 12px; color: var(--white-mid); line-height: 1.65; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag-pill { padding: 7px 14px; border: 0.5px solid var(--white-low); border-radius: 20px; font-size: 11px; letter-spacing: 0.08em; color: var(--white-mid); text-transform: uppercase; transition: all 0.2s; cursor: default; }
.tag-pill:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================
   FOOTER
   ============================================ */
footer { border-top: 0.5px solid var(--white-low); padding: 48px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 24px; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-size: 11px; letter-spacing: 0.12em; color: var(--white-mid); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.footer-nav a:hover { color: var(--offwhite); }
.footer-social { display: flex; gap: 10px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 0.5px solid var(--white-low); border-radius: 50%; font-size: 9px; font-weight: 500; color: var(--white-mid); text-decoration: none; letter-spacing: 0.05em; transition: all 0.2s; }
.social-link:hover { border-color: var(--orange); color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 0.5px solid var(--white-low); }
.footer-bottom span { font-size: 10px; color: rgba(240,237,230,0.25); letter-spacing: 0.1em; }

/* ============================================
   FADE UP ANIMATION
   ============================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-btns { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 60px 24px; }
  .hero { padding: 120px 24px 60px; min-height: 85vh; }
  .hero-mountain { width: 100%; opacity: 0.35; }
  .two-col, .two-col-3-2 { grid-template-columns: 1fr; gap: 40px; }
  .split-section { grid-template-columns: 1fr; }
  .split-card { padding: 56px 24px; }
  .steps-row { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip-item { border-right: none; border-bottom: 0.5px solid var(--white-low); padding: 28px 24px; }
  .value-strip { grid-template-columns: 1fr 1fr; }
  .value-item { border-right: none; border-bottom: 0.5px solid var(--white-low); }
  .who-grid { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .platform-strip { padding: 16px 24px; }
  .cta-banner { padding: 60px 24px; }
  footer { padding: 40px 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .process-step { grid-template-columns: 60px 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .niche-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 44px; }
  .stat-grid { grid-template-columns: 1fr; }
  .value-strip { grid-template-columns: 1fr; }
}
