/* ─── Design Tokens ─── */
:root {
  --bg: #05040a;
  --bg-elevated: #0a0912;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-hover: rgba(255, 255, 255, 0.055);
  --text: #f0ecfa;
  --muted: #8b87a1;
  --purple: #a855f7;
  --pink: #ec4899;
  --accent-glow: rgba(168, 85, 247, 0.4);
  --line: rgba(255, 255, 255, 0.07);
  --line-hover: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-highlight: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.5);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ─── Noise Texture ─── */
.noise-overlay {
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ─── Cursor Glow ─── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

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

/* ─── Ambient Glows ─── */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}

.glow-one {
  width: 600px;
  height: 600px;
  background: var(--purple);
  top: -200px;
  right: -150px;
  animation: drift 20s ease-in-out infinite alternate;
}

.glow-two {
  width: 400px;
  height: 400px;
  background: var(--pink);
  left: -200px;
  top: 60vh;
  animation: drift 25s ease-in-out infinite alternate-reverse;
}

.glow-three {
  width: 300px;
  height: 300px;
  background: #6366f1;
  right: 20%;
  bottom: -100px;
  opacity: 0.08;
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

/* ─── Navigation ─── */
.nav {
  height: 80px;
  max-width: 1240px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(to bottom, rgba(5, 4, 10, 0.8), rgba(5, 4, 10, 0.4));
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 700 16px "Space Grotesk", sans-serif;
  letter-spacing: 0.06em;
  position: relative;
}

.brand > span:last-child {
  font-weight: 500;
  color: var(--muted);
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-right: 4px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  font-size: 14px;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s var(--ease-out-expo);
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transition: width 0.3s var(--ease-out-expo);
  border-radius: 2px;
}

nav a:hover {
  color: var(--text);
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-out-expo);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  border-color: var(--glass-border);
  background: var(--panel-hover);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
  transform: translateY(-1px);
}

.nav-cta svg {
  color: var(--pink);
  transition: transform 0.3s var(--ease-spring);
}

.nav-cta:hover svg {
  transform: translate(2px, -2px);
}

/* ─── Hero ─── */
.hero {
  max-width: 1240px;
  margin: auto;
  min-height: calc(100vh - 80px);
  padding: 80px 28px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 99px;
  color: #b8b3c7;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: fit-content;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #64ec9b;
  box-shadow: 0 0 12px #64ec9b;
  animation: pulse 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font: 600 clamp(48px, 5.5vw, 84px) / 0.98 "Space Grotesk", sans-serif;
  letter-spacing: -0.045em;
  margin: 28px 0 24px;
}

.hero h1 span {
  background: linear-gradient(100deg, #c084fc, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero-copy > p {
  max-width: 480px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 36px 0 52px;
}

.primary {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(120deg, #7c3aed, #db2777);
  padding: 10px 10px 10px 22px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-expo);
}

.primary:hover::before {
  transform: translateX(100%);
}

.primary:hover {
  box-shadow: 0 15px 50px rgba(168, 85, 247, 0.35);
  transform: translateY(-2px);
}

.arrow-wrap {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  transition: transform 0.3s var(--ease-spring);
}

.primary:hover .arrow-wrap {
  transform: rotate(45deg) scale(1.05);
}

.text-link {
  font-size: 13px;
  font-weight: 500;
  color: #a5a0b5;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

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

.text-link svg {
  transition: transform 0.3s var(--ease-spring);
}

.text-link:hover svg {
  transform: translateY(3px);
}

.quick-stats {
  display: flex;
  gap: 32px;
}

.quick-stats div {
  display: flex;
  flex-direction: column;
  border-left: 1.5px solid var(--line);
  padding-left: 14px;
  position: relative;
}

.quick-stats div::before {
  content: "";
  position: absolute;
  left: -1.5px;
  top: 0;
  height: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--purple), var(--pink));
  transition: height 1s var(--ease-out-expo);
}

.quick-stats div.revealed::before {
  height: 100%;
}

.quick-stats strong {
  font: 600 20px "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

.quick-stats span {
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
  font-weight: 500;
}

/* ─── Hero Art ─── */
.hero-art {
  position: relative;
  perspective: 1200px;
}

.image-frame {
  position: relative;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--glass-border);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.6s var(--ease-out-expo);
  overflow: hidden;
}

.image-frame:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(1deg) scale(1.01);
}

.frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease-out-expo);
  pointer-events: none;
  z-index: 2;
}

.image-frame:hover .frame-shine {
  transform: translateX(100%);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 25% 15%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  filter: blur(80px);
  opacity: 0.25;
  z-index: 0;
}

.image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.live-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  background: rgba(9, 8, 16, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ─── Glass Utilities ─── */
.glass {
  background: rgba(21, 18, 34, 0.7);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 var(--glass-highlight);
  position: relative;
  overflow: hidden;
}

.card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.glass:hover .card-shine,
.glass-card:hover .card-shine {
  opacity: 1;
}

.floating-card {
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 160px;
  padding: 18px;
  border-radius: 16px;
  z-index: 4;
  animation: float 6s ease-in-out infinite;
}

.floating-card span,
.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.floating-card strong {
  display: block;
  font: 600 28px "Space Grotesk", sans-serif;
  margin: 5px 0;
  background: linear-gradient(135deg, #c084fc, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
}

.card-secondary {
  right: auto;
  left: -30px;
  top: 30px;
  bottom: auto;
  width: 140px;
  animation-delay: -3s;
  animation-duration: 7s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* ─── Trust ─── */
.trust {
  min-height: 90px;
  border-block: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #6e6a7d;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.trust-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 24px;
}

.trust-items {
  display: flex;
  gap: 40px;
  align-items: center;
}

.trust b {
  font: 500 13px "Space Grotesk", sans-serif;
  color: #8b87a1;
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
  position: relative;
  padding: 4px 0;
}

.trust b::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transition: width 0.4s var(--ease-out-expo);
}

.trust b:hover {
  color: var(--text);
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.trust b:hover::after {
  width: 100%;
}

/* ─── Features ─── */
.features {
  max-width: 1184px;
  margin: auto;
  padding: 120px 28px;
  position: relative;
  z-index: 2;
}

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

.kicker {
  color: #c084fc;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 16px;
}

.section-head h2,
.plan-copy h2 {
  font: 600 clamp(40px, 4.2vw, 64px) / 1.05 "Space Grotesk";
  letter-spacing: -0.04em;
  margin: 0;
}

.section-head > p {
  max-width: 380px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
}

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

.glass-card {
  min-height: 260px;
  padding: 32px;
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-hover);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(168, 85, 247, 0.1);
}

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

.feature-num {
  position: absolute;
  right: 24px;
  top: 24px;
  color: #3d3a4a;
  font: 700 11px "Space Grotesk";
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.glass-card:hover .feature-num {
  color: #5a5570;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.glass-icon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(236, 72, 153, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.2);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-grid h3 {
  font: 600 19px "Space Grotesk", sans-serif;
  margin: 20px 0 10px;
  position: relative;
  z-index: 1;
}

.feature-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ─── Plan Section ─── */
.plan-wrap {
  max-width: 1184px;
  margin: 0 auto 120px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 90px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: radial-gradient(circle at 80% 10%, rgba(124, 58, 237, 0.1), transparent 45%), var(--bg-elevated);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.plan-ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 60%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.plan-copy > p {
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
  font-size: 15px;
  margin-top: 20px;
}

.plan-copy ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  color: #b8b3c7;
  font-size: 13px;
  font-weight: 500;
}

.plan-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-copy li::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c084fc' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* ─── Checkout Card ─── */
.checkout-card {
  position: relative;
  background: linear-gradient(145deg, #f8f5ff, #ede9f5);
  color: #17131e;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.checkout-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.popular {
  position: relative;
  display: flex;
  width: max-content;
  margin: 0 0 16px auto;
  background: linear-gradient(100deg, var(--purple), var(--pink));
  color: #fff;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
  z-index: 2;
}

.plan-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 8px;
}

.plan-title small {
  color: #8b8499;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.plan-title h3 {
  font: 600 26px "Space Grotesk", sans-serif;
  margin: 6px 0 0;
  letter-spacing: -0.02em;
}

.price {
  font: 700 44px "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price sup {
  font-size: 18px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4cee0, transparent);
  margin: 28px 0;
  position: relative;
}

.divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #d4cee0;
  border-radius: 50%;
  border: 3px solid #f8f5ff;
}

label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: #6b6275;
}

input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1.5px solid #ddd5e6;
  border-radius: 12px;
  background: #fff;
  font: 14px "DM Sans", sans-serif;
  color: #17131e;
  outline: none;
  transition: all 0.3s var(--ease-out-expo);
}

