/* ===========================================================
   Crowsons Distribution — stylesheet
   Light/white site, dark hero band only
   =========================================================== */

:root {
  /* Brand palette — light theme */
  --color-bg: #ffffff;
  --color-bg-alt: #f7f6f1;
  --color-surface: #ffffff;
  --color-surface-2: #f4f3ee;
  --color-border: rgba(20, 25, 23, 0.10);
  --color-border-strong: rgba(20, 25, 23, 0.18);

  --color-ink: #1c211f;
  --color-ink-dim: rgba(28, 33, 31, 0.68);
  --color-ink-faint: rgba(28, 33, 31, 0.46);

  --color-accent: #3a4a45;
  --color-accent-light: #5c7268;
  --color-accent-glow: rgba(58, 74, 69, 0.28);

  /* Secondary accent, pulled from the logo mark — used sparingly: thin
     outlines, dividers and small accents, never on primary actions. */
  --color-accent-blue: #1f6fa8;
  --color-accent-blue-light: #84b0cf;
  --color-accent-blue-border: rgba(31, 111, 168, 0.4);

  --color-black: #050605;

  /* Dark hero band only */
  --hero-bg: #0a0f0d;
  --hero-bg-2: #0d1512;
  --color-cream: #f3efe4;
  --color-cream-dim: rgba(243, 239, 228, 0.68);
  --color-cream-faint: rgba(243, 239, 228, 0.42);
  --hero-border: rgba(243, 239, 228, 0.14);
  --hero-border-strong: rgba(243, 239, 228, 0.24);

  --font-display: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-pill: 999px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --container-w: 1240px;
  --nav-h: 84px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

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

::selection {
  background: var(--color-accent-light);
  color: var(--color-cream);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-dim);
  background: rgba(20, 25, 23, 0.02);
}

.eyebrow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent-blue);
  transform: translateX(-50%);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-light);
  animation: eyebrow-pulse 2.4s infinite;
}

@keyframes eyebrow-pulse {
  0% { box-shadow: 0 0 0 0 var(--color-accent-glow); }
  70% { box-shadow: 0 0 0 7px rgba(58, 74, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(58, 74, 69, 0); }
}

.eyebrow--center { display: inline-flex; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-ink);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  color: var(--color-cream);
  box-shadow: 0 8px 24px -8px var(--color-accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px -10px var(--color-accent-glow);
}

.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-border-strong);
}

.btn-ghost:hover {
  border-color: var(--color-accent-light);
  background: rgba(58, 74, 69, 0.06);
}

.hero .btn-ghost {
  color: var(--color-cream);
  border-color: var(--hero-border-strong);
}
.hero .btn-ghost:hover {
  border-color: var(--color-accent-light);
  background: rgba(92, 114, 104, 0.14);
}

.btn-sm { padding: 11px 20px; font-size: 13.5px; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: var(--color-accent-blue-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px -18px rgba(0, 0, 0, 0.25);
}

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

.logo, .footer-brand {
  display: flex;
  align-items: center;
}

.logo-img { height: 46px; width: auto; }
.footer-brand .logo-img { height: 38px; }

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--color-accent-blue-border);
  border-radius: var(--radius-pill);
  background: rgba(20, 25, 23, 0.02);
}

.nav-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  border-radius: var(--radius-pill);
  background: rgba(20, 25, 23, 0.07);
  transition: transform 0.4s var(--ease), width 0.4s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.nav-links a {
  position: relative;
  z-index: 1;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-ink-dim);
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-ink);
}

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* ---------- Hero (dark band) ---------- */

.hero {
  position: relative;
  padding: calc(var(--nav-h) + 88px) 0 100px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, var(--hero-bg-2), var(--hero-bg));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243,239,228,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,239,228,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black, transparent 75%);
  pointer-events: none;
}

