:root {
  --ink: #14142f;
  --muted: #565f76;
  --soft: #eef4ff;
  --paper: #fffaf3;
  --paper-2: #f6fffb;
  --surface: #ffffff;
  --line: rgba(20, 20, 47, 0.12);
  --shadow: 0 22px 55px rgba(37, 52, 89, 0.14);
  --pink: #ff4f8b;
  --coral: #ff6b4a;
  --orange: #ffac2f;
  --yellow: #ffe45c;
  --teal: #08bfae;
  --mint: #8bdc65;
  --blue: #2f7df6;
  --violet: #7657ff;
  --max: 1180px;
  --pad: 22px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 9% 8%, rgba(255, 228, 92, 0.46), transparent 26rem),
    radial-gradient(circle at 85% 6%, rgba(8, 191, 174, 0.22), transparent 25rem),
    radial-gradient(circle at 72% 85%, rgba(255, 79, 139, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--paper), #f4fbff 45%, var(--paper-2));
  letter-spacing: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(20, 20, 47, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 47, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 72%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 72%);
}

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.container {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 36px rgba(45, 61, 92, 0.13);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(20, 20, 47, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background:
    radial-gradient(circle at 35% 25%, #fff 0 10%, transparent 11%),
    linear-gradient(135deg, var(--pink), var(--orange) 50%, var(--teal));
  box-shadow: 0 10px 24px rgba(255, 79, 139, 0.25);
}

.brand-name {
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand-name small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-menu > a,
.nav-group > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-menu > a:hover,
.nav-group > a:hover,
.site-menu > a.active,
.nav-group > a.active {
  background: rgba(255, 228, 92, 0.55);
  color: var(--ink);
}

.nav-action {
  margin-left: 6px;
  background: var(--ink) !important;
  color: #fff !important;
}

.nav-action:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--pink), var(--violet)) !important;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.nav-group > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.menu-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 290px;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .menu-popover,
.nav-group:focus-within .menu-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-popover a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
}

.menu-popover a:hover {
  background: var(--soft);
}

.menu-popover span {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(8, 191, 174, 0.14);
  color: #047d73;
  font-size: 0.75rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--coral) 48%, var(--orange));
  box-shadow: 0 16px 34px rgba(255, 79, 139, 0.28);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(20, 20, 47, 0.12);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}

.section {
  padding: 82px 0;
}

.section.alt {
  background:
    linear-gradient(135deg, rgba(255, 228, 92, 0.42), rgba(8, 191, 174, 0.13)),
    rgba(255, 255, 255, 0.48);
  border-block: 1px solid rgba(20, 20, 47, 0.08);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #0b8278;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--teal));
}

.section-title {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 2.7rem;
  line-height: 1.04;
}

.section-lead,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.home-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
  z-index: -3;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 250, 243, 0.84) 48%, rgba(255, 250, 243, 0.28) 100%),
    linear-gradient(0deg, rgba(255, 250, 243, 1), transparent 38%);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 11px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--teal), var(--blue), var(--violet));
}

.hero-content {
  padding: 110px 0 86px;
}

.hero-content h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 4.7rem;
  line-height: 0.98;
}

.hero-content .lead {
  max-width: 650px;
  color: #384057;
  font-size: 1.19rem;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 36px;
}

.metric {
  padding: 16px;
  border: 1px solid rgba(20, 20, 47, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.8rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.page-hero {
  position: relative;
  padding: 72px 0 74px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 228, 92, 0.52), transparent 24rem),
    radial-gradient(circle at 72% 18%, rgba(255, 79, 139, 0.2), transparent 20rem),
    radial-gradient(circle at 84% 76%, rgba(8, 191, 174, 0.22), transparent 24rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 50px;
  align-items: center;
}

.page-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #0b8278;
  font-size: 0.86rem;
  font-weight: 900;
}

.page-hero h1 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-panel,
.visual-panel {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel.photo {
  min-height: 420px;
}

.hero-panel.photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.network-art {
  position: absolute;
  inset: 28px;
}

.network-art::before,
.network-art::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 2px dashed rgba(47, 125, 246, 0.22);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.network-art::after {
  inset: 22%;
  border-color: rgba(255, 79, 139, 0.26);
  animation-duration: 13s;
  animation-direction: reverse;
}

.node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 9px rgba(8, 191, 174, 0.14);
}

.node.one { left: 18%; top: 24%; background: var(--pink); box-shadow: 0 0 0 9px rgba(255, 79, 139, 0.14); }
.node.two { right: 20%; top: 18%; background: var(--orange); box-shadow: 0 0 0 9px rgba(255, 172, 47, 0.17); }
.node.three { left: 28%; bottom: 22%; background: var(--blue); box-shadow: 0 0 0 9px rgba(47, 125, 246, 0.14); }
.node.four { right: 18%; bottom: 26%; }
.node.core {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--ink), var(--violet));
  box-shadow: 0 18px 42px rgba(118, 87, 255, 0.3);
}

.node.core.icon-node {
  width: 124px;
  height: 124px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(47, 125, 246, 0.22);
}

