:root {
  color-scheme: dark;
  --ink: #f8fafc;
  --muted: #9aa9bf;
  --subtle: #66758d;
  --line: rgba(148, 163, 184, 0.14);
  --line-strong: rgba(125, 211, 252, 0.24);
  --panel: rgba(8, 16, 31, 0.82);
  --panel-soft: rgba(15, 23, 42, 0.58);
  --cyan: #67e8f9;
  --sky: #38bdf8;
  --blue: #3b82f6;
  --brand-blue: #34b3ff;
  --violet: #a78bfa;
  --green: #34d399;
  --radius: 24px;
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #020617;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 3%, rgba(14, 165, 233, 0.11), transparent 31rem),
    radial-gradient(circle at 86% 18%, rgba(124, 58, 237, 0.1), transparent 32rem),
    #020617;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: white;
  color: #020617;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(2, 6, 23, 0.84);
  backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  font-weight: 860;
  letter-spacing: -0.03em;
}

.brand > span:not(.brand-mark) {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.72rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  filter: drop-shadow(0 0 12px rgba(52, 179, 255, 0.2));
}

.brand-mark::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  left: 1px;
  top: 1px;
  border-radius: 1.5px;
  background: var(--brand-blue);
  box-shadow:
    11px 0 var(--brand-blue),
    22px 0 var(--brand-blue),
    0 11px var(--brand-blue),
    11px 11px var(--brand-blue),
    22px 11px var(--brand-blue),
    0 22px var(--brand-blue),
    11px 22px var(--brand-blue),
    22px 22px var(--brand-blue);
}

.brand-mark::after {
  content: none;
}

.brand-q {
  color: var(--brand-blue);
}

button .brand-q,
.button .brand-q,
[role="button"] .brand-q {
  color: inherit;
}

.brand-word,
.connection-lockup {
  white-space: nowrap;
}

.connection-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.connection-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 211, 153, 0.32);
  border-radius: 50%;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.35), inset 0 0 12px rgba(52, 211, 153, 0.08);
}

.connection-icon svg {
  width: 13px;
  height: 13px;
}

.brand span small {
  margin-left: 0.2rem;
  color: #718096;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0;
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.85rem;
  border-radius: 11px;
  color: #b7c3d4;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 680;
  transition: 160ms ease;
}

.nav-icon,
.nav-copy small,
.nav-mobile-label {
  display: none;
}

.nav-copy,
.nav-copy strong {
  font: inherit;
}

.nav-copy strong {
  font-weight: inherit;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.055);
}

.site-nav .nav-cta {
  margin-left: 0.4rem;
  color: white;
  background: linear-gradient(110deg, #2563eb, #0ea5e9);
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.14);
}

.site-nav .nav-cta:hover {
  background: linear-gradient(110deg, #3b82f6, #22d3ee);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  min-height: 740px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(4.5rem, 8vw, 8.2rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 999px;
  color: #b7f5ff;
  background: rgba(34, 211, 238, 0.055);
  font-size: 0.69rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.9);
}

.hero h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(3.1rem, 6vw, 6.25rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.gradient-text {
  display: block;
  margin-top: 0.13em;
  color: transparent;
  background: linear-gradient(95deg, #60a5fa 5%, #67e8f9 45%, #a78bfa 94%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero .lede {
  max-width: 650px;
  margin: 1.65rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1.15rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #e5edf8;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 780;
  transition: 170ms ease;
}

.button:hover {
  border-color: rgba(125, 211, 252, 0.3);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.button.primary {
  border-color: transparent;
  color: white;
  background: linear-gradient(110deg, #2563eb, #0ea5e9, #22d3ee);
  box-shadow: 0 18px 44px rgba(14, 165, 233, 0.18);
}

.button.primary:hover {
  filter: brightness(1.09);
}

.button svg {
  width: 17px;
  height: 17px;
}

.proof-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.proof-row span {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #8493aa;
  background: rgba(15, 23, 42, 0.46);
  font-size: 0.73rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: -8% -5% -8% 8%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.12);
  filter: blur(64px);
}

.hero-slider {
  min-width: 0;
}

.hero-slider-controls {
  padding-inline: 2.5rem;
}

.product-frame {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  background: rgba(6, 12, 27, 0.95);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.04);
}

.frame-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: #718096;
  background: rgba(15, 23, 42, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.frame-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #76dca8;
}

.frame-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  box-shadow: 0 0 9px rgba(52, 211, 153, 0.85);
}

.product-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #020617;
}

