:root {
  --bg: #07090c;
  --bg-soft: #0d1117;
  --surface: #111820;
  --surface-2: #151d26;
  --surface-3: #0b1413;
  --line: #26323e;
  --line-bright: rgba(89, 222, 255, 0.42);
  --text: #f5f7fa;
  --muted: #aab6c2;
  --muted-2: #7f8d9b;
  --header-bg: rgba(7, 9, 12, 0.9);
  --footer-bg: #05070a;
  --footer-panel: rgba(255, 255, 255, 0.035);
  --footer-text: #f5f7fa;
  --footer-muted: #aab6c2;
  --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  --card-hover-bg: linear-gradient(180deg, rgba(255, 122, 0, 0.09), rgba(255, 255, 255, 0.03));
  --panel-bg: rgba(17, 24, 32, 0.9);
  --panel-solid: #111820;
  --input-bg: #0b1016;
  --map-bg: #0b1016;
  --grid-line-a: rgba(53, 212, 255, 0.04);
  --grid-line-b: rgba(112, 240, 176, 0.035);
  --subtle-bg: rgba(255, 255, 255, 0.035);
  --soft-panel: rgba(255, 255, 255, 0.04);
  --nav-hover: rgba(255, 255, 255, 0.06);
  --hero-wash: rgba(7, 9, 12, 0.95);
  --button-text: #071015;
  --orange: #ff7a00;
  --orange-soft: #ff9a2b;
  --orange-dark: #c94f00;
  --cyan: #35d4ff;
  --cyan-dark: #0698c7;
  --green: #70f0b0;
  --amber: #f5bf5b;
  --rose: #ff6f91;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --container: 1180px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

[data-theme="light"] {
  --bg: #fbfcfe;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --surface-2: #f5f7fa;
  --surface-3: #f3f8f7;
  --line: #e4e9f0;
  --line-bright: rgba(255, 122, 0, 0.22);
  --text: #17202b;
  --muted: #5e6b7a;
  --muted-2: #768394;
  --header-bg: rgba(255, 255, 255, 0.86);
  --footer-bg: #0d141f;
  --footer-panel: rgba(255, 255, 255, 0.055);
  --footer-text: #f5f7fa;
  --footer-muted: #bac5d2;
  --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96));
  --card-hover-bg: linear-gradient(180deg, rgba(255, 122, 0, 0.11), rgba(255, 255, 255, 0.95));
  --panel-bg: rgba(255, 255, 255, 0.88);
  --panel-solid: #ffffff;
  --input-bg: #ffffff;
  --map-bg: #f3f6fa;
  --grid-line-a: rgba(6, 152, 199, 0.055);
  --grid-line-b: rgba(255, 122, 0, 0.04);
  --subtle-bg: rgba(16, 23, 34, 0.024);
  --soft-panel: rgba(16, 23, 34, 0.032);
  --nav-hover: rgba(255, 122, 0, 0.075);
  --hero-wash: rgba(251, 252, 254, 0.94);
  --button-text: #101722;
  --shadow: 0 18px 44px rgba(16, 23, 34, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(var(--grid-line-a) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-b) 1px, transparent 1px),
    var(--bg);
  background-size: 44px 44px;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 960px;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: 1.08rem;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0 2rem;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}

.brand-icon {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 180ms ease, filter 220ms ease;
}

html.logo-swap .brand-icon {
  opacity: 0;
  filter: blur(1px);
}

.brand-name {
  color: var(--text);
  font-size: 1.08rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand.no-logo .brand-icon {
  display: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-bright);
  border-radius: 7px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(53, 212, 255, 0.14), rgba(112, 240, 176, 0.08));
  box-shadow: inset 0 0 18px rgba(53, 212, 255, 0.12);
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a:not(.button) {
  position: relative;
  padding: 0.65rem 0.8rem;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: var(--nav-hover);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  border: 1px solid rgba(255, 122, 0, 0.78);
  border-radius: 7px;
  color: var(--button-text);
  background: linear-gradient(180deg, var(--orange-soft), var(--orange));
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(255, 122, 0, 0.32);
}

