/* ============================================================
   DropinAdmin — shared site styles
   Two visual directions on <body>: .dir-modern (default) / .dir-faithful
   Tweakable tokens via CSS custom properties.
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* ---------- TOKENS ---------- */
:root {
  --accent: #1680fb;
  --accent-deep: color-mix(in srgb, var(--accent) 78%, #000);
  --accent-soft: color-mix(in srgb, var(--accent) 11%, #fff);
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --ink: #141a24;
  --ink-2: #46505f;
  --ink-3: #6b7686;
  --line: #e6eaf0;
  --line-2: #eef1f6;
  --surface: #ffffff;
  --bg: #f5f8fc;
  --bg-2: #eef3f9;

  --navy: #0c1322;
  --navy-2: #131d31;
  --navy-line: #243349;

  --maxw: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20,26,36,.06);
  --shadow: 0 18px 48px -28px rgba(20,40,80,.4);
  --shadow-lg: 0 40px 90px -50px rgba(15,30,70,.55);
  --space: 1;
}

/* density tweak */
.density-compact { --space: .82; }
.density-comfy   { --space: 1.18; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
}

/* ---------- LAYOUT ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: calc(96px * var(--space)); }
.section.tight { padding-block: calc(64px * var(--space)); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: "›_"; opacity: .7; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; letter-spacing: -.02em; font-weight: 800; color: var(--ink); }
h2.sec-title { font-size: clamp(30px, 4vw, 46px); margin-top: 14px; }
.sec-sub { font-size: 19px; color: var(--ink-2); margin-top: 16px; line-height: 1.55; }
.muted { color: var(--ink-3); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 10px; font-weight: 700; font-size: 16px;
  border: 1.5px solid transparent; transition: .18s ease; white-space: nowrap;
  line-height: 1;
}
.btn i { font-size: .92em; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -12px var(--accent); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-light:hover { background: rgba(255,255,255,.16); }
.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 36px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 21px; letter-spacing: -.03em; color: var(--ink); }
.brand .mark {
  width: 36px; height: 36px; border-radius: 9px; background: var(--navy);
  color: #5bff9b; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 15px; font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.brand b { color: var(--accent); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: 8px; }
.nav-links a { font-weight: 600; font-size: 15.5px; color: var(--ink-2); transition: .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--ink); }

/* dropdown */
.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-drop > a::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 9px; opacity: .6; }
.drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 10px; width: 460px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: .2s ease;
}
.nav-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop-menu a { display: flex; gap: 12px; padding: 11px 13px; border-radius: 11px; align-items: flex-start; }
.drop-menu a:hover { background: var(--bg); }
.drop-menu .di { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; font-size: 14px; }
.drop-menu .dt { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.drop-menu .dd { font-size: 12.5px; color: var(--ink-3); line-height: 1.4; }

/* ---------- HERO (modern) ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(22,128,251,.30), transparent 60%),
    linear-gradient(180deg, #0c1322, #0e1626 60%, #0c1322);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(900px 600px at 70% 0%, #000, transparent 75%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-block: clamp(64px, 9vw, 116px); }
.hero h1 { color: #fff; font-size: clamp(38px, 5.4vw, 62px); }
.hero h1 .hl { color: var(--accent); }
.hero-lead { font-size: clamp(18px, 2vw, 21px); color: #b9c6d8; margin-top: 22px; max-width: 560px; line-height: 1.55; }
.hero-status { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 13px; color: #9fe7b8; padding: 7px 14px; border: 1px solid rgba(91,255,155,.25); border-radius: 999px; background: rgba(91,255,155,.06); }
.hero-status .dot { width: 8px; height: 8px; border-radius: 50%; background: #43e08a; box-shadow: 0 0 0 4px rgba(67,224,138,.18); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .45 } }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin-top: 18px; font-size: 14px; color: #8493a8; display: flex; align-items: center; gap: 8px; }
.hero-note i { color: #43e08a; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-lg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; background: rgba(16,23,40,.86); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--shadow-lg); color: #fff;
}
.float-card .fc-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #8493a8; }
.float-card .fc-val { font-size: 22px; font-weight: 800; font-family: var(--font-head); margin-top: 3px; }
.float-card .fc-val small { font-size: 13px; color: #9fe7b8; font-weight: 600; }
.fc-uptime { top: 24px; left: -28px; }
.fc-resp { bottom: 28px; right: -24px; }
.fc-mon { bottom: -22px; left: 30px; display: flex; align-items: center; gap: 12px; }
.fc-mon .ico { width: 38px; height: 38px; border-radius: 10px; background: rgba(22,128,251,.18); color: #6ab4ff; display: grid; place-items: center; }

/* ---------- TRUST BAR ---------- */
.trustbar { border-top: 1px solid rgba(255,255,255,.08); background: rgba(8,13,24,.5); position: relative; z-index: 1; }
.trustbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 30px; }
.trust-item { text-align: center; }
.trust-item .tv { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: #fff; letter-spacing: -.02em; }
.trust-item .tv .u { color: var(--accent); }
.trust-item .tl { font-size: 13.5px; color: #8493a8; margin-top: 4px; }

/* ---------- LOGO STRIP ---------- */
.logostrip { background: var(--surface); border-bottom: 1px solid var(--line); }
.logostrip .wrap { padding-block: 34px; }
.logostrip .ls-label { text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 22px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll-x 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 34px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .62; transition: .2s; }
.marquee-track img:hover { filter: none; opacity: 1; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- SERVICE CARDS ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: .2s ease; position: relative;
}
.card:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ci { width: 50px; height: 50px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 21px; margin-bottom: 18px; transition: .2s; }
.card:hover .ci { background: var(--accent); color: #fff; }
.card h3 { font-size: 19px; font-weight: 800; }
.card p { color: var(--ink-2); margin-top: 9px; font-size: 15px; line-height: 1.55; }
.card .clink { margin-top: 16px; font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; opacity: 0; transform: translateX(-4px); transition: .2s; }
.card:hover .clink { opacity: 1; transform: translateX(0); }

/* ---------- SPOTLIGHT (featured service) ---------- */
.spotlight { display: flex; align-items: center; gap: 28px; background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 30px 34px; margin-bottom: 18px; position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.spotlight::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 88% -40%, rgba(22,128,251,.38), transparent 60%); }
.spotlight:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.spotlight > * { position: relative; z-index: 1; }
.spotlight .sp-ico { width: 60px; height: 60px; border-radius: 15px; background: rgba(22,128,251,.2); color: #6ab4ff; display: grid; place-items: center; font-size: 26px; flex: none; }
.spotlight .sp-body { flex: 1; }
.spotlight .sp-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #6ab4ff; }
.spotlight h3 { color: #fff; font-size: 23px; margin-top: 5px; }
.spotlight p { color: #b9c6d8; font-size: 15px; margin-top: 7px; max-width: 580px; line-height: 1.55; }
.spotlight .btn { flex: none; }
@media (max-width: 760px) { .spotlight { flex-direction: column; align-items: flex-start; } .spotlight .btn { width: 100%; } }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.step .sn { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--accent); }
.step h3 { font-size: 20px; margin-top: 10px; }
.step p { color: var(--ink-2); margin-top: 8px; font-size: 15px; }
.step .si { position: absolute; top: 26px; right: 26px; font-size: 20px; color: var(--line); }

/* ---------- SPLIT CONTENT ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-text { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); box-shadow: var(--shadow); }
.split-media img { width: 100%; }
.split h2 { font-size: clamp(26px, 3.2vw, 38px); margin-top: 12px; }
.split p { color: var(--ink-2); margin-top: 16px; font-size: 16.5px; line-height: 1.6; }
.checklist { margin-top: 22px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink); }
.checklist .ck { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 11px; margin-top: 1px; }
.checklist b { font-weight: 700; }

/* ---------- INTEGRATIONS GRID ---------- */
.integrations { background: var(--surface); border-block: 1px solid var(--line); }
.int-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.int-tile {
  display: flex; align-items: center; gap: 12px; padding: 15px 16px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--surface); transition: .18s;
}
.int-tile:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.int-tile img { width: 30px; height: 30px; object-fit: contain; flex: none; }
.int-tile .it-name { font-weight: 700; font-size: 14px; line-height: 1.1; }
.int-tile .it-tag { font-size: 11px; color: var(--ink-3); font-family: var(--font-mono); }

/* ---------- PRICING ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--accent); box-shadow: var(--shadow); }
.price-badge { position: absolute; top: -12px; left: 28px; background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 700; font-family: var(--font-mono); letter-spacing: .06em; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; }
.price-card h3 { font-size: 21px; }
.price-card .pc-desc { color: var(--ink-3); font-size: 14px; margin-top: 7px; min-height: 40px; }
.price-amt { margin-top: 20px; display: flex; align-items: baseline; gap: 4px; }
.price-amt .cur { font-size: 22px; font-weight: 700; color: var(--ink-2); }
.price-amt .num { font-size: 48px; font-weight: 800; font-family: var(--font-head); letter-spacing: -.03em; }
.price-amt .per { font-size: 14px; color: var(--ink-3); font-weight: 600; }
.price-feats { margin-top: 22px; display: grid; gap: 12px; flex: 1; }
.price-feats li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink-2); }
.price-feats i { color: var(--accent); font-size: 13px; margin-top: 4px; }
.price-card .btn { margin-top: 26px; }
.price-note { text-align: center; color: var(--ink-3); font-size: 14px; margin-top: 26px; }

/* ---------- TESTIMONIALS ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.review .stars { color: #f5a623; font-size: 13px; display: flex; gap: 3px; }
.review p { font-size: 16px; line-height: 1.6; color: var(--ink); margin-top: 16px; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.review .av { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-weight: 800; font-family: var(--font-head); }
.review .wn { font-weight: 700; font-size: 14.5px; }
.review .wr { font-size: 12.5px; color: var(--ink-3); }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy); color: #fff; border-radius: 26px; padding: clamp(40px, 6vw, 72px); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 50% -30%, rgba(22,128,251,.35), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.cta-band p { color: #b9c6d8; font-size: 18px; margin-top: 16px; max-width: 560px; margin-inline: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* emergency strip */
.emergency { background: var(--navy-2); border: 1px solid var(--navy-line); border-radius: 16px; padding: 22px 26px; display: flex; align-items: center; gap: 18px; color: #fff; }
.emergency .eico { width: 48px; height: 48px; border-radius: 12px; background: rgba(245,80,80,.16); color: #ff7a7a; display: grid; place-items: center; font-size: 20px; flex: none; }
.emergency .et { flex: 1; }
.emergency .et b { font-size: 17px; }
.emergency .et p { color: #9fb0c6; font-size: 14px; margin-top: 2px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--navy); color: #b9c6d8; padding-block: 64px 30px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .brand { color: #fff; }
.foot-brand p { font-size: 14.5px; color: #8493a8; margin-top: 16px; max-width: 300px; line-height: 1.6; }
.foot-socials { display: flex; gap: 10px; margin-top: 20px; }
.foot-socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--navy-line); display: grid; place-items: center; color: #b9c6d8; transition: .18s; }
.foot-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.foot-col h4 { color: #fff; font-size: 13px; font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14.5px; padding: 6px 0; color: #9fb0c6; transition: .15s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid var(--navy-line); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: #6b7a90; }
.foot-bottom .heart { color: #ff7a7a; }

/* ---------- inner page hero ---------- */
.page-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 420px at 80% -20%, rgba(22,128,251,.28), transparent 60%); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(700px 500px at 75% 0%, #000, transparent 75%); }
.page-hero .wrap { position: relative; z-index: 1; }
.ph-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; padding-block: clamp(60px, 8vw, 100px); }
.ph-crumb { font-family: var(--font-mono); font-size: 12.5px; color: #8493a8; letter-spacing: .06em; }
.ph-crumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); margin-top: 16px; }
.page-hero h1 .hl { color: var(--accent); }
.ph-lead { color: #b9c6d8; font-size: 19px; margin-top: 20px; line-height: 1.55; max-width: 540px; }
.ph-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.ph-stats { display: flex; gap: 32px; margin-top: 38px; flex-wrap: wrap; }
.ph-stat .v { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: #fff; }
.ph-stat .v .u { color: var(--accent); }
.ph-stat .l { font-size: 13px; color: #8493a8; margin-top: 2px; }
/* console panel for inner hero visual */
.console { background: rgba(10,16,30,.8); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; font-family: var(--font-mono); }
.console-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.console-bar .cdot { width: 11px; height: 11px; border-radius: 50%; }
.console-bar .cdot:nth-child(1){ background:#ff5f57 } .console-bar .cdot:nth-child(2){ background:#febc2e } .console-bar .cdot:nth-child(3){ background:#28c840 }
.console-bar .ctitle { margin-left: 10px; font-size: 12px; color: #8493a8; }
.console-body { padding: 18px 18px 22px; font-size: 13px; line-height: 1.9; color: #c6d2e4; }
.console-body .pl { color: #5bff9b; } .console-body .cm { color: #6b7a90; } .console-body .ac { color: #6ab4ff; } .console-body .ok { color: #43e08a; }

/* feature list rows on inner pages */
.feature-rows { display: grid; gap: 16px; }
.frow { display: flex; gap: 18px; padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: .18s; }
.frow:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); box-shadow: var(--shadow-sm); }
.frow .fi { width: 50px; height: 50px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 20px; flex: none; }
.frow h3 { font-size: 18px; }
.frow p { color: var(--ink-2); margin-top: 6px; font-size: 15px; }

.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 4px 22px; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 16.5px; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "\2b"; font-family: var(--font-mono); color: var(--accent); font-size: 18px; }
.faq details[open] summary::after { content: "\2212"; }
.faq p { color: var(--ink-2); padding-bottom: 18px; font-size: 15px; line-height: 1.6; }

/* ============================================================
   FAITHFUL DIRECTION OVERRIDES (.dir-faithful)
   Light Martex look: soft shadows, rounded cards, centered titles
   ============================================================ */
.dir-faithful { --radius: 16px; --radius-lg: 18px; --bg: #ffffff; --bg-2: #f8fafc; background: #fff; }
.dir-faithful .section-head { text-align: center; margin-inline: auto; }
.dir-faithful .eyebrow { color: var(--ink-3); }
.dir-faithful .eyebrow::before { content: ""; }
.dir-faithful h2.sec-title { letter-spacing: -.01em; font-weight: 700; }

/* faithful hero: light with wave */
.dir-faithful .hero { background: linear-gradient(180deg, #eaf3ff, #f6faff); color: var(--ink); }
.dir-faithful .hero::before, .dir-faithful .hero::after { display: none; }
.dir-faithful .hero h1 { color: var(--ink); }
.dir-faithful .hero-lead { color: var(--ink-2); }
.dir-faithful .hero-photo { border-color: #fff; box-shadow: 0 40px 80px -40px rgba(22,90,189,.4); }
.dir-faithful .hero-status { color: var(--accent-deep); border-color: rgba(22,128,251,.3); background: rgba(22,128,251,.08); }
.dir-faithful .hero-status .dot { background: var(--accent); box-shadow: 0 0 0 4px rgba(22,128,251,.18); }
.dir-faithful .hero-note { color: var(--ink-3); }
.dir-faithful .hero-note i { color: var(--accent); }
.dir-faithful .float-card { background: rgba(255,255,255,.95); color: var(--ink); border-color: var(--line); }
.dir-faithful .float-card .fc-label { color: var(--ink-3); }
.dir-faithful .float-card .fc-val small { color: var(--accent); }
.dir-faithful .fc-mon .ico { background: var(--accent-soft); color: var(--accent); }

/* faithful trustbar -> light */
.dir-faithful .trustbar { background: var(--surface); border-top: none; border-bottom: 1px solid var(--line); }
.dir-faithful .trust-item .tv { color: var(--ink); }
.dir-faithful .trust-item .tl { color: var(--ink-3); }

/* faithful cards: rounder, soft shadow, no border emphasis, centered icon */
.dir-faithful .card { border-color: var(--line-2); box-shadow: var(--shadow-sm); text-align: center; }
.dir-faithful .card .ci { margin-inline: auto; border-radius: 50%; }
.dir-faithful .card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -36px rgba(22,90,189,.45); }
.dir-faithful .card .clink { display: none; }
.dir-faithful .step { text-align: center; border-radius: 18px; box-shadow: var(--shadow-sm); }
.dir-faithful .step .si { position: static; display: block; margin: 0 auto 12px; font-size: 30px; color: var(--accent); }
.dir-faithful .int-tile { border-radius: 14px; box-shadow: var(--shadow-sm); }
.dir-faithful .price-card { box-shadow: var(--shadow-sm); text-align: center; }
.dir-faithful .price-card .price-feats li { text-align: left; }
.dir-faithful .review { box-shadow: var(--shadow-sm); border-radius: 16px; }
.dir-faithful .btn { border-radius: 6px; }
.dir-faithful .btn-primary { box-shadow: 0 14px 26px -14px var(--accent); }

/* faithful: soften mono eyebrow on dark sections stays */
.dir-faithful .eyebrow.on-dark { color: #9fc4ff; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .marquee-track { animation: none; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .hero-grid, .ph-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .split-text { order: 0; }
  .hero-visual { order: -1; }
  .cards, .steps, .reviews, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .int-grid { grid-template-columns: repeat(3, 1fr); }
  .trustbar .wrap { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fc-uptime { left: 8px; } .fc-resp { right: 8px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards, .steps, .reviews, .pricing-grid, .foot-grid { grid-template-columns: 1fr; }
  .int-grid { grid-template-columns: 1fr 1fr; }
  .section { padding-block: calc(64px * var(--space)); }
  .hero-btns .btn, .ph-btns .btn, .cta-btns .btn { width: 100%; }
  .float-card { display: none; }
}

/* ---------- mobile drawer ---------- */
.mobile-drawer { position: fixed; inset: 0; z-index: 80; background: rgba(8,13,24,.6); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: .2s; }
.mobile-drawer.open { opacity: 1; visibility: visible; }
.mobile-drawer .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(320px, 84vw); background: var(--surface); padding: 24px; transform: translateX(100%); transition: .25s ease; display: flex; flex-direction: column; gap: 6px; }
.mobile-drawer.open .panel { transform: none; }
.mobile-drawer a { padding: 14px 8px; font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--line-2); color: var(--ink); }
.mobile-drawer .btn { margin-top: 14px; }
.mobile-drawer .mclose { align-self: flex-end; background: none; border: none; font-size: 24px; color: var(--ink); margin-bottom: 8px; }
