/* ============================================================
   PAPERWORKS — bright / modern stylesheet
   Type: Plus Jakarta Sans
   ============================================================ */

:root {
  --ink: #11142a;
  --ink-2: #2b3050;
  --muted: #5b6178;
  --muted-light: #8a90a6;
  --bg: #ffffff;
  --bg-tint: #f5f6fb;
  --bg-tint-2: #eef0fa;
  --line: #e9ebf3;
  --card: #ffffff;

  /* accent (set by tweaks) */
  --accent: #5a45e0;
  --accent-2: #8b5cf6;
  --accent-deep: #4733bd;
  --accent-soft: #efecfd;

  --gold: #f6b209;
  --shadow-sm: 0 2px 8px rgba(17,20,42,0.05);
  --shadow: 0 12px 30px -12px rgba(17,20,42,0.14);
  --shadow-lg: 0 30px 60px -24px rgba(17,20,42,0.22);
  --r-card: 22px;
  --r-sm: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink); overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
section { padding: 6.5rem 0; position: relative; }

/* ---------- typography ---------- */
h1, h2, h3 { letter-spacing: -0.025em; line-height: 1.05; font-weight: 800; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-deep); background: var(--accent-soft);
  padding: 0.5rem 0.95rem; border-radius: 999px;
}
.section-head { max-width: 660px; margin-bottom: 3.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 1.1rem 0 1rem; text-wrap: balance; }
.section-head p { font-size: 1.18rem; color: var(--muted); text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem; font-family: inherit;
  font-size: 1rem; font-weight: 700; padding: 0.95rem 1.6rem; border-radius: 999px;
  border: 1.5px solid transparent; text-decoration: none; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -10px var(--accent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px var(--accent); }
.btn-soft { background: var(--accent-soft); color: var(--accent-deep); }
.btn-soft:hover { transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); padding-left: 0.4rem; }
.btn-ghost:hover { color: var(--accent-deep); gap: 0.85rem; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: var(--ink); color: rgba(255,255,255,0.78);
  text-align: center; font-size: 0.86rem; font-weight: 600;
  padding: 0.65rem 1.5rem; letter-spacing: 0.01em;
}
.announce-bar a {
  color: #fff; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35); transition: border-color 0.2s;
}
.announce-bar a:hover { border-color: #fff; }
.announce-pill {
  display: inline-flex; align-items: center;
  background: var(--accent); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.2rem 0.62rem; border-radius: 999px;
  margin-right: 0.5rem; vertical-align: middle;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem; background: rgba(255,255,255,0.8);
  backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: all 0.3s ease;
}
nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }

/* Nav transparent state over dark hero */
nav.nav-dark:not(.scrolled) {
  background: transparent; border-color: transparent;
  box-shadow: none; backdrop-filter: none;
}
nav.nav-dark:not(.scrolled) .logo-name { color: #fff; }
nav.nav-dark:not(.scrolled) .logo-mark {
  background: rgba(255,255,255,0.14); box-shadow: none; color: #fff;
}
nav.nav-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.72); }
nav.nav-dark:not(.scrolled) .nav-links a:hover { color: #fff; }
nav.nav-dark:not(.scrolled) .btn-primary {
  background: #fff; color: var(--accent-deep); box-shadow: 0 8px 20px -8px rgba(0,0,0,0.3);
}
nav.nav-dark:not(.scrolled) .btn-primary:hover {
  background: rgba(255,255,255,0.92); transform: translateY(-2px);
}
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  font-weight: 800; font-size: 1.1rem; box-shadow: 0 6px 14px -6px var(--accent);
}
.logo-name { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.03em; color: var(--ink); }
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a { font-size: 0.97rem; font-weight: 600; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 9.5rem 0 4.5rem; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 78% 18%, var(--accent-soft) 0%, transparent 60%),
    radial-gradient(50% 40% at 12% 5%, var(--bg-tint) 0%, transparent 55%);
}

