:root {
  --bg: #0b0d10;
  --bg-2: #10141a;
  --panel: #141920;
  --panel-2: #191f27;
  --line: #2a323c;
  --text: #f2efe8;
  --muted: #aab2bc;
  --accent: #ff7a3d;
  --accent-2: #ff9a69;
  --good: #79d8a2;
  --shadow: 0 18px 60px rgba(0,0,0,.3);
  --radius: 20px;
  --shell: min(1180px, calc(100% - 36px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 75% -10%, rgba(255,122,61,.13), transparent 34rem),
    radial-gradient(circle at 10% 35%, rgba(255,255,255,.025), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--text); }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; background: var(--text); color: var(--bg); padding: 10px 14px; transform: translateY(-160%); border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(11,13,16,.68);
  backdrop-filter: blur(18px);
  transition: background .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { background: rgba(11,13,16,.92); border-color: var(--line); }
.nav-shell { min-height: 72px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-word { font-weight: 800; letter-spacing: -.04em; font-size: 1.1rem; }
.brand-word span { color: var(--accent); }
.brand-mark { width: 28px; height: 24px; position: relative; display: inline-grid; grid-template-columns: repeat(3, 1fr); gap: 3px; align-items: end; }
.brand-mark span { display: block; border-radius: 2px; background: var(--text); opacity: .92; }
.brand-mark span:nth-child(1) { height: 45%; }
.brand-mark span:nth-child(2) { height: 100%; background: var(--accent); }
.brand-mark span:nth-child(3) { height: 70%; }
.primary-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.primary-nav a { color: var(--muted); font-size: .92rem; font-weight: 650; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--text); }
.menu-toggle { display: none; }
.nav-client { margin-left: 2px; }
.nav-cta { margin-left: -10px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 18px; border-radius: 12px;
  background: var(--accent); color: #180c06; border: 1px solid var(--accent);
  font-weight: 800; letter-spacing: -.01em; box-shadow: 0 8px 26px rgba(255,122,61,.14);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-1px); background: var(--accent-2); border-color: var(--accent-2); color: #180c06; }
.button-ghost { background: transparent; border-color: var(--line); color: var(--text); box-shadow: none; }
.button-ghost:hover { background: var(--panel); border-color: #3a4654; color: var(--text); }
.button-small { min-height: 38px; padding: 0 13px; font-size: .88rem; border-radius: 10px; }
.button-link { display: inline-flex; gap: 8px; align-items: center; color: var(--text); font-weight: 750; }
.button-link::after { content: "→"; color: var(--accent); }

.hero { padding: 86px 0 56px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 68px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--accent-2); font-size: .77rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 18px; height: 1px; background: currentColor; }
.hero h1, .page-hero h1 { margin: 16px 0 20px; font-size: clamp(3rem, 7vw, 6.4rem); line-height: .92; letter-spacing: -.065em; max-width: 980px; }
.hero h1 span, .page-hero h1 span { color: var(--accent); }
.hero-copy { max-width: 680px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; color: #88919c; font-size: .88rem; }
.hero-note span::before { content: "✓"; color: var(--good); margin-right: 7px; font-weight: 900; }

.ops-card {
  position: relative; min-height: 460px; border: 1px solid var(--line); border-radius: 28px;
  background: linear-gradient(180deg, rgba(25,31,39,.95), rgba(13,16,21,.96));
  box-shadow: var(--shadow); overflow: hidden;
}
.ops-card::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.ops-head { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 16px; padding: 20px 22px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.ops-dot { display: inline-flex; align-items: center; gap: 8px; }
.ops-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 5px rgba(121,216,162,.08); }
.topology { position: absolute; inset: 80px 24px 30px; }
.topo-node { position: absolute; min-width: 116px; padding: 12px 14px; border: 1px solid #34404d; border-radius: 12px; background: rgba(14,18,23,.94); box-shadow: 0 12px 24px rgba(0,0,0,.2); }
.topo-node strong { display: block; font-size: .84rem; letter-spacing: .04em; }
.topo-node small { color: var(--muted); font-size: .72rem; }
.topo-node b { color: var(--good); font-weight: 800; }
.n1 { left: 3%; top: 8%; }
.n2 { right: 4%; top: 18%; }
.n3 { left: 19%; top: 46%; }
.n4 { right: 10%; top: 60%; }
.n5 { left: 2%; bottom: 2%; }
.n6 { right: 38%; bottom: 0; border-color: rgba(255,122,61,.55); }
.topo-line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, #45515e, transparent); transform-origin: left center; opacity: .7; }
.l1 { left: 30%; top: 20%; width: 44%; transform: rotate(13deg); }
.l2 { left: 25%; top: 32%; width: 36%; transform: rotate(57deg); }
.l3 { left: 44%; top: 57%; width: 42%; transform: rotate(12deg); }
.l4 { left: 22%; top: 72%; width: 52%; transform: rotate(-9deg); }
.l5 { left: 31%; top: 79%; width: 38%; transform: rotate(25deg); }
.pulse { position: absolute; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 18px rgba(255,122,61,.9); animation: drift 5s linear infinite; }
.p1 { left: 30%; top: 20%; }
.p2 { left: 42%; top: 57%; animation-delay: -2s; }
@keyframes drift { 0% { transform: translateX(0); opacity: 0; } 15% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateX(180px); opacity: 0; } }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 24px 18px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 3px; font-size: .98rem; }
.trust-item span { color: var(--muted); font-size: .84rem; }

.section { padding: 86px 0; }
.section-tight { padding: 64px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 34px; }
.section-head h2, .split-copy h2, .cta-panel h2 { margin: 10px 0 0; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1; letter-spacing: -.055em; }
.section-head p { max-width: 590px; margin: 0; color: var(--muted); }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: linear-gradient(180deg, rgba(23,29,36,.85), rgba(16,20,26,.78)); }
.card h3 { margin: 18px 0 10px; font-size: 1.35rem; letter-spacing: -.03em; }
.card p { color: var(--muted); margin: 0 0 22px; }
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; border: 1px solid #38434f; background: #11161c; color: var(--accent); font-weight: 900; }
.price { margin: 8px 0 0; font-weight: 900; font-size: 2.2rem; letter-spacing: -.045em; }
.price small { color: var(--muted); font-size: .8rem; font-weight: 650; letter-spacing: 0; }
.plan-list { list-style: none; padding: 0; margin: 20px 0 26px; display: grid; gap: 9px; color: var(--muted); font-size: .92rem; }
.plan-list li::before { content: "✓"; color: var(--good); margin-right: 9px; font-weight: 900; }
.featured-card { border-color: rgba(255,122,61,.55); box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 20px 50px rgba(0,0,0,.16); }
.ribbon { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: rgba(255,122,61,.12); color: var(--accent-2); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split-copy p { color: var(--muted); font-size: 1.03rem; }
.proof-stack { display: grid; gap: 12px; }
.proof-card { border: 1px solid var(--line); border-radius: 16px; padding: 20px; background: rgba(20,25,32,.7); display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; }
.proof-card strong { display: block; margin-bottom: 4px; }
.proof-card span { color: var(--muted); font-size: .88rem; }
.proof-card .external { color: var(--accent); font-weight: 900; }

.band { border-block: 1px solid var(--line); background: linear-gradient(90deg, rgba(255,122,61,.045), rgba(255,255,255,.015), rgba(255,122,61,.045)); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.process-step { background: var(--bg-2); padding: 28px; min-height: 200px; }
.process-step b { color: var(--accent); font-size: .8rem; letter-spacing: .1em; }
.process-step h3 { margin: 16px 0 8px; }
.process-step p { margin: 0; color: var(--muted); font-size: .9rem; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 34px; border: 1px solid rgba(255,122,61,.4); border-radius: 24px; background: linear-gradient(135deg, rgba(255,122,61,.095), rgba(20,25,32,.8) 55%); }
.cta-panel p { color: var(--muted); max-width: 700px; }

.page-hero { padding: 76px 0 46px; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); max-width: 1000px; }
.page-hero p { max-width: 780px; color: var(--muted); font-size: 1.15rem; }
.page-grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 42px; align-items: start; }
.content-block { border-top: 1px solid var(--line); padding: 34px 0; }
.content-block:first-child { border-top: 0; padding-top: 0; }
.content-block h2 { margin: 0 0 12px; letter-spacing: -.035em; font-size: 1.7rem; }
.content-block p, .content-block li { color: var(--muted); }
.content-block ul { padding-left: 20px; }
.sticky-card { position: sticky; top: 96px; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: var(--panel); }
.sticky-card h3 { margin-top: 0; }
.sticky-card p { color: var(--muted); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 750; font-size: .9rem; }
.field input, .field textarea, .field select { width: 100%; color: var(--text); background: #0e1217; border: 1px solid #34404c; border-radius: 11px; padding: 12px 13px; outline: none; }
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,122,61,.1); }
.field-help { color: #7f8994; font-size: .78rem; }
.hp-field { position: absolute !important; left: -9999px !important; }
.alert { border-radius: 12px; padding: 13px 15px; margin-bottom: 20px; }
.alert-success { border: 1px solid rgba(121,216,162,.38); background: rgba(121,216,162,.08); color: #bdeccd; }
.alert-error { border: 1px solid rgba(255,122,61,.4); background: rgba(255,122,61,.08); color: #ffc1a4; }

.mini-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.mini-card { border: 1px solid var(--line); border-radius: 15px; padding: 18px; background: rgba(20,25,32,.55); }
.mini-card strong { display: block; margin-bottom: 4px; }
.mini-card span { color: var(--muted); font-size: .86rem; }

.site-footer { border-top: 1px solid var(--line); margin-top: 70px; background: #090b0e; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .7fr 1.1fr; gap: 38px; padding: 56px 0 42px; }
.footer-grid h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: #828c97; margin: 4px 0 14px; }
.footer-grid > div > a:not(.brand):not(.button) { display: block; color: var(--muted); font-size: .9rem; margin: 7px 0; }
.footer-grid > div > a:hover { color: var(--text); }
.footer-blurb { color: var(--muted); max-width: 330px; font-size: .92rem; }
.footer-cta { border-left: 1px solid var(--line); padding-left: 28px; }
.footer-cta p { color: var(--muted); font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); padding: 18px 0 24px; color: #737d88; font-size: .8rem; }

[data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .primary-nav { display: none; position: absolute; left: 18px; right: 18px; top: 66px; padding: 14px; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 14px; background: #0d1116; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 8px 6px; }
  .menu-toggle { display: inline-flex; margin-left: auto; color: var(--text); background: transparent; border: 1px solid var(--line); border-radius: 9px; padding: 7px 10px; }
  .nav-client { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .ops-card { min-height: 400px; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .cards-3 > :last-child { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .page-grid { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); padding: 26px 0 0; }
}

@media (max-width: 700px) {
  :root { --shell: min(100% - 26px, 1180px); }
  .nav-shell { min-height: 64px; gap: 10px; }
  .nav-cta { display: none; }
  .hero { padding-top: 60px; }
  .hero h1, .page-hero h1 { letter-spacing: -.055em; }
  .ops-card { min-height: 350px; }
  .topo-node { min-width: 100px; padding: 9px 10px; }
  .topo-node small { display: none; }
  .trust-grid, .cards-3, .process-grid, .form-grid, .mini-grid { grid-template-columns: 1fr; }
  .cards-3 > :last-child { grid-column: auto; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section, .section-tight { padding: 62px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .cta-panel { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-cta { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