.button:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.24);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    var(--soft-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button-secondary:hover {
  border-color: rgba(255, 122, 0, 0.46);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.button-small {
  min-height: 38px;
  padding: 0.54rem 0.9rem;
  margin-left: 0.5rem;
  font-size: 0.92rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: var(--soft-panel);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.theme-toggle:hover {
  border-color: rgba(255, 122, 0, 0.48);
  background: rgba(255, 122, 0, 0.1);
}

.theme-toggle-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset -4px -2px 0 rgba(0, 0, 0, 0.32);
}

[data-theme="light"] .theme-toggle-dot {
  box-shadow: inset 4px 0 0 rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: visible;
  padding: 6rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-home {
  display: grid;
  align-content: end;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}

.hero-copy {
  max-width: 720px;
  font-size: 1.16rem;
}

.brand-slogan {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
}

.cta-slogan {
  margin-top: 1rem;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: 900px;
  margin-top: 1.5rem;
}

.value-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(255, 122, 0, 0.32);
  border-radius: 7px;
  color: var(--muted);
  background: rgba(255, 122, 0, 0.075);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.03), var(--hero-wash)),
    radial-gradient(circle at 70% 30%, rgba(255, 122, 0, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(53, 212, 255, 0.07), rgba(255, 122, 0, 0.06));
}

.network-grid {
  position: absolute;
  inset: 0;
  opacity: 0.86;
}

.node,
.map-pin,
.device-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 20px rgba(53, 212, 255, 0.55);
}

.node-a { left: 12%; top: 26%; }
.node-b { left: 40%; top: 18%; border-color: var(--green); }
.node-c { left: 72%; top: 34%; }
.node-d { left: 84%; top: 62%; border-color: var(--amber); }

.route {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(53, 212, 255, 0.88), transparent);
  transform-origin: left center;
}

.route-a { left: 13%; top: 27%; width: 30%; transform: rotate(-10deg); }
.route-b { left: 40%; top: 19%; width: 36%; transform: rotate(22deg); background: linear-gradient(90deg, transparent, rgba(112, 240, 176, 0.82), transparent); }
.route-c { left: 72%; top: 36%; width: 18%; transform: rotate(55deg); background: linear-gradient(90deg, transparent, rgba(245, 191, 91, 0.84), transparent); }

.capture-ring {
  position: absolute;
  right: 13%;
  top: 24%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(53, 212, 255, 0.35);
  border-radius: 50%;
}

.capture-ring::before,
.capture-ring::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 120%;
  height: 1px;
  background: rgba(53, 212, 255, 0.22);
  transform: translate(-50%, -50%);
}

.capture-ring::after {
  width: 1px;
  height: 120%;
}

.hero-preview {
  position: relative;
  z-index: 2;
}

.dashboard-preview,
.review-preview,
.device-preview,
.report-dashboard,
.security-matrix {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-bg);
  box-shadow: var(--shadow);
}

.dashboard-preview {
  max-width: 980px;
  margin-left: auto;
  padding: 1rem;
}

.gis-dashboard-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: var(--soft-panel);
}

.preview-header strong {
  color: var(--orange);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0.75rem 0;
}

.metric {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft-panel);
}

.metric span,
.metric strong {
  display: block;
}

.metric strong {
  color: var(--text);
  font-size: 2rem;
}

.map-panel,
.device-map,
.review-map {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(var(--grid-line-a) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-b) 1px, transparent 1px),
    var(--map-bg);
  background-size: 30px 30px;
}

.network-map {
  min-height: 360px;
}

.network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.preview-map .fibre-network-svg {
  bottom: 72px;
  height: calc(100% - 72px);
}

.fibre-network-svg .fibre-corridor,
.planner-network-svg .fibre-corridor {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 16;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-theme="light"] .fibre-network-svg .fibre-corridor,
[data-theme="light"] .planner-network-svg .fibre-corridor {
  stroke: rgba(23, 32, 43, 0.08);
}

.route-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.route-primary {
  stroke: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(53, 212, 255, 0.42));
}

.route-secondary {
  stroke: var(--green);
  filter: drop-shadow(0 0 8px rgba(112, 240, 176, 0.34));
}

.route-warning {
  stroke: var(--amber);
  stroke-dasharray: 12 10;
}

.fibre-network-svg .route-primary,
.fibre-network-svg .route-secondary {
  vector-effect: non-scaling-stroke;
}

.fibre-feeder {
  stroke-width: 7;
}

.fibre-distribution {
  stroke-width: 5;
}

.fibre-review-route {
  stroke-width: 4;
  stroke-dasharray: 9 9;
  filter: drop-shadow(0 0 8px rgba(245, 191, 91, 0.38));
}

.fibre-drop-line {
  fill: none;
  stroke: rgba(112, 240, 176, 0.86);
  stroke-width: 3;
  stroke-dasharray: 3 7;
  stroke-linecap: round;
}

.feature-marker,
.feature-box {
  stroke: #061016;
  stroke-width: 4;
}

.fibre-node,
.fibre-cabinet,
.fibre-premise {
  stroke: #061016;
  stroke-width: 4;
}

.fibre-node.pop {
  fill: var(--cyan);
}

.fibre-node.splice {
  fill: var(--green);
}

.fibre-node.change {
  fill: var(--orange);
}

.fibre-cabinet {
  fill: var(--cyan);
}

.fibre-premise {
  fill: var(--panel-solid);
  stroke: var(--green);
  stroke-width: 3;
  filter: drop-shadow(0 0 6px rgba(112, 240, 176, 0.4));
}

