:root {
  --color-bg: #050815;
  --color-bg-soft: #0b1124;
  --color-panel: rgba(14, 20, 40, 0.78);
  --color-panel-strong: rgba(18, 26, 48, 0.92);
  --color-card: rgba(11, 18, 38, 0.86);
  --color-border: rgba(148, 163, 184, 0.18);
  --color-border-strong: rgba(23, 209, 224, 0.28);
  --color-text: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-accent: #17d1e0;
  --color-accent-strong: #0ea5e9;
  --color-accent-secondary: #a855f7;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 30px 80px -45px rgba(15, 23, 42, 0.9);
  --shadow-strong: 0 50px 140px -70px rgba(23, 209, 224, 0.4);
  --container-width: 1140px;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-heading: "Manrope", "Inter", "Segoe UI", system-ui, sans-serif;
  --transition: 0.25s ease;
  --nav-overlay-margin: clamp(1rem, 5vw, 2rem);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background: radial-gradient(circle at 18% 20%, rgba(23, 209, 224, 0.18), transparent 55%),
              radial-gradient(circle at 82% 12%, rgba(168, 85, 247, 0.16), transparent 58%),
              radial-gradient(circle at 50% 100%, rgba(14, 165, 233, 0.12), transparent 60%),
              linear-gradient(180deg, #020617 0%, var(--color-bg) 52%, #030112 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body.has-open-nav {
  overflow: hidden;
}

body.has-open-nav::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(2px);
  z-index: 30;
}

body.has-open-chatbot {
  overflow: hidden;
}

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

a:hover,
a:focus {
  color: var(--color-accent);
}

p {
  margin: 0 0 1.2rem;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.5rem, 4.8vw, 3.75rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.65rem); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 1.6rem);
}

.skip-link {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -120%);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-secondary));
  color: #041321;
  font-weight: 600;
  box-shadow: 0 24px 40px -24px rgba(23, 209, 224, 0.6);
  transition: transform 0.25s ease;
  z-index: 120;
}

.skip-link:focus {
  transform: translate(-50%, 8px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(4, 9, 24, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 18px 45px -32px rgba(4, 9, 24, 0.8);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1.1rem 0;
}

.site-nav {
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand__logo { width: 58px; height: auto; }
.brand__name { font-size: 1.08rem; color: rgba(226, 232, 240, 0.92); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.4);
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(23, 209, 224, 0.65);
  outline-offset: 2px;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(148, 163, 184, 0.22);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin-bottom: 5px;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.no-js .nav-toggle {
  display: none !important;
}

.no-js .chatbot-launcher,
.no-js [data-chatbot] {
  display: none !important;
}

.no-js .site-nav__links {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  max-height: none;
  overflow: visible;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  gap: 1.45rem;
}

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

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

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

.site-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.site-nav__links a {
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.site-nav__links a:hover,
.site-nav__links a:focus {
  color: var(--color-text);
}

.site-nav__cta a {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-secondary));
  color: #041121;
  font-weight: 600;
  box-shadow: 0 20px 38px -24px rgba(23, 209, 224, 0.55);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(4.5rem, 10vw, 6.5rem) 0 clamp(3.4rem, 8vw, 4.8rem);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero__orb,
.hero__glint {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
}

.hero__orb {
  opacity: 0.5;
  animation: drift 28s ease-in-out infinite;
}

.hero__orb--one {
  width: 420px; height: 420px;
  top: -160px; left: -140px;
  background: radial-gradient(circle, rgba(23, 209, 224, 0.3), transparent 70%);
}

.hero__orb--two {
  width: 320px; height: 320px;
  bottom: -160px; right: -120px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.28), transparent 70%);
  animation-duration: 24s;
}

.hero__orb--three {
  width: 260px; height: 260px;
  top: 32%; right: 12%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.32), transparent 70%);
  animation-duration: 32s;
}

.hero__glint {
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
  opacity: 0.3;
  animation: glint 6s ease-in-out infinite;
}

.hero__glint--one { top: 18%; left: 48%; }
.hero__glint--two { top: 58%; left: 12%; animation-delay: 2s; }

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: rgba(7, 14, 30, 0.78);
  border: 1px solid rgba(23, 209, 224, 0.26);
  box-shadow: 0 18px 40px -30px rgba(23, 209, 224, 0.5);
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.85);
}