.floating-panel {
  position: relative;
  width: min(74%, 36rem);
  margin: 0.75rem 0 0 auto;
  padding: 0.9rem;
  border: 1px solid rgba(103, 232, 249, 0.19);
  border-radius: 17px;
  background: rgba(5, 12, 27, 0.9);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
}

.floating-panel strong {
  display: block;
  font-size: 0.84rem;
}

.floating-panel p {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.5;
}

.stat-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.014);
}

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

.stat {
  min-height: 114px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem clamp(1rem, 2.5vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.stat:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat strong {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  letter-spacing: -0.035em;
}

.stat span {
  margin-top: 0.2rem;
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
  scroll-margin-top: 90px;
}

.section.tinted {
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 84% 15%, rgba(14, 165, 233, 0.07), transparent 28rem),
    rgba(6, 12, 26, 0.58);
}

.section-heading {
  max-width: 790px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  margin-inline: auto;
}

.section-heading h2,
.split-copy h2,
.spotlight-copy h2 {
  margin: 1.1rem 0 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading p,
.split-copy > p,
.spotlight-copy > p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.75;
}

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

.card {
  min-height: 220px;
  padding: clamp(1.25rem, 2vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.022);
  transition: 180ms ease;
}

.card:hover {
  border-color: rgba(103, 232, 249, 0.2);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-2px);
}

.icon-box {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(103, 232, 249, 0.16);
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.055);
}

.icon-box svg {
  width: 21px;
  height: 21px;
}

.card h3 {
  margin: 2rem 0 0;
  font-size: 1.07rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.68;
}

.spotlight {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.spotlight-copy {
  max-width: 640px;
}

.everpass-wordmark {
  height: 44px;
  width: auto;
  max-width: 210px;
  margin-top: 1.4rem;
  object-fit: contain;
}

.feature-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 0.62rem 0 0.62rem 1.65rem;
  color: #c0cada;
  font-size: 0.9rem;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 1.04rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  content: "";
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.shot-stack {
  position: relative;
  min-height: 540px;
}

.shot-stack .product-frame {
  position: absolute;
}

.shot-stack .product-frame:first-child {
  width: 86%;
  top: 0;
  right: 0;
}

.shot-stack .product-frame:last-child {
  width: 64%;
  left: 0;
  bottom: 0;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.55);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.split.reverse .split-copy {
  order: 2;
}

.split-copy {
  max-width: 650px;
}

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

.mini-grid div {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.022);
}

.mini-grid strong {
  display: block;
  font-size: 0.84rem;
}

.mini-grid span {
  display: block;
  margin-top: 0.2rem;
  color: var(--subtle);
  font-size: 0.72rem;
  line-height: 1.5;
}

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

.shot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 16, 31, 0.86);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.shot-card.wide {
  grid-column: span 2;
}

.shot-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #020617;
}

.shot-card figcaption {
  padding: 0.72rem 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #8d9cb1;
  font-size: 0.72rem;
}

.section-slider {
  min-width: 0;
}

.slider-frame {
  position: relative;
}

.slider-screen {
  position: relative;
  width: 100%;
  display: block;
  aspect-ratio: var(--slider-aspect-ratio, 40 / 19);
  overflow: hidden;
  padding: 0;
  border: 0;
  color: inherit;
  background: #020617;
  cursor: zoom-in;
}

.slider-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.995);
  transition: opacity 420ms ease, transform 620ms ease;
}

.slider-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.slider-expand {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #cbd5e1;
  background: rgba(2, 6, 23, 0.82);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.slider-expand svg {
  width: 17px;
  height: 17px;
}

.slider-controls {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.slider-controls button {
  min-height: 32px;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  color: #637188;
  background: rgba(255, 255, 255, 0.022);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 170ms ease;
}

.slider-controls button:hover {
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.045);
}

.slider-controls button.is-active {
  border-color: rgba(103, 232, 249, 0.3);
  color: #b8f4ff;
  background: rgba(34, 211, 238, 0.085);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.055);
}

.slider-controls button:focus-visible,
.slider-screen:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

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

.device-card {
  min-height: 245px;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.68), rgba(6, 12, 27, 0.7));
}

.device-card .device-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 14px;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.07);
}

.device-card svg {
  width: 24px;
  height: 24px;
}

.device-card h3 {
  margin: 1.8rem 0 0;
  font-size: 1rem;
}

