:root {
  --bg: #06110f;
  --bg-2: #091815;
  --panel: rgba(10, 24, 21, 0.88);
  --panel-strong: rgba(13, 30, 27, 0.96);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(157, 255, 222, 0.12);
  --line-strong: rgba(157, 255, 222, 0.24);
  --text: #edf7f3;
  --muted: #a8bdb6;
  --muted-2: #7d948d;
  --accent: #1df0a5;
  --accent-2: #98ffd8;
  --signal: #ffbc5d;
  --danger: #ff8f7a;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", "Gill Sans", Calibri, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  --measure: 72ch;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top right, rgba(29, 240, 165, 0.1), transparent 28%),
    radial-gradient(circle at top left, rgba(255, 188, 93, 0.08), transparent 26%),
    linear-gradient(180deg, #04100d 0%, #071613 48%, #08110f 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-shell {
  width: min(1280px, calc(100vw - 32px));
  max-width: 100%;
  margin: 0 auto;
  padding: 22px 0 56px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 40;
  margin-bottom: 20px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(157, 255, 222, 0.08);
  background: rgba(7, 20, 17, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 50px;
  height: 42px;
}

.brand-mark svg,
.brand-mark img {
  width: 50px;
  height: 42px;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-kicker {
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-title {
  font: 650 17px/1.1 var(--sans);
  white-space: nowrap;
}

.brand-tagline {
  color: var(--muted-2);
  font: 700 10px/1.1 var(--mono);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 999px;
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}

.nav-link.current,
.nav-link:hover {
  background: rgba(29, 240, 165, 0.09);
  color: var(--accent-2);
}

.cta-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}

.cta-link {
  background: linear-gradient(135deg, #19d894, #0b9f6e);
  color: #03100b;
}

.btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #1df0a5, #0fa876);
  color: #04120d;
}

.btn.secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--accent-2);
}

.eyebrow,
.card-tag,
.micro-label,
.surface-label,
.hero-strap,
.price-tag,
.metric-label {
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow { color: var(--accent); }

.hero,
.page-lead,
.section,
.footer {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(157, 255, 222, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 29, 26, 0.88), rgba(9, 21, 18, 0.95)),
    radial-gradient(circle at top right, rgba(29, 240, 165, 0.08), transparent 34%);
  box-shadow: var(--shadow);
}

.hero,
.page-lead,
.section {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: clamp(24px, 4vw, 54px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 28px;
  align-items: start;
}

.hero-grid.single-column {
  grid-template-columns: 1fr;
}

.hero-grid.single-column .hero-copy {
  max-width: 100%;
}

.page-lead.page-lead-split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.home-lead {
  background:
    linear-gradient(180deg, rgba(14, 29, 26, 0.92), rgba(9, 21, 18, 0.98)),
    radial-gradient(circle at top left, rgba(29, 240, 165, 0.1), transparent 36%);
}

.page-lead-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.hero-copy,
.page-lead-main {
  display: grid;
  gap: 18px;
}

.hero h1,
.page-lead h1,
.section-title,
.footer-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 { font-size: clamp(48px, 7.2vw, 90px); max-width: min(16ch, 100%); }
.page-lead h1 { font-size: clamp(40px, 6vw, 76px); max-width: min(18ch, 100%); }
.section-title { font-size: clamp(32px, 4vw, 58px); }
.footer-title { font-size: clamp(28px, 4vw, 44px); }

.hero p,
.page-lead p,
.section-copy,
.card p,
.comparison p,
.pricing-note,
.footer-copy,
.faq p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: var(--measure);
}

.tagline-line {
  margin: -4px 0 0;
  color: var(--signal);
  font: 800 16px/1.35 var(--sans);
}

.hero-actions,
.cta-row,
.card-actions,
.link-row,
.kicker-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lead-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  min-width: 0;
  width: 100%;
  justify-items: stretch;
}

.lead-side-intro,
.lead-side-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(157, 255, 222, 0.08);
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.lead-side-intro {
  gap: 10px;
  display: grid;
}

.lead-side-intro p,
.lead-side-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: none;
}

.lead-side-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.lead-side-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.lead-side-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(29, 240, 165, 0.1);
  color: var(--accent-2);
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(157, 255, 222, 0.14);
  background: rgba(3, 10, 8, 0.72);
  padding: 12px;
  width: 100%;
  min-width: 0;
}

