:root {
  --ink: #07090f;
  --paper: #f4f1ea;
  --card: #121722;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(212, 255, 71, 0.22);
  --text-soft: rgba(244, 241, 234, 0.72);
  --text-muted: rgba(244, 241, 234, 0.48);
  --lime: #d4ff47;
  --blue: #73a8ff;
  --danger: #ff7f7f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --container: min(1380px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(115, 168, 255, 0.09), transparent 26%),
    radial-gradient(circle at top left, rgba(212, 255, 71, 0.08), transparent 24%),
    var(--ink);
  color: var(--paper);
}

.home-page {
  background:
    radial-gradient(circle at 74% 12%, rgba(26, 56, 126, 0.22), transparent 34%),
    radial-gradient(circle at 24% 26%, rgba(17, 36, 86, 0.18), transparent 40%),
    linear-gradient(180deg, #01040f 0%, #010611 46%, #01050e 100%);
}

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

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

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

main {
  position: relative;
}

.site-shell {
  min-height: 100vh;
}

.shooting-stars-field {
  position: fixed;
  inset: 0;
  z-index: 18;
  pointer-events: none;
  overflow: hidden;
}

.cursor-cat {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 34;
  font-size: 28px;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-120px, -120px, 0);
  transition: opacity 0.2s ease;
  will-change: transform, opacity;
}

.cursor-cat.is-visible {
  opacity: 1;
}

body.cat-eating-cursor,
body.cat-eating-cursor * {
  cursor: none !important;
}

.cursor-cat.tone-moss {
  filter: hue-rotate(0deg) saturate(1);
}

.cursor-cat.tone-sand {
  filter: hue-rotate(-24deg) saturate(1.05) brightness(1.02);
}

.cursor-cat.tone-charcoal {
  filter: grayscale(0.68) brightness(0.93);
}

.cursor-cat.tone-ash {
  filter: grayscale(0.3) brightness(1.06);
}

.cursor-cat.is-blasting {
  animation: catBlast 0.36s ease-out forwards;
  filter: sepia(0.65) saturate(1.45);
}

.cursor-cat.is-eating {
  animation: catNibble 0.16s steps(2, end) infinite;
}

.cursor-cat.is-eating::after {
  content: "✦";
  position: absolute;
  left: 14px;
  top: 1px;
  font-size: 10px;
  color: #f7ffd4;
  animation: catNibbleSpark 0.22s ease-in-out infinite;
}

.cat-scatter-piece {
  position: fixed;
  z-index: 37;
  pointer-events: none;
  font-size: 12px;
  line-height: 1;
  transform: translate(-50%, -50%);
  animation: catScatterPiece 0.52s cubic-bezier(0.18, 0.84, 0.2, 1) forwards;
  will-change: transform, opacity;
}

@keyframes catBlast {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 0.45;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(0.35);
  }
}

@keyframes catNibble {
  0%,
  100% {
    opacity: 1;
    filter: contrast(1) saturate(1.05);
  }
  50% {
    opacity: 0.78;
    filter: contrast(1.2) saturate(1.35);
  }
}

@keyframes catNibbleSpark {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0) scale(0.7);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) scale(1);
  }
}

@keyframes catScatterPiece {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot)) scale(0.25);
  }
}

.shooting-star {
  position: absolute;
  width: var(--star-tail, 130px);
  height: var(--star-thickness, 1.7px);
  border-radius: 999px;
  opacity: 0;
  transform-origin: 0 50%;
  transform: translate3d(0, 0, 0) rotate(-26deg) scaleX(0.86);
  background:
    linear-gradient(
      90deg,
      rgba(245, 255, 194, 0.98) 0%,
      rgba(212, 255, 71, 0.76) 24%,
      rgba(106, 161, 255, 0.46) 56%,
      rgba(106, 161, 255, 0) 100%
    );
  filter: drop-shadow(0 0 7px rgba(212, 255, 71, 0.28));
  animation: shootingStarFly linear forwards;
}

.shooting-star::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  transform: translate(-10%, -50%);
  background: radial-gradient(circle, rgba(253, 255, 226, 0.98), rgba(212, 255, 71, 0.72));
  box-shadow: 0 0 14px rgba(212, 255, 71, 0.4);
}