/* — Dark hero variant — */
.hero--dark { background: var(--ink); border-radius: 0 0 44px 44px; padding-top: 11rem; }
.hero--dark::before {
  background:
    radial-gradient(65% 55% at 80% 12%, rgba(90,69,224,0.30) 0%, transparent 60%),
    radial-gradient(45% 38% at 8% 6%, rgba(139,92,246,0.20) 0%, transparent 55%);
}
.hero--dark h1 { color: #fff; }
.hero--dark .sub { color: rgba(255,255,255,0.68); }
.hero--dark .hero-checks li { color: rgba(255,255,255,0.82); }
.hero--dark .check { background: rgba(90,69,224,0.32); color: var(--accent-2); }
.hero--dark .eyebrow {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.16);
}
.hero--dark .btn-outline {
  background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.28);
}
.hero--dark .btn-outline:hover {
  background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); color: #fff; transform: translateY(-2px);
}
.hero--dark .hero-proof {
  background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12);
}
.hero--dark .proof-txt { color: #fff; }
.hero--dark .proof-txt span { color: rgba(255,255,255,0.6); }
.hero--dark .proof-divider { background: rgba(255,255,255,0.15); }
.hero--dark .stack-1 { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.hero--dark .stack-2 { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.13); }

/* Trust signal — friction-reducing micro-copy */
.hero-trust {
  font-size: 0.87rem; font-weight: 500;
  margin-top: -1.2rem; margin-bottom: 1.8rem;
  color: var(--muted-light);
}
.hero--dark .hero-trust { color: rgba(255,255,255,0.48); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); margin: 1.4rem 0 1.3rem; text-wrap: balance; }
.hero .sub { font-size: 1.25rem; color: var(--muted); max-width: 480px; margin-bottom: 1.8rem; text-wrap: pretty; }
.hero-checks { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.2rem; }
.hero-checks li { display: flex; align-items: center; gap: 0.75rem; font-size: 1.06rem; font-weight: 500; color: var(--ink-2); }
.check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center;
}
.check svg { width: 13px; height: 13px; }
.hero-actions { display: flex; gap: 0.9rem; align-items: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero-proof {
  display: inline-flex; align-items: center; gap: 1.3rem; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 0.9rem 1.3rem; box-shadow: var(--shadow-sm);
}
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.proof-txt { font-size: 0.95rem; font-weight: 700; }
.proof-txt span { color: var(--muted); font-weight: 500; }
.proof-divider { width: 1px; height: 26px; background: var(--line); }
.proof-stats { font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.proof-stats b { color: var(--ink); }

/* hero figure — the matched dossier */
.hero-figure { position: relative; padding: 1.5rem 1rem 2.5rem; }
.stack { position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-card); box-shadow: var(--shadow-sm); }
.stack-1 { inset: 3.2rem 3.4rem 5.2rem 0.4rem; transform: rotate(-5deg); background: var(--bg-tint); }
.stack-2 { inset: 2.2rem 1.6rem 5.8rem 2rem; transform: rotate(-2.5deg); }
.match-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 1.6rem 1.7rem; box-shadow: var(--shadow-lg);
  animation: rise 6s ease-in-out infinite;
}
.match-bar { display: flex; align-items: center; justify-content: space-between;
  margin: -1.6rem -1.7rem 1.3rem; padding: 0.8rem 1.7rem; border-radius: var(--r-card) var(--r-card) 0 0;
  background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #fff; }
.match-bar .ml { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; display: flex; align-items: center; gap: 0.5rem; }
.match-bar .ml svg { width: 16px; height: 16px; }
.match-bar .ms { font-weight: 800; font-size: 1.05rem; }
.match-bar .ms small { font-weight: 600; opacity: 0.8; font-size: 0.7rem; }
.match-id { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem; }
.match-id image-slot { width: 58px; height: 58px; flex-shrink: 0; border-radius: 50%; display: block; box-shadow: var(--shadow-sm); }
.match-id .m-name { font-weight: 800; font-size: 1.08rem; letter-spacing: -0.02em; }
.match-id .m-role { font-size: 0.86rem; color: var(--muted); font-weight: 600; }
.match-id .op-avail { margin-left: auto; }
.match-meta { list-style: none; margin-bottom: 1.2rem; }
.match-meta li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-top: 1px solid var(--line); font-size: 0.92rem; }
.match-meta .k { color: var(--muted); font-weight: 600; }
.match-meta .v { font-weight: 700; }
.match-card .op-tags span { font-size: 0.72rem; }
.float-chip {
  position: absolute; display: flex; align-items: center; gap: 0.6rem; background: #fff;
  border: 1px solid var(--line); border-radius: 16px; padding: 0.7rem 0.95rem; box-shadow: var(--shadow);
  animation: rise 6s ease-in-out infinite;
}
.float-chip .fi { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent-deep); }
.float-chip .fi svg { width: 18px; height: 18px; }
.float-chip .ft { font-weight: 800; font-size: 0.85rem; line-height: 1.2; }
.float-chip .ft small { display: block; font-size: 0.68rem; font-weight: 600; color: var(--muted); }
.chip-seal { top: 0.5rem; left: -1.5rem; animation-delay: -2s; }
.chip-ready { bottom: 1rem; right: -1.5rem; animation-delay: -4s; }
@keyframes rise { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-9px) rotate(0); } }
.chip-seal { animation-name: riseS; }
.chip-ready { animation-name: riseR; }
@keyframes riseS { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes riseR { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { .match-card, .float-chip { animation: none; } }

/* ============================================================
   LOGO / STATS STRIP
   ============================================================ */
.metrics { background: var(--bg); border-top: 1px solid var(--line); }
.metrics .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.metric { text-align: center; }
.metric .n { font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--accent-deep), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric .l { font-size: 0.9rem; color: var(--muted); font-weight: 600; margin-top: 0.4rem; }

/* ============================================================
   FEATURE CARDS  (what we are)
   ============================================================ */
.features { background: var(--bg-tint); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.f-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 2.2rem; box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.f-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.f-ico {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-deep); margin-bottom: 1.4rem;
}
.f-ico svg { width: 26px; height: 26px; }
.f-card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.f-card p { color: var(--muted); font-size: 1.02rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 2rem 1.8rem; position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step .num {
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  font-weight: 800; font-size: 1.15rem; color: #fff;
  background: linear-gradient(140deg, var(--accent), var(--accent-2)); margin-bottom: 1.3rem;
  box-shadow: 0 8px 18px -8px var(--accent);
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step p { color: var(--muted); font-size: 0.98rem; }
.step .connector { position: absolute; top: 3.1rem; right: -0.9rem; color: var(--line); z-index: 2; }
.step .connector svg { width: 20px; height: 20px; }

/* ============================================================
   OPERATORS
   ============================================================ */
.ops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.op-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 1.9rem; box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.op-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.op-head { display: flex; align-items: center; gap: 1rem; }
.op-head image-slot { width: 64px; height: 64px; flex-shrink: 0; border-radius: 50%; display: block; box-shadow: var(--shadow-sm); }
.op-head .meta { flex: 1; }
.op-head .name { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; }
.op-head .role { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.op-avail { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.6rem; border-radius: 999px; }
.op-avail.free { color: #137a4b; background: #e3f6ec; }
.op-avail.busy { color: #8a6d12; background: #fcf3d9; }
.op-avail::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.op-card h3 { font-size: 1.18rem; }
.op-meta { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: -0.3rem; }
.op-meta li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-top: 1px solid var(--line); font-size: 0.93rem; }
.op-meta .k { color: var(--muted); font-weight: 600; }
.op-meta .v { font-weight: 700; text-align: right; }
.op-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.op-tags span { font-size: 0.74rem; font-weight: 700; color: var(--accent-deep); background: var(--accent-soft); padding: 0.32rem 0.7rem; border-radius: 999px; }
.ops-cta { display: flex; justify-content: center; margin-top: 3rem; }

/* vetting band */
.vetting { background: var(--bg-tint); margin-top: 4.5rem; border-radius: var(--r-card); padding: 3rem; }
.vetting-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: center; }
.vetting h3 { font-size: 1.7rem; line-height: 1.15; }
.vetting .steps4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.vstep { display: flex; gap: 0.9rem; align-items: flex-start; }
.vstep .vn { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  font-weight: 800; font-size: 0.85rem; background: #fff; color: var(--accent-deep); border: 1px solid var(--line); }
.vstep p { font-size: 0.98rem; color: var(--muted); }
.vstep strong { color: var(--ink); display: block; font-size: 1.02rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-tint); }
.dayrate-band {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 1.6rem 2.2rem; box-shadow: var(--shadow-sm); margin-bottom: 1.8rem;
}
.dayrate-band .left { display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; }
.dayrate-band .price { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; }
.dayrate-band .price span { font-size: 1rem; color: var(--muted); font-weight: 600; }
.dayrate-band .desc { color: var(--muted); font-weight: 600; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.tier {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 2.2rem; display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tier:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tier.featured { border-color: transparent; background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); position: relative; }
.tier.featured .desc, .tier.featured .cadence { color: rgba(255,255,255,0.7); }
.tier.featured .tier-list li { color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.12); }
.tier .badge { align-self: flex-start; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: linear-gradient(120deg, var(--accent), var(--accent-2)); padding: 0.32rem 0.8rem; border-radius: 999px; margin-bottom: 1rem; }
.tier .name { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.tier.featured .name { color: var(--accent-2); }
.tier .price { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; margin: 0.6rem 0 0.2rem; }
.tier .price span { font-size: 1.1rem; color: var(--muted); font-weight: 600; }
.tier .cadence { font-size: 0.9rem; font-weight: 700; color: var(--accent-deep); margin-bottom: 1.2rem; }
.tier.featured .cadence { color: var(--accent-2); }
.tier .desc { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.4rem; min-height: 4.2em; }
.tier-list { list-style: none; display: flex; flex-direction: column; flex: 1; margin-bottom: 1.6rem; }
.tier-list li { display: flex; gap: 0.65rem; align-items: flex-start; padding: 0.6rem 0; border-top: 1px solid var(--line); font-size: 0.96rem; color: var(--ink-2); }
.tier-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.tier.featured .tier-list li svg { color: var(--accent-2); }
.tier .btn { width: 100%; justify-content: center; }
.tier.featured .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.tier.featured .btn-outline:hover { border-color: #fff; }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 1.8rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1.2rem;
}
.quote .stars { color: var(--gold); }
.quote p { font-size: 1.06rem; color: var(--ink-2); line-height: 1.55; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 0.8rem; }
.quote .who image-slot { width: 44px; height: 44px; border-radius: 50%; display: block; }
.quote .who .nm { font-weight: 800; font-size: 0.95rem; }
.quote .who .rl { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

/* ============================================================
   ABOUT / COMPANY
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-solo { max-width: 760px; }
.section--tight { padding-top: 4rem; padding-bottom: 4rem; }
.about-body h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 1.4rem; }
.about-body p { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.1rem; }
.about-body p.lead { color: var(--ink-2); font-size: 1.25rem; font-weight: 500; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.about-visual image-slot { width: 100%; border-radius: var(--r-card); display: block; box-shadow: var(--shadow-sm); }
.about-visual .tall { aspect-ratio: 3/4; }
.about-visual .wide { aspect-ratio: 3/4; margin-top: 2.5rem; }

/* ============================================================
   CTA + CONTACT
   ============================================================ */
.cta-section { padding-bottom: 6.5rem; }
.cta-card {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 30px; padding: 3.5rem; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-card::before { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255,255,255,0.12); top: -180px; right: -120px; }
.cta-card::after { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,0.08); bottom: -140px; left: 10%; }
.cta-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.cta-grid h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 1rem; }
.cta-grid .sub { font-size: 1.15rem; opacity: 0.9; margin-bottom: 1.8rem; }
.cta-aside { display: flex; flex-direction: column; gap: 1.2rem; }
.cta-aside .item { display: flex; gap: 0.9rem; align-items: center; }
.cta-aside .ico { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.18); display: grid; place-items: center; flex-shrink: 0; }
.cta-aside .ico svg { width: 20px; height: 20px; }
.cta-aside .k { font-size: 0.82rem; opacity: 0.8; font-weight: 600; }
.cta-aside .v { font-weight: 800; font-size: 1.05rem; }
.cta-form { background: #fff; border-radius: var(--r-card); padding: 2rem; box-shadow: var(--shadow-lg); }
.cta-form h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 1.3rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field[hidden] { display: none; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 0.8rem 1rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--bg-tint); color: var(--ink); outline: none; transition: border-color 0.2s, background 0.2s;
  width: 100%; min-width: 0; max-width: 100%;
}
.field { min-width: 0; }
.cta-grid > *, .row2 > * { min-width: 0; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-light); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); background: #fff; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.cta-form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-success { color: var(--accent-deep); font-weight: 700; padding: 1rem 0; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .logo-name { color: #fff; }
.footer-brand p { margin-top: 1rem; font-size: 0.95rem; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.1rem; font-weight: 800; }
.footer-col a { display: block; font-size: 0.95rem; color: rgba(255,255,255,0.6); text-decoration: none; padding: 0.35rem 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.88rem; }

/* ============================================================
   REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .wrap { padding: 0 1.5rem; }
  section { padding: 5rem 0; }
  .nav-links { display: none; }
  .hero { padding: 8rem 0 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .constellation { max-width: 460px; margin: 0 auto; width: 100%; }
  .metrics .wrap { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }
  .feature-grid, .ops-grid, .quotes-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step .connector { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .tier .desc { min-height: 0; }
  .vetting-grid, .about-grid, .cta-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .vetting .steps4 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .feature-grid, .ops-grid, .quotes-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 2rem 1.5rem; }
  .vetting { padding: 2rem 1.5rem; }
  .eyebrow { white-space: normal; }
  .chip-seal { left: 0.25rem; }
  .chip-ready { right: 0.25rem; }
  .float-chip { max-width: calc(100% - 0.5rem); }
  .float-chip .ft { white-space: normal; }
}

.footer-person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.footer-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: center top; flex: 0 0 auto; }
.footer-person .fp-name { font-weight: 600; line-height: 1.2; }
.footer-person .fp-role { font-size: 13px; opacity: .7; margin-top: 2px; }

.about-person { display: flex; align-items: center; gap: 14px; margin-top: 2rem; padding-top: 1.8rem; border-top: 1px solid var(--rule); }
.about-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: center top; flex: 0 0 auto; }
.about-person .ap-name { font-weight: 600; font-size: 1rem; line-height: 1.2; }
.about-person .ap-role { font-size: 0.875rem; color: var(--muted); margin-top: 3px; }

.about-company-grid { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: center; }
.about-person-col { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; }
.about-photo-lg { width: 260px; height: 260px; border-radius: 50%; object-fit: cover; object-position: center top; margin-bottom: 16px; box-shadow: var(--shadow-md, 0 8px 32px rgba(0,0,0,.12)); }
.about-person-col .ap-name { font-weight: 600; font-size: 1.05rem; }
.about-person-col .ap-role { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }
@media (max-width: 720px) { .about-company-grid { grid-template-columns: 1fr; } .about-person-col { flex-direction: row; text-align: left; gap: 16px; margin-top: 2rem; } .about-photo-lg { width: 72px; height: 72px; margin-bottom: 0; } }