.hero__badge span { font-size: 1.1rem; }

.status-banner {
  width: 100%;
  max-width: 420px;
  margin-top: 0.6rem;
  display: grid;
  gap: 0.4rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(7, 14, 30, 0.84);
  border: 1px solid rgba(23, 209, 224, 0.22);
  box-shadow: 0 22px 50px -32px rgba(23, 209, 224, 0.45);
  position: relative;
}

.status-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(94, 234, 212, 0.85);
}

.status-banner__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0 rgba(23, 209, 224, 0.4);
  animation: statusPulse 2.6s ease-in-out infinite;
}

.status-banner__message {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.55;
}

.status-banner__time {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.72);
}

.status-banner[data-tone="refresh"] {
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 25px 60px -36px rgba(14, 165, 233, 0.45);
}

.status-banner[data-tone="concierge"] {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 25px 60px -36px rgba(168, 85, 247, 0.4);
}

.hero__lead {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  margin: 0;
}

.hero__note {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(226, 232, 240, 0.72);
  max-width: 540px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__download {
  margin-top: 1.6rem;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 209, 224, 0.42);
  background: linear-gradient(135deg, rgba(23, 209, 224, 0.18), rgba(168, 85, 247, 0.2));
  color: rgba(226, 232, 240, 0.92);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 24px 80px -60px rgba(23, 209, 224, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.download-button:hover,
.download-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 110px -70px rgba(23, 209, 224, 0.5);
}

.download-button img {
  height: 38px;
  width: auto;
  border-radius: 10px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition), color var(--transition);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.button:hover::after,
.button:focus::after {
  transform: translateX(120%);
}

.button--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-secondary));
  color: #041321;
  box-shadow: 0 24px 50px -25px rgba(23, 209, 224, 0.65);
}

.button--primary:hover,
.button--primary:focus { transform: translateY(-2px); }

.button--ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: var(--color-text);
}

.button--ghost:hover,
.button--ghost:focus {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.button--outline {
  background: rgba(7, 12, 26, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: var(--color-text);
}

.button--outline:hover,
.button--outline:focus {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.hero__pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__pills li {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(8, 14, 28, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.9rem;
}

.hero__panel { display: flex; justify-content: center; }

.hero-card {
  width: min(370px, 100%);
  padding: 2.1rem;
  border-radius: var(--radius-lg);
  background: var(--color-panel-strong);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 209, 224, 0.18), transparent 70%);
  opacity: 0;
  animation: pulse 8s ease-in-out infinite;
}

.hero-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: rgba(226, 232, 240, 0.62);
  margin: 0;
}

.hero-card__quote { color: var(--color-text-muted); margin: 0; }

.hero-card__stat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.82);
}

.hero-card__icon { color: #facc15; letter-spacing: 0.2em; }

.hero-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-card__chips span {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(7, 12, 24, 0.8);
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.7);
  animation: floatY 6s ease-in-out infinite;
}

.hero-card__chips span:nth-child(2) { animation-delay: 1.2s; }
.hero-card__chips span:nth-child(3) { animation-delay: 2s; }
.hero-card__chips span:nth-child(4) { animation-delay: 2.8s; }

/* Sections */
main {
  display: flex;
  flex-direction: column;
  gap: clamp(3.4rem, 9vw, 5.5rem);
  padding-bottom: clamp(3.2rem, 9vw, 5.2rem);
}

.section {
  display: flex;
  flex-direction: column;
  gap: clamp(2.2rem, 5vw, 3.2rem);
}

.section--muted {
  background: rgba(6, 12, 28, 0.85);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  padding: clamp(3rem, 8vw, 4.6rem) 0;
}

.section--gradient {
  background: linear-gradient(155deg, rgba(8, 14, 28, 0.95), rgba(3, 7, 22, 0.94));
  border-top: 1px solid rgba(23, 209, 224, 0.18);
  border-bottom: 1px solid rgba(23, 209, 224, 0.18);
  box-shadow: var(--shadow-strong);
  padding: clamp(3.2rem, 8vw, 4.8rem) 0;
  position: relative;
}

.section--gradient::before,
.section--gradient::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 209, 224, 0.16), transparent 60%);
  filter: blur(40px);
  opacity: 0.5;
}

