:root {
  --bg: #0b1020;
  --bg-radial-1: rgba(122, 60, 255, 0.14);
  --bg-radial-2: rgba(61, 217, 235, 0.14);
  --card: rgba(255, 255, 255, 0.07);
  --glass: rgba(255, 255, 255, 0.1);
  --chip-bg: rgba(255, 255, 255, 0.08);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.14);
  --text: #e6ebf7;
  --muted: #b0b9d4;
  --accent: linear-gradient(135deg, #7a3cff, #3dd9eb);
  --accent-solid: #7a3cff;
  --accent-2: #ff8bd1;
  --accent-text: #05060f;
  --link: #9bdcff;
  --panel-title: #fff;
  --status-bg: #0b132b;
  --status-border: #20335c;
  --status-text: #9bdcff;
  --tile-bg: linear-gradient(145deg, rgba(122, 60, 255, 0.18), rgba(5, 6, 15, 0.9));
  --travel-bg: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 55%), rgba(255, 255, 255, 0.04);
  --travel-place: #9bdcff;
  --card-shine: linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 60%);
  --timeline-line: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(11, 16, 32, 0.72);
  --nav-link-active: #fff;
  --noise-opacity: 0.5;
  --noise-blend: soft-light;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --font-heading: 'Space Grotesk', 'Manrope', system-ui;
  --font-body: 'Manrope', system-ui;
}