.device-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.overlay-heading {
  max-width: 980px;
}

.overlay-heading h2 {
  margin: 1rem 0 0;
  max-width: 950px;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.overlay-heading p {
  max-width: 830px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.78;
}

.overlay-capability-grid {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.overlay-capability-grid article {
  position: relative;
  min-width: 0;
  min-height: 205px;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(59, 130, 246, 0.065), transparent 54%),
    rgba(2, 6, 23, 0.62);
}

.overlay-capability-grid article::after {
  position: absolute;
  right: -52px;
  bottom: -66px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(103, 232, 249, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 44px rgba(14, 165, 233, 0.08);
}

.overlay-capability-grid article > span {
  color: #6ddaf8;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6rem;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.overlay-capability-grid h3 {
  margin: 1.55rem 0 0;
  color: #f3f7fc;
  font-size: 1rem;
}

.overlay-capability-grid p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.overlay-preview-grid {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.overlay-preview-card {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 19px;
  background: rgba(2, 6, 23, 0.88);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.overlay-preview-card.on-demand {
  grid-column: span 2;
}

.overlay-preview-bar {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.11);
  color: #718096;
  background: rgba(15, 23, 42, 0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.overlay-preview-bar b {
  color: #8af0bc;
  font-weight: 650;
}

.overlay-preview-card img {
  width: 100%;
  height: auto;
  background: #020617;
  cursor: zoom-in;
}

.overlay-preview-card figcaption {
  min-height: 76px;
  padding: 0.75rem 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.overlay-preview-card figcaption strong,
.overlay-preview-card figcaption span {
  display: block;
}

.overlay-preview-card figcaption strong {
  color: #dce5f2;
  font-size: 0.76rem;
}

.overlay-preview-card figcaption span {
  margin-top: 0.26rem;
  color: #718096;
  font-size: 0.68rem;
  line-height: 1.5;
}

.notification-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 3.25rem);
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 6%, rgba(59, 130, 246, 0.11), transparent 32rem),
    radial-gradient(circle at 8% 90%, rgba(52, 211, 153, 0.06), transparent 28rem),
    rgba(4, 10, 24, 0.78);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
}

.notification-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.notification-heading {
  position: relative;
  max-width: 900px;
}

.notification-heading h2 {
  margin: 1rem 0 0;
  max-width: 880px;
  font-size: clamp(2.45rem, 5.4vw, 5rem);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 1;
}

.notification-heading p {
  max-width: 790px;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.75;
}

.notification-feature-grid {
  position: relative;
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.notification-feature-grid article {
  min-width: 0;
  padding: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.62);
}

.notification-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #8af0bc;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.notification-signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.82);
}

.notification-signal.warning {
  color: #fbd38d;
}

.notification-signal.warning i {
  background: #f59e0b;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.75);
}

.notification-signal.report {
  color: #a9edff;
}

.notification-signal.report i {
  background: #38bdf8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.78);
}

.notification-feature-grid h3 {
  margin: 1.45rem 0 0;
  color: #f5f8fc;
  font-size: 1.05rem;
}

.notification-feature-grid p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.68;
}

.notification-feature-grid ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.notification-feature-grid li {
  position: relative;
  padding: 0.38rem 0 0.38rem 1rem;
  color: #8190a5;
  font-size: 0.71rem;
  line-height: 1.45;
}

.notification-feature-grid li::before {
  position: absolute;
  left: 0;
  top: 0.83rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
  box-shadow: 0 0 8px rgba(103, 232, 249, 0.46);
}

.notification-preview-grid {
  position: relative;
  margin-top: 2.7rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.52fr);
  gap: 0.85rem;
  align-items: start;
}

.notification-preview-stack {
  min-width: 0;
  display: grid;
  gap: 0.85rem;
}

.notification-preview {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 19px;
  background: rgba(2, 6, 23, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.notification-preview-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.11);
  color: #718096;
  background: rgba(15, 23, 42, 0.86);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.61rem;
  letter-spacing: 0.06em;
}

.notification-preview-bar b {
  color: #7ce7ae;
  font-weight: 650;
}

.notification-preview img {
  width: 100%;
  height: auto;
  background: #1f2937;
  cursor: zoom-in;
}

.notification-preview.guide img {
  max-height: 830px;
  object-fit: contain;
}

.notification-report-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1px;
  background: rgba(148, 163, 184, 0.1);
}

