:root {
  --bg: #0e111a;
  --surface: #141826;
  --surface-2: #1b2033;
  --accent: #3bd2d0;
  --accent-2: #6f6bff;
  --accent-3: #f7b955;
  --text: #f4f6fb;
  --muted: #b5bed8;
  --shadow: rgba(9, 12, 20, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #1c2440, #0e111a 45%);
  min-height: 100vh;
  scroll-behavior: smooth;
}

body.scroll-snap {
  scroll-snap-type: y mandatory;
  scroll-snap-stop: always;
  overflow-y: auto;
  height: 100vh;
}

body.scroll-snap main > section {
  scroll-snap-align: start;
  min-height: 85vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(10, 12, 20, 0.8);
  backdrop-filter: blur(18px);
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.slim {
  padding: 10px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0e111a;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text span {
  font-weight: 600;
  display: block;
}

.logo-text small {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px var(--shadow);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0e111a;
  border: none;
}

.button.cta {
  padding: 14px 22px;
  font-size: 16px;
  letter-spacing: 0.2px;
  box-shadow: 0 18px 36px rgba(6, 10, 22, 0.45);
}

.button.cta-secondary {
  padding: 14px 22px;
  font-size: 16px;
  border-color: rgba(255, 255, 255, 0.35);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(59, 210, 208, 0.12);
  border: 1px solid rgba(59, 210, 208, 0.3);
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.muted {
  color: var(--muted);
}

.button.ghost {
  background: transparent;
}

.button.tiny {
  padding: 6px 10px;
  font-size: 12px;
}

.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(59, 210, 208, 0.15);
  color: var(--accent);
  font-size: 13px;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 18px 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-counters {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin: 20px 0;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.hero-counters .counter {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-3);
}

.hero-metrics div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-metrics strong {
  font-size: 20px;
}

.hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.hero-preview {
  display: grid;
  gap: 14px;
  position: relative;
}

.hero-mascot {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.25));
}

.hero-mascot-float {
  top: -28px;
  bottom: auto;
  right: -28px;
  width: 120px;
  height: 120px;
  opacity: 0.95;
}

.hero-mascot img {
  width: 100%;
  height: auto;
}

.security-mascot {
  margin: 18px 0 24px;
  display: flex;
  justify-content: flex-end;
}

.security-mascot img {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.2));
}

.preview-window {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(6, 10, 22, 0.55);
  background: rgba(10, 13, 22, 0.8);
  min-height: 320px;
}

.preview-window img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateX(-6%);
  filter: saturate(1.1) contrast(1.05);
}

.preview-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.preview-tag {
  position: absolute;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(12, 17, 26, 0.9);
  color: var(--text);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.tag-coverage {
  top: 16px;
  left: 16px;
  color: #0e111a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.tag-ai {
  top: 16px;
  right: 16px;
}

.tag-approval {
  bottom: 16px;
  left: 16px;
}

.preview-cursor {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(247, 185, 85, 0.9);
  box-shadow: 0 12px 24px rgba(247, 185, 85, 0.4);
  border: 2px solid rgba(14, 17, 26, 0.9);
  transform: translate(40px, 160px);
}

.preview-cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  gap: 8px;
}

.preview-pan {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(59, 210, 208, 0.25), transparent 50%);
  mix-blend-mode: screen;
  opacity: 0;
}

.preview-caption {
  font-size: 13px;
  color: var(--muted);
}

.hero-card-header,
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.hero-card-body {
  padding: 16px 0;
}

.day-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.badge {
  background: rgba(111, 107, 255, 0.2);
  color: #d8d4ff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.grid-mini {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.cell {
  padding: 10px 0;
  text-align: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.cell.highlight {
  background: rgba(59, 210, 208, 0.3);
}

.showcase {
  background: linear-gradient(120deg, rgba(15, 22, 45, 0.9), rgba(12, 17, 26, 0.9));
}

.banner-shot {
  margin-top: 24px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.banner-shot img {
  width: 100%;
  display: block;
  filter: saturate(1.08) contrast(1.05);
}

.banner-shot .caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(12, 17, 26, 0.85);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.showcase-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 24px;
}

.screenshot-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transform-origin: center;
}

.screenshot-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  filter: saturate(1.08) contrast(1.05);
}

.screenshot-card figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.feature-list span {
  color: var(--accent);
  font-weight: 600;
}