.section--gradient::before { top: -60px; left: -100px; }
.section--gradient::after { bottom: -70px; right: -80px; background: radial-gradient(circle, rgba(168, 85, 247, 0.18), transparent 60%); }

.section__header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section__header--center { text-align: center; align-items: center; }

.section__header--split {
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.section__lead { color: var(--color-text-muted); font-size: 1.02rem; margin: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--color-accent);
  margin: 0;
}

.concierge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.concierge-card {
  background: rgba(7, 12, 26, 0.84);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 209, 224, 0.24);
  padding: clamp(1.9rem, 4vw, 2.5rem);
  box-shadow: 0 34px 110px -60px rgba(15, 23, 42, 0.75);
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.concierge-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 209, 224, 0.2), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.concierge-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}

.concierge-card__lead {
  color: rgba(226, 232, 240, 0.8);
  margin: 0;
}

.concierge-card__note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.78);
}

.concierge-card__cta {
  justify-self: flex-start;
}

.concierge-timeline {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.concierge-timeline div {
  display: grid;
  gap: 0.25rem;
}

.concierge-timeline dt {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(94, 234, 212, 0.75);
}

.concierge-timeline dd {
  margin: 0;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.92rem;
}

.concierge-list,
.concierge-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: rgba(226, 232, 240, 0.85);
}

.concierge-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(23, 209, 224, 0.16);
  font-size: 0.95rem;
}

.concierge-list li,
.concierge-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.6;
}

.concierge-checklist li::before {
  content: "✔";
  color: var(--color-accent);
  margin-top: 0.15rem;
}

/* Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.metric {
  background: rgba(8, 14, 30, 0.82);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.6rem;
}

.metric::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(23, 209, 224, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.metric__label {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  color: rgba(226, 232, 240, 0.64);
}

.metric__value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.metric p { color: var(--color-text-muted); margin: 0; }

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.feature {
  background: rgba(7, 12, 26, 0.82);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 1.9rem;
  box-shadow: 0 24px 70px -52px rgba(15, 23, 42, 0.8);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 209, 224, 0.3);
  box-shadow: 0 32px 80px -50px rgba(23, 209, 224, 0.45);
}

.feature p { color: var(--color-text-muted); margin: 0; }

/* Trial banner */
.trial-banner {
  position: relative;
  padding: clamp(3rem, 8vw, 4.8rem) 0;
  background: radial-gradient(circle at 15% 20%, rgba(23, 209, 224, 0.12), transparent 55%),
              radial-gradient(circle at 85% 80%, rgba(168, 85, 247, 0.12), transparent 58%),
              linear-gradient(160deg, rgba(4, 9, 24, 0.95), rgba(8, 14, 32, 0.92));
  border-top: 1px solid rgba(23, 209, 224, 0.2);
  border-bottom: 1px solid rgba(23, 209, 224, 0.2);
  box-shadow: 0 40px 120px -70px rgba(23, 209, 224, 0.35);
}

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

.trial-banner__content h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 1rem;
}

.trial-banner__content p {
  color: rgba(226, 232, 240, 0.78);
  margin: 0;
}

.trial-banner__cta {
  display: grid;
  gap: 1rem;
  justify-items: flex-start;
}

.trial-banner__note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.68);
}

/* Plans */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
  position: relative;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding: 2.1rem;
  border-radius: var(--radius);
  background: rgba(7, 12, 26, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 30px 85px -58px rgba(15, 23, 42, 0.8);
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(23, 209, 224, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity var(--transition);
}

.plan-card:hover::before { opacity: 1; }

.plan-card--featured {
  background: linear-gradient(185deg, rgba(23, 209, 224, 0.2), rgba(7, 12, 26, 0.9));
  border: 1px solid rgba(23, 209, 224, 0.36);
  transform: translateY(-6px);
}

.plan-card--hardware {
  border: 1px solid rgba(23, 209, 224, 0.24);
  background: linear-gradient(175deg, rgba(15, 23, 42, 0.92), rgba(7, 12, 26, 0.82));
}

.plan-card__header { display: flex; flex-direction: column; gap: 0.45rem; }

.plan-card__tag {
  align-self: flex-start;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 209, 224, 0.28);
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.plan-card__price {
  font-size: 2.45rem;
  font-weight: 700;
  margin: 0;
}

.plan-card__price--hardware {
  font-size: 1.9rem;
  letter-spacing: 0.01em;
}

.plan-card__price span { font-size: 0.8rem; color: var(--color-text-muted); margin-left: 0.35rem; }

.plan-card p { color: var(--color-text-muted); margin: 0; }

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  color: rgba(226, 232, 240, 0.84);
}