.feature-marker.approved,
.feature-box.approved {
  fill: var(--green);
}

.feature-marker.submitted,
.feature-box.submitted {
  fill: var(--cyan);
}

.feature-marker.conflict,
.feature-box.conflict {
  fill: var(--orange);
}

.map-legend {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(96px, 0.9fr) minmax(92px, 0.9fr) minmax(126px, 1.2fr);
  gap: 0.5rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: color-mix(in srgb, var(--panel-solid) 90%, transparent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.map-chip {
  position: static;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 92px;
  min-height: 32px;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: color-mix(in srgb, var(--panel-solid) 88%, transparent);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.map-chip i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  flex: 0 0 auto;
}

.chip-submitted {
  color: var(--cyan);
  border-color: rgba(53, 212, 255, 0.45);
}

.chip-approved {
  color: var(--green);
  border-color: rgba(112, 240, 176, 0.45);
}

.chip-conflict {
  min-width: 126px;
  color: var(--amber);
  border-color: rgba(255, 122, 0, 0.58);
}

.summary-panel {
  display: grid;
  gap: 0.75rem;
}

.summary-title,
.summary-metric {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft-panel);
}

.summary-title {
  padding: 0.8rem;
  color: var(--text);
  font-weight: 800;
}

.summary-metric {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem;
}

.summary-metric strong {
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
}

.summary-metric span {
  color: var(--muted);
  font-size: 0.84rem;
}

.summary-metric.alert strong {
  color: var(--orange);
}

.map-line {
  position: absolute;
  height: 3px;
  border-radius: 99px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(53, 212, 255, 0.5);
}

.line-one { left: 8%; top: 35%; width: 44%; transform: rotate(-13deg); }
.line-two { left: 44%; top: 48%; width: 38%; transform: rotate(24deg); background: var(--green); }
.line-three { left: 19%; top: 72%; width: 58%; transform: rotate(-5deg); background: var(--amber); }
.pin-one { left: 18%; top: 30%; }
.pin-two { left: 52%; top: 42%; border-color: var(--green); }
.pin-three { left: 78%; top: 61%; border-color: var(--amber); }

.section,
.page-hero,
.cta-section {
  padding: 6rem 0;
}

.section,
.page-hero,
.workflow-band,
.planner-review-section {
  position: relative;
}

.section + .section::before,
.section-alt::before,
.workflow-band::before,
.planner-review-section::before {
  content: "";
  position: absolute;
  left: max(1rem, calc((100% - var(--container)) / 2));
  right: max(1rem, calc((100% - var(--container)) / 2));
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.38), rgba(53, 212, 255, 0.24), transparent);
}

.page-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(var(--grid-line-a) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-b) 1px, transparent 1px),
    var(--bg-soft);
  background-size: 38px 38px;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.1rem;
}

.inner-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.inner-hero-visual {
  min-height: 250px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    var(--panel-bg);
  box-shadow: var(--shadow);
}

.inner-hero-visual span,
.inner-hero-visual i {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.inner-hero-visual strong {
  display: block;
  color: var(--text);
  line-height: 1;
}

.security-hero-visual i,
.about-hero-visual i {
  display: block;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft-panel);
}

.workflow-hero-visual {
  display: grid;
  gap: 0.75rem;
}

.workflow-hero-visual div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft-panel);
}

.workflow-hero-visual strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  color: #041015;
  background: var(--orange);
  font-size: 0.9rem;
}

.security-hero-visual,
.about-hero-visual {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.security-hero-visual strong,
.about-hero-visual strong {
  margin: 0.15rem 0 0.45rem;
  color: var(--cyan);
  font-size: 1.8rem;
}

.section-alt {
  background: var(--subtle-bg);
  border-block: 1px solid var(--line);
}

.section-tight {
  padding-top: 2rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
  text-align: center;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.two-column,
.split-feature,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 3rem;
  align-items: center;
}

.stack p {
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.six-grid,
.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pillar-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  opacity: 0.6;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.38);
  background: var(--card-hover-bg);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.card,
.pillar-card,
.product-preview,
.inner-hero-visual,
.contact-panel,
.contact-form,
.cta-inner {
  animation: softRise 520ms ease both;
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .pillar-card,
  .product-preview,
  .inner-hero-visual,
  .contact-panel,
  .contact-form,
  .cta-inner {
    animation: none;
  }
}

.card p {
  margin-bottom: 0;
}

.problem-grid,
.feature-grid {
  counter-reset: card-count;
}

.problem-grid .card,
.feature-grid .card {
  counter-increment: card-count;
  padding-top: 4.25rem;
}

.problem-grid .card::after,
.feature-grid .card::after {
  content: counter(card-count, decimal-leading-zero);
  position: absolute;
  top: 1.25rem;
  left: 1.35rem;
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: 7px;
  color: var(--orange);
  background: rgba(255, 122, 0, 0.09);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-grid .card::after {
  color: var(--cyan);
  border-color: rgba(53, 212, 255, 0.34);
  background: rgba(53, 212, 255, 0.08);
}

.check-list {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.icon-card {
  position: relative;
  padding-top: 4rem;
}

.card-icon {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 122, 0, 0.42);
  border-radius: 7px;
  color: var(--orange-soft);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 122, 0, 0.08);
}

.split-feature {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.split-feature.reverse > div:first-child {
  order: 2;
}

.text-link {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--orange);
  font-weight: 800;
}

.hero-link {
  align-self: center;
}

.device-preview {
  max-width: 430px;
  margin-left: auto;
  padding: 1rem;
}

.field-app-mockup {
  max-width: 480px;
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.08), var(--panel-bg));
}