@keyframes shootingStarFly {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-26deg) scaleX(0.86);
  }
  10% {
    opacity: 1;
  }
  76% {
    opacity: 0.34;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--travel-x), var(--travel-y), 0) rotate(-26deg) scaleX(1.06);
  }
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(7, 9, 15, 0.95), rgba(7, 9, 15, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.home-page .site-nav {
  background:
    linear-gradient(
      to bottom,
      rgba(2, 10, 28, 0.95),
      rgba(2, 9, 24, 0.9) 60%,
      rgba(2, 8, 19, 0.74)
    );
  border-bottom: 0;
}

.site-nav-inner,
.section,
.footer-inner {
  width: var(--container);
  margin: 0 auto;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-tag {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.1;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 3px;
  border-radius: 999px;
}

.nav-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 999px;
  border: 1px solid rgba(212, 255, 71, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transform: translate(0, 0);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    width 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    height 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.2s ease;
}

.nav-toggle-slider.is-no-animate {
  transition: none;
}

.nav-links.is-toggle-ready .nav-toggle-slider {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(212, 255, 71, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle-lines {
  display: grid;
  gap: 5px;
}

.nav-toggle-lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-link {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--paper);
}

.nav-links:not(.is-toggle-ready) .nav-link:hover,
.nav-links:not(.is-toggle-ready) .nav-link.is-active {
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.btn-primary:hover,
.btn-secondary:hover,
.form-button:hover,
.subscription-action:hover,
.cycle-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(212, 255, 71, 0.2);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 8% auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(212, 255, 71, 0.18) 0%, rgba(212, 255, 71, 0.04) 42%, transparent 72%);
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
}

.hero .section,
.page-hero .section {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 92px 0 72px;
}

.home-hero {
  padding: 62px 0 52px;
}

.home-hero::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(20, 46, 108, 0.14), transparent 40%),
    radial-gradient(circle at 80% 24%, rgba(34, 70, 151, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(2, 8, 20, 0.8), rgba(2, 7, 18, 0.92));
  mask-image: none;
}

.home-hero::after {
  inset: 18% 12% auto auto;
  width: 320px;
  height: 320px;
  background:
    radial-gradient(circle, rgba(54, 96, 194, 0.16) 0%, rgba(54, 96, 194, 0.05) 52%, transparent 74%);
  opacity: 0.78;
}

.page-hero {
  padding: 72px 0 48px;
}

.hero-grid,
.page-grid,
.story-grid,
.product-grid,
.stats-grid,
.modules-grid,
.contact-grid,
.value-grid,
.service-grid,
.rollout-grid,
.faq-grid,
.subscription-layout,
.plan-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: end;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: 40px;
}

.home-hero-copy .eyebrow {
  border-color: rgba(212, 255, 71, 0.36);
  background: rgba(11, 18, 34, 0.9);
}

.home-hero-copy .hero-title {
  margin-top: 20px;
  font-size: clamp(2.85rem, 5.5vw, 5.2rem);
  line-height: 0.98;
}

.home-hero-copy .hero-title .ghost {
  color: transparent;
  -webkit-text-stroke: 0;
  background-image: linear-gradient(100deg, #6e9bff 0%, #58d6ff 44%, #5ef7b2 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.home-hero-copy .hero-copy {
  max-width: 570px;
  margin-top: 24px;
  color: rgba(244, 241, 234, 0.84);
}

.home-hero-copy .hero-actions {
  margin-top: 30px;
}

.home-hero-copy .btn-primary {
  box-shadow: 0 14px 38px rgba(212, 255, 71, 0.22);
}

.home-hero-copy .btn-secondary {
  background: rgba(11, 18, 34, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
}

.home-visual-wrap {
  position: relative;
  min-height: 0;
  display: grid;
  gap: 16px;
  justify-items: center;
  isolation: isolate;
}

.home-visual-wrap::before {
  content: "";
  position: absolute;
  inset: 4% -7% 62px -7%;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 38%, rgba(58, 111, 236, 0.44), rgba(28, 62, 150, 0.22) 48%, transparent 76%);
  filter: blur(26px);
  opacity: 0.92;
  pointer-events: none;
  z-index: -1;
}

.home-visual-image {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: none;
  box-shadow:
    0 0 40px rgba(50, 99, 221, 0.42),
    0 0 90px rgba(33, 73, 176, 0.34);
}

.home-visual-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgba(226, 237, 255, 0.94);
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: none;
  backdrop-filter: none;
}