.hero-globe {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.globe-svg { width: 100%; height: 100%; opacity: 0.9; }

.star { fill: #f3efe4; }
.star--twinkle { animation: star-twinkle 3.4s ease-in-out infinite; }
@keyframes star-twinkle {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.9; }
}

.land {
  fill: rgba(28, 34, 38, 0.55);
  stroke: rgba(242, 184, 102, 0.5);
  stroke-width: 0.5;
  stroke-linejoin: round;
}

.land-glow {
  fill: rgba(242, 184, 102, 0.22);
  filter: url(#landGlow);
}

.arc {
  fill: none;
  stroke: url(#arcGrad);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 7 7;
  animation: dash-flow 3.2s linear infinite;
}
.arc--long { stroke-width: 1.8; opacity: 0.6; animation-duration: 4.6s; }

.arc--secondary {
  stroke-width: 1.2;
  opacity: 0.3;
  animation-duration: 5.5s;
  animation-direction: reverse;
}
.arc--secondary.arc--long { opacity: 0.2; animation-duration: 7s; }

@keyframes dash-flow { to { stroke-dashoffset: -140; } }

.marker-dot {
  fill: var(--color-cream);
  filter: drop-shadow(0 0 6px rgba(243, 239, 228, 0.9)) drop-shadow(0 0 12px rgba(92, 114, 104, 0.8));
}
.marker-pulse {
  fill: rgba(92, 114, 104, 0.4);
  transform-box: fill-box;
  transform-origin: center;
  animation: marker-pulse 2.6s ease-out infinite;
}
@keyframes marker-pulse {
  0% { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

.marker--hub .marker-dot {
  filter: drop-shadow(0 0 8px rgba(243, 239, 228, 1)) drop-shadow(0 0 18px rgba(92, 114, 104, 0.95));
}
.marker--hub .marker-pulse {
  fill: rgba(243, 239, 228, 0.45);
  animation-duration: 2s;
}


.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

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

.hero .eyebrow {
  color: var(--color-cream-dim);
  border-color: var(--hero-border-strong);
  background: rgba(243, 239, 228, 0.04);
}

.hero-copy .eyebrow { margin-bottom: 26px; }

.hero-copy h1 {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: var(--color-cream);
}

.hero-copy h1 .line-2 { color: var(--color-accent-light); }

.hero-copy p {
  font-size: 17px;
  color: var(--color-cream-dim);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* Feature card stack */

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.feat-card {
  position: relative;
  padding: 26px 26px 24px;
  border: 1px solid var(--hero-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}

.feat-card:hover { transform: translateY(-4px); border-color: var(--hero-border-strong); }

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-accent-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.feat-card:hover::before { transform: scaleX(1); }

.feat-card .wm {
  position: absolute;
  right: 10px;
  bottom: -18px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: rgba(243, 239, 228, 0.05);
  white-space: nowrap;
  pointer-events: none;
}

.feat-card--glow {
  border-color: rgba(92, 114, 104, 0.5);
  background: linear-gradient(160deg, rgba(92, 114, 104, 0.22), rgba(92, 114, 104, 0.04));
  box-shadow: 0 0 0 1px rgba(92,114,104,0.15), 0 20px 50px -20px rgba(92, 114, 104, 0.6);
}

.feat-card h3 {
  font-size: 15px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feat-card--glow h3 { color: var(--color-cream); }

.feat-card h3 .num {
  font-family: var(--font-display);
  font-size: 13px;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--hero-border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream-dim);
  flex-shrink: 0;
}

.feat-card p {
  font-size: 13.5px;
  color: var(--color-cream-dim);
  line-height: 1.55;
  max-width: 90%;
}

/* ---------- Who We Are ---------- */

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

.who-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.who-copy .eyebrow { margin-bottom: 26px; }

.who-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.who-copy h3 {
  font-size: clamp(20px, 2.4vw, 25px);
  line-height: 1.25;
  margin: 40px 0 16px;
  color: var(--color-accent);
}

.who-copy p {
  color: var(--color-ink-dim);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 520px;
}

.who-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a.who-signature:hover { opacity: 0.75; }

.who-signature-avatar {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-cream);
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
}

.who-signature-name {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-ink);
}

.who-signature-role {
  display: block;
  font-size: 12.5px;
  color: var(--color-ink-faint);
  margin-top: 2px;
}

.who-media { position: sticky; top: 120px; }

.who-photo-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(ellipse 90% 70% at 30% 20%, var(--hero-bg-2), var(--hero-bg));
  border: 1.5px solid var(--color-accent-blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-photo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243,239,228,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,239,228,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent 75%);
}

.who-photo-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.who-photo-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 70%);
  opacity: 0.22;
  filter: blur(10px);
  animation: who-glow-pulse 5s ease-in-out infinite;
}

@keyframes who-glow-pulse {
  0%, 100% { opacity: 0.16; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.1); }
}

.who-photo-globe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.who-globe-rim {
  fill: rgba(92, 114, 104, 0.06);
  stroke: rgba(242, 184, 102, 0.28);
  stroke-width: 1;
}

.who-flying-crow {
  opacity: 0.95;
  filter: drop-shadow(0 0 6px rgba(243, 239, 228, 0.5)) drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.who-photo-caption {
  position: absolute;
  left: 28px; right: 28px; bottom: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.who-photo-panel--photo { background: var(--hero-bg); }

.who-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.who-photo-panel--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 16, 0.85), rgba(8, 12, 16, 0) 45%);
  pointer-events: none;
}