.plan-card ul li::before {
  content: "✔";
  color: var(--color-accent);
  margin-right: 0.45rem;
}

.plan-footer { text-align: center; color: rgba(226, 232, 240, 0.78); font-size: 0.98rem; }
.plan-footer a { color: var(--color-accent); }

.plan-note {
  margin: 1.6rem auto 0;
  text-align: center;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.95rem;
}

.plan-note a {
  color: var(--color-accent);
  font-weight: 600;
}

/* Utilities */
.list-check {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  color: rgba(226, 232, 240, 0.78);
}

.list-check li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.55;
}

.list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--color-accent);
  font-size: 0.82rem;
}

.list-check--inline {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
  align-items: start;
}

.list-check--inline li {
  padding-left: 1.5rem;
}

.list-check--compact {
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.lineup-card__summary {
  color: rgba(226, 232, 240, 0.78);
  margin: 0;
}

.lineup-card .list-check { margin-top: 1rem; }

/* Included */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.included-card {
  background: rgba(7, 13, 28, 0.8);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 1.9rem;
  display: grid;
  gap: 0.65rem;
}

.included-card p { color: var(--color-text-muted); margin: 0; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.testimonial {
  background: rgba(6, 12, 26, 0.8);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 2rem;
  position: relative;
  color: rgba(226, 232, 240, 0.88);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem; left: 1.2rem;
  font-size: 4.8rem;
  color: rgba(23, 209, 224, 0.18);
  pointer-events: none;
}

.testimonial blockquote {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.testimonial figcaption { color: var(--color-text-muted); font-size: 0.9rem; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.faq {
  background: rgba(8, 14, 30, 0.8);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 1.8rem;
  display: grid;
  gap: 0.6rem;
  transition: border-color var(--transition), transform var(--transition);
}

.faq:hover {
  border-color: rgba(23, 209, 224, 0.28);
  transform: translateY(-4px);
}

.faq p { color: var(--color-text-muted); margin: 0; }

/* Contact */
.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: clamp(2.6rem, 6vw, 3.6rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 209, 224, 0.24);
  background: linear-gradient(135deg, rgba(23, 209, 224, 0.18), rgba(6, 12, 26, 0.92));
  box-shadow: var(--shadow-strong);
}

.contact-card__content p { color: var(--color-text-muted); margin: 0; }

.contact-card__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: center;
}

.contact-card__email {
  display: grid;
  gap: 0.3rem;
  color: rgba(226, 232, 240, 0.82);
}

.contact-card__email span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: rgba(226, 232, 240, 0.65);
}

.contact-card__note {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.6;
  font-size: 0.92rem;
  max-width: 28rem;
}

.contact-card__note a {
  color: var(--color-accent);
}

.contact-card__communities {
  display: grid;
  gap: 0.35rem;
  color: rgba(226, 232, 240, 0.82);
}

.contact-card__communities span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: rgba(226, 232, 240, 0.65);
}

/* Footer */
.site-footer {
  background: rgba(4, 9, 22, 0.95);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: clamp(3.2rem, 7vw, 4.2rem) 0 2.6rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 3.2rem);
  align-items: flex-start;
}

.site-footer__column {
  display: grid;
  gap: 0.8rem;
  justify-items: flex-start;
}

.site-footer__column--brand {
  gap: 1rem;
  max-width: 360px;
}

.site-footer__column p {
  color: rgba(226, 232, 240, 0.8);
  margin: 0;
  line-height: 1.5;
}

.site-footer__brand p { color: rgba(226, 232, 240, 0.78); }

.site-footer__inner h3 { margin: 0 0 1rem; }

.site-footer__inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: rgba(226, 232, 240, 0.74);
}

.site-footer__inner ul a {
  color: inherit;
  transition: color var(--transition);
}

.site-footer__inner ul a:hover,
.site-footer__inner ul a:focus {
  color: var(--color-accent);
}

.footer-apk {
  margin-top: 0.4rem;
}