.home-note-icon {
  color: #f0d35e;
  font-size: 0.78rem;
  line-height: 1;
}

.home-note-text {
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.008em;
  color: rgba(230, 240, 255, 0.94);
}

.page-grid,
.story-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.xcool-page-grid {
  grid-template-columns: minmax(0, 1fr);
}

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

.stats-grid,
.modules-grid,
.service-grid,
.rollout-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.subscription-layout {
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
  gap: 32px;
}

.plan-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 255, 71, 0.28);
  background: rgba(212, 255, 71, 0.05);
  color: var(--lime);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(212, 255, 71, 0.6);
}

.hero-title,
.page-title,
.section-title,
.card-title,
.pricing-title {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.05em;
  margin: 0;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.4vw, 6.6rem);
  line-height: 0.95;
  margin-top: 26px;
}

.hero-title .ghost,
.page-title .ghost {
  color: var(--lime);
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 0 18px rgba(212, 255, 71, 0.3);
}

.page-title {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.98;
  margin-top: 20px;
}

.hero-copy,
.page-copy,
.section-copy,
.card-copy,
.faq-answer,
.timeline-copy,
.subscription-copy,
.contact-copy,
.footer-copy {
  color: var(--text-soft);
  line-height: 1.78;
}

.hero-copy {
  max-width: 620px;
  margin-top: 26px;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.xcool-hero-tags {
  margin-top: 24px;
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, rgba(13, 26, 52, 0.42), rgba(8, 18, 37, 0.3));
  box-shadow:
    inset 0 1px 0 rgba(181, 210, 255, 0.2),
    0 8px 26px rgba(2, 8, 22, 0.36);
  backdrop-filter: blur(8px);
}

.xcool-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(233, 241, 255, 0.96);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.xcool-hero-tag svg {
  width: 16px;
  height: 16px;
  fill: #d4ff47;
  filter: drop-shadow(0 0 5px rgba(212, 255, 71, 0.3));
}

.xcool-hero-divider {
  width: 1px;
  height: 14px;
  background: rgba(151, 183, 255, 0.34);
  border-radius: 999px;
}

.scroll-down-cue {
  position: absolute;
  left: 50%;
  top: calc(100vh - 170px);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d4ff47;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 10px rgba(212, 255, 71, 0.45));
  transition: transform 0.2s ease, color 0.2s ease, filter 0.2s ease;
  animation: scrollCueBounce 1.1s ease-in-out infinite;
}

.scroll-down-cue:hover {
  color: #ecff9b;
  filter: drop-shadow(0 0 14px rgba(212, 255, 71, 0.58));
}

.scroll-down-cue svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@keyframes scrollCueBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.btn-primary,
.btn-secondary,
.subscription-action,
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-primary,
.form-button,
.subscription-action {
  background: var(--lime);
  color: var(--ink);
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
}

.btn-secondary:hover {
  border-color: rgba(212, 255, 71, 0.26);
}

.panel,
.card,
.stat-card,
.module-card,
.service-card,
.timeline-card,
.contact-card,
.cycle-chip,
.plan-card,
.faq-card,
.rollout-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-panel,
.page-panel,
.subscription-panel {
  padding: 28px;
}

.hero-panel {
  background:
    radial-gradient(circle at top right, rgba(212, 255, 71, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.everest-panel {
  padding: 0;
  min-height: 440px;
  background: transparent;
  border: 0;
  box-shadow: none;
  align-self: start;
}

.everest-scene {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 330px;
  overflow: visible;
  background: transparent;
}

.everest-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 20%, rgba(212, 255, 71, 0.28), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%);
  pointer-events: none;
}

.everest-art {
  position: absolute;
  right: 2%;
  top: 6px;
  width: 74%;
  max-width: 360px;
  transform: none;
  object-fit: contain;
  border-radius: 18px;
  opacity: 0.98;
  mix-blend-mode: normal;
  filter: grayscale(0.98) brightness(0.96) contrast(1.04);
}

.hero-panel h2,
.page-panel h2,
.subscription-panel h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  letter-spacing: -0.04em;
  font-size: 1.7rem;
}

