
:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --surface: #111111;
  --surface-2: #181818;
  --surface-3: #202020;
  --white: #f7f4ef;
  --muted: #b8b4ad;
  --orange: #ff5a00;
  --orange-light: #ff8a47;
  --gold: #d6a43a;
  --blue: #168cff;
  --red: #d71920;
  --line: rgba(255,255,255,.13);
  --line-strong: rgba(255,255,255,.22);
  --shadow: 0 26px 80px rgba(0,0,0,.48);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,90,0,.14), transparent 24rem),
    radial-gradient(circle at 0% 58%, rgba(22,140,255,.08), transparent 28rem),
    var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

::selection { background: var(--orange); color: #101010; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: .8rem 1rem;
  background: var(--white);
  color: #050505;
  font-weight: 800;
  border-radius: 6px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 2.5rem)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(5,5,5,.92); }
.nav-row { min-height: 86px; display: flex; align-items: center; gap: 28px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 2px solid var(--orange);
  box-shadow: 6px 6px 0 rgba(255,90,0,.18);
  background: #0c0c0c;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 24px;
  line-height: 1;
}
.brand-mark span { display: grid; place-items: center; }
.brand-mark span:first-child { color: var(--white); }
.brand-mark span:last-child { color: #0b0b0b; background: var(--orange); }
.brand-name strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 23px;
  line-height: .95;
  letter-spacing: .08em;
}
.brand-name small { display: block; margin-top: 6px; color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .55em; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 23px; }
.site-nav a {
  position: relative;
  padding: 30px 0 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--white); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; margin-left: auto; border: 1px solid var(--line); background: var(--surface); border-radius: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--orange);
  border-radius: 7px;
  background: var(--orange);
  color: #0b0b0b;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--white);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translate(-2px,-2px); box-shadow: 10px 10px 0 var(--white); }