.screenshot-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(6, 10, 22, 0.6);
  transform: rotate(-1.5deg);
}

.screenshot-wrap img {
  width: 100%;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

.screenshot-wrap .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 210, 208, 0.35), transparent 60%);
  pointer-events: none;
}

.corner-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(14, 17, 26, 0.8);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header,
.hero,
.section {
  animation: fadeIn 0.8s ease both;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.section {
  padding: 70px 0;
}

.section.parallax {
  position: relative;
  overflow: hidden;
}

.section.parallax::before {
  content: "";
  position: absolute;
  inset: -30% 0 auto 0;
  height: 160%;
  background: radial-gradient(circle at 30% 20%, rgba(111, 107, 255, 0.35), transparent 55%),
              radial-gradient(circle at 80% 50%, rgba(59, 210, 208, 0.25), transparent 60%);
  transform: translateY(var(--parallax-offset, 0px));
  transition: transform 0.2s ease-out;
  z-index: 0;
}

.section.parallax > .container {
  position: relative;
  z-index: 1;
}

.section.dark {
  background: #0a0d16;
}

.section-head {
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid article,
.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.paywall-card {
  position: relative;
  overflow: hidden;
}

.plan-mascot {
  width: 64px;
  height: auto;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.2));
}

.paywall-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(111, 107, 255, 0.25), transparent 55%);
  opacity: 0.65;
  pointer-events: none;
}

.paywall-card:hover {
  transform: translateY(-10px) scale(1.01);
}

.card.highlight {
  border: 1px solid var(--accent);
  box-shadow: 0 20px 40px rgba(59, 210, 208, 0.2);
}

.card .tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(59, 210, 208, 0.2);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 12px;
}

.price {
  font-size: 28px;
  margin: 14px 0;
}

.price span {
  font-size: 14px;
  color: var(--muted);
}

.price-estimate {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

/* ── Special offer & countdown ─────────────────────────── */
.offer-pill {
  background: rgba(247, 185, 85, 0.18);
  color: var(--accent-3);
  border: 1px solid rgba(247, 185, 85, 0.35);
}

.offer-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(247, 185, 85, 0.08);
  border: 1px solid rgba(247, 185, 85, 0.25);
  border-radius: 16px;
  padding: 18px 28px;
  margin: 0 0 36px;
}

.countdown-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-3);
}

.countdown-units {
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 10px;
}

.countdown-unit span {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-3);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-unit small {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.countdown-sep {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-3);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 14px;
}

/* Offer badges row at top of each plan card */
.offer-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.offer-tag {
  background: rgba(247, 185, 85, 0.18) !important;
  color: var(--accent-3) !important;
  border: 1px solid rgba(247, 185, 85, 0.3);
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(59, 210, 208, 0.15);
  color: var(--accent);
  border: 1px solid rgba(59, 210, 208, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.trial-badge::before {
  content: '✓';
  font-size: 11px;
}

/* Struck-through regular price */
.price-was {
  font-size: 13px;
  color: var(--muted);
  margin: -8px 0 12px;
}

.price-was s {
  color: rgba(181, 190, 216, 0.55);
  text-decoration: line-through;
}

@media (max-width: 600px) {
  .offer-countdown { gap: 12px; padding: 14px 16px; }
  .countdown-unit { min-width: 44px; }
  .countdown-unit span { font-size: 20px; }
}

.faq details {
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 12px;
}

.timeline-strip .timeline-track {
  display: grid;
  grid-template-columns: repeat(12, minmax(70px, 1fr));
  gap: 8px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.timeline-day {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 0;
  text-align: center;
  font-weight: 600;
}

.timeline-day.highlight {
  background: rgba(59, 210, 208, 0.35);
  color: #0e111a;
}

.testimonials {
  background: linear-gradient(135deg, rgba(16, 22, 40, 0.95), rgba(10, 13, 22, 0.95));
}

.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 140px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

.rc-ai {
  background: radial-gradient(circle at top right, rgba(76, 201, 240, 0.2), transparent 45%),
    linear-gradient(135deg, rgba(12, 19, 34, 0.98), rgba(10, 13, 22, 0.96));
}

.rc-ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.rc-ai .section-head {
  margin-bottom: 20px;
}

.ai-cards {
  gap: 16px;
}

.rc-ai-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(124, 222, 255, 0.25);
  background: rgba(8, 12, 22, 0.7);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.rc-ai-visual img {
  width: min(360px, 80vw);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
}

.rc-ai-visual .ai-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0e111a;
  font-weight: 600;
  font-size: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 auto 20px;
  width: min(820px, 92vw);
  background: rgba(10, 13, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  z-index: 50;
}

.sticky-cta .cta-mascot {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.2));
}

.sticky-cta span {
  font-size: 14px;
  color: var(--muted);
}

.floating-home {
  position: fixed;
  left: 20px;
  bottom: 110px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 13, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  color: var(--text);
  z-index: 60;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.floating-home-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0e111a;
}

.floating-home-label {
  font-size: 13px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 90px;
  background: linear-gradient(
    135deg,
    rgba(10, 13, 22, 0.96) 0%,
    rgba(12, 22, 32, 0.96) 50%,
    rgba(10, 13, 22, 0.96) 100%
  );
  border: 1px solid rgba(124, 222, 255, 0.25);
  border-radius: 18px;
  padding: 16px 18px;
  z-index: 70;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.rc-ai-widget {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 120;
  font-family: 'Space Grotesk', sans-serif;
  transition: opacity 220ms ease, transform 220ms ease;
}

.has-sticky-cta .rc-ai-widget {
  bottom: 140px;
}

.rc-ai-widget.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.rc-ai-launcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(124, 222, 255, 0.35);
  background: rgba(12, 18, 32, 0.92);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.rc-ai-launcher img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(31, 252, 198, 0.2));
}