.node.core.icon-node img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.service-grid,
.feature-grid,
.card-grid,
.deliverables-grid,
.watch-grid,
.value-grid,
.hardware-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.service-card,
.feature-card,
.value-card,
.price-card,
.hardware-card,
.watch-card,
.deliverable-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(37, 52, 89, 0.08);
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.service-card::before,
.price-card::before,
.hardware-card::before,
.deliverable-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--accent, linear-gradient(90deg, var(--pink), var(--orange)));
}

.service-card:nth-child(1) { --accent: linear-gradient(90deg, var(--pink), var(--coral)); }
.service-card:nth-child(2) { --accent: linear-gradient(90deg, var(--orange), var(--yellow)); }
.service-card:nth-child(3) { --accent: linear-gradient(90deg, var(--teal), var(--mint)); }
.service-card:nth-child(4) { --accent: linear-gradient(90deg, var(--blue), var(--violet)); }

.card-tag,
.num-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0b8278;
  background: rgba(8, 191, 174, 0.13);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3,
.feature-card h3,
.watch-card h3,
.deliverable-card h3,
.hardware-card h3,
.value-card h3,
.price-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card p,
.feature-card p,
.watch-card p,
.deliverable-card p,
.hardware-card p,
.value-card p,
.price-card p,
.process-step p,
.tab-panel p {
  color: var(--muted);
  line-height: 1.64;
}

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b6dd8;
  font-weight: 900;
}

.process-grid,
.setup-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.topology {
  position: relative;
  min-height: 410px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
}

.topology::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 120, 120, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 120, 120, 0.25) 1px, transparent 1px);
  background-size: 38px 38px;
}

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

.topology svg text {
  fill: #333333 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: #333333 !important;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.step-num {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.trust-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.trust-item span {
  color: var(--muted);
  line-height: 1.55;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 228, 92, 0.34), transparent 18rem),
    radial-gradient(circle at 84% 20%, rgba(8, 191, 174, 0.34), transparent 22rem),
    linear-gradient(135deg, #181842, #452c91 45%, #e33e75);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2 {
  max-width: 800px;
  margin-bottom: 12px;
  font-size: 2.6rem;
  line-height: 1.06;
}

.cta-band p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.cta-actions {
  display: grid;
  gap: 10px;
  min-width: 250px;
}

.site-footer {
  padding: 54px 0 34px;
  background: #111128;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.65fr);
  gap: 34px;
}

.site-footer .brand-name small,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  margin: 36px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.tabset {
  display: grid;
  gap: 20px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-list button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 900;
}

.tab-list button[aria-selected="true"] {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.tab-panel {
  display: none;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.tab-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.82fr);
  gap: 28px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(8, 191, 174, 0.13);
}

.dashboard {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(20, 20, 47, 0.1);
  background: #151530;
  color: #fff;
}

.dash-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
  font-weight: 800;
}

.dash-rows {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.dash-row {
  display: grid;
  grid-template-columns: 76px 70px 1fr;
  gap: 12px;
  padding: 12px 16px;
  background: #19193a;
  font-size: 0.9rem;
}

.pill {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
}

.pill.ok { background: var(--teal); }
.pill.warn { background: var(--orange); color: var(--ink); }
.pill.bad { background: var(--pink); }
.pill.info { background: var(--blue); }

.price {
  margin: 16px 0 8px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.includes {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.includes li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.includes li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.photo-strip {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.photo-strip img {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}

.quote-block {
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--yellow), rgba(8, 191, 174, 0.28));
}

.quote-block p {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.25;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: block;
  }

  .nav-shell {
    grid-template-columns: auto auto;
  }

  .site-menu {
    grid-column: 1 / -1;
    display: none;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    padding-top: 10px;
  }

  .site-header.menu-open .site-menu {
    display: flex;
  }

  .site-menu > a,
  .nav-group > a {
    justify-content: space-between;
    border-radius: var(--radius);
  }

  .menu-popover {
    position: static;
    min-width: 0;
    display: grid;
    margin: 4px 0 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(246, 255, 251, 0.7);
  }

  .section-head,
  .page-hero-grid,
  .process-grid,
  .setup-grid,
  .tab-panel.active,
  .cta-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .feature-grid,
  .deliverables-grid,
  .watch-grid,
  .hardware-grid,
  .pricing-grid,
  .trust-strip,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 3.35rem;
  }

  .section-title,
  .cta-band h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 16px;
  }

  .brand-name small {
    display: none;
  }

  .home-hero {
    min-height: 620px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-title,
  .cta-band h2 {
    font-size: 1.85rem;
  }

  .hero-metrics,
  .service-grid,
  .feature-grid,
  .deliverables-grid,
  .watch-grid,
  .value-grid,
  .hardware-grid,
  .pricing-grid,
  .trust-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tab-panel,
  .card,
  .service-card,
  .feature-card,
  .value-card,
  .price-card,
  .hardware-card,
  .watch-card,
  .deliverable-card {
    padding: 20px;
  }

  .dash-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cta-actions {
    min-width: 0;
  }
}

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