.device-top {
  width: 74px;
  height: 6px;
  margin: 0 auto 1rem;
  border-radius: 99px;
  background: var(--line);
}

.app-status-bar {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft-panel);
}

.app-status-bar span {
  color: var(--muted);
}

.app-status-bar strong {
  color: var(--green);
}

.app-map {
  min-height: 300px;
}

.gps-pill,
.sync-pill {
  position: absolute;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: var(--panel-bg);
  font-size: 0.78rem;
  font-weight: 800;
}

.gps-pill {
  left: 0.75rem;
  top: 0.75rem;
}

.sync-pill {
  right: 0.75rem;
  bottom: 0.75rem;
  border-color: rgba(255, 122, 0, 0.54);
  color: var(--orange-soft);
}

.crosshair {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(53, 212, 255, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  background: rgba(53, 212, 255, 0.55);
}

.crosshair::before {
  left: 50%;
  top: -18px;
  width: 1px;
  height: 118px;
}

.crosshair::after {
  left: -18px;
  top: 50%;
  width: 118px;
  height: 1px;
}

.device-route {
  position: absolute;
  left: 14%;
  top: 58%;
  width: 76%;
  height: 3px;
  border-radius: 99px;
  background: var(--green);
  transform: rotate(-18deg);
}

.dot-one { left: 25%; top: 65%; border-color: var(--green); }
.dot-two { left: 70%; top: 38%; }

.device-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.field-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.field-actions button,
.review-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: var(--soft-panel);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.field-actions button:hover,
.review-actions button:hover {
  border-color: rgba(255, 122, 0, 0.55);
  background: rgba(255, 122, 0, 0.12);
}

.device-actions span,
.status,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: var(--soft-panel);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.review-preview {
  padding: 1rem;
}

.planner-review-mockup {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.review-toolbar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft-panel);
}

.review-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.review-toolbar span:nth-child(2) {
  background: var(--amber);
}

.review-toolbar span:nth-child(3) {
  background: var(--green);
}

.review-toolbar strong {
  margin-left: auto;
  color: var(--muted);
}

.review-body {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.planner-workspace {
  display: grid;
  grid-template-columns: 150px minmax(280px, 1fr) 200px;
  gap: 0.75rem;
  margin-top: 0.75rem;
  min-width: 0;
}

.layers-panel,
.review-panel {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 320px;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: color-mix(in srgb, var(--panel-solid) 84%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.layers-panel strong,
.review-panel strong {
  color: var(--text);
}

.layers-panel span {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.layers-panel i {
  display: inline-block;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 0.2em;
  border-radius: 3px;
  background: var(--cyan);
}

.layers-panel span:nth-child(3) i {
  background: var(--green);
}

.layers-panel span:nth-child(4) i {
  background: var(--orange);
}

.layers-panel span:nth-child(5) i {
  background: var(--amber);
}

.planner-map {
  min-height: 320px;
}

.planner-network-svg .fibre-corridor {
  stroke-width: 14;
}

.planner-network-svg .fibre-feeder {
  stroke-width: 6;
}

.planner-network-svg .fibre-distribution {
  stroke-width: 4;
}

.planner-network-svg .fibre-review-route {
  stroke-width: 4;
}

.review-panel label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.review-panel select {
  padding: 0.55rem;
  font-size: 0.82rem;
}

.change-list {
  display: grid;
  gap: 0.45rem;
}

.evidence-card {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 122, 0, 0.34);
  border-radius: 7px;
  background: rgba(255, 122, 0, 0.1);
}

.evidence-card span,
.evidence-card em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.review-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.review-actions button:first-child {
  color: #041015;
  border-color: rgba(112, 240, 176, 0.55);
  background: var(--green);
}

.planner-review-section {
  overflow: hidden;
}

.planner-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.planner-review-copy {
  min-width: 0;
  max-width: 520px;
}

.planner-review-copy .hero-actions {
  margin-top: 1.5rem;
}

.review-list {
  display: grid;
  gap: 0.75rem;
}

.status.approved { color: var(--green); border-color: rgba(112, 240, 176, 0.4); }
.status.pending { color: var(--amber); border-color: rgba(245, 191, 91, 0.4); }
.status.rejected { color: var(--rose); border-color: rgba(255, 111, 145, 0.38); }

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.highlight-panel {
  padding: 2rem;
  border: 1px solid rgba(255, 122, 0, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(53, 212, 255, 0.12), rgba(112, 240, 176, 0.06));
}

.highlight-panel p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  font-weight: 800;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.workflow-card {
  position: relative;
  min-height: 260px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.08), transparent),
    var(--surface);
}

.workflow-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 122, 0, 0.48);
  border-radius: 7px;
  color: var(--orange-soft);
  background: rgba(255, 122, 0, 0.1);
  font-weight: 800;
}