.home-hero-media img {
  width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
  border: 1px solid rgba(157, 255, 222, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.home-hero-media img:nth-child(1),
.home-hero-media img:nth-child(2) {
  object-position: left top;
}

.home-hero-media img:nth-child(4) {
  object-position: top center;
}

.hero-strap {
  color: var(--signal);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(157, 255, 222, 0.08);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  color: var(--accent-2);
}

.metric span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual.product-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(220px, 0.72fr);
  gap: 18px;
  min-height: auto;
  align-items: start;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.glow-orb.one {
  top: 6%;
  right: 8%;
  width: 220px;
  height: 220px;
  background: rgba(29, 240, 165, 0.16);
}

.glow-orb.two {
  bottom: 2%;
  left: 4%;
  width: 200px;
  height: 200px;
  background: rgba(255, 188, 93, 0.16);
}

.shot-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(157, 255, 222, 0.16);
  background: rgba(3, 9, 8, 0.78);
  box-shadow: var(--shadow);
}

.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.shot-card-text {
  display: grid;
  gap: 16px;
  padding: 20px;
  min-height: 100%;
}

.shot-card-text .surface-label {
  position: static;
  width: fit-content;
}

.shot-card-body {
  display: grid;
  gap: 14px;
  margin-top: 2px;
}

.shot-card-body h3,
.surface-placeholder h4 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.shot-card-body p,
.surface-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.shot-chip-grid,
.surface-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shot-chip,
.surface-pill,
.surface-label-inline {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(157, 255, 222, 0.12);
  color: var(--accent-2);
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot-lines {
  display: grid;
  gap: 10px;
}

.shot-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 240, 165, 0.34), rgba(29, 240, 165, 0.08));
}

.shot-line.short { width: 54%; }
.shot-line.medium { width: 72%; }

.shot-card.mobile {
  top: 26px;
  left: 0;
  width: 36%;
  aspect-ratio: 9 / 19;
}

.shot-card.dispatch {
  top: 0;
  right: 0;
  width: 58%;
  aspect-ratio: 10 / 16;
}

.shot-card.admin {
  left: 26%;
  bottom: 0;
  width: 54%;
  aspect-ratio: 10 / 16;
}

.product-collage .shot-card {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
}

.product-collage .shot-card.dispatch {
  grid-column: 1 / span 2;
  aspect-ratio: 16 / 10;
}

.product-collage .shot-card.admin {
  grid-column: 1;
  aspect-ratio: 16 / 10;
}

.product-collage .shot-card.mobile {
  grid-column: 2;
  width: min(100%, 240px);
  justify-self: center;
  align-self: end;
  aspect-ratio: 9 / 18;
}

.surface-label {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(4, 12, 10, 0.86);
  color: var(--accent-2);
}