.rc-ai-panel {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: min(320px, 88vw);
  background: rgba(10, 14, 24, 0.98);
  border: 1px solid rgba(124, 222, 255, 0.25);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  gap: 10px;
  color: var(--text);
}

.rc-ai-panel.open {
  display: flex;
}

.rc-ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rc-ai-header small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.rc-ai-close {
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

.rc-ai-messages {
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
  min-height: 90px;
}

.rc-ai-msg {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.rc-ai-msg.bot {
  background: rgba(124, 222, 255, 0.12);
  border: 1px solid rgba(124, 222, 255, 0.2);
}

.rc-ai-msg.user {
  background: rgba(46, 230, 143, 0.15);
  border: 1px solid rgba(46, 230, 143, 0.2);
  align-self: flex-end;
}

.rc-ai-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rc-ai-quick button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.rc-ai-input {
  display: flex;
  gap: 6px;
}

.rc-ai-input input {
  flex: 1;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 12, 22, 0.8);
  color: var(--text);
  padding: 8px 10px;
}

.rc-ai-input button {
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0e111a;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -25%;
  width: 45%;
  height: 220%;
  background: linear-gradient(
    120deg,
    rgba(0, 255, 255, 0) 0%,
    rgba(0, 255, 255, 0.25) 35%,
    rgba(174, 233, 255, 0.7) 50%,
    rgba(0, 255, 255, 0.25) 65%,
    rgba(0, 255, 255, 0) 100%
  );
  filter: blur(2px);
  mix-blend-mode: screen;
  opacity: 0.85;
  animation: cookie-shine 6s ease-in-out infinite;
  pointer-events: none;
}

.cookie-banner::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cookie-content {
  position: relative;
  z-index: 1;
}

.cookie-content {
  display: grid;
  gap: 10px;
  color: var(--text);
}

.cookie-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

@keyframes cookie-shine {
  0% {
    transform: translateX(-140%) skewX(-10deg);
    opacity: 0.2;
  }
  35% {
    opacity: 0.9;
  }
  60% {
    transform: translateX(180%) skewX(-10deg);
    opacity: 0.2;
  }
  100% {
    transform: translateX(180%) skewX(-10deg);
    opacity: 0.1;
  }
}

.docs {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.docs-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  background: #0a0d16;
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-grid a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.footer-copyright {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.policy h2 {
  margin-top: 24px;
}

.note {
  margin-top: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 12, 24, 0.5);
  color: #f8f9ff;
  padding: 12px 14px;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(112, 154, 255, 0.5);
  border-color: transparent;
}

.contact-form .two-col {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .contact-form .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 720px) {
  .floating-home {
    left: 12px;
    bottom: 140px;
    padding: 8px 12px;
  }
  .floating-home-label {
    display: none;
  }
  .has-sticky-cta .rc-ai-widget {
    bottom: 170px;
  }
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px;
    right: 16px;
    flex-direction: column;
    background: #0a0d16;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 30;
  }
  .hamburger {
    display: flex;
  }
}