.hero-panel p,
.page-panel p,
.subscription-panel p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.section {
  padding: 32px 0 92px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-copy {
  max-width: 520px;
  margin: 12px 0 0;
}

.bullet-list,
.plan-list,
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.bullet-list li,
.plan-list li,
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
  line-height: 1.6;
}

.bullet-list li::before,
.plan-list li::before,
.feature-list li::before {
  content: "01";
  flex: none;
  width: 28px;
  color: var(--lime);
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
}

.bullet-list li:nth-child(2)::before,
.plan-list li:nth-child(2)::before,
.feature-list li:nth-child(2)::before { content: "02"; }
.bullet-list li:nth-child(3)::before,
.plan-list li:nth-child(3)::before,
.feature-list li:nth-child(3)::before { content: "03"; }
.bullet-list li:nth-child(4)::before,
.plan-list li:nth-child(4)::before,
.feature-list li:nth-child(4)::before { content: "04"; }
.bullet-list li:nth-child(5)::before,
.plan-list li:nth-child(5)::before,
.feature-list li:nth-child(5)::before { content: "05"; }

.card,
.service-card,
.module-card,
.rollout-card,
.faq-card,
.contact-card,
.timeline-card,
.stat-card {
  padding: 28px;
}

.card-title {
  font-size: 1.45rem;
  line-height: 1.05;
}

.card-copy {
  margin-top: 14px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.meta-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-soft);
  font-size: 0.85rem;
}

.product-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 38%, transparent 62%, rgba(255, 255, 255, 0.03));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.22;
}

.product-card.product-xcool::after {
  background: rgba(212, 255, 71, 0.42);
}

.product-card.product-snapit::after {
  background: rgba(115, 168, 255, 0.48);
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.product-card:hover::before,
.product-card:focus-visible::before {
  opacity: 1;
}

.product-card:focus-visible {
  outline: 2px solid rgba(212, 255, 71, 0.36);
  outline-offset: 2px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
  color: var(--paper);
  font-weight: 600;
}

.product-link span {
  color: var(--lime);
}

.product-card .product-name {
  margin: 6px 0 0;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
  color: rgba(246, 247, 240, 0.98);
}

.product-card.coming-soon .product-name {
  color: #dbe5fb;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.status-pill.live {
  color: var(--lime);
  border: 1px solid rgba(212, 255, 71, 0.22);
  background: rgba(212, 255, 71, 0.06);
}

.status-pill.live::before {
  background: var(--lime);
  box-shadow: 0 0 12px rgba(212, 255, 71, 0.45);
}

.status-pill.soon {
  color: #c7d4f5;
  border: 1px solid rgba(115, 168, 255, 0.22);
  background: rgba(115, 168, 255, 0.08);
}

.status-pill.soon::before {
  background: var(--blue);
  box-shadow: 0 0 12px rgba(115, 168, 255, 0.35);
}

.product-card.coming-soon {
  border-color: rgba(115, 168, 255, 0.14);
}

.product-card.coming-soon .product-link {
  color: #c7d4f5;
}

.product-card.coming-soon .product-link span {
  color: var(--blue);
}

.stat-value {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--lime);
  letter-spacing: -0.05em;
}