.notification-preview figcaption {
  padding: 0.7rem 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: #8493a8;
  font-size: 0.69rem;
}

.guest-demo {
  margin-top: clamp(3.5rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1fr minmax(320px, 470px);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.guest-control-grid {
  margin-top: clamp(2.5rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.guest-control-grid article {
  min-width: 0;
  min-height: 220px;
  padding: 1.2rem;
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(14, 165, 233, 0.055), transparent 55%),
    rgba(2, 6, 23, 0.5);
}

.guest-control-grid article > span {
  color: #5ed6f6;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.guest-control-grid h3 {
  margin: 2rem 0 0;
  color: #f5f8fc;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.guest-control-grid p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.guest-demo-copy {
  max-width: 690px;
}

.guest-demo-copy h2 {
  margin: 1.1rem 0 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.guest-demo-copy > p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.75;
}

.guest-demo-credentials {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.guest-demo-credentials > div {
  min-width: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 15px;
  background: rgba(2, 6, 23, 0.58);
}

.guest-demo-credentials > div.pairing-code {
  border-color: rgba(52, 211, 153, 0.22);
  background: rgba(16, 185, 129, 0.055);
  box-shadow: inset 0 0 28px rgba(16, 185, 129, 0.035);
}

.guest-demo-credentials span {
  display: block;
  color: #6f8098;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.guest-demo-credentials strong {
  display: block;
  margin-top: 0.45rem;
  color: #f2f7ff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.08em;
}

.guest-demo-credentials .pairing-code strong {
  color: #8af0bc;
  text-shadow: 0 0 20px rgba(52, 211, 153, 0.28);
}

.pairing-flow {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.pairing-flow > div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.8rem;
  line-height: 1.5;
}

.pairing-flow b {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.05);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.pairing-flow strong {
  color: #dfe8f4;
}

.guest-demo-note {
  margin-top: 1.1rem !important;
  padding: 0.9rem 1rem;
  border-left: 2px solid rgba(52, 211, 153, 0.7);
  color: #91a2b8 !important;
  background: rgba(16, 185, 129, 0.04);
  font-size: 0.78rem !important;
  line-height: 1.65 !important;
}

.guest-demo-note strong {
  color: #8af0bc;
}

.guest-phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.guest-phone-stage::before {
  position: absolute;
  inset: 8% 0;
  content: "";
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.16);
  filter: blur(58px);
}

.guest-device {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 390 / 844;
  padding: 8px;
  border: 1px solid rgba(226, 232, 240, 0.28);
  border-radius: 58px;
  background:
    linear-gradient(145deg, rgba(226, 232, 240, 0.2), rgba(51, 65, 85, 0.1) 18%, rgba(2, 6, 23, 0.96) 46%),
    #050812;
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.64),
    inset 0 0 0 2px rgba(15, 23, 42, 0.92),
    inset 0 0 0 3px rgba(255, 255, 255, 0.055),
    0 0 76px rgba(14, 165, 233, 0.12);
}

.guest-device-button {
  position: absolute;
  z-index: -1;
  width: 4px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: linear-gradient(#64748b, #111827 28%, #020617 74%, #475569);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.44);
}

.guest-device-button-silent {
  left: -4px;
  top: 94px;
  height: 28px;
  border-radius: 4px 0 0 4px;
}

.guest-device-button-volume-up,
.guest-device-button-volume-down {
  left: -5px;
  height: 48px;
  border-radius: 5px 0 0 5px;
}

.guest-device-button-volume-up {
  top: 143px;
}

.guest-device-button-volume-down {
  top: 204px;
}

.guest-device-button-power {
  right: -5px;
  top: 164px;
  height: 74px;
  border-radius: 0 5px 5px 0;
}

.guest-phone {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 49px;
  background: #020617;
}

.guest-status-bar {
  position: relative;
  z-index: 2;
  min-height: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1.05rem;
  color: rgba(241, 245, 249, 0.9);
  background: #03091a;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.guest-status-time {
  padding-left: 0.2rem;
}

.guest-dynamic-island {
  width: 94px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.guest-dynamic-island i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #334155, #020617 70%);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.88);
}

.guest-status-icons {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
}

.guest-status-icons svg {
  width: 15px;
  height: 11px;
}

.guest-phone-bar {
  min-height: 42px;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  padding: 0 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #8fa0b7;
  background: #060d1c;
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.guest-phone-bar span {
  width: 30px;
  height: 7px;
  border-radius: 999px;
  background: #020617;
}

.guest-phone-bar i {
  justify-self: end;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.8);
}

.guest-phone iframe {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  display: block;
  border: 0;
  background: #071020;
}

.guest-home-indicator {
  position: relative;
  z-index: 2;
  min-height: 24px;
  display: block;
  background: #03091a;
}

.guest-home-indicator::after {
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 112px;
  height: 4px;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.85);
  content: "";
  transform: translateX(-50%);
}

.interface-gallery-section {
  padding-top: clamp(5rem, 9vw, 8.5rem);
}

.gallery-group {
  margin-top: clamp(3rem, 7vw, 5.5rem);
}

.gallery-group-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.gallery-group-heading span {
  color: #61d8f7;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.61rem;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.gallery-group-heading h3 {
  margin: 0.5rem 0 0;
  color: #e8eef7;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: -0.035em;
}

.gallery-group-heading b {
  flex: 0 0 auto;
  color: #64748b;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.interface-gallery-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: start;
}

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

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

.interface-gallery-grid .shot-card {
  min-width: 0;
  transition: border-color 180ms ease, transform 180ms ease;
}

.interface-gallery-grid .shot-card:hover {
  border-color: rgba(103, 232, 249, 0.23);
  transform: translateY(-2px);
}

.interface-gallery-grid figcaption {
  min-height: 78px;
}

.interface-gallery-grid figcaption strong,
.interface-gallery-grid figcaption span {
  display: block;
}

.interface-gallery-grid figcaption strong {
  color: #dce5f2;
  font-size: 0.75rem;
}

.interface-gallery-grid figcaption span {
  margin-top: 0.25rem;
  color: #718096;
  font-size: 0.67rem;
  line-height: 1.5;
}

.integrations {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.7rem;
}

.integration {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
}

.integration img {
  max-width: 112px;
  max-height: 42px;
  object-fit: contain;
  filter: saturate(0.9) brightness(1.2);
}

.delivery-panel {
  position: relative;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0, rgba(37, 99, 235, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(4, 10, 23, 0.88));
}

.delivery-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(103, 232, 249, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.delivery-heading,
.delivery-grid {
  position: relative;
  z-index: 1;
}

.delivery-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.delivery-heading h2 {
  margin: 1.1rem 0 0;
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.delivery-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

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

.delivery-grid article {
  min-height: 225px;
  padding: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.52);
}

.delivery-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #8cebb9;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.delivery-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 11px rgba(52, 211, 153, 0.8);
}

.delivery-status.directv {
  color: #9fdcff;
}

.delivery-status.directv i {
  background: var(--brand-blue);
  box-shadow: 0 0 11px rgba(52, 179, 255, 0.8);
}

.delivery-grid h3 {
  margin: 1.5rem 0 0;
  font-size: 1.02rem;
}

.delivery-grid p {
  margin: 0.55rem 0 0;
  color: #8291a7;
  font-size: 0.78rem;
  line-height: 1.65;
}

.smartq-panel {
  overflow: hidden;
  position: relative;
  display: block;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border: 1px solid rgba(103, 232, 249, 0.15);
  border-radius: 25px;
  background:
    radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.2), transparent 25rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(7, 14, 31, 0.86));
}

