:root {
  --void: #020226;
  --ink: #070829;
  --panel: #0a0d33;
  --line: rgba(255, 255, 255, 0.09);
  --silver: #eef1f8;
  --muted: #8b90b8;
  --blue: #0066fb;
  --blue-deep: #0051ca;
  --cyan: #3b8bff;
  --lime: #7fd4ff;
  --shadow: rgba(0, 102, 251, 0.24);
  --paper: #f6f8ff;
  --paper-2: #edf2ff;
  --paper-card: #ffffff;
  --paper-ink: #10152c;
  --paper-muted: #5e6683;
  --paper-line: rgba(16, 21, 44, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--paper-ink);
  font-family: "Archivo", Arial, sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: var(--blue);
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.urgency-strip {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 18px;
  background: var(--paper-card);
  border-bottom: 1px solid var(--paper-line);
  color: var(--paper-ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.urgency-strip span,
.urgency-strip a {
  color: var(--blue);
  font-weight: 800;
}

.urgency-strip strong {
  font-weight: 600;
}

.site-header {
  position: fixed;
  inset: 34px 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 72px;
  padding: 0 clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--paper-line);
  color: var(--paper-ink);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--paper-line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.nav-cta,
.button {
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-word {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-word.muted {
  color: var(--paper-muted);
  font-weight: 500;
}

.brand-rule {
  width: 1px;
  height: 14px;
  background: var(--paper-line);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--paper-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid var(--line);
  padding: 0 20px;
  font-size: 12px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta,
.button.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  box-shadow: 0 0 30px var(--shadow);
}

.button.primary:hover {
  background: var(--blue-deep);
}

.button.secondary {
  background: rgba(0, 102, 251, 0.04);
  border-color: var(--paper-line);
  color: var(--paper-muted);
}

.button.secondary:hover {
  border-color: var(--cyan);
  color: var(--blue);
}

.section-band,
.section {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 84svh;
  display: grid;
  place-items: center;
  padding: 148px clamp(18px, 5vw, 64px) 82px;
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 102, 251, 0.16), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(59, 139, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
  color: var(--paper-ink);
}

.hero::after,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.grid-plane {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(50, 214, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 214, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 42%, black 0 48%, transparent 80%);
}

.hero .orbit,
.hero .signal-board {
  display: none;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(50, 214, 255, 0.15);
  transform: translate(-50%, -50%) rotate(12deg);
}

.orbit-one {
  width: min(74vw, 920px);
  aspect-ratio: 1 / 0.52;
  animation: orbit 20s linear infinite;
}

.orbit-two {
  width: min(58vw, 700px);
  aspect-ratio: 1 / 0.52;
  animation: orbit 26s linear reverse infinite;
}

.signal-board {
  position: absolute;
  right: clamp(20px, 8vw, 130px);
  bottom: clamp(50px, 12vw, 150px);
  width: min(330px, 40vw);
  min-height: 230px;
  border: 1px solid rgba(50, 214, 255, 0.2);
  background: linear-gradient(145deg, rgba(21, 28, 36, 0.72), rgba(11, 15, 20, 0.4));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3), 0 0 45px rgba(0, 100, 255, 0.08);
  padding: 18px;
  transform: rotate(-4deg);
  backdrop-filter: blur(10px);
}

.board-topline {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.board-topline span {
  width: 8px;
  height: 8px;
  background: var(--line);
}

.board-topline span:nth-child(2) {
  background: var(--blue);
}

.call-wave {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.call-wave span {
  width: 12px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  animation: pulseBar 1.3s ease-in-out infinite;
}

.call-wave span:nth-child(1) {
  height: 18px;
}

.call-wave span:nth-child(2) {
  height: 36px;
  animation-delay: 0.08s;
}

.call-wave span:nth-child(3) {
  height: 24px;
  animation-delay: 0.16s;
}

.call-wave span:nth-child(4) {
  height: 42px;
  animation-delay: 0.24s;
}

.call-wave span:nth-child(5) {
  height: 22px;
  animation-delay: 0.32s;
}

.agent-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(145, 163, 180, 0.15);
  padding: 10px 0;
  color: var(--muted);
  font-size: 11px;
}

.agent-line strong {
  color: var(--silver);
  font-size: 12px;
}

.metric-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}

.metric-stack div {
  border: 1px solid rgba(145, 163, 180, 0.18);
  padding: 12px;
  background: rgba(2, 2, 38, 0.5);
}

.metric-stack strong {
  display: block;
  color: var(--silver);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 25px;
}

.metric-stack span {
  color: var(--muted);
  font-size: 11px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-logo {
  display: block;
  width: 200px;
  height: auto;
  margin-bottom: 22px;
}

.brand-mark {
  height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.hero-layout.reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Archivo", Arial, sans-serif;
  line-height: 0.98;
}

h1 {
  width: min(980px, 100%);
  margin-inline: 0;
  color: var(--paper-ink);
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-line {
  margin: 18px 0 0;
  color: var(--paper-ink);
  font-size: clamp(1.18rem, 2.2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.32;
}

.hero-copy {
  width: min(700px, 100%);
  margin: 24px 0 0;
  color: var(--paper-muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 300;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.lead-form {
  border: 1px solid var(--paper-line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--paper-ink);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 28px 90px rgba(16, 21, 44, 0.11);
}

.hero-demo-preview {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  margin-bottom: 22px;
  border: 1px solid var(--paper-line);
  background: linear-gradient(135deg, #f9fbff, #eef4ff);
  padding: 16px;
}

.hero-demo-preview .demo-ring {
  width: 66px;
  box-shadow: 0 0 34px rgba(0, 102, 251, 0.12);
}

.hero-demo-preview .demo-ring span {
  width: 7px;
}

.hero-demo-preview .demo-ring span:nth-child(1) { height: 18px; }
.hero-demo-preview .demo-ring span:nth-child(2) { height: 36px; }
.hero-demo-preview .demo-ring span:nth-child(3) { height: 24px; }

.hero-demo-preview strong,
.hero-demo-preview span {
  display: block;
}

.hero-demo-preview strong {
  color: var(--paper-ink);
  font-size: 1.05rem;
}

.hero-demo-preview span {
  margin-top: 4px;
  color: var(--paper-muted);
  line-height: 1.35;
}

.form-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-form h2 {
  margin: 0 0 20px;
  color: var(--paper-ink);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--paper-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--paper-line);
  background: #f9fbff;
  color: var(--paper-ink);
  padding: 0 14px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
  outline: none;
}

.lead-form input:focus {
  border-color: rgba(0, 102, 251, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 102, 251, 0.1);
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.5;
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  background: var(--paper-card);
}

.intro-strip div {
  min-height: 116px;
  display: grid;
  place-items: center;
  gap: 5px;
  border-right: 1px solid var(--paper-line);
  padding: 20px;
  text-align: center;
}

.intro-strip div:last-child {
  border-right: 0;
}

.stat {
  color: var(--paper-ink);
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.intro-strip span:last-child {
  color: var(--paper-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding: clamp(88px, 11vw, 154px) clamp(18px, 5vw, 64px);
}

.section[id],
.mockup-section {
  scroll-margin-top: 230px;
}

.section-heading {
  width: min(850px, 100%);
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.contact h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.15rem);
  font-weight: 800;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--paper-line);
}

.regional-badge,
.testimonial,
.agent-mockup,
.price-card,
.faq-list details {
  border: 1px solid var(--paper-line);
  background: var(--paper-card);
  box-shadow: 0 22px 70px rgba(16, 21, 44, 0.06);
}

.regional-badge {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px;
}

.regional-badge span {
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.regional-badge strong {
  color: var(--paper-ink);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.testimonial {
  margin: 0;
  padding: 30px;
}

.testimonial p {
  margin: 0;
  color: var(--paper-ink);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--paper-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mockup-section {
  padding: clamp(80px, 10vw, 140px) clamp(18px, 5vw, 64px);
}

.agent-mockup {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.phone-panel,
.booking-panel {
  min-height: 360px;
  padding: 28px;
}

.phone-panel {
  display: grid;
  align-content: space-between;
  background: linear-gradient(160deg, #020226, #0a0d33);
  color: var(--silver);
}

.demo-panel {
  gap: 26px;
}

.demo-panel .button.secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.demo-panel .button.secondary:hover {
  border-color: rgba(59, 139, 255, 0.48);
  color: var(--silver);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-top span {
  width: 10px;
  height: 10px;
  background: var(--blue);
}

.phone-top strong {
  color: var(--silver);
}

.phone-top em {
  font-style: normal;
}

.demo-widget {
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  text-align: center;
}

.demo-ring {
  width: 132px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(59, 139, 255, 0.32);
  border-radius: 50%;
  background: rgba(0, 102, 251, 0.12);
  box-shadow: 0 0 55px rgba(0, 102, 251, 0.18);
}

.demo-ring span {
  width: 11px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  animation: pulseBar 1.2s ease-in-out infinite;
}

.demo-ring span:nth-child(1) { height: 34px; }
.demo-ring span:nth-child(2) { height: 70px; animation-delay: 0.08s; }
.demo-ring span:nth-child(3) { height: 46px; animation-delay: 0.16s; }

.demo-widget p {
  margin: 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-agent-widget {
  min-height: 300px;
  align-content: center;
  padding: clamp(14px, 3vw, 24px);
}

.live-agent-widget.is-live .demo-ring {
  border-color: rgba(127, 212, 255, 0.7);
  box-shadow: 0 0 70px rgba(0, 102, 251, 0.34);
}

.live-agent-widget.is-starting .demo-ring {
  border-color: rgba(59, 139, 255, 0.66);
  box-shadow: 0 0 70px rgba(0, 102, 251, 0.28);
}

.live-agent-widget.is-starting .demo-ring span,
.live-agent-widget.is-live .demo-ring span {
  animation-duration: 0.72s;
}

.voice-demo-copy {
  display: grid;
  gap: 8px;
}

.voice-demo-copy strong {
  color: var(--silver);
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  line-height: 1.1;
}

.voice-demo-copy span,
.voice-demo-note {
  color: var(--muted);
  line-height: 1.45;
}

.voice-demo-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.voice-demo-note {
  max-width: 420px;
  text-transform: none;
  letter-spacing: 0;
}

.hidden {
  display: none !important;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.call-copy {
  margin: 0;
  color: var(--silver);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
}

.booking-panel {
  background: #f9fbff;
}

.booking-panel h3,
.price-card h3 {
  color: var(--paper-ink);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1;
}

.booking-panel > p:not(.form-kicker) {
  margin: 18px 0 24px;
  color: var(--paper-muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.booking-panel dl {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.booking-panel dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--paper-line);
  padding-bottom: 12px;
}

.booking-panel dt {
  color: var(--paper-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-panel dd {
  margin: 0;
  color: var(--paper-ink);
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(0, 102, 251, 0.09);
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.demo-list li {
  position: relative;
  padding-left: 22px;
  color: var(--paper-muted);
  line-height: 1.5;
}

.demo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--blue);
}

.light-section {
  background: var(--paper);
  color: var(--paper-ink);
}

.light-section .section-heading h2,
.light-section h3,
.soft-section .section-heading h2,
.soft-section h3 {
  color: var(--paper-ink);
}

.light-section .eyebrow,
.soft-section .eyebrow {
  color: var(--blue);
}

.light-section p,
.light-section .service-card p,
.light-section .work-tile span,
.light-section .upsell-panel p,
.soft-section p {
  color: var(--paper-muted);
}

.services {
  background: var(--paper);
}

.service-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.pillar,
.work-tile,
.timeline li {
  border: 1px solid var(--paper-line);
  background: var(--paper-card);
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 214, 255, 0.6);
  box-shadow: 0 26px 70px rgba(16, 21, 44, 0.1), 0 0 34px rgba(0, 102, 251, 0.08);
}

.service-number {
  position: absolute;
  right: 20px;
  top: 18px;
  color: rgba(0, 102, 251, 0.08);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 68px;
  font-weight: 800;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 102, 251, 0.2);
  background: rgba(0, 102, 251, 0.06);
  color: var(--blue);
  margin-bottom: 36px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.pillar h3,
.timeline h3,
.work-tile h3 {
  font-size: 1.1rem;
  line-height: 1.14;
  letter-spacing: 0.04em;
}

.service-card p,
.pillar p,
.timeline p,
.work-tile span,
.upsell-panel p,
.contact p,
.footer p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.split-section,
.process {
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 102, 251, 0.08), transparent 28%),
    var(--paper-2);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  color: var(--paper-ink);
}

.upsell {
  background: var(--paper);
  border-top: 1px solid var(--paper-line);
}

.upsell-panel {
  width: min(880px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--paper-line);
  background: var(--paper-card);
  box-shadow: 0 28px 90px rgba(16, 21, 44, 0.08);
  padding: clamp(24px, 4vw, 42px);
}

.upsell-panel p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.pricing-section {
  border-top: 1px solid var(--paper-line);
  background: #fbfcff;
}

.pricing-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 42px);
}

.price-card.featured {
  border-color: rgba(0, 102, 251, 0.34);
  box-shadow: 0 30px 100px rgba(0, 102, 251, 0.16);
  transform: translateY(-10px);
}

.price-card p:not(.form-kicker) {
  margin: 18px 0 26px;
  color: var(--paper-muted);
  line-height: 1.65;
}

.price-card h3 {
  min-height: 3.1em;
}

.best-for {
  min-height: 6.7em;
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: rgba(0, 102, 251, 0.09);
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--paper-muted);
  line-height: 1.45;
}

.plan-list li {
  position: relative;
  padding-left: 22px;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--blue);
}

.price-card .button {
  margin-top: auto;
}

.pricing-notes {
  width: min(980px, 100%);
  margin: 28px auto 0;
  border: 1px solid var(--paper-line);
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 24px;
}

.pricing-notes p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.pricing-notes p + p {
  margin-top: 10px;
}

.faq-section {
  border-top: 1px solid var(--paper-line);
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--paper-ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -6px 0 24px;
  color: var(--paper-muted);
  line-height: 1.65;
}

.pillar-list {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar {
  min-height: 260px;
  padding: 30px;
  border-top: 2px solid var(--blue);
}

.pillar span,
.timeline span,
.work-tile p {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work {
  background: var(--paper);
}

.work-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 18px;
}

.work-tile {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.work-tile.large {
  grid-row: span 2;
  min-height: 638px;
  background: linear-gradient(135deg, rgba(0, 102, 251, 0.92), #06072c);
  color: var(--silver);
}

.work-tile h3,
.work-tile span,
.work-tile p {
  position: relative;
  z-index: 1;
}

.work-tile h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 4vw, 3rem);
}

.work-tile:not(.large) {
  background: var(--paper-card);
}

.work-tile:not(.large) h3 {
  color: var(--paper-ink);
}

.work-tile:not(.large) .tile-circuit {
  opacity: 0.18;
}

.tile-screen,
.tile-circuit,
.tile-bars {
  position: absolute;
  inset: 22px;
  opacity: 0.6;
}

.tile-screen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tile-screen span {
  border: 1px solid rgba(237, 242, 242, 0.18);
  background: rgba(11, 15, 20, 0.2);
}

.tile-circuit {
  background-image:
    linear-gradient(rgba(50, 214, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 214, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
}

.tile-bars {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.tile-bars span {
  width: 26%;
  background: linear-gradient(180deg, var(--lime), transparent);
}

.tile-bars span:nth-child(1) {
  height: 46%;
}

.tile-bars span:nth-child(2) {
  height: 72%;
}

.tile-bars span:nth-child(3) {
  height: 96%;
}

.timeline {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.timeline li {
  min-height: 250px;
  padding: 24px;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 11vw, 150px) clamp(18px, 5vw, 64px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 100, 255, 0.2), transparent 42%),
    linear-gradient(135deg, #020226, #070829 50%, #020226);
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin: 0 auto;
}

.contact p {
  width: min(620px, 100%);
  margin: 22px auto 34px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 28px;
  color: rgba(145, 163, 180, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--void);
}

.footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer p {
  margin: 0;
  font-size: 13px;
}

.light-section p,
.light-section .service-card p,
.light-section .work-tile span,
.light-section .upsell-panel p,
.soft-section p,
.soft-section .pillar p,
.soft-section .timeline p {
  color: var(--paper-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit {
  from {
    transform: translate(-50%, -50%) rotate(12deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(372deg);
  }
}

@keyframes pulseBar {
  0%,
  100% {
    transform: scaleY(0.74);
    opacity: 0.68;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-layout,
  .trust-section,
  .agent-mockup,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .hero-content {
    text-align: center;
  }

  .hero-logo,
  h1,
  .hero-line,
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .signal-board {
    display: none;
  }

  .service-grid,
  .pillar-list,
  .upsell-panel,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .upsell-panel {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-tile.large {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .urgency-strip {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-header {
    height: 66px;
    padding-inline: 16px;
  }

  .brand-word.muted,
  .brand-rule {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .hero {
    min-height: 84svh;
    padding-top: 132px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(2.2rem, 11.8vw, 3.7rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
    text-align: center;
  }

  .intro-strip,
  .service-grid,
  .pillar-list,
  .upsell-panel,
  .agent-mockup,
  .pricing-grid,
  .trust-section,
  .timeline {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--paper-line);
  }

  .intro-strip div:last-child {
    border-bottom: 0;
  }

  .service-card,
  .pillar,
  .timeline li {
    min-height: auto;
  }

  .work-tile.large,
  .work-tile {
    min-height: 360px;
  }

  .phone-panel,
  .booking-panel {
    min-height: 300px;
  }

  .contact-meta,
  .footer {
    flex-direction: column;
    text-align: center;
  }
}

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