input::placeholder {
  color: #b0a8bd;
}

input:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.08), 0 4px 12px rgba(168, 85, 247, 0.06);
}

button {
  margin-top: 12px;
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: #18131f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 600 13px "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
}

button:hover::after {
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out-expo);
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

button b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-size: 14px;
}

button:disabled {
  opacity: 0.5;
  cursor: wait;
  transform: none;
}

#form-message {
  color: #be123c;
  font-size: 12px;
  font-weight: 500;
  min-height: 18px;
  margin: 8px 0 4px;
}

#form-message.success {
  color: #15803d;
}

.secure {
  border-top: 1px solid #ddd5e6;
  padding-top: 16px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8b8499;
}

.lock-icon {
  color: var(--purple);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: rgba(168, 85, 247, 0.08);
  border-radius: 8px;
}

.secure p {
  font-size: 10px;
  line-height: 1.5;
  margin: 0;
}

.secure strong {
  color: #3c3741;
  font-weight: 700;
}

/* ─── Plan Options ─── */
.plan-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.plan-option {
  margin: 0;
  height: 48px;
  background: #fff;
  color: #6b6275;
  border: 1.5px solid #ddd5e6;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.plan-option strong {
  font-size: 14px;
  color: #17131e;
  transition: color 0.3s ease;
}

.plan-option:hover {
  border-color: #c4b8d8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.plan-option.selected {
  border-color: #a855f7;
  background: linear-gradient(135deg, #f3e8ff, #fce7f3);
  color: #6b21a8;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1), 0 4px 12px rgba(168, 85, 247, 0.08);
}

.plan-option.selected strong {
  color: #7e22ce;
}

/* ─── Footer ─── */
footer {
  max-width: 1184px;
  margin: auto;
  border-top: 1px solid var(--line);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5e5a6e;
  font-size: 11px;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

footer p {
  color: var(--muted);
  font-size: 12px;
}

/* ─── Scroll Reveals ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-reveal="group"] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

[data-reveal].revealed,
[data-reveal="group"].revealed > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="group"].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal="group"].revealed > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal="group"].revealed > *:nth-child(3) { transition-delay: 0.19s; }
[data-reveal="group"].revealed > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal="group"].revealed > *:nth-child(5) { transition-delay: 0.33s; }

[data-reveal="image"] {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

[data-reveal="image"].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-reveal="card"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

[data-reveal="card"].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade"] {
  opacity: 0;
  transition: opacity 1s ease;
}

[data-reveal="fade"].revealed {
  opacity: 1;
}

/* Stagger for cards */
.feature-grid .glass-card:nth-child(1) { transition-delay: 0.08s; }
.feature-grid .glass-card:nth-child(2) { transition-delay: 0.16s; }
.feature-grid .glass-card:nth-child(3) { transition-delay: 0.24s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero {
    gap: 50px;
  }
  .plan-wrap {
    gap: 60px;
    padding: 60px;
  }
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
    text-align: center;
    min-height: auto;
  }
  
  .hero-copy > p {
    margin-inline: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .quick-stats {
    justify-content: center;
  }
  
  .hero-art {
    max-width: 560px;
    margin: 0 auto;
    order: -1;
  }
  
  .floating-card,
  .card-secondary {
    display: none;
  }
  
  .trust {
    gap: 20px;
    flex-wrap: wrap;
    padding: 28px 20px;
  }
  
  .trust-items {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-wrap {
    margin-inline: 20px;
    padding: 50px 32px;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .checkout-card {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  
  footer {
    margin: 0 20px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 30px 20px;
  }
}

@media (max-width: 560px) {
  .nav {
    height: 68px;
    padding: 0 20px;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero {
    padding: 50px 20px 70px;
  }
  
  .hero h1 {
    font-size: 46px;
  }
  
  .hero-actions {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  
  .quick-stats {
    gap: 20px;
  }
  
  .quick-stats strong {
    font-size: 17px;
  }
  
  .trust b:nth-last-child(-n+2) {
    display: none;
  }
  
  .features {
    padding: 90px 20px;
  }
  
  .plan-wrap {
    padding: 40px 20px;
    margin-bottom: 80px;
  }
  
  .plan-copy ul {
    grid-template-columns: 1fr;
  }
  
  .checkout-card {
    padding: 24px;
  }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