.footer-apk .download-button {
  width: 100%;
  max-width: 280px;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  background: rgba(7, 12, 26, 0.62);
  border: 1px solid rgba(23, 209, 224, 0.22);
  box-shadow: 0 18px 48px -36px rgba(15, 23, 42, 0.75);
}

.footer-apk .download-button img {
  height: 26px;
  width: auto;
  border-radius: 8px;
}

.site-footer__column .brand {
  gap: 0.5rem;
}

.site-footer__column .brand__logo {
  width: 48px;
}

.site-footer__column .brand__name {
  font-size: 1rem;
}

.site-footer__bottom {
  margin-top: clamp(2.2rem, 6vw, 3.2rem);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding-top: 1.3rem;
  color: rgba(148, 163, 184, 0.7);
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__column {
    justify-items: center;
  }

  .site-footer__column .brand {
    justify-content: center;
  }

  .footer-apk .download-button {
    justify-content: center;
  }

  .site-footer__bottom {
    text-align: center;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal[data-animate-delay] {
  transition-delay: calc(var(--delay, 0ms));
}

/* Keyframes */
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0, -16px, 0); }
}

@keyframes glint {
  0%, 100% { opacity: 0.2; transform: scale(0.85); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

@keyframes pulse {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes statusPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(23, 209, 224, 0.5); }
  70% { transform: scale(1.25); box-shadow: 0 0 0 12px rgba(23, 209, 224, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(23, 209, 224, 0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 clamp(1.1rem, 4vw, 1.5rem);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(2.2rem, 6vw, 3rem);
  }

  .section__header--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }

  .comparison-grid,
  .plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .trial-banner__inner,
  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    gap: 0.85rem;
  }

  .site-nav {
    order: 3;
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(148, 163, 184, 0.18);
  }

  .hero {
    text-align: center;
  }

  .hero__content {
    align-items: center;
    text-align: center;
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__download {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero__note {
    max-width: none;
  }

  .hero__pills {
    justify-content: center;
  }

  .hero__panel {
    justify-content: center;
  }

  .hero-card {
    margin-inline: auto;
  }

  .section__header--split {
    align-items: center;
    text-align: center;
  }

  .section__header--split > * {
    text-align: center;
  }

  .trial-banner__cta {
    justify-items: center;
  }

  .contact-card {
    text-align: center;
  }

  .contact-card__actions {
    align-items: center;
  }

  .contact-card__note {
    text-align: center;
  }

  .site-nav__links {
    position: fixed;
    top: clamp(76px, 14vh, 104px);
    left: var(--nav-overlay-margin);
    right: var(--nav-overlay-margin);
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: clamp(1.1rem, 3vw, 1.6rem);
    background: rgba(4, 9, 22, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: 0 34px 120px -64px rgba(8, 11, 28, 0.72);
    backdrop-filter: blur(14px);
    max-height: calc(100vh - clamp(76px, 14vh, 104px) - 2rem);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 95;
  }

  .site-nav__links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav__links li {
    width: 100%;
  }

  .site-nav__links a {
    display: inline-flex;
    width: 100%;
    padding: 0.45rem 0.2rem;
  }

  .site-nav__cta a {
    justify-content: center;
  }

  .no-js .site-nav__links {
    background: transparent;
    padding: 0;
    gap: 1rem;
  }

  .no-js .site-nav__links li {
    width: auto;
  }

  .no-js .site-nav__links a {
    padding: 0;
    width: auto;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__pills {
    flex-direction: column;
  }

  .list-check--inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 1.3rem; }
  .site-header__inner { padding: 1rem 0; }
  .hero { padding: 4.2rem 0 3.2rem; }
  .section--muted,
  .section--gradient { padding: 3.2rem 0; }

  .section--panel {
    background: rgba(6, 12, 26, 0.88);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    padding: clamp(3rem, 8vw, 4.6rem) 0;
  }

  .section--deep {
    background: linear-gradient(160deg, rgba(9, 13, 32, 0.94), rgba(4, 7, 22, 0.94));
    border-top: 1px solid rgba(23, 209, 224, 0.16);
    border-bottom: 1px solid rgba(23, 209, 224, 0.16);
    padding: clamp(3rem, 8vw, 4.6rem) 0;
    box-shadow: 0 40px 120px -80px rgba(23, 209, 224, 0.28);
  }

  .download-button {
    width: 100%;
    justify-content: center;
  }

  .download-button img {
    height: 34px;
  }
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.lineup-card {
  background: rgba(7, 13, 28, 0.82);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.9rem;
  box-shadow: 0 26px 70px -48px rgba(15, 23, 42, 0.78);
  transition: transform var(--transition), border-color var(--transition);
}

.lineup-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 209, 224, 0.3);
}

.lineup-card p {
  color: var(--color-text-muted);
  margin: 0;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.sports-grid span {
  background: rgba(7, 12, 26, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(226, 232, 240, 0.85);
}

.channel-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.channel-badges span {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(8, 14, 30, 0.78);
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.92rem;
}

.channel-highlights,
.on-demand-highlights,
.device-note {
  margin-top: 1.4rem;
}

.channel-highlights .list-check,
.on-demand-highlights .list-check,
.device-note .list-check {
  margin: 0;
}

.device-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: rgba(226, 232, 240, 0.82);
}

.device-grid span {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(7, 12, 26, 0.8);
}

.device-chip {
  font-weight: 600;
  border-width: 2px;
  box-shadow: 0 24px 70px -52px rgba(23, 209, 224, 0.35);
}

.device-chip--highlight {
  background: linear-gradient(135deg, rgba(23, 209, 224, 0.18), rgba(168, 85, 247, 0.18));
  border-color: rgba(23, 209, 224, 0.48);
  color: var(--color-accent);
}

.sports-card {
  background: rgba(7, 13, 28, 0.82);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.8rem;
  box-shadow: 0 26px 70px -48px rgba(15, 23, 42, 0.78);
  display: grid;
  gap: 0.6rem;
}

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

.sports-card .list-check {
  margin-top: 0.8rem;
}

.sports-card .list-check li { color: rgba(226, 232, 240, 0.78); }

.section__note {
  text-align: center;
  color: rgba(226, 232, 240, 0.7);
  font-style: italic;
  margin: 2rem auto 0;
  max-width: 720px;
}

.device-footnote {
  text-align: center;
  color: rgba(226, 232, 240, 0.62);
  font-size: 0.88rem;
  margin: 1.4rem auto 0;
  max-width: 760px;
}

.onn-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.onn-offer-card {
  background: rgba(7, 13, 28, 0.82);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 209, 224, 0.22);
  padding: clamp(2.2rem, 5vw, 2.8rem);
  box-shadow: 0 36px 120px -60px rgba(23, 209, 224, 0.32);
  display: grid;
  gap: 1.6rem;
}

.onn-offer-price {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.onn-offer-price span {
  font-size: clamp(2.4rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--color-accent);
}

.onn-offer-price small {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.onn-offer-note {
  display: grid;
  gap: 1rem;
  color: rgba(226, 232, 240, 0.78);
}
.onn-offer-note p {
  margin: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.comparison-card {
  background: rgba(7, 12, 26, 0.86);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 209, 224, 0.18);
  padding: clamp(1.8rem, 4vw, 2.2rem);
  box-shadow: 0 34px 110px -62px rgba(23, 209, 224, 0.32);
  display: grid;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
}

.comparison-card::after {
  content: "";
  position: absolute;
  inset: -120px;
  background: radial-gradient(circle, rgba(23, 209, 224, 0.16), transparent 65%);
  opacity: 0;
  transition: opacity var(--transition);
}

.comparison-card:hover::after {
  opacity: 0.9;
}

.comparison-card header {
  display: grid;
  gap: 0.35rem;
}

.comparison-card__label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.7);
  margin: 0;
}

.comparison-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
}

.comparison-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
}

.comparison-card .list-check {
  margin: 0;
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.9rem, 3vw, 1.2rem);
  margin-top: 2.4rem;
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(7, 13, 28, 0.78);
  border: 1px solid rgba(23, 209, 224, 0.14);
  box-shadow: 0 30px 90px -68px rgba(15, 23, 42, 0.85);
}