.workflow-card h2 {
  font-size: 1.35rem;
}

.workflow-card p {
  margin-bottom: 0;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--cyan), var(--green), var(--amber));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 0;
}

.timeline-step span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line-bright);
  border-radius: 7px;
  color: var(--cyan);
  background: var(--bg);
  font-weight: 800;
}

.timeline-step h2 {
  font-size: 1.22rem;
}

.security-matrix {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.security-matrix div {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft-panel);
}

.security-matrix strong {
  color: var(--text);
}

.security-matrix span {
  color: var(--muted);
}

.security-matrix em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.report-dashboard {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1rem;
  padding: 1rem;
}

.dashboard-main,
.dashboard-side div {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft-panel);
}

.dashboard-main {
  padding: 1rem;
}

.bar-chart {
  display: flex;
  align-items: end;
  justify-content: space-around;
  height: 280px;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 7px;
  background:
    linear-gradient(var(--grid-line-a) 1px, transparent 1px),
    var(--map-bg);
  background-size: 100% 48px;
}

.bar-chart span {
  width: 13%;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--green));
}

.dashboard-side {
  display: grid;
  gap: 1rem;
}

.dashboard-side div {
  display: grid;
  align-content: center;
  padding: 1.25rem;
}

.dashboard-side strong {
  color: var(--cyan);
  font-size: 2.2rem;
}

.dashboard-side span {
  color: var(--muted);
}

.report-insights {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.report-metrics article,
.report-export-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.report-metrics article {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.report-metrics span,
.report-metrics em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.report-metrics strong {
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.report-export-preview {
  overflow: hidden;
}

.export-sheet {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.export-sheet span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: var(--soft-panel);
  font-weight: 800;
}

.export-sheet span::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 122, 0, 0.38);
}

.export-sheet span:nth-child(2)::before,
.export-sheet span:nth-child(4)::before {
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(53, 212, 255, 0.34);
}

.export-sheet span:nth-child(3)::before {
  background: var(--green);
  box-shadow: 0 0 14px rgba(112, 240, 176, 0.32);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.story-grid article {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.contact-layout {
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-panel {
  position: sticky;
  top: 104px;
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.08), transparent 36%),
    var(--panel-bg);
  box-shadow: var(--shadow);
}

.contact-panel-brand {
  margin-bottom: 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0;
}

.contact-details p {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.25rem 0.8rem;
  align-items: center;
  margin: 0;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft-panel);
}

.contact-details strong {
  color: var(--text);
  line-height: 1.1;
}

.contact-details i {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 122, 0, 0.36);
  border-radius: 7px;
  color: var(--orange);
  background: rgba(255, 122, 0, 0.09);
  font-size: 0;
}

.contact-details i::before,
.footer-grid div:last-child p::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.contact-details p:nth-child(1) i::before,
.footer-grid div:last-child p:nth-of-type(1)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.contact-details p:nth-child(2) i::before,
.footer-grid div:last-child p:nth-of-type(2)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.77.63 2.6a2 2 0 0 1-.45 2.11L8.09 9.64a16 16 0 0 0 6.27 6.27l1.21-1.2a2 2 0 0 1 2.11-.45c.83.3 1.7.51 2.6.63A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.77.63 2.6a2 2 0 0 1-.45 2.11L8.09 9.64a16 16 0 0 0 6.27 6.27l1.21-1.2a2 2 0 0 1 2.11-.45c.83.3 1.7.51 2.6.63A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.contact-details p:nth-child(3) i::before,
.footer-grid div:last-child p:nth-of-type(3)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-5.1 7-11a7 7 0 1 0-14 0c0 5.9 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-5.1 7-11a7 7 0 1 0-14 0c0 5.9 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.contact-details span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.next-steps-panel {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(112, 240, 176, 0.26);
  border-radius: var(--radius);
  background: rgba(112, 240, 176, 0.055);
}