.founder-facts {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.founder-facts li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--color-ink-dim);
}

.founder-facts li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.who-photo-caption-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--color-cream-dim);
}

.who-photo-caption-main i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent-light);
  box-shadow: 0 0 8px var(--color-accent-light);
  flex-shrink: 0;
}

.who-photo-caption-coords {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-cream-faint);
  padding-left: 14px;
  font-variant-numeric: tabular-nums;
}

/* ---------- Why Partner ---------- */

.why {
  padding: 130px 0;
  background: var(--color-bg-alt);
}

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

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s var(--ease);
}
.why-item:hover { transform: translateX(4px); }
.why-item:hover .check { background: rgba(58, 74, 69, 0.18); transform: scale(1.08); }

.why-item .check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(58, 74, 69, 0.10);
  border: 1px solid rgba(58, 74, 69, 0.35);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item .check svg { width: 14px; height: 14px; }

.why-item h3 {
  font-size: 15.5px;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-ink);
}

.why-item p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-ink-dim);
}

/* ---------- Services ---------- */

.services { padding: 130px 0; background: var(--color-bg); }

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

.service-card {
  padding: 40px 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px -8px rgba(20,25,23,0.1);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent-light);
  box-shadow: 0 24px 44px -24px rgba(20,25,23,0.28);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-accent-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  border: 1px solid var(--color-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  background: rgba(58, 74, 69, 0.06);
}

.service-card .icon-wrap svg {
  width: 26px; height: 26px;
  stroke: var(--color-accent);
}

.service-card .idx {
  position: absolute;
  top: 26px; right: 30px;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--color-border-strong);
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--color-ink-dim);
  margin-bottom: 18px;
}

.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card .tags span {
  font-size: 11.5px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  color: var(--color-ink-faint);
}

/* ---------- Process ---------- */

.process { padding: 130px 0 150px; background: var(--color-bg-alt); }

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(12.5% - 22px);
  right: calc(12.5% - 22px);
  height: 1px;
  background: var(--color-border-strong);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s var(--ease) 0.2s;
}
.process-track.is-visible::before { transform: scaleX(1); }

.process-step { text-align: center; position: relative; }

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-accent-light);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.process-step h3 { font-size: 17px; margin-bottom: 8px; }

.process-step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-ink-dim);
  max-width: 240px;
  margin: 0 auto;
}

/* ---------- FAQ ---------- */

.faq { padding: 130px 0; background: var(--color-bg-alt); }

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

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
}

.faq-q .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--color-ink-dim);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.faq-q .plus::before { width: 11px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 11px; }

.faq-item.is-open .faq-q .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-q { color: var(--color-accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}

.faq-a-inner {
  padding: 0 26px 24px;
  color: var(--color-ink-dim);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 640px;
}

/* ---------- Contact / Footer ---------- */

.contact {
  padding: 130px 0 0;
  background: var(--color-bg);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-info .eyebrow { margin-bottom: 26px; }

.contact-info h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.18;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--color-ink-dim);
  max-width: 420px;
  margin-bottom: 40px;
  font-size: 15.5px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
}
.contact-detail:last-child { border-bottom: 1px solid var(--color-border); }

.contact-detail .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--color-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .ic svg { width: 16px; height: 16px; stroke: var(--color-accent); }

.contact-detail .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-ink-faint); margin-bottom: 3px; }
.contact-detail .value { font-size: 15px; color: var(--color-ink); }
.contact-detail a.value {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.contact-detail a.value::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--color-accent-light);
  transition: width 0.3s var(--ease);
}
.contact-detail a.value:hover { color: var(--color-accent); }
.contact-detail a.value:hover::after { width: 100%; }

.founder-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, rgba(58, 74, 69, 0.07), rgba(20,25,23,0.015));
}

.founder-avatar {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-cream);
  background: var(--color-accent-light);
}

.founder-note p {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-ink);
  line-height: 1.4;
  margin-bottom: 8px;
}

.founder-name {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--color-ink-faint);
}

.contact-form {
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-faint);
  margin-bottom: 9px;
}