.smartq-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(103, 232, 249, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, black, transparent 74%);
}

.smartq-panel::after {
  position: absolute;
  width: 340px;
  height: 340px;
  right: -100px;
  bottom: -190px;
  border: 1px solid rgba(103, 232, 249, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 70px rgba(34, 211, 238, 0.08);
}

.smartq-signal-bar,
.smartq-intro-grid,
.smartq-module-heading,
.smartq-module-grid {
  position: relative;
  z-index: 1;
}

.smartq-signal-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(125, 211, 252, 0.12);
  color: #66758d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.smartq-signal-bar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #9fb2c9;
}

.smartq-signal-bar i,
.smartq-live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px rgba(52, 211, 153, 0.8);
}

.smartq-intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

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

.smartq-capability-grid > div {
  min-height: 126px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.045), transparent 60%),
    rgba(2, 6, 23, 0.5);
}

.smartq-capability-grid strong {
  display: block;
  color: #d9e4f2;
  font-size: 0.8rem;
}

.smartq-capability-grid span {
  display: block;
  margin-top: 0.4rem;
  color: #718096;
  font-size: 0.71rem;
  line-height: 1.55;
}

.smartq-module-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(125, 211, 252, 0.12);
}

.smartq-module-heading > div > span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

.smartq-module-heading h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  letter-spacing: -0.04em;
}