.next-steps-panel h3 {
  margin: 0;
}

.next-steps-panel ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step-count;
}

.next-steps-panel li {
  position: relative;
  min-height: 30px;
  padding-left: 2.2rem;
  color: var(--muted);
  counter-increment: step-count;
}

.next-steps-panel li::before {
  content: counter(step-count);
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  color: #041015;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.mini-cta {
  padding: 1rem;
  border: 1px solid rgba(53, 212, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(53, 212, 255, 0.06);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-wide,
.form-actions {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0.9rem 0.95rem;
  color: var(--text);
  background: var(--input-bg);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 122, 0, 0.42);
  border-color: var(--orange);
}

.iti {
  width: 100%;
  color: var(--text);
}

.iti input {
  width: 100%;
}

.iti__country-container {
  color: var(--text);
}

.iti__selected-country {
  border-radius: 7px 0 0 7px;
}

.iti__selected-dial-code {
  color: var(--text);
}

.iti__country-dial-code {
  color: var(--muted);
}

.iti__dropdown-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid) !important;
  color: var(--text);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.iti__country-list {
  background: var(--panel-solid) !important;
  color: var(--text) !important;
}

.iti__country,
.iti__country-name,
.iti__a11y-text {
  color: var(--text) !important;
}

.iti__search-input-wrapper {
  background: var(--panel-solid) !important;
}

.iti__search-input {
  border-color: var(--line);
  color: var(--text) !important;
  background: var(--input-bg) !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: var(--nav-hover);
}

[data-theme="dark"] .iti__dropdown-content {
  background: #111820 !important;
  border-color: #26323e;
}

[data-theme="dark"] .iti__country-list,
[data-theme="dark"] .iti__search-input-wrapper {
  background: #111820 !important;
}

[data-theme="dark"] .iti__country,
[data-theme="dark"] .iti__country-name,
[data-theme="dark"] .iti__selected-dial-code {
  color: #f5f7fa !important;
}

[data-theme="dark"] .iti__country-dial-code {
  color: #aab6c2 !important;
}

[data-theme="dark"] .iti__search-input {
  background: #0b1016 !important;
  color: #f5f7fa !important;
  border-color: #26323e !important;
}

[data-theme="dark"] .iti__country:hover,
[data-theme="dark"] .iti__country.iti__highlight {
  background: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="light"] .iti__dropdown-content {
  background: #ffffff !important;
}

[data-theme="light"] .iti__country-list,
[data-theme="light"] .iti__search-input-wrapper {
  background: #ffffff !important;
}

[data-theme="light"] .iti__country,
[data-theme="light"] .iti__country-name,
[data-theme="light"] .iti__selected-dial-code {
  color: #17202b !important;
}

[data-theme="light"] .iti__country-dial-code {
  color: #5e6b7a !important;
}

[data-theme="light"] .iti__search-input {
  background: #ffffff !important;
  color: #17202b !important;
  border-color: #e4e9f0 !important;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
  max-width: 100%;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
  accent-color: var(--orange);
  flex: 0 0 auto;
}

.form-checkbox span {
  color: var(--muted);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-message {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.16), rgba(53, 212, 255, 0.08) 42%, rgba(112, 240, 176, 0.08)),
    linear-gradient(var(--grid-line-a) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-b) 1px, transparent 1px),
    var(--surface-3);
  background-size: 40px 40px;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--cyan), var(--green));
}

.cta-inner {
  position: relative;
  max-width: 860px;
  text-align: center;
}

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

.site-footer {
  position: relative;
  padding: 4.75rem 0 2rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.08), transparent 34%),
    var(--footer-bg);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.56), transparent);
}

.site-footer .brand-name,
.site-footer h2 {
  color: var(--footer-text);
}

.site-footer p,
.footer-bottom {
  color: var(--footer-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(180px, 0.58fr) minmax(320px, 0.9fr);
  gap: 1.25rem;
  align-items: stretch;
}

.footer-grid > div {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--footer-panel);
}

.footer-grid h2 {
  margin-bottom: 0.85rem;
  color: var(--footer-text);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 0.58rem 0;
  color: var(--footer-muted);
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-grid p {
  max-width: 560px;
}

.footer-grid div:last-child p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.12rem 0.75rem;
  align-items: start;
  margin-bottom: 0.95rem;
}

.footer-grid div:last-child p::before {
  grid-row: span 2;
  width: 20px;
  height: 20px;
  color: var(--orange);
  margin-top: 0.18rem;
}

.footer-grid div:last-child p strong,
.footer-grid div:last-child p span {
  grid-column: 2;
}