.payment-strip__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: calc(var(--radius) / 1.6);
  background: rgba(7, 12, 26, 0.6);
  transition: transform var(--transition), background var(--transition);
}

.payment-strip__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.payment-strip__link:hover {
  transform: translateY(-2px);
  background: rgba(23, 209, 224, 0.12);
}

.payment-strip img {
  height: 26px;
  width: auto;
  max-width: 96px;
  display: block;
}

@media (min-width: 1200px) {
  .section__header--split { flex-direction: row; gap: 2rem; }
  .contact-card__actions { align-self: flex-start; }
}

@media (max-width: 640px) {
  .payment-strip {
    gap: 0.75rem;
    padding: 1rem;
  }

  .payment-strip img {
    height: 22px;
    max-width: 80px;
  }
}

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

/* Quick actions */
.quick-actions {
  position: fixed;
  bottom: clamp(1.2rem, 3vw, 2.4rem);
  left: clamp(1.1rem, 3vw, 2.4rem);
  display: grid;
  gap: 0.65rem;
  z-index: 60;
}

.quick-actions__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 209, 224, 0.24);
  background: rgba(4, 9, 24, 0.9);
  color: rgba(226, 232, 240, 0.95);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 25px 65px -45px rgba(14, 165, 233, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.quick-actions__toggle:hover,
.quick-actions__toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(7, 12, 26, 0.94);
  box-shadow: 0 30px 80px -42px rgba(14, 165, 233, 0.5);
}