.page-lead,
.section,
.footer {
  margin-top: 24px;
  padding: 28px;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.surface-grid,
.grid-3,
.grid-4,
.package-grid,
.faq-grid,
.timeline,
.resource-grid,
.signal-grid {
  display: grid;
  gap: 16px;
}

.surface-grid,
.package-grid,
.resource-grid,
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.surface-grid.dual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-4,
.timeline,
.signal-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card,
.surface-card,
.comparison,
.pricing-card,
.timeline-step,
.resource,
.faq,
.signal-card {
  height: 100%;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(157, 255, 222, 0.08);
}

.evaluation-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(157, 255, 222, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.evaluation-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.evaluation-table th,
.evaluation-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(157, 255, 222, 0.08);
}

.evaluation-table th {
  color: var(--accent-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.evaluation-table td {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.evaluation-table td:first-child {
  width: 18%;
  color: var(--text);
  font-weight: 800;
}

.evaluation-table tr:last-child td {
  border-bottom: 0;
}

.evaluation-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.evaluation-option {
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(157, 255, 222, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.evaluation-option.featured {
  border-color: rgba(29, 240, 165, 0.28);
  background:
    linear-gradient(180deg, rgba(29, 240, 165, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.evaluation-option-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.evaluation-option-head h3 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.evaluation-option-head strong {
  flex: 0 0 auto;
  color: var(--accent-2);
  font: 800 18px/1 var(--sans);
  white-space: nowrap;
}

.evaluation-points {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(157, 255, 222, 0.1);
}

.evaluation-points > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(157, 255, 222, 0.08);
}

.evaluation-points > div:last-child {
  border-bottom: 0;
}

.evaluation-points span {
  color: var(--text);
  font-weight: 800;
}

.evaluation-points p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.field-notes-lead .lead-side-card {
  align-content: start;
}

.field-note-grid {
  align-items: stretch;
}

.field-note-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.field-note-card-image {
  margin: -6px -6px 2px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(157, 255, 222, 0.1);
  background: rgba(2, 8, 7, 0.9);
}

.field-note-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.field-note-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.14;
}

.field-note-card-meta {
  color: var(--muted-2);
  font: 700 12px/1.4 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-note-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.field-note-hero-image {
  min-height: clamp(300px, 34vw, 500px);
  aspect-ratio: 16 / 10;
}

.field-note-body-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.field-note-aside {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.field-note-aside-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(157, 255, 222, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.field-note-aside-card a {
  color: var(--accent-2);
  line-height: 1.45;
}

.field-note-aside-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.field-note-content {
  display: grid;
  gap: 26px;
  max-width: 82ch;
}

.field-note-section {
  display: grid;
  gap: 14px;
  scroll-margin-top: 120px;
}

.field-note-section h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.field-note-section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.field-note-insight {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(157, 255, 222, 0.13);
  background:
    linear-gradient(135deg, rgba(32, 238, 165, 0.08), rgba(255, 188, 93, 0.04)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.field-note-insight h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.field-note-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.field-note-insight-item {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(157, 255, 222, 0.1);
  background: rgba(3, 13, 12, 0.58);
}

.field-note-insight-item strong {
  display: block;
  color: var(--text);
  font: 900 clamp(26px, 3.2vw, 42px)/1 var(--serif);
  overflow-wrap: anywhere;
}

.field-note-insight-item span {
  color: var(--accent-2);
  font: 800 12px/1.2 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-note-insight-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.field-note-insight-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.field-note-insight-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.field-note-insight-caption {
  margin: 0;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.6;
}

.field-note-source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.field-note-source-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(157, 255, 222, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-2);
  font-weight: 700;
}

.field-note-disclaimer {
  color: var(--muted-2) !important;
  font-size: 14px !important;
}

.surface-card {
  display: grid;
  gap: 16px;
}

.surface-media {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(157, 255, 222, 0.1);
  background: #020908;
}

.surface-media.placeholder {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(9, 23, 20, 0.96), rgba(4, 12, 10, 0.98)),
    radial-gradient(circle at top right, rgba(29, 240, 165, 0.14), transparent 34%);
}

.surface-media.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(157, 255, 222, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 255, 222, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
  pointer-events: none;
}

.surface-media.placeholder.native { min-height: 360px; }

.surface-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.surface-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.surface-stat {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(157, 255, 222, 0.1);
}

.surface-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-2);
  font-size: 15px;
}

.surface-stat span {
  display: block;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
}

.surface-media img {
  width: 100%;
  aspect-ratio: 10 / 17;
  object-fit: cover;
  object-position: top center;
}

.surface-media.desktop img {
  aspect-ratio: 16 / 10;
}

.surface-media.native img {
  aspect-ratio: 9 / 19;
}

.image-frame {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(157, 255, 222, 0.14);
  background: rgba(2, 8, 7, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(14, 29, 26, 0.94), rgba(7, 17, 15, 0.98)),
    radial-gradient(circle at top right, rgba(29, 240, 165, 0.12), transparent 34%);
}

.human-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

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

.hero-message .section-title,
.hero-message h1 {
  max-width: min(12ch, 100%);
}

.human-hero .hero-message h1 {
  max-width: min(13ch, 100%);
}

.hero-context-image {
  min-height: clamp(420px, 43vw, 620px);
  aspect-ratio: 16 / 10;
}

.hero-showcase {
  display: grid;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
}

.screenshot-frame {
  margin: 0;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(157, 255, 222, 0.14);
  background: rgba(2, 8, 7, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
}

.desktop-shot {
  padding: 10px;
}

.desktop-shot img {
  border-radius: 14px;
}

.phone-shot {
  justify-self: center;
  width: min(100%, 260px);
  padding: 8px;
  border-radius: 28px;
}

.phone-shot img {
  border-radius: 20px;
}

.hero-desktop-shot {
  width: 100%;
}

.hero-phone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-phone-row .phone-shot {
  width: 100%;
}

.role-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
}

.visual-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(157, 255, 222, 0.08);
}

.visual-card-wide {
  grid-row: span 2;
  align-content: start;
}

.visual-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.visual-copy h3,
.phone-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.18;
}

.visual-copy p,
.phone-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.phone-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.phone-pair .phone-shot {
  width: 100%;
}

.product-band {
  display: grid;
  gap: 24px;
}

.feature-copy {
  display: grid;
  gap: 10px;
}

.immersive-shot {
  padding: 12px;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.phone-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-width: 0;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(157, 255, 222, 0.08);
}

.phone-card .phone-shot {
  width: 100%;
}

.admin-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.story-image {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.story-copy,
.context-panel-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.operation-signals {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.operation-signal,
.product-proof-card,
.image-card,
.surface-proof-card {
  min-width: 0;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(157, 255, 222, 0.08);
}

.operation-signal h3,
.product-proof-card h3,
.surface-proof-card h3,
.context-panel-copy h3 {
  margin: 10px 0 8px;
  font-size: 23px;
  line-height: 1.2;
}

.operation-signal p,
.product-proof-card p,
.surface-proof-card p,
.context-panel-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.product-proof-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.product-proof-card .desktop-shot,
.product-proof-card .phone-shot {
  width: 100%;
}

.proof-phone-card {
  justify-items: center;
}

.proof-phone-card > div {
  justify-self: stretch;
}

.proof-phone-card .phone-shot {
  width: min(100%, 230px);
}

.section-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sector-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.image-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.image-card .image-frame {
  border-radius: var(--radius-md);
  box-shadow: none;
}

.image-card .image-frame,
.context-panel .image-frame {
  aspect-ratio: 16 / 10;
}

.surface-proof-grid,
.platform-showcase {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.surface-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.surface-proof-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.surface-proof-card .phone-shot {
  width: min(100%, 230px);
}

.surface-proof-card h3 {
  margin-top: 0;
}

.context-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(157, 255, 222, 0.08);
}

.tech-principles,
.architecture-grid,
.assurance-grid {
  display: grid;
  gap: 16px;
}

.tech-principles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.architecture-grid,
.assurance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.architecture-card,
.assurance-card,
.legal-card {
  height: 100%;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(157, 255, 222, 0.08);
}

.architecture-card h3,
.assurance-card h3,
.legal-card h3 {
  margin: 12px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.architecture-card p,
.assurance-card p,
.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-lead .lead-side-card p {
  overflow-wrap: anywhere;
}

.legal-lead h1,
.legal-lead h3,
.legal-section .section-title,
.legal-section h3,
.legal-section p,
.legal-table th,
.legal-table td {
  overflow-wrap: anywhere;
}

.legal-section {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.legal-section > p {
  max-width: 920px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-section > p:last-child {
  margin-bottom: 0;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid rgba(157, 255, 222, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 16px 18px;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid rgba(157, 255, 222, 0.1);
}

.legal-table th {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-table td {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 640px) {
  .legal-lead,
  .legal-section,
  .legal-lead *,
  .legal-section * {
    min-width: 0;
    max-width: 100%;
  }

  .legal-lead h1 {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.06;
  }

  .legal-section .section-title {
    font-size: clamp(28px, 7.2vw, 32px);
    line-height: 1.08;
  }

  .legal-section > p,
  .legal-table td {
    font-size: 15px;
    line-height: 1.65;
  }

  .legal-table {
    min-width: 560px;
  }
}

.technical-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 188, 93, 0.22);
  background: rgba(255, 188, 93, 0.08);
  color: var(--accent-2);
  line-height: 1.7;
}

.lead-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.lead-choice-section {
  background:
    linear-gradient(180deg, rgba(14, 29, 26, 0.94), rgba(7, 17, 15, 0.98)),
    radial-gradient(circle at top left, rgba(255, 188, 93, 0.1), transparent 32%);
}

.lead-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.lead-form-card {
  display: grid;
  gap: 20px;
  min-width: 0;
  scroll-margin-top: 120px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(157, 255, 222, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.lead-form-card-featured {
  border-color: rgba(255, 188, 93, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 188, 93, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
}

.lead-form-head {
  display: grid;
  gap: 10px;
}

.lead-form-head h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.12;
  text-wrap: balance;
}

.lead-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.lead-form,
.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field,
.checkbox-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field.full,
.checkbox-field.full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--accent-2);
  font: 700 12px/1.2 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(157, 255, 222, 0.16);
  border-radius: 16px;
  background: rgba(2, 10, 8, 0.72);
  color: var(--text);
  font: 600 16px/1.35 var(--sans);
  outline: none;
}

.field input,
.field select {
  min-height: 48px;
  padding: 0 14px;
}

.field textarea {
  resize: vertical;
  min-height: 138px;
  padding: 13px 14px;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent-2) 50%),
    linear-gradient(135deg, var(--accent-2) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 21px,
    calc(100% - 13px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(29, 240, 165, 0.72);
  box-shadow: 0 0 0 4px rgba(29, 240, 165, 0.1);
}

.checkbox-field {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(157, 255, 222, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.checkbox-field a {
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-status {
  flex: 1 1 240px;
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.form-status.success {
  color: var(--accent-2);
}

.form-status.error {
  color: var(--danger);
}

.lead-form.is-submitting .btn[type="submit"] {
  opacity: 0.7;
}

.status-summary-panel {
  align-self: stretch;
  justify-content: space-between;
}

.status-overview {
  display: grid;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font: 800 13px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pill.operational {
  border-color: rgba(29, 240, 165, 0.42);
  color: var(--accent-2);
  background: rgba(29, 240, 165, 0.12);
}

.status-pill.degraded,
.status-pill.maintenance {
  border-color: rgba(255, 188, 93, 0.42);
  color: var(--signal);
  background: rgba(255, 188, 93, 0.1);
}

.status-pill.outage {
  border-color: rgba(255, 143, 122, 0.46);
  color: var(--danger);
  background: rgba(255, 143, 122, 0.1);
}

.status-time {
  color: var(--muted-2);
  font: 700 12px/1.4 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.uptime-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.uptime-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--panel);
}

.uptime-card span {
  color: var(--muted-2);
  font: 800 12px/1.2 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uptime-card strong {
  color: var(--text);
  font-size: 28px;
  line-height: 1;
}

.status-history-panel {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.intraday-panel {
  margin-bottom: 16px;
}

.status-history-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--muted-2);
  font: 800 12px/1.3 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-bars {
  display: grid;
  grid-template-columns: repeat(90, minmax(3px, 1fr));
  gap: 3px;
  min-height: 56px;
  align-items: stretch;
}

.status-bar {
  min-height: 56px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.intraday-bars {
  display: grid;
  grid-template-columns: repeat(24, minmax(7px, 1fr));
  gap: 4px;
  min-height: 42px;
  align-items: stretch;
}

.intraday-bar {
  min-height: 42px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.intraday-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 8px;
  color: var(--muted-2);
  font: 800 11px/1.2 var(--mono);
  letter-spacing: 0.04em;
}

.intraday-scale span:nth-child(1) { text-align: left; }
.intraday-scale span:nth-child(2),
.intraday-scale span:nth-child(3),
.intraday-scale span:nth-child(4) { text-align: center; }
.intraday-scale span:nth-child(5) { text-align: right; }

.status-bar.operational,
.intraday-bar.operational,
.status-legend i.operational {
  background: var(--accent);
}

.status-bar.degraded,
.status-bar.maintenance,
.intraday-bar.degraded,
.intraday-bar.maintenance,
.status-legend i.degraded {
  background: var(--signal);
}

.status-bar.outage,
.intraday-bar.outage,
.status-legend i.outage {
  background: var(--danger);
}

.status-bar.no_data,
.intraday-bar.no_data,
.status-legend i.no-data {
  background: rgba(255, 255, 255, 0.12);
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.status-legend span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.status-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.status-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 210px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.status-card-head {
  display: flex;
  gap: 14px;
  align-items: start;
  justify-content: space-between;
}

.status-card h3 {
  margin: 8px 0 0;
  font-size: 21px;
  line-height: 1.2;
}

.status-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.status-message {
  color: var(--text) !important;
}

.status-dot {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--muted-2);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
}

.status-card.operational .status-dot {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(29, 240, 165, 0.1);
}

.status-card.degraded .status-dot,
.status-card.maintenance .status-dot {
  background: var(--signal);
  box-shadow: 0 0 0 6px rgba(255, 188, 93, 0.1);
}

.status-card.outage .status-dot {
  background: var(--danger);
  box-shadow: 0 0 0 6px rgba(255, 143, 122, 0.1);
}

.status-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  color: var(--muted-2);
  font: 700 11px/1.3 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.final-cta {
  background:
    linear-gradient(180deg, rgba(13, 30, 27, 0.96), rgba(6, 17, 15, 0.98)),
    radial-gradient(circle at top right, rgba(255, 188, 93, 0.1), transparent 34%);
}

.card-tag,
.micro-label,
.price-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(29, 240, 165, 0.1);
  color: var(--accent-2);
}

.comparison strong,
.metric-label {
  color: var(--signal);
}

.card h3,
.surface-card h3,
.comparison h3,
.pricing-card h3,
.timeline-step h3,
.faq h3,
.resource h3,
.signal-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullets li + li { margin-top: 8px; }

.price {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.92;
}

.price small {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--muted-2);
}

.quote-band {
  padding: 18px 20px;
  border-left: 4px solid var(--signal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 188, 93, 0.09);
  color: var(--accent-2);
  line-height: 1.7;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid rgba(157, 255, 222, 0.08);
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer {
  background:
    linear-gradient(180deg, rgba(13, 28, 25, 0.96), rgba(7, 17, 15, 0.98)),
    radial-gradient(circle at top right, rgba(29, 240, 165, 0.12), transparent 34%);
  padding: 22px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) repeat(3, minmax(140px, 0.72fr));
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand-name {
  margin: 0 0 8px;
  color: var(--text);
  font: 800 22px/1.05 var(--sans);
  letter-spacing: 0;
}

.footer .link-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer a { color: var(--accent-2); }

.footer small {
  display: block;
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
}

.search-trigger {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 600;
  background: transparent;
  white-space: nowrap;
}

.public-search-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(157, 255, 222, 0.32);
  background: linear-gradient(135deg, rgba(29, 240, 165, 0.96), rgba(126, 255, 206, 0.92));
  color: #03110d;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34), 0 0 0 6px rgba(29, 240, 165, 0.08);
  cursor: pointer;
  font: 900 14px/1 var(--sans);
  letter-spacing: 0.02em;
}

.public-search-fab::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 999px;
  background: #03110d;
  box-shadow: 0 0 0 5px rgba(3, 17, 13, 0.14);
}

.search-trigger:focus-visible,
.public-search-fab:focus-visible,
.public-search-close:focus-visible,
.public-search-suggestions button:focus-visible,
.public-search-form button:focus-visible,
.public-search-rating button:focus-visible,
.public-search-rating textarea:focus-visible,
.public-search-footer a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.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;
}

body.public-search-open {
  overflow: hidden;
}

.public-search-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 8, 6, 0.72);
  backdrop-filter: blur(14px);
}

.public-search-modal[hidden] {
  display: none;
}

.public-search-dialog {
  width: min(860px, 100%);
  max-height: min(820px, calc(100vh - 40px));
  max-height: min(820px, calc(100dvh - 40px));
  display: grid;
  grid-template-rows: auto auto minmax(220px, 1fr) auto auto;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(13, 30, 27, 0.98), rgba(5, 14, 12, 0.98)),
    radial-gradient(circle at top right, rgba(29, 240, 165, 0.12), transparent 36%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.54);
}

.public-search-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(157, 255, 222, 0.08);
}

.public-search-header h2 {
  margin: 8px 0 0;
  max-width: 15ch;
  color: var(--text);
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 0.98;
}

.public-search-close {
  align-self: start;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.public-search-suggestions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(157, 255, 222, 0.08);
}

.public-search-suggestions button {
  flex: 0 0 auto;
  max-width: min(320px, 78vw);
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-2);
  cursor: pointer;
  font-weight: 700;
}

.public-search-thread {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow-y: auto;
  padding: 22px 24px;
}

.public-search-message {
  width: min(680px, 100%);
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(157, 255, 222, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.public-search-message.user {
  justify-self: end;
  background: rgba(29, 240, 165, 0.12);
  border-color: rgba(29, 240, 165, 0.24);
}

.public-search-message.assistant {
  justify-self: start;
}

.public-search-message p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  white-space: pre-wrap;
}

.public-search-citations {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.public-search-citations a {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(157, 255, 222, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.public-search-citations strong {
  color: var(--accent-2);
}

.public-search-citations span {
  color: var(--muted-2);
  font-size: 13px;
}

.public-search-rating {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(157, 255, 222, 0.1);
}

.public-search-rating-label {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
}

.public-search-rating-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.public-search-rating-actions button,
.public-search-rating-note button {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
}

.public-search-rating-actions button {
  width: 36px;
  padding: 0;
}

.public-search-rating-actions button.selected {
  border-color: transparent;
  background: linear-gradient(135deg, #1df0a5, #0fa876);
  color: #04120d;
}

.public-search-rating-actions button:disabled:not(.selected) {
  opacity: 0.42;
  cursor: default;
}

.public-search-rating-scale,
.public-search-rating-status {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.4;
}

.public-search-rating-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.public-search-rating-note[hidden] {
  display: none;
}

.public-search-rating-note textarea {
  width: 100%;
  min-height: 44px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: 600 14px/1.4 var(--sans);
}

.public-search-rating-note button {
  padding: 0 12px;
  color: var(--accent-2);
}

.public-search-form {
  display: grid;
  gap: 8px;
  padding: 16px 24px 18px;
  border-top: 1px solid rgba(157, 255, 222, 0.08);
}

.public-search-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.public-search-input-row textarea {
  width: 100%;
  min-height: 56px;
  max-height: 150px;
  resize: none;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: 600 16px/1.45 var(--sans);
}

.public-search-input-row textarea::placeholder {
  color: var(--muted-2);
}

.public-search-input-row textarea:focus {
  outline: none;
  border-color: rgba(29, 240, 165, 0.46);
  box-shadow: 0 0 0 3px rgba(29, 240, 165, 0.12);
}

.public-search-status {
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
}

.public-search-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 22px;
}

.public-search-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--accent-2);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 700;
}

.public-search-footer span {
  flex-basis: 100%;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .hero-grid,
  .product-hero,
  .story-split,
  .use-case-grid,
  .proof-strip,
  .platform-showcase,
  .context-panel,
  .lead-page-hero,
  .lead-flow-grid,
  .sector-story-grid,
  .tech-principles,
  .architecture-grid,
  .assurance-grid,
  .field-note-article-hero,
  .field-note-body-shell,
  .page-lead.page-lead-split,
  .surface-grid,
  .package-grid,
  .resource-grid,
  .grid-3,
  .grid-4,
  .timeline,
  .signal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-message h1 {
    max-width: min(14ch, 100%);
  }

  .role-proof-grid,
  .admin-shot-grid {
    grid-template-columns: 1fr;
  }

  .surface-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status-grid,
  .uptime-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-note-insight-grid {
    grid-template-columns: 1fr;
  }

  .hero-context-image,
  .story-image,
  .field-note-hero-image {
    min-height: auto;
  }

  .field-note-aside {
    position: static;
  }

  .visual-card-wide {
    grid-row: auto;
  }

  .phone-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 820px;
  }

  .hero-visual.product-collage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .shot-card.mobile {
    width: 42%;
  }

  .shot-card.dispatch {
    width: 66%;
  }

  .shot-card.admin {
    left: 18%;
    width: 64%;
  }

  .product-collage .shot-card.dispatch,
  .product-collage .shot-card.admin,
  .product-collage .shot-card.mobile {
    grid-column: auto;
    width: 100%;
    left: auto;
  }

  .product-collage .shot-card.mobile {
    max-width: 320px;
    justify-self: center;
  }
}

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 14px;
    border-radius: 28px;
    background: rgba(7, 20, 17, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links {
    display: grid;
    gap: 8px;
  }

  .topbar-inner {
    border-radius: 26px;
  }

  .hero-visual {
    min-height: 920px;
  }

  .hero-visual.product-collage {
    min-height: auto;
  }

  .hero-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { overflow-x: hidden; }

  .site-shell {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .topbar-inner {
    width: 100%;
    min-width: 0;
    gap: 10px;
    padding: 12px;
  }

  .brand-lockup {
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
    gap: 8px;
  }

  .menu-toggle {
    margin-left: auto;
    max-width: 64px;
    padding-inline: 10px;
    overflow: hidden;
    letter-spacing: 0;
  }

  main,
  main > *,
  .lead-page-hero,
  .lead-flow-grid,
  .lead-side,
  .lead-side-grid,
  .lead-side-card,
  .lead-form-card,
  .product-hero,
  .hero-showcase,
  .hero-desktop-shot {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .brand-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .brand-tagline {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 8px;
    letter-spacing: 0;
  }

  .hero,
  .page-lead,
  .section,
  .footer { padding: 22px; }

  .hero h1,
  .page-lead h1,
  .section-title {
    max-width: none;
    overflow-wrap: anywhere;
    letter-spacing: 0;
    line-height: 1.04;
    text-wrap: wrap;
  }

  .page-lead p,
  .section-copy,
  .field-note-section p,
  .lead-side-card h3,
  .lead-form-head h3,
  .lead-form-head p,
  .status-card h3,
  .status-card p,
  .card h3,
  .card p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .page-lead h1 {
    font-size: clamp(31px, 8.2vw, 36px);
  }

  .section-title {
    font-size: clamp(28px, 7.5vw, 32px);
  }

  .lead-side-card h3,
  .card h3,
  .surface-card h3,
  .architecture-card h3,
  .status-card h3,
  .assurance-card h3 {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .lead-page-hero {
    display: block;
  }

  .lead-page-hero .lead-side {
    margin-top: 22px;
  }

  .lead-page-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .field-note-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .field-note-section h2 {
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .field-note-section p {
    font-size: 16px;
    line-height: 1.7;
    overflow-wrap: break-word;
  }

  .field-note-insight {
    padding: 18px;
    border-radius: 24px;
  }

  .field-note-insight h2 {
    max-width: 100%;
    font-size: clamp(27px, 7vw, 32px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .field-note-insight-item {
    padding: 14px;
  }

  .field-note-insight-item strong {
    font-size: clamp(25px, 7vw, 34px);
  }

  .field-note-card h3 {
    font-size: 21px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .field-notes-lead,
  .field-note-article-hero,
  .field-note-body-shell,
  .field-note-aside,
  .field-note-aside-card,
  .field-note-card,
  .field-note-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .field-note-article-hero {
    display: block;
  }

  .field-note-article-hero .page-lead-main,
  .field-notes-lead .page-lead-main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .field-note-article-hero h1,
  .field-notes-lead h1 {
    max-width: 100%;
    font-size: clamp(28px, 7.2vw, 32px);
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: normal;
    text-wrap: auto;
  }

  .field-note-hero-image {
    margin-top: 22px;
  }

  .field-notes-lead p,
  .field-notes-lead .tagline-line {
    font-size: 16px;
    line-height: 1.65;
  }

  .field-notes-lead .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .field-notes-lead .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .field-note-aside-card a {
    overflow-wrap: anywhere;
  }

  .lead-page-hero .btn,
  .form-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .product-hero {
    display: block;
    gap: 22px;
  }

  .hero-showcase {
    margin-top: 22px;
  }

  .hero-message h1 {
    max-width: none;
  }

  .product-hero .page-lead-main,
  .product-hero .hero-showcase,
  .product-hero .screenshot-frame {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .desktop-shot,
  .immersive-shot {
    padding: 6px;
    border-radius: 18px;
  }

  .desktop-shot img {
    border-radius: 12px;
  }

  .hero-phone-row,
  .phone-pair,
  .phone-gallery {
    grid-template-columns: 1fr;
  }

  .product-hero h1 {
    font-size: clamp(34px, 9vw, 40px);
  }

  .product-hero p {
    font-size: 17px;
    line-height: 1.68;
  }

  .hero-phone-row .phone-shot,
  .phone-pair .phone-shot,
  .phone-card .phone-shot {
    width: min(100%, 290px);
  }

  .visual-card,
  .phone-card,
  .operation-signal,
  .product-proof-card,
  .image-card,
  .surface-proof-card,
  .context-panel,
  .architecture-card,
  .assurance-card,
  .legal-card,
  .status-card,
  .lead-form-card {
    padding: 16px;
  }

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

  .surface-proof-grid,
  .status-grid,
  .uptime-grid,
  .sector-story-grid,
  .evaluation-compare {
    grid-template-columns: 1fr;
  }

  .evaluation-option-head {
    display: grid;
  }

  .evaluation-points > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-context-image,
  .story-image,
  .image-card .image-frame,
  .context-panel .image-frame {
    aspect-ratio: 16 / 11;
  }

  .home-hero-media {
    grid-template-columns: 1fr;
    min-height: 360px;
  }

  .hero-visual {
    min-height: 720px;
  }

  .hero-visual.product-collage {
    min-height: auto;
  }

  .shot-card.mobile {
    width: 48%;
  }

  .shot-card.dispatch {
    width: 74%;
  }

  .shot-card.admin {
    left: 10%;
    width: 74%;
  }

  .product-collage .shot-card.mobile {
    max-width: 260px;
  }

  .public-search-modal {
    padding: 8px;
    align-items: stretch;
  }

  .public-search-dialog {
    max-height: calc(100dvh - 16px);
    grid-template-rows: auto auto minmax(180px, 1fr) auto auto;
    border-radius: 22px;
  }

  .public-search-header,
  .public-search-suggestions,
  .public-search-thread,
  .public-search-form,
  .public-search-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .public-search-header {
    display: grid;
  }

  .public-search-header h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.04;
  }

  .public-search-close {
    justify-self: start;
  }

  .public-search-input-row {
    grid-template-columns: 1fr;
  }

  .public-search-input-row .btn {
    width: 100%;
  }

  .public-search-rating-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .brand-tagline {
    display: none;
  }
}