.footer-grid div:last-child p span {
  overflow-wrap: normal;
  word-break: normal;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted-2);
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .planner-workspace {
    grid-template-columns: 1fr;
  }

  .layers-panel,
  .review-panel {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-solid);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.button),
  .site-nav .button,
  .site-nav .theme-toggle {
    width: 100%;
    margin-left: 0;
  }

  .two-column,
  .split-feature,
  .planner-review-layout,
  .contact-layout,
  .report-dashboard,
  .inner-hero-layout,
  .report-insights {
    grid-template-columns: 1fr;
  }

  .split-feature.reverse > div:first-child {
    order: 0;
  }

  .card-grid,
  .six-grid,
  .feature-grid,
  .pillar-grid,
  .story-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gis-dashboard-body,
  .planner-workspace {
    grid-template-columns: 1fr;
  }

  .planner-review-copy {
    max-width: 100%;
  }

  .device-preview {
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 4rem 0 2rem;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  .section,
  .page-hero,
  .cta-section {
    padding: 4rem 0;
  }

  .card-grid,
  .six-grid,
  .feature-grid,
  .pillar-grid,
  .story-grid,
  .workflow-grid,
  .contact-form,
  .preview-grid,
  .review-body,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-preview,
  .contact-panel,
  .contact-form {
    padding: 1rem;
  }

  .preview-header,
  .security-matrix div,
  .contact-details p,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .preview-header {
    display: grid;
  }

  .device-actions {
    grid-template-columns: 1fr;
  }

  .field-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-map {
    min-height: 300px;
  }

  .app-map,
  .planner-map {
    min-height: 260px;
  }

  .timeline-step {
    grid-template-columns: 54px 1fr;
    padding-right: 0;
  }

  .hero-actions .button {
    width: 100%;
  }
}

/* Material redesign pass */
body {
  overflow-x: hidden;
}

body::before {
  opacity: 0.58;
  background:
    linear-gradient(var(--grid-line-a) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-b) 1px, transparent 1px),
    radial-gradient(circle at 78% 8%, rgba(255, 122, 0, 0.12), transparent 28%),
    radial-gradient(circle at 8% 24%, rgba(53, 212, 255, 0.08), transparent 24%),
    var(--bg);
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
}

.site-header {
  min-height: 82px;
  padding-inline: clamp(1rem, 3vw, 2.75rem);
}

.brand {
  min-height: 48px;
}

.brand-icon {
  width: 48px;
  height: 48px;
}

.brand-name {
  font-size: 1.12rem;
}

.landing-hero {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0 3rem;
  border-bottom: 1px solid var(--line);
}

.landing-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.48), transparent);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy-panel {
  max-width: 650px;
  min-width: 0;
}

.hero-copy-panel h1 {
  font-size: clamp(2.75rem, 5vw, 5.35rem);
}

.hero-copy-panel .hero-copy {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.14rem;
}

.product-preview {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel-bg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

[data-theme="light"] .product-preview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 251, 0.86)),
    var(--panel-bg);
}

.hero-product-preview {
  min-height: 520px;
}

.preview-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: var(--soft-panel);
}

.preview-topbar strong {
  min-width: 0;
  color: var(--orange);
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 185px;
  gap: 1rem;
  padding: 1rem;
}

.preview-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(var(--grid-line-a) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-b) 1px, transparent 1px),
    var(--map-bg);
  background-size: 34px 34px;
}

.preview-status-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.75rem;
}

.preview-status-stack div {
  display: grid;
  align-content: center;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft-panel);
}

.preview-status-stack strong {
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
}

.preview-status-stack span {
  color: var(--muted);
  font-size: 0.84rem;
}

.stats-strip-section {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.stats-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: var(--soft-panel);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.stats-strip span::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 122, 0, 0.45);
  flex: 0 0 auto;
}

.stats-strip span:nth-child(2)::before,
.stats-strip span:nth-child(4)::before {
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(53, 212, 255, 0.38);
}

.stats-strip span:nth-child(3)::before,
.stats-strip span:nth-child(5)::before {
  background: var(--green);
  box-shadow: 0 0 14px rgba(112, 240, 176, 0.34);
}

.compact-section {
  padding-block: clamp(4rem, 7vw, 6rem);
}

.split-heading {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  max-width: var(--container);
  text-align: left;
}

.split-heading h2 {
  margin-bottom: 0;
}

.modern-grid.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.problem-grid .card {
  min-height: 190px;
}

.pillar-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.pillar-card {
  position: relative;
  min-height: 360px;
  padding: 4.35rem 1.35rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.08), transparent 45%),
    var(--card-bg);
}

.pillar-card h3 {
  font-size: 1.35rem;
}

.workflow-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    linear-gradient(90deg, rgba(255, 122, 0, 0.16), rgba(53, 212, 255, 0.08)),
    var(--surface);
  border-block: 1px solid var(--line);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stepper div {
  position: relative;
  min-height: 170px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 9, 12, 0.34);
}

[data-theme="light"] .stepper div {
  background: rgba(255, 255, 255, 0.58);
}