.quick-actions__toggle:focus-visible {
  outline: 3px solid rgba(23, 209, 224, 0.55);
  outline-offset: 2px;
}

.quick-actions__icon {
  font-size: 1.1rem;
}

.quick-actions__tray {
  display: none;
  position: relative;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: rgba(4, 9, 24, 0.94);
  border: 1px solid rgba(23, 209, 224, 0.2);
  box-shadow: 0 32px 90px -58px rgba(8, 11, 28, 0.8);
  backdrop-filter: blur(12px);
  min-width: 240px;
  gap: 0.55rem;
}

.quick-actions.is-open .quick-actions__tray {
  display: grid;
}

.quick-actions__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(7, 12, 26, 0.78);
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.quick-actions__link:hover,
.quick-actions__link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(23, 209, 224, 0.36);
  background: rgba(14, 165, 233, 0.18);
  color: rgba(226, 232, 240, 0.95);
}

.quick-actions__link:focus-visible {
  outline: 2px solid rgba(23, 209, 224, 0.5);
  outline-offset: 2px;
}

.quick-actions__link--primary {
  background: linear-gradient(135deg, rgba(23, 209, 224, 0.25), rgba(56, 189, 248, 0.25));
  border-color: rgba(23, 209, 224, 0.4);
  color: rgba(226, 232, 240, 0.95);
  font-weight: 600;
}

.quick-actions__link--button {
  width: 100%;
}

.no-js .quick-actions {
  position: static;
  transform: none;
  margin: 2.4rem auto 0;
  max-width: 420px;
}

.no-js .quick-actions__toggle {
  display: none;
}

.no-js .quick-actions__tray {
  display: grid;
  position: static;
  backdrop-filter: none;
  box-shadow: none;
  background: rgba(7, 12, 26, 0.82);
}

@media (max-width: 720px) {
  .quick-actions {
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(1rem, 6vw, 1.8rem);
  }

  .quick-actions__tray {
    width: min(100vw - 2.4rem, 360px);
  }
}

@media (max-width: 480px) {
  .quick-actions__tray {
    width: min(100vw - 1.6rem, 320px);
  }
}

/* Chatbot */
.chatbot-launcher {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(56, 189, 248, 0.75));
  color: #041321;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 30px 80px -50px rgba(14, 165, 233, 0.9);
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 55;
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 35px 100px -45px rgba(14, 165, 233, 0.92);
}

.chatbot-launcher:focus-visible {
  outline: 3px solid rgba(226, 232, 240, 0.65);
  outline-offset: 4px;
}

.chatbot-launcher__icon {
  font-size: 1.25rem;
}

.chatbot {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: clamp(1rem, 3vw, 2rem);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 80;
}

.chatbot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.chatbot.is-open {
  pointer-events: auto;
  opacity: 1;
}

.chatbot.is-open::before {
  opacity: 1;
}

.chatbot__panel {
  position: relative;
  width: min(420px, 100%);
  max-height: min(80vh, 620px);
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: rgba(9, 14, 28, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.08);
  box-shadow: 0 40px 120px -60px rgba(15, 23, 42, 0.95);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
  overflow: hidden;
  backdrop-filter: blur(12px);
  z-index: 1;
}

