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

:root {
  --bg: #050608;
  --bg-soft: #090c11;
  --panel: rgba(12, 15, 21, 0.84);
  --panel-strong: rgba(10, 13, 19, 0.92);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f7fb;
  --text-soft: #dce3ee;
  --muted: #8e9cb0;
  --muted-strong: #aab5c5;
  --accent: #4da3ff;
  --accent-strong: #1f7fff;
  --accent-soft: #7dd1ff;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(47, 108, 255, 0.14), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(124, 213, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #050608 0%, #06080b 42%, #040506 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(77, 163, 255, 0.28);
}

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

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

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

[id] {
  scroll-margin-top: 120px;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.cursor-glow {
  position: fixed;
  top: var(--cursor-y);
  left: var(--cursor-x);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(125, 209, 255, 0.2) 0%, rgba(77, 163, 255, 0.14) 18%, rgba(77, 163, 255, 0.08) 36%, rgba(77, 163, 255, 0.03) 56%, transparent 72%);
  filter: blur(18px);
  mix-blend-mode: screen;
  transition: opacity 0.28s ease;
  will-change: top, left, opacity;
}

.cursor-glow::after {
  content: "";
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(125, 209, 255, 0.08) 58%, transparent 74%);
  filter: blur(8px);
}

body.has-cursor-glow .cursor-glow {
  opacity: 1;
}

body.is-touch-device .cursor-glow {
  display: none;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1), transparent 88%);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  z-index: -3;
  animation: driftOrb 18s ease-in-out infinite;
}

.bg-orb-a {
  top: 9vh;
  left: -8vw;
  width: 32vw;
  height: 32vw;
  min-width: 240px;
  min-height: 240px;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.22), transparent 68%);
}

.bg-orb-b {
  top: 42vh;
  right: -12vw;
  width: 34vw;
  height: 34vw;
  min-width: 280px;
  min-height: 280px;
  background: radial-gradient(circle, rgba(126, 154, 255, 0.16), transparent 68%);
  animation-delay: -6s;
}

.bg-orb-c {
  bottom: -12vh;
  left: 24vw;
  width: 26vw;
  height: 26vw;
  min-width: 220px;
  min-height: 220px;
  background: radial-gradient(circle, rgba(125, 209, 255, 0.12), transparent 68%);
  animation-delay: -10s;
}

