:root {
  --navy: #0a1020;
  --card: #111b2d;
  --card-2: #152239;
  --ink: #edf0ef;
  --muted: #a4adb0;
  --line: rgba(237, 240, 239, 0.16);
  --lime: #d6ff4f;
  --blue: #7aa7ff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--navy);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 88px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.wordmark { display: inline-flex; align-items: center; gap: 11px; justify-self: start; font-size: 13px; font-weight: 800; text-decoration: none; }
.logo-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  color: var(--navy);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 12px 28px rgba(214, 255, 79, 0.14);
}
.header-label { color: var(--muted); font: 9px "DM Mono", monospace; letter-spacing: 0.08em; }
.header-cta { justify-self: end; padding: 11px 13px; color: var(--navy); background: var(--lime); font-size: 11px; font-weight: 800; text-decoration: none; transition: transform 0.2s ease, background 0.2s ease; }
.header-cta:hover { transform: translateY(-2px); background: #e3ff7c; }

.site-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  border: 1px solid var(--line);
  background: rgba(17, 27, 45, 0.42);
}
.site-menu-link {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-menu-link:last-child { border-right: 0; }
.site-menu-link::after {
  position: absolute;
  right: 14px;
  color: var(--lime);
  opacity: 0;
  transform: translateX(-5px);
  content: "↗";
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-menu-link:hover { color: var(--ink); background: rgba(122, 167, 255, 0.08); }
.site-menu-link:hover::after { opacity: 1; transform: none; }
.site-menu-link.is-active { color: var(--navy); background: var(--lime); }
.site-menu-link.is-active::after { color: var(--navy); opacity: 1; transform: none; }
.site-menu-number { color: var(--blue); font: 9px "DM Mono", monospace; }
.site-menu-link.is-active .site-menu-number { color: rgba(10, 16, 32, 0.58); }

.hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(50px, 7vw, 100px);
  min-height: 725px;
  align-items: center;
  padding-block: 90px 80px;
}
.eyebrow, .section-number { margin: 0; color: var(--muted); font: 9px "DM Mono", monospace; letter-spacing: 0.07em; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 16px rgba(214, 255, 79, 0.65); }
.hero h1 {
  max-width: 760px;
  margin: 25px 0 28px;
  font-size: clamp(48px, 6.2vw, 83px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.067em;
}
h2 { margin: 0; font-size: clamp(37px, 4.8vw, 62px); line-height: 1.03; letter-spacing: -0.06em; }
h1 em, h2 em { color: var(--lime); font-family: Georgia, serif; font-weight: 400; }
.hero-lead { max-width: 600px; margin: 0; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.button { display: inline-flex; min-width: 205px; align-items: center; justify-content: space-between; gap: 25px; padding: 14px 16px; font-size: 11px; font-weight: 800; text-decoration: none; transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy); background: var(--lime); }
.button-primary:hover { background: #e3ff7c; }
.button-secondary { border: 1px solid var(--line); }
.button-secondary:hover { border-color: rgba(237, 240, 239, 0.42); }

.handoff-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(237, 240, 239, 0.28);
  background: linear-gradient(145deg, rgba(122, 167, 255, 0.11), rgba(17, 27, 45, 0.72));
  box-shadow: 22px 22px 0 rgba(122, 167, 255, 0.05);
}
.handoff-card::before { position: absolute; inset: 10px -10px -10px 10px; z-index: -1; border: 1px solid rgba(214, 255, 79, 0.11); content: ""; }
.handoff-top { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); font: 9px "DM Mono", monospace; }
.handoff-top i { color: var(--lime); font-style: normal; }
.handoff-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 8px; align-items: center; padding-block: 35px; }
.handoff-flow > i { color: #5b6777; font-style: normal; }
.handoff-flow div { min-height: 138px; padding: 14px; border: 1px solid var(--line); background: rgba(10, 16, 32, 0.48); }
.handoff-flow div.is-active { border-color: rgba(214, 255, 79, 0.42); background: rgba(214, 255, 79, 0.07); }
.handoff-flow b { display: block; color: var(--blue); font: 22px Georgia, serif; }
.handoff-flow .is-active b { color: var(--lime); }
.handoff-flow span { display: block; margin-top: 27px; font-size: 11px; font-weight: 800; }
.handoff-flow small { color: var(--muted); font-size: 8px; }
.handoff-footer { display: flex; justify-content: space-between; gap: 15px; padding-top: 18px; border-top: 1px solid var(--line); font: 8px "DM Mono", monospace; }
.handoff-footer span { color: var(--muted); }
.handoff-footer strong { color: var(--lime); }

.control-strip { overflow: hidden; border-block: 1px solid rgba(10, 16, 32, 0.55); color: var(--navy); background: var(--lime); }
.control-track { display: flex; width: max-content; align-items: center; gap: 21px; padding: 13px 22px; font: 9px "DM Mono", monospace; letter-spacing: 0.07em; animation: marquee 25s linear infinite; }
.control-track i { font-style: normal; }
@keyframes marquee { to { transform: translateX(-38%); } }

.section-grid { display: grid; grid-template-columns: 21% 1fr; gap: 60px; padding-block: 110px; border-bottom: 1px solid var(--line); }
.section-lead { max-width: 750px; margin: 27px 0 40px; color: var(--muted); font-size: 16px; }
.fit h2 em, .included h2 em { color: var(--blue); }
.fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.fit-grid article { min-height: 205px; padding: 22px; border: 1px solid var(--line); background: rgba(17, 27, 45, 0.44); transition: transform 0.25s ease, border-color 0.25s ease; }
.fit-grid article:hover { transform: translateY(-5px); border-color: rgba(237, 240, 239, 0.36); }
.fit-grid span { color: var(--blue); font: 10px "DM Mono", monospace; }
.fit-grid strong { display: block; margin-top: 50px; font-size: 17px; }
.fit-grid p { margin: 9px 0 0; color: var(--muted); font-size: 12px; }

.process, .example { padding-block: 110px; border-bottom: 1px solid var(--line); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 55px; margin-bottom: 48px; }
.section-heading h2 { margin-top: 20px; }
.section-heading > p { max-width: 335px; margin: 0; color: var(--muted); font-size: 13px; }
.process h2 em, .example h2 em { color: var(--lime); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.steps li { min-height: 305px; padding: 25px; border: 1px solid var(--line); background: linear-gradient(155deg, rgba(122, 167, 255, 0.11), rgba(17, 27, 45, 0.66)); transition: transform 0.25s ease, border-color 0.25s ease; }
.steps li:nth-child(2) { background: linear-gradient(155deg, rgba(214, 255, 79, 0.1), rgba(17, 27, 45, 0.66)); }
.steps li:hover { transform: translateY(-5px); border-color: rgba(237, 240, 239, 0.36); }
.steps b { display: block; color: var(--blue); font: 38px Georgia, serif; }
.steps li:nth-child(2) b { color: var(--lime); }
.steps small { display: block; margin-top: 75px; color: var(--muted); font: 8px "DM Mono", monospace; }
.steps h3 { margin: 9px 0; font-size: 21px; letter-spacing: -0.045em; }
.steps p { margin: 0; color: var(--muted); font-size: 12px; }

.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 42px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.included-grid div { display: flex; min-height: 96px; align-items: center; gap: 18px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(17, 27, 45, 0.32); }
.included-grid b { color: var(--blue); font: 9px "DM Mono", monospace; }
.included-grid span { font-size: 13px; font-weight: 700; }
.boundary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.boundary p { margin: 0; padding: 15px; border: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.boundary span { display: block; margin-bottom: 7px; color: var(--lime); font: 8px "DM Mono", monospace; }

.example-card { display: block; border: 1px solid var(--line); background: rgba(17, 27, 45, 0.46); text-decoration: none; transition: transform 0.3s ease, border-color 0.3s ease; }
.example-card:hover { transform: translateY(-6px); border-color: rgba(237, 240, 239, 0.36); }
.browser { margin: 22px; overflow: hidden; border: 1px solid rgba(237, 240, 239, 0.23); border-radius: 9px; background: #dce5e0; box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32); }
.browser-bar { display: flex; height: 36px; align-items: center; gap: 6px; padding: 0 12px; background: #e4e8e3; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #adb5b0; }
.browser-bar span { margin-left: 8px; color: #69756e; font: 7px "DM Mono", monospace; }
.browser-page { color: #f2f5f1; background: #102638; }
.mock-nav { display: flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 18px; padding: 0 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.mock-nav strong { font-size: 11px; letter-spacing: 0.13em; }
.mock-nav span { color: #a8bbc2; font-size: 8px; }
.mock-nav b { padding: 8px 10px; color: #102638; background: #78e1dc; font-size: 7px; }
.mock-hero { min-height: 390px; padding: 75px 7%; background: radial-gradient(circle at 87% 35%, rgba(120, 225, 220, 0.21), transparent 25%), linear-gradient(135deg, #102638 64%, #173e4d 64%); }
.mock-hero small { color: #78e1dc; font: 8px "DM Mono", monospace; }
.mock-hero h3 { max-width: 650px; margin: 18px 0; font-size: clamp(44px, 7vw, 82px); line-height: 0.98; letter-spacing: -0.067em; }
.mock-hero p { max-width: 425px; color: #b6c7ca; font-size: 11px; }
.mock-hero > span { display: inline-block; margin-top: 22px; padding: 11px 13px; color: #102638; background: #78e1dc; font-size: 8px; font-weight: 800; }
.mock-proof { display: grid; grid-template-columns: repeat(3, 1fr); padding: 16px 30px; color: #102638; background: #d8e7df; font-size: 8px; letter-spacing: 0.08em; }
.mock-proof b:nth-child(2) { text-align: center; }
.mock-proof b:last-child { text-align: right; }
.example-copy { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; padding: 0 24px 24px; }
.example-copy p { margin: 0 0 7px; color: var(--lime); font: 8px "DM Mono", monospace; }
.example-copy strong { display: block; font-size: 21px; letter-spacing: -0.04em; }
.example-copy small { color: var(--muted); font-size: 10px; }
.example-copy > span { flex: none; padding-bottom: 5px; color: var(--lime); font: 9px "DM Mono", monospace; }

.pilot { display: grid; grid-template-columns: 1fr 43%; gap: 80px; padding-block: 110px; border-bottom: 1px solid var(--line); }
.pilot-intro h2 { margin: 20px 0 25px; }
.pilot-intro h2 em { color: var(--blue); }
.pilot-intro > p:last-child { max-width: 610px; color: var(--muted); font-size: 14px; }
.pilot-card { padding: 30px; border: 1px solid rgba(214, 255, 79, 0.34); background: linear-gradient(145deg, rgba(214, 255, 79, 0.08), var(--card)); box-shadow: 18px 18px 0 rgba(214, 255, 79, 0.045); }
.pilot-label { color: var(--lime); font: 8px "DM Mono", monospace; }
.price { display: flex; align-items: baseline; gap: 18px; margin: 24px 0; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.price small { color: var(--muted); font: 8px "DM Mono", monospace; }
.price strong { color: var(--lime); font: 57px Georgia, serif; }
.pilot-card ul { margin: 0 0 24px; padding: 0; list-style: none; }
.pilot-card li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.pilot-card li::before { margin-right: 10px; color: var(--lime); content: "↗"; }
.pilot-card .button { width: 100%; }

.agency-faq{display:grid;grid-template-columns:42% 1fr;gap:70px;padding-block:110px;border-bottom:1px solid var(--line)}
.agency-faq-list{border-top:1px solid var(--line)}
.agency-faq-list details{border-bottom:1px solid var(--line)}
.agency-faq-list summary{display:flex;min-height:70px;padding:20px 0;align-items:center;justify-content:space-between;gap:20px;color:var(--ink);font-size:15px;font-weight:700;cursor:pointer;list-style:none}
.agency-faq-list summary::-webkit-details-marker{display:none}.agency-faq-list summary i{display:grid;width:30px;height:30px;flex:none;place-items:center;border:1px solid var(--line);color:var(--lime);font-style:normal;transition:transform .25s ease,background .25s ease}
.agency-faq-list details[open] summary i{color:var(--navy);background:var(--lime);transform:rotate(45deg)}
.agency-faq-list details p{max-width:650px;margin:0;padding:0 46px 22px 0;color:var(--muted);font-size:13px}

.contact { padding-block: 125px; }
.contact h2 { max-width: 900px; margin: 22px 0 24px; font-size: clamp(46px, 6vw, 78px); }
.contact h2 em { color: var(--lime); }
.contact > p { max-width: 650px; color: var(--muted); font-size: 14px; }
.contact > a { display: inline-block; margin-top: 18px; border-bottom: 1px solid rgba(214, 255, 79, 0.42); color: var(--lime); font-size: clamp(19px, 3vw, 34px); letter-spacing: -0.05em; text-decoration: none; }
.footer { display: flex; justify-content: space-between; gap: 20px; padding-block: 25px; border-top: 1px solid var(--line); color: var(--muted); font: 8px "DM Mono", monospace; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--lime); }

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

.showcase { padding-block: 110px; border-bottom: 1px solid var(--line); }
.showcase-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.showcase-card {
  --showcase-accent: var(--blue);
  --showcase-glow: rgba(122, 167, 255, 0.2);
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  color: inherit;
  background: rgba(17, 27, 45, 0.58);
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.showcase-card:hover { transform: translateY(-6px); border-color: var(--showcase-accent); box-shadow: 0 22px 45px var(--showcase-glow); }
.showcase-coral { --showcase-accent: #ff8f73; --showcase-glow: rgba(255, 143, 115, 0.18); }
.showcase-lime { --showcase-accent: var(--lime); --showcase-glow: rgba(214, 255, 79, 0.15); }
.showcase-visual {
  position: relative;
  display: grid;
  min-height: 260px;
  padding: 48px 18px 20px;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 75% 18%, var(--showcase-glow), transparent 48%), #0d1729;
}
.showcase-index, .showcase-industry { position: absolute; top: 17px; z-index: 1; color: var(--showcase-accent); font: 8px "DM Mono", monospace; letter-spacing: 0.08em; }
.showcase-index { left: 18px; }
.showcase-industry { right: 18px; text-align: right; }
.showcase-browser { width: 100%; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 9px; background: #f1f2ef; box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36); transform: rotate(-1deg); transition: transform 0.28s ease; }
.showcase-card:nth-child(even) .showcase-browser { transform: rotate(1deg); }
.showcase-card:hover .showcase-browser { transform: rotate(0deg) scale(1.025); }
.showcase-browser-bar { display: flex; height: 29px; align-items: center; gap: 5px; padding: 0 9px; background: #e1e4df; }
.showcase-browser-bar i { width: 6px; height: 6px; flex: none; border-radius: 50%; background: #a8afaa; }
.showcase-browser-bar span { min-width: 0; margin-left: 3px; overflow: hidden; color: #68736d; font: 6px "DM Mono", monospace; text-overflow: ellipsis; white-space: nowrap; }
.showcase-browser img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top; }
.showcase-copy { min-height: 177px; padding: 20px; border-top: 1px solid color-mix(in srgb, var(--showcase-accent) 42%, transparent); }
.showcase-copy p { margin: 0 0 12px; color: var(--showcase-accent); font: 8px "DM Mono", monospace; letter-spacing: 0.06em; }
.showcase-copy h3 { margin: 0 0 9px; color: var(--showcase-accent); font-size: 18px; line-height: 1.15; letter-spacing: -0.04em; }
.showcase-copy small { display: block; min-height: 38px; color: var(--muted); font-size: 10px; }
.showcase-copy > span { display: inline-block; margin-top: 16px; border-bottom: 1px solid var(--showcase-accent); color: var(--showcase-accent); font: 8px "DM Mono", monospace; }

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

@media (max-width: 950px) {
  .hero { grid-template-columns: 1fr; }
  .handoff-card { max-width: 700px; }
  .section-grid { grid-template-columns: 1fr; gap: 28px; }
  .pilot { grid-template-columns: 1fr; }
  .agency-faq{grid-template-columns:1fr;gap:30px}
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-visual { min-height: 390px; padding-inline: 34px; }
  .showcase-copy { min-height: auto; }
  .showcase-copy small { min-height: auto; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 30px), var(--max)); }
  .header { grid-template-columns: 1fr auto; min-height: 72px; }
  .header-label { display: none; }
  .wordmark > span:last-child, .header-cta > span { display: none; }
  .header-cta { display: grid; width: 39px; height: 39px; padding: 0; place-items: center; font-size: 0; }
  .header-cta::after { font-size: 15px; content: "↗"; }
  .site-menu { margin-top: 10px; }
  .site-menu-link { min-height: 49px; justify-content: center; padding: 7px 8px; text-align: center; font-size: 10px; line-height: 1.2; }
  .site-menu-link::after, .site-menu-number { display: none; }
  .hero { min-height: auto; padding-block: 72px 60px; }
  .hero h1 { font-size: clamp(46px, 13vw, 66px); }
  .hero-lead { font-size: 15px; }
  .handoff-flow { grid-template-columns: 1fr; }
  .handoff-flow > i { display: none; }
  .handoff-flow div { min-height: 108px; }
  .handoff-flow span { margin-top: 18px; }
  .handoff-footer { display: block; }
  .handoff-footer strong { display: block; margin-top: 6px; }
  .section-grid, .process, .example, .showcase, .pilot, .agency-faq { padding-block: 76px; }
  .fit-grid, .steps, .included-grid, .boundary { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 24px; }
  .steps li { min-height: 260px; }
  .steps small { margin-top: 45px; }
  .browser { margin: 11px; }
  .mock-nav span { display: none; }
  .mock-nav { padding: 0 17px; }
  .mock-hero { min-height: 345px; padding: 58px 24px; background: radial-gradient(circle at 90% 35%, rgba(120, 225, 220, 0.18), transparent 24%), #102638; }
  .mock-hero h3 { font-size: 47px; }
  .mock-proof { grid-template-columns: 1fr; gap: 7px; padding: 15px 18px; }
  .mock-proof b, .mock-proof b:nth-child(2), .mock-proof b:last-child { text-align: left; }
  .example-copy { display: block; }
  .example-copy > span { display: inline-block; margin-top: 17px; }
  .showcase-visual { min-height: 270px; padding: 46px 13px 17px; }
  .showcase-copy { padding: 18px; }
  .contact { padding-block: 90px; }
  .footer { display: block; }
  .footer a { display: inline-block; margin-top: 10px; }
}