.button-small { min-height: 44px; padding-inline: 16px; font-size: 12px; box-shadow: 5px 5px 0 var(--white); }
.button-outline { border-color: var(--line-strong); background: rgba(255,255,255,.035); color: var(--white); box-shadow: none; }
.button-outline:hover { border-color: var(--orange); background: rgba(255,90,0,.08); box-shadow: none; }
.button-dark { border-color: #111; background: #111; color: var(--white); box-shadow: 7px 7px 0 rgba(255,255,255,.32); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-light); font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.text-link::after { content: "→"; transition: transform .18s ease; }
.text-link:hover::after { transform: translateX(5px); }
.action-row { display: flex; flex-wrap: wrap; gap: 14px; }

.hero {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before, .section-kicker::before { content: ""; width: 34px; height: 2px; background: var(--orange); }
h1, h2, h3, h4, p { margin-top: 0; }
h1, .display, .section-title, .card-title, .metric-value {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}
h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(54px, 7.5vw, 112px);
  line-height: .88;
  letter-spacing: -.025em;
  text-wrap: balance;
}
h1 em { display: block; color: var(--orange); font-style: italic; text-shadow: 0 8px 0 rgba(255,90,0,.16); }
.hero-lead { max-width: 690px; margin-bottom: 30px; color: #ddd8d0; font-size: clamp(18px, 2vw, 21px); font-weight: 700; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 30px; padding: 0; list-style: none; }
.hero-tags li { padding: 9px 12px; border: 1px solid var(--line); background: rgba(255,255,255,.035); color: #dbd6cf; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; color: var(--muted); font-size: 13px; font-weight: 800; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px var(--orange); }

.system-visual {
  position: relative;
  min-height: 600px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,90,0,.17), transparent 38%),
    linear-gradient(320deg, rgba(22,140,255,.10), transparent 38%),
    #0b0b0b;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.system-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -130px;
  top: -120px;
  border: 1px solid rgba(255,90,0,.35);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255,90,0,.035), 0 0 0 100px rgba(255,90,0,.025);
}
.system-top { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 16px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.system-id { display: flex; align-items: center; gap: 11px; }
.system-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 20px var(--orange); }
.system-id strong { display: block; font-size: 13px; letter-spacing: .13em; text-transform: uppercase; }
.system-id small { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.system-status { padding: 7px 9px; border: 1px solid rgba(214,164,58,.3); background: rgba(214,164,58,.08); color: #f3c86d; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.system-core { position: relative; z-index: 1; display: grid; place-items: center; min-height: 250px; }
.core-ring { position: relative; width: 215px; height: 215px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.core-ring::before, .core-ring::after { content: ""; position: absolute; border-radius: 50%; }
.core-ring::before { inset: 24px; border: 1px dashed rgba(255,90,0,.48); animation: spin 18s linear infinite; }
.core-ring::after { inset: 50px; border: 1px solid rgba(22,140,255,.30); box-shadow: inset 0 0 35px rgba(22,140,255,.11); }
.core-lockup { position: relative; z-index: 1; text-align: center; }
.core-lockup strong { display: block; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 58px; line-height: .9; }
.core-lockup small { color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .32em; text-transform: uppercase; }
.module-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.module { min-height: 118px; padding: 17px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.035); }
.module span { display: block; margin-bottom: 18px; color: var(--orange); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 22px; }
.module strong { display: block; margin-bottom: 4px; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.module small { color: var(--muted); font-size: 11px; }
@keyframes spin { to { transform: rotate(360deg); } }

.capability-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.025); }
.capability-row { display: grid; grid-template-columns: repeat(6, 1fr); }
.capability-row span { padding: 20px 12px; border-right: 1px solid var(--line); text-align: center; color: #d8d2ca; font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.capability-row span:first-child { border-left: 1px solid var(--line); }

.section { padding: 110px 0; }
.section-compact { padding: 80px 0; }
.section-alt { position: relative; background: #0a0a0a; border-block: 1px solid var(--line); }
.section-orange { background: var(--orange); color: #0a0a0a; }
.section-orange .section-kicker { color: #3e210e; }
.section-orange .section-kicker::before { background: #0a0a0a; }
.section-orange .muted, .section-orange .section-lead { color: #3b291f; }
.section-head { display: grid; grid-template-columns: 1fr .9fr; gap: 56px; align-items: end; margin-bottom: 46px; }
.section-title { margin-bottom: 0; font-size: clamp(42px, 6vw, 82px); line-height: .9; letter-spacing: -.018em; text-wrap: balance; }
.section-title span { color: var(--orange); }
.section-orange .section-title span { color: #fff; text-shadow: 0 5px 0 rgba(0,0,0,.14); }
.section-lead { margin-bottom: 0; color: var(--muted); font-size: 18px; font-weight: 700; }
.muted { color: var(--muted); }
.lead { color: #ded8d0; font-size: 20px; font-weight: 700; }
.prose { color: #d6d0c8; }
.prose p { margin-bottom: 1.15rem; }
.prose h2 { margin: 2.4rem 0 1rem; font-size: 32px; }
.prose h3 { margin: 1.8rem 0 .75rem; font-size: 22px; }
.prose ul { padding-left: 1.2rem; }
.prose a { color: var(--orange-light); text-decoration: underline; text-underline-offset: 4px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.split-top { align-items: start; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.pillar-card, .service-card, .case-card, .offer-card, .process-card, .info-card, .feature-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  overflow: hidden;
}
.pillar-card::after, .service-card::after, .case-card::after, .offer-card::after, .feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.card-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 28px; border: 1px solid rgba(255,90,0,.4); color: var(--orange-light); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 18px; }
.card-title { margin-bottom: 12px; font-size: 29px; line-height: 1; letter-spacing: .01em; }
.card-copy { margin-bottom: 0; color: #d0cbc3; font-weight: 700; }
.card-list { margin: 18px 0 0; padding: 0; list-style: none; }
.card-list li { position: relative; padding: 8px 0 8px 22px; border-top: 1px solid rgba(255,255,255,.07); color: #d4cec6; font-size: 14px; font-weight: 700; }
.card-list li::before { content: ""; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; background: var(--orange); }

.value-panel { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: #0d0d0d; box-shadow: var(--shadow); }
.value-panel h3 { margin-bottom: 16px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 42px; line-height: .95; text-transform: uppercase; }
.value-panel p { color: #d3cdc5; font-weight: 700; }
.value-stack { display: grid; gap: 12px; }
.value-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.03); }
.value-icon { display: grid; place-items: center; width: 44px; height: 44px; background: var(--orange); color: #0c0c0c; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 20px; }
.value-item strong { display: block; margin-bottom: 3px; text-transform: uppercase; letter-spacing: .05em; }
.value-item p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.readybinder-panel {
  position: relative;
  padding: 54px;
  border: 1px solid rgba(255,90,0,.35);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(255,90,0,.26), transparent 22rem),
    linear-gradient(135deg, #121212, #090909);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.readybinder-panel::after { content: "RB"; position: absolute; right: -28px; bottom: -80px; color: rgba(255,255,255,.025); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 300px; line-height: 1; }
.readybinder-content { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; }
.status-chip { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 8px 11px; border: 1px solid rgba(214,164,58,.4); background: rgba(214,164,58,.08); color: #f2c667; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.status-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.readybinder-panel h2 { margin-bottom: 14px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(48px, 7vw, 88px); line-height: .88; text-transform: uppercase; }
.readybinder-panel h2 span { color: var(--orange); }
.readybinder-panel .lead { max-width: 560px; }
.product-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0; }
.product-points span { padding: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.035); color: #d7d1c9; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.rb-dashboard { position: relative; padding: 18px; border: 1px solid var(--line-strong); border-radius: 14px; background: #0b0b0b; box-shadow: 0 20px 50px rgba(0,0,0,.45); transform: rotate(1.5deg); }
.rb-browser { display: flex; align-items: center; gap: 7px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.rb-browser i { width: 8px; height: 8px; border-radius: 50%; background: #454545; }
.rb-browser i:first-child { background: var(--red); }
.rb-browser i:nth-child(2) { background: var(--gold); }
.rb-browser i:nth-child(3) { background: #33a45b; }
.rb-browser span { margin-left: auto; color: var(--muted); font-size: 9px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.rb-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px 0; }
.rb-stat { padding: 12px; border: 1px solid var(--line); background: #131313; }
.rb-stat strong { display: block; color: var(--orange); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 27px; }
.rb-stat small { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.rb-feed { display: grid; gap: 8px; }
.rb-row { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 11px; border: 1px solid var(--line); background: #111; }
.rb-row b { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px rgba(255,90,0,.7); }
.rb-row strong { display: block; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.rb-row small { display: block; color: var(--muted); font-size: 8px; }
.rb-row em { color: #84d39e; font-size: 8px; font-style: normal; font-weight: 900; text-transform: uppercase; }

.case-card { min-height: 310px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(180deg, transparent 15%, rgba(0,0,0,.92)), linear-gradient(135deg, rgba(255,90,0,.28), rgba(255,255,255,.035)); }
.case-card:nth-child(2n) { background: linear-gradient(180deg, transparent 15%, rgba(0,0,0,.92)), linear-gradient(135deg, rgba(214,164,58,.26), rgba(255,255,255,.035)); }
.case-card:nth-child(3n) { background: linear-gradient(180deg, transparent 15%, rgba(0,0,0,.92)), linear-gradient(135deg, rgba(22,140,255,.24), rgba(255,255,255,.035)); }
.case-type { margin-bottom: auto; color: var(--orange-light); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.case-card h3 { margin-bottom: 8px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 38px; line-height: .95; text-transform: uppercase; }
.case-card p { margin-bottom: 0; color: #d7d1c9; font-weight: 700; }

.process-card { border-top: 3px solid var(--orange); }
.process-card span { display: block; margin-bottom: 24px; color: rgba(255,255,255,.15); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 64px; line-height: .8; }
.process-card h3 { margin-bottom: 8px; text-transform: uppercase; }
.process-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; font-weight: 700; }

.offer-card { display: flex; flex-direction: column; }
.offer-card.featured { border-color: rgba(255,90,0,.48); background: linear-gradient(150deg, rgba(255,90,0,.12), rgba(255,255,255,.025)); transform: translateY(-10px); }
.offer-label { margin-bottom: 18px; color: var(--orange-light); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.offer-card h3 { margin-bottom: 8px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 32px; line-height: 1; text-transform: uppercase; }
.price { margin: 10px 0 18px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 47px; line-height: .9; }
.price small { display: block; margin-top: 7px; color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.offer-card ul { flex: 1; margin: 0 0 22px; padding: 0; list-style: none; }
.offer-card li { padding: 9px 0; border-top: 1px solid rgba(255,255,255,.08); color: #d5cfc7; font-size: 14px; font-weight: 700; }

.cta-band { padding: 58px; border-radius: var(--radius); background: var(--orange); color: #0a0a0a; box-shadow: 14px 14px 0 rgba(255,255,255,.92); }
.cta-band-grid { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.cta-band h2 { margin-bottom: 10px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(42px, 5.5vw, 74px); line-height: .9; text-transform: uppercase; }
.cta-band p { max-width: 760px; margin-bottom: 0; color: #382318; font-weight: 800; }

.page-hero { position: relative; padding: 92px 0 76px; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -100px; top: -120px; width: 420px; height: 420px; border: 1px solid rgba(255,90,0,.26); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,90,0,.025), 0 0 0 110px rgba(255,90,0,.018); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 980px; }
.page-hero .hero-lead { max-width: 790px; }
.breadcrumb { margin-bottom: 20px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .10em; text-transform: uppercase; }
.breadcrumb a { color: var(--orange-light); }

.service-detail { display: grid; grid-template-columns: 160px 1fr; gap: 30px; padding: 34px 0; border-top: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail-number { color: rgba(255,255,255,.16); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 82px; line-height: .9; }
.service-detail h2 { margin-bottom: 12px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 46px; line-height: .95; text-transform: uppercase; }
.service-detail p { max-width: 800px; color: #d2ccc4; font-weight: 700; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.detail-tags span { padding: 8px 10px; border: 1px solid var(--line); background: rgba(255,255,255,.025); color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; }

.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list b { display: grid; place-items: center; width: 34px; height: 34px; background: var(--orange); color: #0a0a0a; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; }
.feature-list strong { display: block; margin-bottom: 4px; text-transform: uppercase; }
.feature-list span { color: var(--muted); font-size: 14px; font-weight: 700; }

.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.audience-item { min-height: 150px; padding: 24px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.audience-item span { display: block; margin-bottom: 17px; color: var(--orange); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 34px; }
.audience-item strong { display: block; text-transform: uppercase; }
.audience-item p { margin: 8px 0 0; color: var(--muted); font-size: 14px; font-weight: 700; }

.notice { padding: 22px; border-left: 4px solid var(--gold); background: rgba(214,164,58,.07); color: #dfd4bd; font-size: 14px; font-weight: 700; }
.notice strong { color: #f2c667; }

.form-shell { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: #0d0d0d; box-shadow: var(--shadow); }
.form-shell h2, .contact-card h2 { margin-bottom: 10px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 46px; line-height: .95; text-transform: uppercase; }
.form-shell > p { color: var(--muted); font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: #e7e0d7; font-size: 12px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  min-height: 51px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  outline: none;
  background: #070707;
  color: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,0,.13); }
input::placeholder, textarea::placeholder { color: #777; }
.checkbox-field { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; }
.checkbox-field input { width: 18px; height: 18px; min-height: 0; margin-top: 3px; accent-color: var(--orange); }
.checkbox-field label { color: var(--muted); font-size: 12px; line-height: 1.5; }
.form-note { margin-top: 14px; color: #89857f; font-size: 11px; }
.hidden-field { position: absolute; left: -9999px; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 26px; align-items: start; }
.contact-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,90,0,.10), rgba(255,255,255,.022)); }
.contact-card p { color: #d2ccc4; font-weight: 700; }
.contact-list { display: grid; gap: 12px; margin-top: 28px; }
.contact-list a, .contact-list span { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 13px; padding: 13px; border: 1px solid var(--line); background: rgba(0,0,0,.25); }
.contact-list b { display: grid; place-items: center; width: 44px; height: 44px; background: var(--orange); color: #090909; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; }
.contact-list strong { display: block; font-size: 13px; text-transform: uppercase; }
.contact-list small { color: var(--muted); }

.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.metric { padding: 24px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.metric-value { display: block; color: var(--orange); font-size: 48px; line-height: .9; }
.metric-label { display: block; margin-top: 10px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .10em; text-transform: uppercase; }

.site-footer { border-top: 1px solid var(--line); background: #060606; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1.1fr .9fr; gap: 42px; padding: 70px 0 45px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid p { max-width: 390px; margin-bottom: 7px; color: var(--muted); font-size: 14px; font-weight: 700; }
.footer-grid h2 { margin: 0 0 15px; color: var(--white); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand-lockup) { display: block; margin: 8px 0; color: var(--muted); font-size: 14px; font-weight: 700; }
.footer-grid > div > a:hover { color: var(--orange-light); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; padding: 22px 0 32px; border-top: 1px solid var(--line); color: #85817a; font-size: 11px; font-weight: 800; }
.footer-bottom > span:last-child { text-align: right; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a:hover { color: var(--orange-light); }

.thank-you { min-height: 66vh; display: grid; place-items: center; text-align: center; }
.thank-you-box { max-width: 780px; padding: 60px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,90,0,.13), rgba(255,255,255,.025)); box-shadow: var(--shadow); }
.thank-you-icon { display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 25px; border-radius: 50%; background: var(--orange); color: #0a0a0a; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 38px; }
.thank-you h1 { margin-inline: auto; font-size: clamp(52px, 7vw, 88px); }
.thank-you p { color: #d3cdc5; font-size: 18px; font-weight: 700; }
.thank-you .action-row { justify-content: center; margin-top: 28px; }

@media (max-width: 1050px) {
  .nav-cta { display: none; }
  .hero-grid, .readybinder-content { grid-template-columns: 1fr; }
  .system-visual { min-height: 540px; max-width: 760px; }
  .capability-row { grid-template-columns: repeat(3,1fr); }
  .capability-row span:nth-child(3) { border-right: 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .grid-4, .metric-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  .nav-row { min-height: 74px; }
  .brand-mark { width: 46px; height: 46px; font-size: 21px; }
  .brand-name strong { font-size: 20px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    left: 1.25rem;
    right: 1.25rem;
    top: 82px;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(9,9,9,.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .hero { padding-top: 70px; }
  .split { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
  .cta-band-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 100px 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; text-align: left; }
  .footer-bottom > span:last-child { text-align: left; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 1.5rem, var(--container)); }
  .hero { padding: 55px 0 70px; }
  h1 { font-size: clamp(46px, 15vw, 72px); }
  .hero-lead { font-size: 17px; }
  .action-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .system-visual { min-height: auto; padding: 16px; }
  .system-core { min-height: 220px; }
  .core-ring { width: 190px; height: 190px; }
  .module-grid { grid-template-columns: 1fr; }
  .capability-row { grid-template-columns: repeat(2,1fr); }
  .capability-row span { border-bottom: 1px solid var(--line); }
  .capability-row span:nth-child(3) { border-right: 1px solid var(--line); }
  .section { padding: 78px 0; }
  .section-compact { padding: 60px 0; }
  .section-title { font-size: clamp(42px, 13vw, 64px); }
  .grid-2, .grid-3, .grid-4, .metric-grid { grid-template-columns: 1fr; }
  .readybinder-panel { padding: 28px 20px; }
  .product-points { grid-template-columns: 1fr; }
  .rb-stats { grid-template-columns: 1fr; }
  .offer-card.featured { transform: none; }
  .cta-band { padding: 34px 24px; box-shadow: 8px 8px 0 rgba(255,255,255,.92); }
  .page-hero { padding: 64px 0 54px; }
  .service-detail { grid-template-columns: 1fr; gap: 12px; }
  .service-detail-number { font-size: 56px; }
  .service-detail h2 { font-size: 39px; }
  .audience-grid { grid-template-columns: 1fr; }
  .form-shell, .contact-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .thank-you-box { padding: 42px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
