:root {
  color-scheme: dark;
  --bg: #090909;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f4f1eb;
  --muted: #a7a39b;
  --line: rgba(255,255,255,.14);
  --line-strong: rgba(255,255,255,.32);
  --accent: #ffffff;
  --soft: rgba(255,255,255,.06);
  --shadow: 0 30px 80px rgba(0,0,0,.45);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: #070707;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.flowfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.rabbit-flow {
  width: 100%;
  height: 100%;
}
.rabbit-flow path {
  fill: none;
  stroke: rgba(255,255,255,.19);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 8 14 2 18;
  animation: flow-dash 26s linear infinite;
}
.rabbit-flow path:nth-child(2n) {
  stroke: rgba(255,255,255,.13);
  stroke-dasharray: 7 13 2 17;
  animation-duration: 32s;
}
.rabbit-flow path:nth-child(3n) {
  stroke: rgba(255,255,255,.1);
  animation-duration: 38s;
}
@keyframes flow-dash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -700; }
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.site-header, main, .site-footer { position: relative; z-index: 2; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 70px);
  backdrop-filter: blur(18px);
  background: rgba(9,9,9,.72);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; width: clamp(170px, 22vw, 250px); height: auto; }
.nav { display: flex; gap: 26px; align-items: center; color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--text); }
.nav-cta { color: var(--text) !important; border: 1px solid var(--line-strong); padding: 10px 16px; border-radius: 999px; }
main { overflow: hidden; }
.section-grid, .section, .cards { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 72px 0;
}
.eyebrow { margin: 0 0 18px; color: var(--muted); text-transform: uppercase; letter-spacing: .36em; font-size: 12px; font-weight: 700; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.05em; line-height: .96; }
h1 { font-size: clamp(58px, 11vw, 132px); max-width: 780px; margin-bottom: 26px; }
h1 em { display: block; color: var(--muted); font-style: italic; font-weight: 600; }
h2 { font-size: clamp(42px, 6vw, 76px); margin-bottom: 0; }
h3 { font-size: 25px; letter-spacing: -.03em; }
.hero-lede, .copy-stack p, .audit-card p { color: var(--muted); font-size: 18px; line-height: 1.75; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 0 20px; border-radius: 999px; font-weight: 800; border: 1px solid var(--line-strong); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--accent); color: #080808; }
.button.ghost { background: rgba(255,255,255,.03); }
.hero-actions .button.primary { min-height: 56px; padding-inline: 28px; font-size: 16px; }
.proof-row { display: flex; align-items: center; gap: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: .28em; font-size: 12px; }
.proof-row i { width: 42px; height: 1px; background: var(--line-strong); }
.hero-card {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  padding: 36px;
  overflow: hidden;
}
.corner { position: absolute; width: 30px; height: 30px; border-top: 2px solid #fff; border-right: 2px solid #fff; right: 28px; top: 28px; }
.card-orbit { position: absolute; inset: 90px -120px auto auto; width: 390px; height: 390px; border: 1px solid var(--line); border-radius: 50%; background: repeating-linear-gradient(135deg, transparent 0 8px, rgba(255,255,255,.12) 8px 10px); transform: rotate(-18deg); opacity: .5; }
.panel-label { position: relative; color: var(--muted); letter-spacing: .32em; text-transform: uppercase; font-size: 12px; }
.signal-rabbit { position: relative; margin: 110px auto 70px; width: 260px; height: 170px; transform: rotate(-16deg); }
.signal-rabbit span { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, #fff, transparent); left: 0; right: 0; }
.signal-rabbit span:nth-child(1){ top:20px; width: 75%; } .signal-rabbit span:nth-child(2){ top:52px; width: 100%; } .signal-rabbit span:nth-child(3){ top:84px; width: 90%; } .signal-rabbit span:nth-child(4){ top:116px; width: 70%; } .signal-rabbit span:nth-child(5){ top:148px; width: 95%; }
.metric-block { position: relative; border-top: 1px solid var(--line); padding-top: 22px; margin-bottom: 20px; }
.metric-block span, .mini-grid span { color: var(--muted); }
.metric-block strong { display: block; font-size: 32px; letter-spacing: -.04em; margin-top: 6px; }
.mini-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-grid div, .service-card, .price-card { border: 1px solid var(--line); background: rgba(255,255,255,.035); padding: 22px; }
.mini-grid strong { display: block; margin-bottom: 6px; }
.section { padding: 90px 0; }
.split { display: grid; grid-template-columns: .95fr 1fr; gap: 70px; align-items: start; border-top: 1px solid var(--line); }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 260px; padding: 30px; }
.service-card.featured { background: #f3f0e9; color: #080808; }
.service-card p, .price-card p, .price-card li { color: var(--muted); line-height: 1.65; }
.service-card.featured p { color: #444; }
.number { display: inline-block; color: var(--muted); margin-bottom: 70px; }
.dark-panel { margin-top: 90px; border: 1px solid var(--line); padding: 46px; background: rgba(0,0,0,.3); box-shadow: var(--shadow); }
.panel-heading { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.panel-heading h2 { max-width: 760px; }
.stack-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stack-list div { background: var(--panel); padding: 22px; min-height: 150px; }
.stack-list span { display: block; font-weight: 800; margin-bottom: 14px; }
.stack-list small { color: var(--muted); line-height: 1.5; }
.section-title { max-width: 820px; margin-bottom: 36px; }
.section-title.narrow { max-width: 760px; }
.pricing-grid { display: grid; grid-template-columns: 1.08fr 1fr .92fr; gap: 18px; align-items: stretch; }
.price-card { padding: 30px; min-height: 390px; display: flex; flex-direction: column; }
.price-card h3 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 14px; }
.price-card h3 span { font: 600 15px var(--sans); color: var(--muted); letter-spacing: 0; }
.price-card ul { margin: auto 0 0; padding-left: 20px; }
.tag { color: var(--text) !important; text-transform: uppercase; letter-spacing: .26em; font-size: 12px; font-weight: 800; }
.anchor { background: #f3f0e9; color: #080808; }
.anchor p, .anchor li, .anchor h3 span { color: #494949; }
.primary-price { border-color: rgba(255,255,255,.42); }
.pricing-note { color: var(--muted); margin-top: 18px; }
.industry-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-cloud span { border: 1px solid var(--line); border-radius: 999px; padding: 12px 16px; background: rgba(255,255,255,.03); color: var(--muted); }
.audit-card { display: grid; grid-template-columns: .9fr 1fr; gap: 52px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); padding: clamp(28px, 5vw, 58px); box-shadow: var(--shadow); }
.contact-lines { display: grid; gap: 14px; margin-top: 30px; color: var(--text); }
.lead-form { display: grid; gap: 14px; }
.lead-form label { display: grid; gap: 8px; color: var(--muted); font-size: 14px; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; background: rgba(0,0,0,.38); color: var(--text); padding: 14px 15px; font: inherit; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--line-strong); }
#formStatus { min-height: 22px; margin: 0; color: var(--muted); }
.site-footer { width: min(1160px, calc(100% - 40px)); margin: 20px auto 0; padding: 34px 0 46px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); }
@media (max-width: 900px) {
  .nav a:not(.nav-cta) { display: none; }
  .section-grid, .section, .cards { width: min(1160px, calc(100% - 28px)); }
  .hero, .split, .audit-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 46px 0 60px; gap: 28px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; margin: 28px 0; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button.primary { min-height: 62px; font-size: 17px; }
  .hero-card { min-height: 420px; padding: 28px; }
  .cards.three, .pricing-grid, .stack-list { grid-template-columns: 1fr; }
  .dark-panel { padding: 28px; }
  .audit-card { gap: 30px; }
  .site-footer { flex-direction: column; }
}
@media (max-width: 560px) {
  .site-header { padding: 18px 20px; }
  .brand-logo { width: min(58vw, 220px); }
  h1 { font-size: 56px; }
  .hero-card { min-height: 360px; padding: 24px; }
  .metric-block strong { font-size: 26px; }
  .hero { padding-top: 46px; }
  .proof-row { flex-wrap: wrap; letter-spacing: .18em; }
}
@media (prefers-reduced-motion: reduce) {
  .rabbit-flow path { animation: none; }
}