.chatbot.is-open .chatbot__panel {
  transform: translateY(0) scale(1);
}

.chatbot__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.6rem 1.1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.chatbot__eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: rgba(148, 163, 184, 0.75);
}

.chatbot__title {
  margin: 0.3rem 0 0;
  font-size: 1.1rem;
  color: rgba(226, 232, 240, 0.95);
}

.chatbot__close {
  border: none;
  background: rgba(15, 23, 42, 0.6);
  color: rgba(226, 232, 240, 0.8);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition), color var(--transition);
}

.chatbot__close:hover,
.chatbot__close:focus-visible {
  background: rgba(14, 165, 233, 0.28);
  color: #0ea5e9;
}

.chatbot__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  overflow: hidden;
}

.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 0.35rem;
  max-height: 100%;
  scroll-behavior: smooth;
}

.chatbot__messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot__messages::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: 999px;
}

.chatbot__message {
  display: flex;
  scroll-margin-top: 1rem;
}

.chatbot__message--bot {
  justify-content: flex-start;
}

.chatbot__message--user {
  justify-content: flex-end;
}

.chatbot__bubble {
  max-width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.6;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 18px 40px -28px rgba(14, 165, 233, 0.4);
}

.chatbot__bubble p {
  margin: 0 0 0.6rem;
}

.chatbot__bubble p:last-child {
  margin-bottom: 0;
}

.chatbot__message--user .chatbot__bubble {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.88), rgba(56, 189, 248, 0.75));
  color: #041321;
  border: 1px solid rgba(14, 165, 233, 0.85);
  box-shadow: 0 25px 60px -40px rgba(14, 165, 233, 0.9);
}

.chatbot__bubble-heading {
  margin: 0 0 0.35rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.95);
}

.chatbot__bubble-subheading {
  margin: 0.75rem 0 0.25rem;
  font-weight: 600;
  color: rgba(94, 234, 212, 0.85);
}

.chatbot__list {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.chatbot__list--numbered {
  padding-left: 1.2rem;
}

.chatbot__list li {
  color: rgba(203, 213, 225, 0.92);
}

.chatbot__table {
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.chatbot__table-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  font-size: 0.88rem;
  background: rgba(15, 23, 42, 0.6);
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.chatbot__table-row--head {
  font-weight: 600;
  background: rgba(14, 165, 233, 0.18);
  border-color: rgba(14, 165, 233, 0.25);
}

.chatbot__resources {
  margin: 0.9rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chatbot__resources a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  background: rgba(14, 165, 233, 0.16);
  color: rgba(125, 211, 252, 0.95);
  border: 1px solid rgba(14, 165, 233, 0.22);
}

.chatbot__resources a:hover,
.chatbot__resources a:focus-visible {
  background: rgba(14, 165, 233, 0.28);
  color: #38bdf8;
}

.chatbot__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chatbot__suggestion {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.65);
  color: rgba(226, 232, 240, 0.86);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.chatbot__suggestion:hover,
.chatbot__suggestion:focus-visible {
  background: rgba(14, 165, 233, 0.25);
  border-color: rgba(14, 165, 233, 0.4);
  color: #38bdf8;
  transform: translateY(-1px);
}

.chatbot__composer {
  display: flex;
  gap: 0.7rem;
  padding: 1.1rem 1.6rem 1.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(4, 9, 24, 0.78);
}

.chatbot__input {
  flex: 1;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.65);
  color: rgba(226, 232, 240, 0.92);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.chatbot__input:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
}

.chatbot__send {
  border: none;
  border-radius: 14px;
  padding: 0.65rem 1.05rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(56, 189, 248, 0.72));
  color: #041321;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.chatbot__send:hover,
.chatbot__send:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 60px -35px rgba(14, 165, 233, 0.85);
}

.chatbot__note {
  margin: 0;
  padding: 0 1.6rem 1.6rem;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.75);
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

@media (max-width: 680px) {
  .chatbot-launcher {
    bottom: clamp(0.85rem, 5vw, 1.4rem);
    right: clamp(0.85rem, 5vw, 1.4rem);
  }

  .chatbot__panel {
    width: 100%;
    max-height: min(88vh, 640px);
  }
}