.site-header,
.section,
.site-footer {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(6, 8, 12, 0.7);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #1c7fff, #7ec9ff);
  box-shadow:
    0 10px 26px rgba(31, 127, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: #fff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition:
    color 0.28s ease,
    transform 0.28s ease;
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-pill {
  border: 0;
  padding: 9px 13px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
}

.lang-pill:hover {
  color: var(--text);
}

.lang-pill.is-active {
  background: linear-gradient(145deg, rgba(77, 163, 255, 0.22), rgba(77, 163, 255, 0.12));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -200% auto auto -20%;
  width: 42%;
  height: 420%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(16deg) translateX(-180%);
  transition: transform 0.8s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  transform: rotate(16deg) translateX(420%);
}

.btn-demo {
  background: linear-gradient(145deg, #208bff 0%, #62b4ff 48%, #3368ff 100%);
  color: #fff;
  box-shadow:
    0 16px 38px rgba(31, 127, 255, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-demo:hover {
  box-shadow:
    0 20px 42px rgba(31, 127, 255, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.btn-small {
  padding: 12px 16px;
  font-size: 0.92rem;
}

.btn-large {
  min-height: 54px;
  padding-inline: 26px;
}

.btn-demo-emphasis {
  min-width: 180px;
}

.section {
  position: relative;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 56px;
  padding-top: 78px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 20px rgba(77, 163, 255, 0.6);
}

.hero-title {
  margin: 22px 0 20px;
  max-width: 12ch;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-title span {
  background: linear-gradient(110deg, #ffffff 0%, #cbe6ff 35%, #62b4ff 72%, #627dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 34px;
}

.proof-chip,
.showcase-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

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

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stat-value {
  margin-bottom: 10px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stat-label {
  color: var(--muted);
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
}

.hero-visual__halo {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(77, 163, 255, 0.22) 0%, rgba(77, 163, 255, 0.06) 35%, transparent 68%);
  filter: blur(22px);
  animation: pulseHalo 7s ease-in-out infinite;
}

.hero-device {
  position: relative;
  width: min(590px, 100%);
  height: 650px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.screen-card,
.floating-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 13, 19, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.screen-card {
  position: absolute;
  border-radius: 28px;
}

.primary-screen {
  inset: 54px 6px 106px 34px;
  transform: rotate(-5.5deg);
}

.screen-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  color: var(--muted);
  font-size: 0.88rem;
}

.screen-status {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(77, 163, 255, 0.24);
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.12);
  color: #d9ebff;
}

.screen-image {
  width: 100%;
  height: auto;
}

.floating-card {
  position: absolute;
  width: 252px;
  border-radius: 22px;
  animation: floatCard 8s ease-in-out infinite;
}

.mini-card__label {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
}

.floating-card-left {
  top: 8px;
  left: -26px;
  transform: rotate(7deg);
  animation-delay: -2s;
}

.floating-card-right {
  right: -8px;
  bottom: 42px;
  transform: rotate(9deg);
  animation-delay: -4.5s;
}

.signal-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(7, 10, 15, 0.84);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  color: var(--text-soft);
  font-size: 0.88rem;
  backdrop-filter: blur(14px);
}

.signal-pill-a {
  top: 124px;
  right: 20px;
  animation: driftY 6.5s ease-in-out infinite;
}

.signal-pill-b {
  bottom: 18px;
  left: 38px;
  animation: driftY 7.2s ease-in-out infinite reverse;
}

.signal-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, #38ffb5, #4da3ff);
  box-shadow: 0 0 18px rgba(56, 255, 181, 0.48);
}

.ticker-section {
  padding: 6px 0 24px;
}

.ticker-mask {
  width: min(1220px, calc(100% - 20px));
  margin-inline: auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: ticker 28s linear infinite;
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  white-space: nowrap;
}

.section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-title {
  margin: 16px 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-text {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.7;
}

.comparison-grid,
.workflow-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

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

.comparison-card,
.workflow-card,
.pricing-card,
.feature-card,
.showcase-stage,
.faq-item,
.cta-panel {
  box-shadow: var(--shadow);
}

.comparison-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
}

.comparison-card-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.comparison-card-accent {
  background: linear-gradient(180deg, rgba(77, 163, 255, 0.16), rgba(18, 21, 28, 0.92) 40%, rgba(8, 10, 14, 0.96));
  border-color: rgba(77, 163, 255, 0.22);
}

.comparison-badge,
.pricing-badge,
.showcase-label {
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
}

.comparison-card h3,
.pricing-card h3,
.workflow-card h3 {
  margin: 18px 0 18px;
  font-size: 1.4rem;
  line-height: 1.18;
}

.comparison-list,
.pricing-list {
  display: grid;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li,
.pricing-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  line-height: 1.6;
}

.comparison-list li::before,
.pricing-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 20px rgba(77, 163, 255, 0.34);
  transform: translateY(-50%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  padding: 28px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.22), transparent 68%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 163, 255, 0.22);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

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

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.feature-card p,
.workflow-card p,
.pricing-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

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

.workflow-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.workflow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(77, 163, 255, 0.24);
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.12);
  color: #dceeff;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.showcase-tabs {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 12px;
}

.showcase-tab {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.showcase-tab strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.showcase-tab span {
  display: block;
  color: inherit;
  line-height: 1.5;
  font-size: 0.92rem;
}

.showcase-tab:hover {
  color: var(--text-soft);
  border-color: rgba(255, 255, 255, 0.16);
}

.showcase-tab.is-active {
  transform: translateX(6px);
  border-color: rgba(77, 163, 255, 0.28);
  background: linear-gradient(180deg, rgba(77, 163, 255, 0.16), rgba(255, 255, 255, 0.04));
  color: var(--text-soft);
}

.showcase-stage {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.showcase-stage::before {
  content: "";
  position: absolute;
  top: -22%;
  left: -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.16), transparent 68%);
  filter: blur(12px);
}

.showcase-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: #090b0f;
}

.showcase-frame__shine {
  position: absolute;
  inset: 0 auto 0 -30%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-18deg);
  animation: shine 5.5s linear infinite;
}

.showcase-image {
  width: 100%;
  transition:
    opacity 0.36s ease,
    transform 0.36s ease;
}

.showcase-image.is-swapping {
  opacity: 0.18;
  transform: scale(0.985);
}

.showcase-copy {
  position: relative;
  padding-top: 22px;
}

.showcase-copy h3 {
  margin: 14px 0 12px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.72rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.showcase-copy p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.7;
  max-width: 760px;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.showcase-progress {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.showcase-progress span {
  flex: 1;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.showcase-progress span::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.25s ease;
}

.showcase-progress span.is-active::after {
  width: 100%;
}

.pricing-section {
  padding-bottom: 76px;
}

.pricing-banner {
  margin-bottom: 22px;
  border: 1px solid rgba(77, 163, 255, 0.22);
  border-radius: 20px;
  background: rgba(77, 163, 255, 0.08);
  padding: 18px 20px;
  color: #dcedff;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.pricing-card-featured {
  transform: translateY(-8px);
  border-color: rgba(77, 163, 255, 0.28);
  background: linear-gradient(180deg, rgba(77, 163, 255, 0.18), rgba(18, 21, 28, 0.94) 42%, rgba(8, 10, 14, 0.98));
}

.pricing-badge-strong {
  border: 1px solid rgba(77, 163, 255, 0.24);
  background: rgba(77, 163, 255, 0.12);
  color: #dceeff;
}

.pricing-price {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pricing-list {
  flex: 1;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0 24px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.06rem;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
  transition:
    color 0.28s ease,
    transform 0.28s ease;
}

.faq-item[open] summary::after {
  content: "-";
  color: var(--text);
}

.faq-item p {
  max-width: 900px;
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(77, 163, 255, 0.24);
  border-radius: 34px;
  background: linear-gradient(150deg, rgba(77, 163, 255, 0.18), rgba(18, 21, 28, 0.94) 34%, rgba(8, 10, 14, 0.98));
}

.cta-panel::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -24%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 209, 255, 0.26), transparent 66%);
  filter: blur(22px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 64px;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p {
  margin: 0.35rem 0 0;
}

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

.footer-links a {
  transition: color 0.28s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes driftOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(16px, -22px, 0) scale(1.08);
  }
}

@keyframes pulseHalo {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.78;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(var(--float-rotation, 0deg));
  }

  50% {
    transform: translateY(-14px) rotate(var(--float-rotation, 0deg));
  }
}

.floating-card-left {
  --float-rotation: 7deg;
}

.floating-card-right {
  --float-rotation: 9deg;
}

@keyframes driftY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes shine {
  0% {
    transform: skewX(-18deg) translateX(-180%);
  }

  100% {
    transform: skewX(-18deg) translateX(520%);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-visual {
    min-height: 680px;
  }

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

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

  .showcase-tabs {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px 18px;
  }

  .site-nav {
    display: none;
  }

  .stats-grid,
  .comparison-grid,
  .workflow-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    transform: none;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-device {
    height: 580px;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 24px, 1200px);
  }

  .site-header {
    top: 12px;
    margin-top: 12px;
    border-radius: 20px;
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    gap: 38px;
    padding-top: 46px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 16vw, 4.2rem);
    max-width: 100%;
  }

  .hero-text,
  .section-text {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-device {
    height: 430px;
  }

  .primary-screen {
    inset: 42px 0 72px 16px;
  }

  .floating-card {
    width: 170px;
  }

  .floating-card-left {
    left: -10px;
    top: 0;
  }

  .floating-card-right {
    right: -6px;
    bottom: 24px;
  }

  .signal-pill {
    display: none;
  }

  .feature-grid,
  .showcase-tabs {
    grid-template-columns: 1fr;
  }

  .showcase-stage,
  .cta-panel,
  .comparison-card,
  .workflow-card,
  .pricing-card,
  .feature-card {
    border-radius: 24px;
  }

  .showcase-stage,
  .cta-panel {
    padding: 22px;
  }

  .section {
    padding: 70px 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 42px;
  }

  .cursor-glow {
    width: 300px;
    height: 300px;
  }
}

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

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

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