.smartq-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 999px;
  color: #9bd8bc;
  background: rgba(52, 211, 153, 0.055);
  white-space: nowrap;
  font-size: 0.67rem;
}

.smartq-module-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.smartq-module-card {
  position: relative;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 17px;
  color: inherit;
  background:
    radial-gradient(circle at 100% 0, rgba(56, 189, 248, 0.1), transparent 11rem),
    rgba(2, 6, 23, 0.52);
  text-decoration: none;
  transition: 180ms ease;
}

.smartq-module-card::before {
  position: absolute;
  left: 0;
  top: 1.15rem;
  bottom: 1.15rem;
  width: 2px;
  content: "";
  background: linear-gradient(transparent, var(--cyan), transparent);
  opacity: 0.35;
}

.smartq-module-card:hover {
  border-color: rgba(103, 232, 249, 0.28);
  background-color: rgba(15, 23, 42, 0.76);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.module-index {
  color: #5f7088;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.smartq-module-card h3 {
  margin: 1.2rem 0 0;
  font-size: 1.03rem;
}

.smartq-module-card h3 em {
  display: inline-flex;
  margin-left: 0.35rem;
  padding: 0.22rem 0.45rem;
  border: 1px solid rgba(167, 139, 250, 0.24);
  border-radius: 999px;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.09);
  vertical-align: middle;
  white-space: nowrap;
  font-size: 0.55rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.smartq-module-card p {
  margin: 0.65rem 0 1.2rem;
  color: #8392a8;
  font-size: 0.76rem;
  line-height: 1.62;
}

.module-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  color: #a8efff;
  font-size: 0.7rem;
  font-weight: 760;
}

.module-card-link b {
  color: var(--cyan);
  font-size: 0.9rem;
  transition: transform 160ms ease;
}

.smartq-module-card:hover .module-card-link b {
  transform: translate(2px, -2px);
}

.smartq-module-card.adnet {
  background:
    radial-gradient(circle at 100% 0, rgba(139, 92, 246, 0.15), transparent 12rem),
    rgba(2, 6, 23, 0.55);
}

.demo-shell {
  margin-top: 2.6rem;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 24px;
  background: #030712;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.45);
}

.demo-bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #9aa9bf;
  background: rgba(15, 23, 42, 0.82);
  font-size: 0.78rem;
}

.demo-bar strong {
  color: white;
}

.demo-viewport {
  --demo-scale: 1;
  position: relative;
  width: 100%;
  height: calc(1000px * var(--demo-scale));
  overflow: hidden;
  background: #071020;
}

.demo-canvas {
  width: 1600px;
  height: 1000px;
  transform: scale(var(--demo-scale));
  transform-origin: top left;
}

.demo-canvas iframe {
  width: 1600px;
  height: 1000px;
  display: block;
  border: 0;
  background: #071020;
}

.demo-note {
  margin: 1rem auto 0;
  max-width: 800px;
  color: var(--subtle);
  text-align: center;
  font-size: 0.78rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-card {
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(10, 18, 34, 0.75);
}

.contact-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.contact-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.55rem;
  color: #aeb9ca;
  font-size: 0.88rem;
}

.contact-list li::before {
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.19);
  border-radius: 12px;
  outline: none;
  color: white;
  background: rgba(2, 6, 23, 0.65);
  transition: 150ms ease;
}

.contact-form textarea {
  min-height: 125px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(103, 232, 249, 0.5);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.07);
}