html[data-theme='light'] {
  --bg: #eef3fb;
  --bg-radial-1: rgba(99, 102, 241, 0.08);
  --bg-radial-2: rgba(56, 189, 248, 0.08);
  --card: rgba(255, 255, 255, 0.84);
  --glass: rgba(255, 255, 255, 0.78);
  --chip-bg: rgba(28, 45, 94, 0.06);
  --surface-soft: rgba(28, 45, 94, 0.05);
  --border: rgba(26, 37, 72, 0.12);
  --text: #12182a;
  --muted: #5a6788;
  --accent-text: #f7f9ff;
  --link: #244de3;
  --panel-title: #12182a;
  --status-bg: #f3f7ff;
  --status-border: rgba(36, 77, 227, 0.16);
  --status-text: #2240a8;
  --tile-bg: linear-gradient(145deg, rgba(113, 86, 217, 0.1), rgba(255, 255, 255, 0.96));
  --travel-bg: radial-gradient(circle at 20% 20%, rgba(113, 86, 217, 0.09), transparent 55%), rgba(255, 255, 255, 0.88);
  --travel-place: #2f52d9;
  --card-shine: linear-gradient(160deg, rgba(255, 255, 255, 0.7), transparent 60%);
  --timeline-line: rgba(36, 77, 227, 0.14);
  --nav-bg: rgba(244, 248, 253, 0.9);
  --nav-link-active: #12182a;
  --noise-opacity: 0.12;
  --noise-blend: overlay;
  --shadow: 0 18px 42px rgba(16, 28, 74, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, var(--bg-radial-1), transparent 35%),
    radial-gradient(circle at 80% 10%, var(--bg-radial-2), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  padding: 0 6vw 80px;
  position: relative;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"%3E%3Cfilter id="n" x="0" y="0" width="100%25" height="100%25"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)" opacity="0.05"/%3E%3C/svg%3E');
  opacity: var(--noise-opacity);
  mix-blend-mode: var(--noise-blend);
  z-index: -1;
}

.glow {
  position: fixed;
  width: 40vw;
  height: 40vw;
  filter: blur(140px);
  opacity: 0.35;
  z-index: -2;
}

.glow-1 {
  background: #7a3cff;
  top: -10%;
  left: -10%;
}

.glow-2 {
  background: #3dd9eb;
  bottom: -15%;
  right: -5%;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 6vw;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: var(--nav-bg);
  z-index: 5;
  margin: 0 -6vw;
  border-radius: 0 0 18px 18px;
}

.nav nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav nav a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  margin: 0 10px;
  padding: 6px 0;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.nav nav a:hover {
  color: var(--nav-link-active);
  transform: translateY(-2px);
  opacity: 0.96;
}

.nav nav a.active {
  color: var(--nav-link-active);
  position: relative;
}

.nav nav a:focus-visible {
  color: var(--nav-link-active);
  transform: translateY(-2px);
  outline: 2px solid var(--accent-solid);
  outline-offset: 3px;
}

.nav nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(135deg, #7a3cff, #3dd9eb);
  border-radius: 999px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
  text-decoration: none;
  color: inherit;
}

.brand:focus-visible {
  outline: 2px solid var(--accent-solid);
  outline-offset: 3px;
  border-radius: 12px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.brand-name {
  display: block;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-tag {
  color: var(--muted);
  font-size: 13px;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  min-width: 0;
}

.nav-actions a[href^="https://apps.dhaneshlabs.com"]::after {
  content: " ↗";
  font-size: 0.9em;
  vertical-align: 0.02em;
}

.pill {
  background: var(--accent);
  border: 1px solid transparent;
  color: var(--accent-text);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.pill:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  box-shadow: 0 15px 40px rgba(122, 60, 255, 0.45);
}

.pill.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.pill.mini {
  padding: 6px 12px;
  font-size: 13px;
  box-shadow: none;
}

.nav-actions .pill {
  width: auto;
  justify-content: center;
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.nav-actions .pill:hover {
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--nav-link-active);
  transform: translateX(2px);
}

main {
  display: flex;
  flex-direction: column;
  gap: 96px;
  margin-top: 36px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.product-hero {
  padding-top: 8px;
}

.product-directory {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.product-entry {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-entry-live {
  background:
    radial-gradient(circle at top right, rgba(61, 217, 235, 0.18), transparent 35%),
    var(--card);
}

html[data-theme='light'] .product-entry-live {
  background:
    radial-gradient(circle at top right, rgba(81, 200, 234, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(109, 108, 240, 0.08), rgba(255, 255, 255, 0.96));
}

.product-entry-ai {
  background:
    radial-gradient(circle at top right, rgba(255, 139, 209, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(61, 217, 235, 0.12), transparent 40%),
    var(--card);
}

html[data-theme='light'] .product-entry-ai {
  background:
    radial-gradient(circle at top right, rgba(255, 139, 209, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(61, 217, 235, 0.11), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.92));
}

.product-entry {
  position: relative;
  z-index: 0;
}

.product-entry:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 60, 255, 0.38);
  box-shadow: 0 26px 60px rgba(10, 18, 38, 0.32);
}

.product-entry-clickable {
  cursor: pointer;
  overflow: visible;
}

.product-entry-clickable:hover,
.product-entry-clickable:focus-within,
.product-entry-clickable:focus-visible {
  z-index: 6;
}

.product-entry-clickable:focus-visible {
  outline: 2px solid var(--accent-solid);
  outline-offset: 4px;
}

.product-entry-head,
.product-entry-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.product-entry-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.product-entry h3 {
  margin: 0;
  font-size: 28px;
}

.product-entry p {
  margin: 0;
  line-height: 1.58;
}

.product-entry-meta,
.product-entry-note {
  color: var(--muted);
  font-size: 13px;
}

.product-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.product-action-row-compact {
  gap: 8px;
}

.premium-ghost {
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.product-entry-live .product-action-row-compact .premium-ghost {
  background: linear-gradient(135deg, rgba(126, 89, 255, 0.94), rgba(92, 203, 255, 0.9));
  color: #05060f;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 34px rgba(92, 203, 255, 0.16);
  animation: launchPulse 2.8s ease-in-out infinite;
}

.product-entry-live .product-action-row-compact .premium-ghost::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -28%;
  width: 38%;
  height: 170%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
  animation: launchShine 2.4s ease-in-out infinite;
  pointer-events: none;
}

.product-readmore {
  color: #bfefff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  opacity: 0.88;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

@keyframes launchPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(61, 217, 235, 0.16);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 18px 38px rgba(122, 60, 255, 0.24), 0 0 0 1px rgba(61, 217, 235, 0.12);
    transform: translateY(-1px);
  }
}

@keyframes launchShine {
  0% {
    left: -35%;
  }

  55% {
    left: 112%;
  }

  100% {
    left: 112%;
  }
}

.product-entry:hover .pill,
.product-spotlight:hover .pill,
.product-entry:focus-within .pill,
.product-spotlight:focus-within .pill {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(122, 60, 255, 0.42);
}

.product-entry:hover .premium-ghost,
.product-spotlight:hover .premium-ghost,
.product-entry:focus-within .premium-ghost,
.product-spotlight:focus-within .premium-ghost {
  background: linear-gradient(135deg, rgba(126, 89, 255, 0.16), rgba(92, 203, 255, 0.14));
  border-color: rgba(126, 89, 255, 0.28);
  box-shadow: 0 12px 26px rgba(92, 203, 255, 0.14);
}

.product-entry-live:hover .product-action-row-compact .premium-ghost,
.product-entry-live:focus-within .product-action-row-compact .premium-ghost,
.product-entry-live:focus-visible .product-action-row-compact .premium-ghost {
  background: linear-gradient(135deg, rgba(153, 124, 255, 0.96), rgba(118, 217, 255, 0.94));
  border-color: rgba(186, 224, 255, 0.32);
  box-shadow: 0 18px 38px rgba(126, 89, 255, 0.16), 0 10px 28px rgba(92, 203, 255, 0.16);
}

.product-entry-clickable:hover .product-readmore,
.product-entry-clickable:focus-within .product-readmore,
.product-entry-clickable:focus-visible .product-readmore {
  color: #ffffff;
  opacity: 1;
  transform: translateX(4px);
}

.product-action-row .pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

.product-action-row a:focus-visible,
.hero-cta a:focus-visible,
.cta-form button:focus-visible,
.cta-form input:focus-visible {
  outline: 2px solid var(--accent-solid);
  outline-offset: 3px;
}

.product-state {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.state-live {
  background: rgba(92, 232, 160, 0.14);
  border-color: rgba(92, 232, 160, 0.34);
  color: #92f2bf;
}

.state-beta {
  background: rgba(61, 217, 235, 0.12);
  border-color: rgba(61, 217, 235, 0.3);
  color: #9befff;
}

.state-soon {
  background: rgba(255, 209, 102, 0.14);
  border-color: rgba(255, 209, 102, 0.32);
  color: #ffe09b;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: -0.02em;
  margin: 10px 0 12px;
}

.hero .accent {
  background: var(--accent);
  -webkit-background-clip: text;
  color: transparent;
}

.eyebrow {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.lede {
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 10px;
  align-items: center;
}

.meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.meta-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.meta-value {
  display: block;
  font-weight: 600;
  margin-top: 6px;
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
}

.panel {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.green {
  background: #47ffb2;
}

.amber {
  background: #ffd166;
}

.red {
  background: #ff6b6b;
}

.panel-title {
  margin-left: auto;
  font-weight: 700;
  color: var(--panel-title);
}

.panel-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--chip-bg);
  border: 1px solid var(--border);
  font-size: 13px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.flow-node {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: var(--surface-soft);
}

.node-title {
  font-weight: 700;
}

.node-sub {
  color: var(--muted);
  font-size: 13px;
}

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

.status-label {
  color: var(--muted);
  font-size: 13px;
}

.status-pill {
  background: var(--status-bg);
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--status-border);
  color: var(--status-text);
  font-weight: 700;
  transition: opacity 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.status-pill.is-switching,
.live-activity-copy.is-switching {
  opacity: 0;
  transform: translateY(4px);
}

.live-activity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(92, 232, 160, 0.08), rgba(61, 217, 235, 0.08)),
    var(--surface-soft);
  overflow: hidden;
  position: relative;
}

.live-activity::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
  transform: translateX(-100%);
  animation: activitySweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

.live-activity-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--panel-title);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #47ffb2;
  box-shadow: 0 0 0 0 rgba(71, 255, 178, 0.45);
  animation: livePulse 1.8s ease-out infinite;
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  align-items: end;
  width: 68px;
  min-height: 24px;
  flex: 0 0 auto;
}

.signal-bars span {
  display: block;
  height: 16px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, rgba(155, 220, 255, 0.94), rgba(122, 60, 255, 0.62));
  transform-origin: bottom;
  animation: signalLift 1.8s ease-in-out infinite;
}

.signal-bars span:nth-child(2) {
  animation-delay: 0.18s;
}

.signal-bars span:nth-child(3) {
  animation-delay: 0.36s;
}

.signal-bars span:nth-child(4) {
  animation-delay: 0.54s;
}

.signal-bars span:nth-child(5) {
  animation-delay: 0.72s;
}

.live-activity-copy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.product-panel {
  min-height: 320px;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(71, 255, 178, 0.45);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(71, 255, 178, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(71, 255, 178, 0);
  }
}

@keyframes signalLift {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.68;
  }

  45% {
    transform: scaleY(1.18);
    opacity: 1;
  }
}

@keyframes activitySweep {
  0% {
    transform: translateX(-115%);
  }

  42%,
  100% {
    transform: translateX(115%);
  }
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 8px 0 6px;
}

.hint {
  color: var(--muted);
  margin: 4px 0 0;
}

.grid-cards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.product-spotlight {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.product-spotlight h3 {
  font-size: clamp(26px, 4vw, 36px);
  margin: 14px 0 10px;
}

.product-spotlight p {
  max-width: 62ch;
}

.product-spotlight-stats {
  display: grid;
  gap: 14px;
}

.product-stat {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.product-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.product-stat-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-shine);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}

.card h3 {
  margin: 8px 0 6px;
}

.card p {
  color: var(--muted);
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tags span {
  background: var(--chip-bg);
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 13px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.tile {
  background: var(--tile-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.tile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.tile-tag {
  background: var(--chip-bg);
  padding: 6px 10px;
  border-radius: 10px;
}

.tile h3 {
  margin: 10px 0 6px;
}

.tile p {
  color: var(--muted);
}

.content .timeline {
  margin-top: 18px;
  border-left: 2px solid var(--timeline-line);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.timeline .dot {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #7a3cff, #3dd9eb);
  border-radius: 50%;
  margin-top: 4px;
}

.timeline-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  font-weight: 700;
}

.timeline h3 {
  margin: 4px 0;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.travel-card {
  background: var(--travel-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  min-height: 170px;
  transition: transform 0.2s ease;
}

.travel-card:hover {
  transform: translateY(-4px);
}

.travel-place {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--travel-place);
}

.travel-card p {
  color: var(--muted);
}

.cta {
  margin-top: 12px;
  background: linear-gradient(135deg, rgba(122, 60, 255, 0.45), rgba(61, 217, 235, 0.45));
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-items: center;
  color: var(--text);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.cta .hint,
.cta .eyebrow {
  color: rgba(230, 235, 247, 0.78);
}

.cta h2 {
  margin: 6px 0 8px;
  color: var(--text);
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta input {
  flex: 1;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-family: var(--font-body);
}

.cta button {
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: #05060f;
  color: #e8ecf8;
  font-weight: 800;
  cursor: pointer;
}

.product-cta {
  margin-top: 0;
}

.product-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.dark-pill {
  background: #05060f;
  color: #eef2ff;
  box-shadow: 0 18px 40px rgba(5, 6, 15, 0.28);
}

.dark-pill:hover {
  box-shadow: 0 20px 44px rgba(5, 6, 15, 0.34);
}

.dark-ghost {
  border-color: rgba(5, 6, 15, 0.18);
  color: #05060f;
  background: rgba(255, 255, 255, 0.28);
}

html[data-theme='light'] .state-live {
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.18);
  color: #0f8a63;
}

html[data-theme='light'] .state-beta {
  background: rgba(36, 77, 227, 0.08);
  border-color: rgba(36, 77, 227, 0.14);
  color: #2951d4;
}

html[data-theme='light'] .state-soon {
  background: rgba(217, 119, 6, 0.08);
  border-color: rgba(217, 119, 6, 0.16);
  color: #b86a16;
}

html[data-theme='light'] .product-entry:hover {
  box-shadow: 0 20px 42px rgba(16, 28, 74, 0.14);
}

html[data-theme='light'] .premium-ghost {
  background: rgba(246, 249, 255, 0.94);
  color: #213056;
  border-color: rgba(26, 37, 72, 0.12);
}

html[data-theme='light'] .pill.ghost {
  background: rgba(250, 252, 255, 0.9);
  color: #213056;
  border-color: rgba(26, 37, 72, 0.12);
  box-shadow: 0 8px 18px rgba(16, 28, 74, 0.06);
}

html[data-theme='light'] .nav nav a:hover,
html[data-theme='light'] .nav nav a.active,
html[data-theme='light'] .nav nav a:focus-visible {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(36, 77, 227, 0.08);
}

html[data-theme='light'] .pill.ghost:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98));
  color: #1c2c53;
  border-color: rgba(90, 99, 242, 0.14);
  box-shadow: 0 14px 26px rgba(90, 99, 242, 0.1);
}

html[data-theme='light'] .product-entry-live .product-action-row-compact .premium-ghost {
  background: linear-gradient(135deg, #5a63f2, #55bfe7);
  color: #f8fbff;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(85, 191, 231, 0.18);
}

html[data-theme='light'] .product-entry-live:hover .product-action-row-compact .premium-ghost,
html[data-theme='light'] .product-entry-live:focus-within .product-action-row-compact .premium-ghost,
html[data-theme='light'] .product-entry-live:focus-visible .product-action-row-compact .premium-ghost {
  background: linear-gradient(135deg, #6e6af7, #6bcdf0);
  color: #f7fbff;
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(90, 99, 242, 0.14), 0 10px 24px rgba(107, 205, 240, 0.14);
}

html[data-theme='light'] .product-readmore {
  color: #3458d8;
}

html[data-theme='light'] .product-entry-clickable:hover .product-readmore,
html[data-theme='light'] .product-entry-clickable:focus-within .product-readmore,
html[data-theme='light'] .product-entry-clickable:focus-visible .product-readmore {
  color: #1f3faa;
  opacity: 1;
}

html[data-theme='light'] .product-entry:hover .premium-ghost,
html[data-theme='light'] .product-spotlight:hover .premium-ghost,
html[data-theme='light'] .product-entry:focus-within .premium-ghost,
html[data-theme='light'] .product-spotlight:focus-within .premium-ghost {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.98));
  border-color: rgba(90, 99, 242, 0.12);
  color: #1d2c52;
}

html[data-theme='light'] .dark-ghost {
  background: rgba(250, 252, 255, 0.96);
  color: #213056;
  border-color: rgba(26, 37, 72, 0.12);
  box-shadow: 0 8px 18px rgba(16, 28, 74, 0.06);
}

html[data-theme='light'] .cta {
  color: #05060f;
}

html[data-theme='light'] .cta h2 {
  color: #05060f;
}

html[data-theme='light'] .cta .hint,
html[data-theme='light'] .cta .eyebrow {
  color: rgba(5, 6, 15, 0.7);
}

html[data-theme='light'] .dark-pill {
  background: linear-gradient(135deg, #4957db, #2f8fe2);
  color: #f8fbff;
  box-shadow: 0 16px 28px rgba(47, 143, 226, 0.16);
}

html[data-theme='light'] .dark-pill:hover {
  box-shadow: 0 18px 32px rgba(73, 87, 219, 0.18);
}

.footer {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.foot-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.foot-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.foot-links a:focus-visible {
  outline: 2px solid var(--accent-solid);
  outline-offset: 3px;
  border-radius: 10px;
}

.theme-control {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  padding: 3px;
  box-shadow: inset 0 0 0 1px rgba(122, 60, 255, 0.2);
}

.theme-toggle {
  width: 44px;
  height: 22px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
  transition: transform 0.2s ease;
}

.theme-toggle::after {
  content: '☀';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 1;
  color: var(--muted);
}

html[data-theme='light'] .theme-toggle::before {
  transform: translateX(22px);
}

html[data-theme='light'] .theme-toggle::after {
  content: '☾';
  left: 5px;
  right: auto;
}

html[data-theme='light'] .theme-control {
  box-shadow: inset 0 0 0 1px rgba(36, 77, 227, 0.18);
}

html[data-theme='light'] .theme-toggle {
  border-color: rgba(18, 24, 42, 0.24);
}

html[data-theme='dark'] .theme-toggle {
  border-color: rgba(232, 236, 248, 0.25);
}

.theme-toggle:hover {
  background: rgba(122, 60, 255, 0.12);
  border-color: rgba(122, 60, 255, 0.5);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent-solid);
  outline-offset: 2px;
}

section {
  scroll-margin-top: 120px;
  opacity: 0.7;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal {
  animation: rise 0.8s ease forwards;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) and (min-width: 761px) {
  .nav {
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
  }

  .nav nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: thin;
    padding: 4px 0 2px;
    gap: 18px;
  }

  .nav nav a {
    margin: 0;
    padding: 2px 0;
    border: 0;
    background: transparent;
    white-space: nowrap;
    flex: 0 0 auto;
    line-height: 1.2;
  }

  .nav nav a.active::after {
    display: none;
  }

  .nav nav a:hover,
  .nav nav a.active,
  .nav nav a:focus-visible {
    background: transparent;
    box-shadow: none;
  }

  .nav-actions .pill {
    padding: 8px 12px;
  }
}

@media (max-width: 980px) {
  main {
    gap: 80px;
  }

  .hero {
    gap: 24px;
  }

  .product-entry h3 {
    font-size: 24px;
  }

  .product-spotlight {
    grid-template-columns: 1fr;
  }

  .product-spotlight p {
    max-width: none;
  }

  .product-spotlight-stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 760px) {
  body {
    padding: 0 5vw 80px;
    background: radial-gradient(circle at 12% 10%, var(--bg-radial-1), transparent 45%),
      radial-gradient(circle at 92% 4%, var(--bg-radial-2), transparent 42%),
      var(--bg);
  }

  .nav nav {
    display: flex;
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    padding: 4px 0 2px;
    justify-content: flex-start;
    gap: 8px;
  }

  .nav nav a {
    margin: 0;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .nav nav a.active::after {
    display: none;
  }

  .nav nav a:hover,
  .nav nav a.active,
  .nav nav a:focus-visible {
    transform: translateY(-1px);
    background: var(--chip-bg);
    box-shadow: none;
  }

  main {
    gap: 72px;
    margin-top: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-content h1 {
    font-size: clamp(36px, 12vw, 52px);
    line-height: 1.04;
  }

  .lede {
    font-size: 15px;
    line-height: 1.65;
  }

  .product-spotlight {
    grid-template-columns: 1fr;
  }

  .product-directory,
  .grid-cards,
  .showcase-grid,
  .travel-grid {
    grid-template-columns: 1fr;
  }

  .product-entry {
    gap: 12px;
  }

  .product-entry h3 {
    font-size: 24px;
  }

  .product-entry-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-entry-note {
    display: none;
  }

  .product-action-row {
    width: 100%;
    align-items: stretch;
  }

  .product-entry-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-entry-head,
  .product-entry-footer,
  .product-action-row .pill,
  .product-entry-topline .product-action-row-compact {
    width: 100%;
  }

  .product-entry-topline .product-action-row-compact .premium-ghost,
  .product-entry-footer .product-action-row .premium-ghost,
  .product-spotlight .product-action-row .pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .product-inline-cta {
    margin-left: 0;
  }

  .nav {
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin: 0 -5vw;
    padding: 20px 5vw;
    border-radius: 0 0 14px 14px;
    backdrop-filter: none;
  }

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

  .hero-cta .pill,
  .hero-cta .text-link {
    text-align: center;
    justify-content: center;
  }

  .nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .nav-actions .pill {
    width: auto;
    font-size: 11px;
    padding: 7px 10px;
  }

  .theme-control {
    padding: 2px;
  }

  .glow {
    display: none;
  }

  .noise {
    display: none;
  }

  .panel,
  .card {
    backdrop-filter: none;
  }

  .panel,
  .card,
  .tile,
  .travel-card,
  .cta {
    padding: 16px;
  }

  .card-top,
  .tile-head {
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }

  .chip-row,
  .tags {
    gap: 7px;
  }

  .chip,
  .tags span {
    font-size: 12px;
    padding: 6px 9px;
  }

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

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

  .signal-bars {
    min-height: 44px;
  }

  .live-activity {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-cta-actions {
    align-items: stretch;
  }

  .product-cta-actions .pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-tag {
    font-size: 11px;
  }

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

@media (max-width: 480px) {
  body {
    padding: 0 4vw 72px;
  }

  .nav {
    margin: 0 -4vw;
    padding: 18px 4vw;
  }

  .brand-tag {
    display: none;
  }

  .brand-name {
    font-size: 17px;
  }

  .nav nav {
    gap: 6px;
  }

  .nav nav a {
    padding: 6px 10px;
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .product-entry h3,
  .product-spotlight h3,
  .section-heading h2 {
    line-height: 1.12;
  }

  .product-readmore {
    font-size: 13px;
  }

  .cta input {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  section {
    opacity: 1;
    transform: none;
  }
}