.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 14.5px;
  transition: border-color .25s, background .25s;
}

.field textarea { resize: vertical; min-height: 120px; }

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-accent-light);
  background: rgba(58, 74, 69, 0.04);
}

.field input::placeholder, .field textarea::placeholder { color: var(--color-ink-faint); }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(180, 60, 50, 0.35);
  background: rgba(180, 60, 50, 0.06);
  color: var(--color-ink);
  font-size: 14px;
}
.form-error.is-visible { display: block; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(58, 74, 69, 0.4);
  background: rgba(58, 74, 69, 0.08);
  color: var(--color-ink);
  font-size: 14px;
}
.form-success.is-visible { display: flex; }

/* Footer */

.footer {
  margin-top: 100px;
  padding: 50px 0 34px;
  border-top: 1px solid var(--color-accent-blue-border);
  background: var(--color-bg-alt);
}

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

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 12.5px;
  color: var(--color-ink-faint);
}

.footer-meta span::after { content: "•"; margin-left: 18px; color: var(--color-border-strong); }
.footer-meta span:last-child::after { content: ""; margin-left: 0; }
.footer-meta a:hover { color: var(--color-accent); }

.form-note {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-ink-faint);
  text-align: center;
}
.form-note a { text-decoration: underline; text-underline-offset: 2px; }
.form-note a:hover { color: var(--color-accent); }

/* ---------- Legal pages ---------- */

.legal-hero {
  padding: calc(var(--nav-h) + 64px) 0 56px;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-accent-blue-border);
}

.legal-hero .eyebrow { margin-bottom: 22px; }

.legal-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.legal-hero .updated {
  font-size: 13px;
  color: var(--color-ink-faint);
}

.legal-content { padding: 80px 0 120px; background: var(--color-bg); }

.legal-content .container { max-width: 760px; }

.legal-content h2 {
  font-size: 21px;
  line-height: 1.3;
  margin: 48px 0 16px;
}
.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  color: var(--color-ink-dim);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul { margin: 0 0 16px 22px; }

.legal-content li {
  list-style: disc;
  color: var(--color-ink-dim);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-content a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }

.legal-content strong { color: var(--color-ink); }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .35s; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-cards { max-width: 560px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .who-grid { grid-template-columns: 1fr; gap: 44px; }
  .who-media { position: static; order: -1; max-width: 380px; }
  .who-copy p { max-width: none; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav .btn-primary.btn-sm.nav-only { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 26px; }
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-track::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: calc(var(--nav-h) + 48px) 0 70px; }
  .who, .services, .faq, .why, .process { padding: 90px 0; }
  .who-media { max-width: 280px; }
  .process-track { grid-template-columns: 1fr; gap: 36px; }
  .contact { padding: 90px 0 0; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .footer .container { flex-direction: column; align-items: flex-start; }
  .founder-note { flex-direction: column; }
  .logo-img { height: 38px; }
}

/* ---------- Mobile nav drawer ---------- */

.mobile-drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  gap: 6px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 26px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-ink);
}

.mobile-drawer .btn { margin-top: 30px; align-self: flex-start; }

body.no-scroll { overflow: hidden; }

/* ---------- Insights ---------- */

.insights-list { padding: 80px 0 120px; background: var(--color-bg); }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-w);
}

.insight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: 0 2px 12px -8px rgba(20,25,23,0.1);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.insight-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent-light);
  box-shadow: 0 24px 44px -24px rgba(20,25,23,0.28);
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-accent-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.insight-card:hover::before { transform: scaleX(1); }

.insight-card .insight-date {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-faint);
  margin-bottom: 14px;
}

.insight-card h3 {
  font-size: 19px;
  line-height: 1.32;
  margin-bottom: 12px;
}

.insight-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-ink-dim);
  margin-bottom: 20px;
  flex-grow: 1;
}

.insight-card .insight-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.insight-card .insight-link svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.insight-card:hover .insight-link svg { transform: translateX(3px); }

.insight-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 32px;
}

@media (max-width: 860px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ---------- Glossary ---------- */

.glossary-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.glossary-jump a {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink-dim);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.glossary-jump a:hover {
  color: var(--color-ink);
  border-color: var(--color-accent-light);
  background: rgba(58, 74, 69, 0.06);
}

.glossary-list { max-width: 760px; margin: 0 auto; }

.glossary-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 110px;
}
.glossary-item:last-child { border-bottom: none; }

.glossary-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.glossary-item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-ink-dim);
}

.glossary-item p a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