.form-submit {
  min-height: 50px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: linear-gradient(110deg, #2563eb, #0891b2);
  cursor: pointer;
  font-weight: 780;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-status {
  min-height: 1.4rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status.ok {
  color: #7ce7ae;
}

.form-status.err {
  color: #fca5a5;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(1, 4, 15, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 2rem;
  padding-block: 3.5rem;
}

.footer-grid p {
  max-width: 380px;
  margin: 1rem 0 0;
  color: var(--subtle);
  font-size: 0.82rem;
}

.footer-col strong {
  display: block;
  margin-bottom: 0.75rem;
  color: #d9e3f0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  padding: 0.32rem 0;
  color: #7d8ca3;
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  color: #59677c;
  font-size: 0.73rem;
}

.subhero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(4.2rem, 8vw, 7.5rem);
}

.subhero h1 {
  margin: 1.45rem 0 0;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.063em;
}

.subhero p {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

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

.package {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.022);
}

.package small {
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package h3 {
  margin: 0.9rem 0 0;
  font-size: 1.06rem;
}

.package p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.steps {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  counter-reset: workflow;
}

.step {
  position: relative;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.022);
  counter-increment: workflow;
}

.step::before {
  display: block;
  color: #526078;
  content: "0" counter(workflow);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.step h3 {
  margin: 2.8rem 0 0;
  font-size: 1rem;
}

.step p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-note {
  margin-top: 1.2rem;
  color: #5e6c81;
  font-size: 0.7rem;
  line-height: 1.6;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1500px, 96vw);
  max-height: 88vh;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.7);
}

.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: white;
  background: rgba(15, 23, 42, 0.85);
  cursor: pointer;
  font-size: 1.4rem;
}

[data-lightbox] {
  cursor: zoom-in;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.992);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

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