.stepper span {
  color: var(--orange);
  font-weight: 800;
}

.stepper strong {
  display: block;
  margin: 0.35rem 0 0.6rem;
  color: var(--text);
  font-size: 1.45rem;
}

.stepper p {
  margin-bottom: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.outcome-list {
  display: grid;
  gap: 0.75rem;
}

.outcome-list span {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: var(--soft-panel);
  font-weight: 800;
}

.final-cta {
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.page-hero .container {
  max-width: 960px;
}

.page-hero .inner-hero-layout {
  max-width: var(--container);
}

.page-hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
}

.page-hero .brand-slogan {
  font-size: 1.05rem;
}

.card h2 {
  font-size: 1.25rem;
}

.feature-grid .card {
  min-height: 230px;
}

.report-dashboard {
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.06), transparent 35%),
    var(--panel-bg);
}

.dashboard-main,
.dashboard-side div,
.contact-panel,
.contact-form {
  background: var(--panel-bg);
}

.contact-form {
  box-shadow: var(--shadow);
}

.form-message {
  color: var(--green);
}

@media (max-width: 1120px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy-panel {
    max-width: 860px;
  }

  .hero-product-preview {
    min-height: auto;
  }

  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 78px;
  }

  .site-nav {
    top: 78px;
  }

  .preview-layout,
  .split-heading,
  .outcome-grid,
  .inner-hero-layout,
  .report-insights {
    grid-template-columns: 1fr;
  }

  .preview-status-stack {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .modern-grid.card-grid,
  .pillar-showcase,
  .stepper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 74px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 74px;
  }

  .landing-hero {
    padding-top: 2.75rem;
  }

  .hero-copy-panel h1,
  .page-hero h1 {
    font-size: 2.2rem;
    overflow-wrap: break-word;
  }

  .hero-copy-panel .hero-copy {
    font-size: 1.02rem;
  }

  .page-hero {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .preview-layout,
  .preview-status-stack,
  .stats-strip,
  .modern-grid.card-grid,
  .pillar-showcase,
  .stepper,
  .report-metrics {
    grid-template-columns: 1fr;
  }

  .inner-hero-visual {
    min-height: 190px;
    padding: 1rem;
  }

  .report-metrics strong {
    font-size: 1.7rem;
  }

  .preview-map {
    min-height: 300px;
  }

  .preview-map .fibre-network-svg {
    bottom: 126px;
    height: calc(100% - 126px);
  }

  .map-legend {
    grid-template-columns: 1fr;
  }

  .map-chip {
    min-width: auto;
    max-width: none;
    min-height: 28px;
    padding: 0.3rem 0.45rem;
    font-size: 0.68rem;
  }

  .contact-panel {
    position: static;
  }

  .contact-panel,
  .contact-form {
    padding: 1.1rem;
  }

  .contact-details p {
    grid-template-columns: 34px 1fr;
    padding: 0.7rem;
  }

  .pillar-card {
    min-height: auto;
  }
}

/* Light-theme polish */
[data-theme="light"] body::before {
  opacity: 0.28;
}

[data-theme="light"] .site-header {
  box-shadow: 0 10px 30px rgba(16, 23, 34, 0.045);
}

[data-theme="light"] .card,
[data-theme="light"] .pillar-card,
[data-theme="light"] .contact-panel,
[data-theme="light"] .contact-form,
[data-theme="light"] .dashboard-preview,
[data-theme="light"] .review-preview,
[data-theme="light"] .device-preview,
[data-theme="light"] .report-dashboard,
[data-theme="light"] .security-matrix,
[data-theme="light"] .product-preview {
  border-color: #e8edf3;
  box-shadow: 0 16px 36px rgba(16, 23, 34, 0.065);
}

[data-theme="light"] .section-alt,
[data-theme="light"] .stats-strip-section {
  background: rgba(255, 255, 255, 0.62);
}

[data-theme="light"] .cta-section {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(53, 212, 255, 0.07) 42%, rgba(112, 240, 176, 0.08)),
    linear-gradient(var(--grid-line-a) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-b) 1px, transparent 1px),
    #f6faf9;
  background-size: 40px 40px;
}

.footer-grid div:last-child p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.12rem 0.75rem;
  align-items: start;
  margin-bottom: 0.75rem;
}

.footer-grid div:last-child strong {
  color: var(--footer-text);
}

.footer-grid div:last-child span {
  color: var(--footer-muted);
}

@media (max-width: 640px) {
  .footer-grid > div {
    padding: 1.15rem;
  }

  .footer-grid div:last-child p {
    grid-template-columns: 28px 1fr;
    gap: 0.12rem 0.65rem;
  }

  .footer-grid div:last-child p strong,
  .footer-grid div:last-child p span {
    grid-column: 2;
  }
}