.stat-label {
  margin-top: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.timeline-card {
  display: grid;
  gap: 10px;
}

.timeline-step {
  color: var(--lime);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.timeline-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.timeline-copy {
  margin: 0;
}

.module-card,
.service-card,
.faq-card,
.rollout-card {
  height: 100%;
}

.module-icon,
.service-icon,
.rollout-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 18px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.module-icon {
  background: rgba(212, 255, 71, 0.12);
  color: var(--lime);
  border: 1px solid rgba(212, 255, 71, 0.18);
}

.module-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon,
.rollout-icon {
  background: rgba(115, 168, 255, 0.12);
  color: var(--blue);
  border: 1px solid rgba(115, 168, 255, 0.18);
}

.subscription-panel {
  position: sticky;
  top: 108px;
  height: fit-content;
}

.subscription-copy {
  margin-top: 12px;
}

.subscription-summary {
  margin-top: 26px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 255, 71, 0.16);
  background: rgba(212, 255, 71, 0.06);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  will-change: transform;
}

.subscription-summary.is-updated {
  animation:
    subscriptionPulse 0.72s cubic-bezier(0.2, 1, 0.3, 1),
    subscriptionShake 0.46s ease-in-out;
}

.subscription-summary-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.subscription-summary-value {
  margin-top: 10px;
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.subscription-summary-copy {
  margin-top: 8px;
  color: var(--text-soft);
}

.subscription-feedback {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(212, 255, 71, 0.26);
  background: rgba(212, 255, 71, 0.1);
  color: #f3ffd0;
  font-size: 0.86rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.32s ease, max-height 0.32s ease, margin-top 0.32s ease;
}

.subscription-feedback.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  max-height: 96px;
}

@keyframes subscriptionPulse {
  0% {
    border-color: rgba(212, 255, 71, 0.16);
    box-shadow: none;
  }
  45% {
    border-color: rgba(212, 255, 71, 0.5);
    box-shadow: 0 16px 40px rgba(212, 255, 71, 0.18);
  }
  100% {
    border-color: rgba(212, 255, 71, 0.16);
    box-shadow: none;
  }
}

@keyframes subscriptionShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

.xcool-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.xcool-plan-card {
  position: relative;
  padding: 24px 22px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top, rgba(67, 112, 222, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(11, 18, 36, 0.96), rgba(8, 13, 25, 0.98));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 14px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.xcool-plan-card.tone-lite {
  border-color: rgba(93, 236, 132, 0.66);
  box-shadow:
    0 0 0 1px rgba(74, 205, 119, 0.24),
    0 0 28px rgba(74, 205, 119, 0.28);
}

.xcool-plan-card.tone-standard {
  border-color: rgba(83, 177, 255, 0.74);
  box-shadow:
    0 0 0 1px rgba(83, 177, 255, 0.28),
    0 0 34px rgba(83, 177, 255, 0.34);
  padding-top: 56px;
}

.xcool-plan-card.tone-premium {
  border-color: rgba(167, 109, 255, 0.74);
  box-shadow:
    0 0 0 1px rgba(167, 109, 255, 0.26),
    0 0 32px rgba(167, 109, 255, 0.34);
}

.xcool-plan-badge {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: rgba(240, 238, 206, 0.88);
  font-weight: 700;
}

.xcool-plan-badge.is-ribbon-badge {
  position: absolute;
  top: 12px;
  left: -10px;
  padding: 8px 18px 8px 20px;
  border-radius: 6px 6px 6px 0;
  border: 1px solid rgba(112, 82, 24, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #f8e592 0%, #ebc96f 48%, #cea24b 100%);
  color: #3c2a06;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.78rem;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 245, 203, 0.8);
}

.xcool-plan-badge.is-ribbon-badge::after {
  content: "";
  position: absolute;
  top: 0;
  right: -13px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 13px solid #d8ae57;
}

.xcool-plan-badge.is-ribbon-badge::before {
  content: "";
  position: absolute;
  left: 1px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid #8a6c2c;
  border-left: 6px solid transparent;
}

.xcool-plan-offer {
  margin: 0;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(212, 255, 71, 0.34);
  background: rgba(212, 255, 71, 0.1);
  color: #efffc2;
  font-size: 0.82rem;
  line-height: 1.35;
}

.xcool-plan-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 2.05rem;
  letter-spacing: -0.04em;
}

.xcool-plan-price {
  font-family: "Syne", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
  letter-spacing: -0.05em;
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
}

.xcool-plan-price small {
  margin-left: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.xcool-plan-own-db-price {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: rgba(221, 244, 255, 0.98);
}

.xcool-plan-own-db-price small {
  margin-left: 8px;
  font-family: "DM Sans", sans-serif;
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.xcool-plan-own-db-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(171, 201, 246, 0.22);
}

.xcool-plan-points {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
  counter-reset: xcoolPlanPoint;
}

.xcool-plan-points li {
  position: relative;
  padding-left: 30px;
  color: rgba(232, 236, 250, 0.92);
  line-height: 1.45;
  font-size: 0.93rem;
  overflow-wrap: anywhere;
}

.xcool-plan-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #9eea66;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.xcool-plan-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(180deg, #b7ff70, #8fe94f);
  color: #0d111b;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.xcool-plan-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(171, 244, 84, 0.36);
}

.tone-premium .xcool-plan-action {
  background: linear-gradient(180deg, #b883ff, #9056f1);
  color: #f4f1ea;
}

.tone-premium .xcool-plan-action:hover {
  box-shadow: 0 10px 26px rgba(166, 108, 255, 0.38);
}

.plan-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.plan-detail-back {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(166, 190, 245, 0.92);
  font-size: 0.88rem;
}

.plan-detail-price {
  margin-top: 24px;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
}

.plan-detail-price small {
  font-family: "DM Sans", sans-serif;
  font-size: 0.96rem;
  color: var(--text-soft);
  letter-spacing: 0;
}

.plan-detail-offer {
  margin: 16px 0 0;
  width: min(100%, 58ch);
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid rgba(212, 255, 71, 0.24);
  background:
    radial-gradient(circle at top right, rgba(212, 255, 71, 0.1), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  color: rgba(236, 244, 210, 0.94);
  line-height: 1.5;
}

.plan-detail-own-db {
  margin-top: 14px;
  width: min(100%, 58ch);
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(115, 168, 255, 0.22);
  background:
    radial-gradient(circle at top right, rgba(115, 168, 255, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.plan-detail-own-db-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(201, 222, 255, 0.74);
  font-size: 0.73rem;
}

.plan-detail-own-db-value {
  margin-top: 8px;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: rgba(239, 244, 255, 0.96);
}

.plan-detail-own-db-copy {
  margin: 6px 0 0;
  color: rgba(216, 228, 247, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(171, 201, 246, 0.24);
}

.plan-detail-own-db-note {
  margin: 8px 0 0;
  color: rgba(197, 214, 239, 0.65);
  font-size: 0.78rem;
  line-height: 1.4;
}

.plan-request-stack {
  margin-top: 30px;
  width: 100%;
  max-width: none;
}

.plan-request-actions {
  margin-top: 0;
}

.plan-detail-disclaimer {
  margin: 18px 0 0;
  width: min(100%, 58ch);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 127, 127, 0.24);
  background:
    radial-gradient(circle at top right, rgba(255, 127, 127, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  color: rgba(245, 222, 222, 0.9);
  font-size: 0.88rem;
  line-height: 1.5;
}

.feature-list.plan-detail-list {
  counter-reset: planDetailPoint;
  margin-top: 30px;
}

.feature-list.plan-detail-list li {
  overflow-wrap: anywhere;
}

.feature-list.plan-detail-list li::before {
  content: "\2713";
  width: 18px;
  color: #9eea66;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
}

.plan-facts-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.plan-fact-card {
  min-height: 150px;
}

.plan-fact-value {
  margin-top: 16px;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  line-height: 1.28;
  color: rgba(234, 240, 255, 0.96);
}

.plan-detail-checks {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.plan-detail-checks li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.54;
}

.plan-detail-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #9eea66;
  font-weight: 700;
}

.plan-card {
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.85fr);
  gap: 32px;
  min-height: 100%;
  align-items: stretch;
}

.plan-card:hover,
.plan-card.is-selected {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.plan-card.is-featured {
  background:
    radial-gradient(circle at top right, rgba(212, 255, 71, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 255, 71, 0.22);
  color: var(--lime);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  width: fit-content;
  max-width: max-content;
  justify-self: start;
  align-self: start;
}

.plan-header {
  display: block;
  margin-top: 0;
}

.pricing-title {
  font-size: 1.6rem;
  line-height: 1;
}

.pricing-copy {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 34ch;
}

.plan-price {
  text-align: left;
  margin-top: 0;
}

.plan-price-main {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  letter-spacing: -0.05em;
}

.plan-price-sub {
  color: var(--text-muted);
  margin-top: 6px;
  font-size: 0.86rem;
}

.plan-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 0 0;
}

.plan-footer {
  display: grid;
  gap: 14px;
  align-content: start;
}

.plan-installment {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.plan-main {
  display: grid;
  gap: 20px;
  align-content: start;
  padding: 6px 0;
}

.plan-side {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.plan-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.plan-select:hover,
.plan-select.is-selected {
  border-color: rgba(212, 255, 71, 0.28);
  background: rgba(212, 255, 71, 0.09);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: rgba(212, 255, 71, 0.38);
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-line {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.contact-value {
  margin-top: 8px;
  color: var(--paper);
  line-height: 1.7;
}

.faq-question {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.faq-answer {
  margin: 12px 0 0;
}

.tight-copy {
  max-width: 46ch;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-grid,
  .story-grid,
  .contact-grid,
  .product-grid,
  .stats-grid,
  .modules-grid,
  .service-grid,
  .rollout-grid,
  .faq-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .xcool-plan-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-detail-layout {
    grid-template-columns: 1fr;
  }

  .plan-facts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .subscription-panel {
    position: static;
  }

  .subscription-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) and (min-width: 761px) {
  :root {
    --container: min(100vw - 52px, 100%);
  }

  .site-nav-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: auto;
    padding: 14px 0;
    position: relative;
    display: grid;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    order: 3;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 15, 22, 0.98);
    box-shadow: var(--shadow);
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    z-index: 50;
  }

  .nav-toggle-slider {
    display: none;
  }

  .site-nav.is-open .nav-links {
    display: grid;
  }

  .nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
  }

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

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

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

  .page-hero {
    padding-top: 56px;
  }

  .section {
    padding-bottom: 76px;
  }

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

  .plan-card {
    grid-template-columns: 1fr;
  }

  .home-visual-wrap,
  .everest-panel,
  .everest-art,
  .shooting-stars-field {
    display: none;
  }

  .scroll-down-cue {
    top: calc(100vh - 152px);
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 32px, 100%);
  }

  .site-nav-inner,
  .footer-inner,
  .section-head,
  .plan-header {
    display: grid;
  }

  .site-nav-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: auto;
    padding: 14px 0;
    position: relative;
  }

  .brand-tag {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    order: 3;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 15, 22, 0.98);
    box-shadow: var(--shadow);
    grid-template-columns: 1fr;
    gap: 6px;
    z-index: 50;
  }

  .nav-toggle-slider {
    display: none;
  }

  .site-nav.is-open .nav-links {
    display: grid;
  }

  .nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .hero,
  .page-hero {
    padding-top: 48px;
  }

  .home-hero {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .home-hero-copy .hero-title {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .home-hero-copy .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .home-hero-copy .btn-primary,
  .home-hero-copy .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .scroll-down-cue {
    top: calc(100vh - 138px);
  }

  .xcool-hero-tags {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 16px;
    row-gap: 10px;
    column-gap: 10px;
  }

  .xcool-hero-divider {
    display: none;
  }

  .xcool-plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-facts-grid {
    grid-template-columns: 1fr;
  }

  .xcool-plan-card {
    padding: 20px;
  }

  .xcool-plan-card.tone-standard {
    padding-top: 50px;
  }

  .xcool-plan-title {
    font-size: 1.8rem;
  }

  .xcool-plan-price {
    font-size: 2.1rem;
  }

  .product-card .product-name {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
    line-height: 0.98;
  }

  .page-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-hero .hero-actions .btn-primary,
  .page-hero .hero-actions .btn-secondary {
    width: 100%;
  }

  .plan-request-stack {
    max-width: 100%;
  }

  .plan-request-stack .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .plan-detail-price {
    font-size: clamp(2rem, 8.4vw, 2.5rem);
  }

  .plan-fact-card {
    min-height: 0;
  }

  .plan-fact-value {
    font-size: 1.08rem;
  }

  .home-visual-wrap {
    display: none;
  }

  .everest-panel {
    display: none;
  }

  .everest-scene {
    min-height: 0;
  }

  .everest-art {
    display: none;
  }

  .section {
    padding-bottom: 68px;
  }

  .hero-grid,
  .page-grid,
  .story-grid,
  .contact-grid,
  .subscription-layout,
  .product-grid,
  .stats-grid,
  .modules-grid,
  .service-grid,
  .rollout-grid,
  .faq-grid,
  .value-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-title {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .page-title {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .card,
  .service-card,
  .module-card,
  .rollout-card,
  .faq-card,
  .contact-card,
  .timeline-card,
  .stat-card,
  .hero-panel,
  .page-panel,
  .subscription-panel,
  .plan-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shooting-stars-field {
    display: none;
  }

  .cursor-cat {
    display: none;
  }

  .scroll-down-cue {
    animation: none;
  }
}