.scroll-top {
  position: fixed;
  right: clamp(0.8rem, 2vw, 1.5rem);
  bottom: clamp(0.8rem, 2vw, 1.5rem);
  z-index: 180;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 14px;
  color: #c8f7ff;
  background: rgba(5, 13, 29, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38), 0 0 24px rgba(14, 165, 233, 0.09);
  backdrop-filter: blur(16px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 180ms ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: rgba(103, 232, 249, 0.48);
  color: white;
  transform: translateY(-2px);
}

body:has(.cookie-consent) .scroll-top {
  bottom: 7.5rem;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 190;
  width: min(900px, calc(100% - 24px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(37, 99, 235, 0.16), transparent 19rem),
    rgba(5, 12, 27, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.cookie-consent strong {
  display: block;
  font-size: 0.88rem;
}

.cookie-consent p {
  margin: 0.3rem 0 0;
  color: #8fa0b7;
  font-size: 0.74rem;
  line-height: 1.55;
}

.cookie-consent a {
  color: #a9edff;
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
}

.cookie-actions button {
  min-height: 40px;
  padding: 0 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 11px;
  color: #c2cedd;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 760;
}

.cookie-actions button[data-cookie-choice="accepted"] {
  border-color: rgba(103, 232, 249, 0.24);
  color: white;
  background: linear-gradient(110deg, #2563eb, #0ea5e9);
}

.cookie-actions button:hover {
  filter: brightness(1.12);
}

@media (max-width: 1100px) {
  .hero,
  .subhero,
  .spotlight,
  .split,
  .split.reverse,
  .smartq-intro-grid,
  .guest-demo,
  .delivery-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .split-copy,
  .spotlight-copy {
    max-width: 780px;
  }

  .split.reverse .split-copy {
    order: initial;
  }

  .shot-stack {
    min-height: 620px;
  }

  .card-grid,
  .device-grid,
  .overlay-capability-grid,
  .notification-feature-grid,
  .guest-control-grid,
  .interface-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .notification-preview-grid {
    grid-template-columns: 1fr;
  }

  .notification-preview.guide {
    max-width: 560px;
  }

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

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

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

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

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

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 6, 23, 0.98);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
  }

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

  .site-nav a {
    min-height: 70px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.85rem;
    justify-content: initial;
    padding: 0.72rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    background:
      linear-gradient(110deg, rgba(34, 211, 238, 0.035), transparent 58%),
      rgba(255, 255, 255, 0.018);
  }

  .site-nav .nav-cta {
    margin: 0.35rem 0 0;
    justify-content: initial;
  }

  .nav-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    border: 1px solid rgba(103, 232, 249, 0.15);
    border-radius: 12px;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.055);
  }

  .nav-icon svg {
    width: 20px;
    height: 20px;
  }

  .nav-copy {
    min-width: 0;
    display: block;
    align-self: center;
  }

  .nav-copy strong {
    display: block;
    color: #e8eef7;
    font-size: 0.84rem;
    font-weight: 760;
    line-height: 1.25;
  }

  .nav-copy small {
    display: block;
    margin-top: 0.28rem;
    overflow: hidden;
    color: #718096;
    font-size: 0.69rem;
    font-weight: 520;
    letter-spacing: 0;
    line-height: 1.35;
    text-overflow: ellipsis;
  }

  .nav-desktop-label {
    display: none;
  }

  .nav-mobile-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
  }

  .nav-connection-icon {
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-radius: 50%;
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.09);
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.28);
  }

  .nav-connection-icon svg {
    width: 12px;
    height: 12px;
  }

  .site-nav .nav-cta .nav-icon {
    border-color: rgba(255, 255, 255, 0.18);
    color: white;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav .nav-cta small {
    color: rgba(255, 255, 255, 0.68);
  }

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

  .stat:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

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

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

@media (max-width: 760px) {
  #on-screen-overlays {
    overflow: clip;
    padding-block: 4.25rem;
  }

  #on-screen-overlays .container {
    width: calc(100% - 24px);
    max-width: 100%;
    min-width: 0;
  }

  .overlay-heading {
    max-width: none;
  }

  .overlay-heading .eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .overlay-heading h2 {
    max-width: none;
    margin-top: 0.9rem;
    font-size: clamp(2.15rem, 10.8vw, 3.35rem);
    letter-spacing: -0.045em;
    line-height: 1.02;
  }

  .overlay-heading p {
    margin-top: 1rem;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .overlay-capability-grid,
  .overlay-preview-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .overlay-capability-grid {
    margin-top: 1.8rem;
    gap: 0.7rem;
  }

  .overlay-capability-grid article {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 1.05rem;
    border-radius: 16px;
  }

  .overlay-capability-grid article::after {
    right: -72px;
    bottom: -82px;
    opacity: 0.6;
  }

  .overlay-capability-grid h3 {
    margin-top: 0.9rem;
    font-size: 1rem;
    line-height: 1.3;
  }

  .overlay-capability-grid p {
    margin-top: 0.45rem;
    font-size: 0.8rem;
    line-height: 1.62;
  }

  .overlay-preview-grid {
    margin-top: 2rem;
    gap: 0.9rem;
    align-items: stretch;
  }

  .overlay-preview-card,
  .overlay-preview-card.on-demand {
    width: 100%;
    min-width: 0;
    grid-column: auto;
    border-radius: 16px;
  }

  .overlay-preview-bar {
    min-width: 0;
    min-height: 0;
    flex-wrap: wrap;
    gap: 0.3rem 0.75rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.56rem;
    line-height: 1.35;
  }

  .overlay-preview-bar span,
  .overlay-preview-bar b {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .overlay-preview-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .overlay-preview-card figcaption {
    min-height: 0;
    padding: 0.75rem;
  }

  .overlay-preview-card figcaption strong {
    font-size: 0.78rem;
  }

  .overlay-preview-card figcaption span {
    font-size: 0.7rem;
    line-height: 1.48;
  }

  #on-screen-overlays.scroll-reveal,
  #on-screen-overlays .scroll-reveal {
    transform: none;
    transition-property: opacity;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, var(--max));
  }

  .brand span small {
    display: inline;
  }

  .hero,
  .subhero {
    padding-block: 4rem 5rem;
  }

  .hero h1,
  .subhero h1 {
    font-size: clamp(2.75rem, 15vw, 4.4rem);
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .floating-panel {
    width: auto;
    margin-left: 0;
  }

  .card-grid,
  .device-grid,
  .package-grid,
  .steps,
  .overlay-capability-grid,
  .overlay-preview-grid,
  .notification-feature-grid,
  .notification-report-pages,
  .guest-control-grid,
  .interface-gallery-grid,
  .smartq-module-grid,
  .smartq-capability-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .overlay-preview-card.on-demand {
    grid-column: auto;
  }

  .notification-preview.guide {
    max-width: none;
  }

  .smartq-signal-bar,
  .smartq-module-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .guest-demo-credentials {
    grid-template-columns: 1fr;
  }

  .hero-slider-controls {
    padding-inline: 0;
  }

  .shot-stack {
    min-height: 420px;
  }

  .shot-stack .product-frame:first-child {
    width: 96%;
  }

  .shot-stack .product-frame:last-child {
    width: 78%;
  }

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

  .shot-card.wide {
    grid-column: auto;
  }

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

  .demo-bar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1rem;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions button {
    flex: 1;
  }

  body:has(.cookie-consent) .scroll-top {
    bottom: 11rem;
  }
}

@media (max-width: 420px) {
  #on-screen-overlays .container {
    width: calc(100% - 20px);
  }

  .overlay-heading h2 {
    font-size: clamp(2.05rem, 11.5vw, 2.85rem);
  }

  .overlay-preview-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}
