:root {
  --bg: #090b14;
  --bg-2: #0e1220;
  --bg-brightness: 0.72;
  --bg-brightness-active: 0.80;
  --surface: rgba(18, 23, 42, 0.78);
  --surface-strong: #12172a;
  --surface-soft: rgba(255,255,255,0.04);
  --text: #f6f7fb;
  --muted: #a8afc5;
  --line: rgba(255,255,255,0.08);
  --accent: #7c5cff;
  --accent-soft: #af9cff;
  --success: #68f0a5;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --container: min(1180px, calc(100vw - 32px));
  --header-h: 84px;
  --app-height: 1vh;
  --bg-position: center center;
  --bg-slide-inset: -3%;
  --bg-slide-start-scale: 1.16;
  --bg-slide-start-rotate: -5deg;
  --bg-slide-exit-scale: 0.88;
  --bg-slide-exit-rotate: 5deg;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(124, 92, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(110, 182, 255, 0.16), transparent 26%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
textarea { resize: vertical; }

.site-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: calc(var(--app-height) * 100);
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(124, 92, 255, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(110, 182, 255, 0.12), transparent 26%);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.site-bg-slider {
  position: absolute;
  inset: 0;
}
.bg-slide {
  position: absolute;
  inset: var(--bg-slide-inset);
  background-position: var(--bg-position);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(var(--bg-slide-start-scale)) rotate(var(--bg-slide-start-rotate));
  transform-origin: center center;
  filter: saturate(1.08) brightness(var(--bg-brightness)) contrast(1.02);
  transition:
    opacity 1.25s ease,
    transform 1.9s cubic-bezier(.2,.7,.2,1),
    filter 1.25s ease;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.bg-slide.is-active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: saturate(1.08) brightness(var(--bg-brightness-active)) contrast(1.04);
}
.bg-slide.is-exit {
  opacity: 0;
  transform: scale(var(--bg-slide-exit-scale)) rotate(var(--bg-slide-exit-rotate));
}
.bg-slide.is-idle {
  opacity: 0;
}
.site-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 11, 20, 0.36), rgba(9, 11, 20, 0.52)),
    radial-gradient(circle at center, rgba(9, 11, 20, 0.04), rgba(9, 11, 20, 0.34) 74%);
}
.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.7;
  animation: drift 14s ease-in-out infinite alternate;
}
.site-bg::before {
  width: 26rem;
  height: 26rem;
  background: rgba(124, 92, 255, 0.18);
  top: -8rem;
  left: -6rem;
}
.site-bg::after {
  width: 24rem;
  height: 24rem;
  background: rgba(0, 214, 201, 0.12);
  bottom: 2rem;
  right: -6rem;
  animation-delay: 1.5s;
}


@supports (-webkit-touch-callout: none) {
  html, body {
    min-height: -webkit-fill-available;
  }
  .site-bg {
    min-height: -webkit-fill-available;
  }
}

@media (max-width: 1024px) {
  :root {
    --bg-position: center center;
    --bg-slide-inset: -5%;
    --bg-slide-start-scale: 1.10;
    --bg-slide-start-rotate: -3deg;
    --bg-slide-exit-scale: 0.94;
    --bg-slide-exit-rotate: 2.5deg;
  }
}

@media (max-width: 680px), (hover: none) and (pointer: coarse) {
  :root {
    --bg-position: center 32%;
    --bg-slide-inset: -2%;
    --bg-slide-start-scale: 1.06;
    --bg-slide-start-rotate: -1.5deg;
    --bg-slide-exit-scale: 0.98;
    --bg-slide-exit-rotate: 1.2deg;
  }
  .site-bg::before,
  .site-bg::after {
    filter: blur(24px);
    opacity: 0.55;
  }
}

@media (max-width: 480px) {
  :root {
    --bg-position: center 28%;
    --bg-slide-inset: -1%;
  }
}

@media (orientation: landscape) and (max-width: 900px) {
  :root {
    --bg-position: center center;
    --bg-slide-inset: -4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-slide,
  .site-bg::before,
  .site-bg::after {
    animation: none !important;
    transition-duration: 0.4s;
  }
  .bg-slide,
  .bg-slide.is-active,
  .bg-slide.is-exit {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, 24px, 0) scale(1.06); }
}

.page {
  position: relative;
  z-index: 1;
}
.container {
  width: var(--container);
  margin: 0 auto;
}
.section {
  padding: 64px 0;
}
.section.compact {
  padding-top: 28px;
}
.section-head {
  margin-bottom: 28px;
  max-width: 760px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #9ae1ff);
  box-shadow: 0 0 20px rgba(124, 92, 255, 0.6);
}
.h1, h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.h2, h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.h3, h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.15;
}
.lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.7;
}
.muted { color: var(--muted); }
.kicker { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

.header-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 0 0;
}
.header {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(9, 11, 20, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 14px 18px;
  flex-wrap: nowrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand--logo {
  gap: 0;
}
.brand-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(124,92,255,0.15), rgba(255,255,255,0.06));
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}
.brand-wordmark {
  width: clamp(128px, 11vw, 190px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}
.brand-copy { min-width: 0; }
.brand-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-tag {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-right: auto;
}
.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(9, 11, 20, 0.72);
  font-weight: 700;
  transition: 0.25s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav a:hover,
.nav a.active {
  color: #090b14;
  background: rgba(9, 11, 20, 0.08);
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.btn, .btn-secondary, .icon-btn {
  border: 0;
  cursor: pointer;
  transition: 0.25s ease;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  min-height: 48px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #9b8eff);
  box-shadow: 0 18px 42px rgba(124, 92, 255, 0.34);
  font-weight: 700;
}
.btn:hover { transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  min-height: 48px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(9, 11, 20, 0.04);
  border: 1px solid rgba(9, 11, 20, 0.08);
  color: #090b14;
}
.menu-toggle { display: none; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 38px;
}
.hero-panel,
.phone-panel,
.glass,
.card,
.admin-card,
.story-card,
.review-card,
.partner-card,
.plan-card,
.contact-card,
.footer-card {
  background: linear-gradient(180deg, rgba(10,14,28,0.76), rgba(13,18,34,0.60));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(14px);
}
.hero-panel {
  padding: 34px;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124,92,255,0.3), transparent 62%);
  pointer-events: none;
}
.hero-copy {
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.stat-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-card strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.9rem;
}
.phone-panel {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 610px;
}
.phone-frame {
  width: min(100%, 340px);
  margin: 0 auto;
  background: #05060b;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 38px;
  padding: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 30px 60px rgba(0, 0, 0, 0.45);
}
.phone-screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #141828, #090b14);
  aspect-ratio: 9 / 18.4;
}
.phone-screen iframe,
.phone-screen .video-fallback {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-fallback {
  padding: 18px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(124,92,255,0.35), rgba(0,0,0,0.45));
}
.video-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.video-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.pill {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}
.pill.active { background: var(--accent); box-shadow: 0 0 18px rgba(124, 92, 255, 0.7); }
.small-note { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  margin-top: 20px;
}
.marquee {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logo-card {
  width: 190px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.logo-card img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.95;
}
.logo-card:hover img {
  filter: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.grid-3, .grid-4, .grid-2, .auto-grid {
  display: grid;
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.auto-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(124,92,255,0.24), transparent 68%);
  pointer-events: none;
}
.card p, .story-card p, .review-card p, .partner-card p, .plan-card p, .contact-card p {
  color: var(--muted);
  line-height: 1.7;
}
.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(124,92,255,0.16);
  color: var(--accent-soft);
  font-weight: 800;
  margin-bottom: 16px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,92,255,0.26), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent-soft);
  margin-bottom: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.process-step {
  padding: 26px;
}
.highlight-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: center;
}
.highlight-art {
  min-height: 310px;
  border-radius: 28px;
  position: relative;
  background: linear-gradient(135deg, rgba(124,92,255,0.8), rgba(178,159,255,0.6));
  overflow: hidden;
}
.highlight-art::before,
.highlight-art::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.18);
  border-radius: 28px;
  transform: rotate(-16deg);
}
.highlight-art::before {
  width: 180px;
  height: 180px;
  top: 34px;
  left: 28px;
}
.highlight-art::after {
  width: 220px;
  height: 220px;
  right: 24px;
  bottom: -24px;
}
.highlight-art img {
  position: absolute;
  width: 94px;
  height: 94px;
  object-fit: cover;
  border-radius: 999px;
  border: 6px solid rgba(9, 11, 20, 0.45);
  box-shadow: 0 18px 32px rgba(0,0,0,0.35);
}
.highlight-art img:nth-child(1) { top: 22px; right: 24px; animation: floatY 4s ease-in-out infinite; }
.highlight-art img:nth-child(2) { left: 18px; bottom: 26px; animation: floatY 5s ease-in-out infinite reverse; }
.highlight-art img:nth-child(3) { right: 112px; bottom: 18px; animation: floatY 4.7s ease-in-out infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.bullets { display: grid; gap: 12px; margin-top: 18px; }
.bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
}
.bullet::before {
  content: "✓";
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,92,255,0.16);
  color: var(--accent-soft);
  font-size: 0.8rem;
  margin-top: 2px;
}

.plan-card,
.story-card,
.review-card,
.partner-card,
.contact-card,
.footer-card {
  padding: 24px;
}
.plan-card .plan-top,
.story-card .story-top,
.review-card .review-top,
.partner-card .partner-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(124,92,255,0.14);
  color: var(--accent-soft);
  font-size: 0.8rem;
  border: 1px solid rgba(124,92,255,0.18);
}
.price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 12px 0;
}
.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.55;
}
.list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

.story-card,
.review-card,
.partner-card {
  min-height: 100%;
}
.story-meta,
.review-meta {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.meta-pill {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.88rem;
}
.partner-brand,
.review-brand {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.partner-link,
.story-link {
  margin-top: 18px;
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.partner-link::after,
.story-link::after {
  content: "→";
}

.team-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.hero-image-card {
  padding: 12px;
}
.hero-image-card img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  min-height: 350px;
  background: rgba(255,255,255,0.04);
}
.member-card {
  text-align: center;
  padding: 24px 18px;
}
.member-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 999px;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.member-card strong { display: block; margin-bottom: 6px; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 22px;
}
.contact-stack { display: grid; gap: 18px; }
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.social-link {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.cta-strip {
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(124,92,255,0.88), rgba(166,133,255,0.75));
  box-shadow: 0 34px 70px rgba(124, 92, 255, 0.34);
}
.cta-strip h2,
.cta-strip p { color: white; }

.footer {
  padding: 0 0 28px;
}
.footer-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Admin */
.admin-body {
  background:
    radial-gradient(circle at 12% 10%, rgba(124,92,255,0.2), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(82,162,255,0.14), transparent 24%),
    linear-gradient(180deg, #0b0e18, #111628);
}
.admin-shell {
  width: min(1380px, calc(100vw - 24px));
  margin: 16px auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
}
.admin-sidebar,
.admin-main,
.admin-card {
  backdrop-filter: blur(18px);
}
.admin-sidebar {
  position: sticky;
  top: 16px;
  align-self: start;
  padding: 20px;
  border-radius: 24px;
  background: rgba(16, 20, 36, 0.86);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.admin-main {
  display: grid;
  gap: 18px;
}
.admin-card {
  padding: 22px;
}
.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-nav {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.admin-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.05);
}
.admin-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.form-grid-2, .form-grid-3 { display: grid; gap: 14px; }
.form-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field {
  display: grid;
  gap: 8px;
}
.field label {
  color: var(--muted);
  font-size: 0.88rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.field input[type="color"] {
  padding: 4px;
  min-height: 48px;
}
.helper {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.group {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.array-list {
  display: grid;
  gap: 14px;
}
.array-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.array-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.array-item h4 { margin: 0; }
.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
}
.small-btn.danger {
  background: rgba(255, 94, 120, 0.12);
  border-color: rgba(255, 94, 120, 0.22);
}
.status {
  min-height: 24px;
  color: var(--accent-soft);
}
.preview-link {
  color: var(--accent-soft);
  word-break: break-all;
}
.upload-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.raw-json {
  min-height: 340px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (max-width: 1280px) {
  .header {
    gap: 14px;
    padding: 12px 14px;
  }
  .nav {
    gap: 4px;
  }
  .nav a {
    padding: 9px 10px;
    font-size: 0.92rem;
  }
  .actions {
    gap: 8px;
  }
  .header-socials {
    padding: 5px 6px;
  }
  .social-icon-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .team-hero,
  .contact-layout,
  .highlight-panel,
  .footer-card {
    grid-template-columns: 1fr;
  }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .process-grid, .form-grid-3 { grid-template-columns: 1fr 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
}

@media (max-width: 1024px) {
  .brand-wordmark {
    width: clamp(132px, 28vw, 200px);
  }
}

@media (max-width: 860px) {
  .header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
  }
  .menu-toggle { display: inline-flex; }
  .brand-wordmark {
    width: clamp(126px, 34vw, 180px);
  }
  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding-top: 6px;
    gap: 6px;
  }
  .nav a {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
  }
  .nav.open { display: flex; }
  .actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .actions .btn { display: none; }
  .header-socials {
    width: 100%;
    justify-content: center;
  }
  .hero-panel,
  .phone-panel { min-height: auto; }
  .hero-stats,
  .grid-3,
  .grid-4,
  .process-grid,
  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-socials {
    justify-content: center;
  }
  .cta-strip,
  .hero-panel,
  .phone-panel,
  .card,
  .story-card,
  .review-card,
  .partner-card,
  .plan-card,
  .contact-card,
  .footer-card,
  .admin-card { padding: 20px; }
}

@media (max-width: 560px) {
  .container { width: min(100vw - 20px, var(--container)); }
  .header-wrap { padding-top: 10px; }
  .header {
    border-radius: 18px;
    padding: 12px;
  }
  .brand-tag { display: none; }
  .hero-actions,
  .admin-actions,
  .footer-bottom { flex-direction: column; align-items: stretch; }
  .footer-bottom {
    text-align: center;
    gap: 10px;
  }
  .btn, .btn-secondary { width: 100%; }
  .logo-card { width: 150px; height: 78px; }
  .logo-card img { max-height: 34px; }
  .phone-frame {
    width: min(100%, 300px);
    padding: 10px;
    border-radius: 30px;
  }
  .phone-screen {
    border-radius: 22px;
  }
  .video-pills,
  .footer-socials {
    justify-content: center;
  }
  .shop-copy {
    padding: 18px;
  }
}



/* --- PHP CMS additions --- */
.login-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(124,92,255,.18), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(80,225,255,.1), transparent 24%),
    var(--bg);
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.login-card {
  width: min(520px, 100%);
  background: rgba(18, 23, 42, .84);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(4, 8, 24, .45);
  padding: 34px;
  backdrop-filter: blur(20px);
}

.login-card h1 {
  margin-bottom: 10px;
}

.login-card .brand {
  margin-bottom: 22px;
}

.login-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.notice {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}

.error-box {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 112, 140, .28);
  background: rgba(255, 112, 140, .08);
  color: #ffc1cf;
}

small.code {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--text);
}

.field input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  outline: none;
}

.helper code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (max-width: 600px) {
  .login-card { padding: 24px; border-radius: 22px; }
}


/* --- V2 commerce + contact form --- */
.header-socials,
.footer-socials {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
}
.header-socials {
  padding: 6px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(9, 11, 20, 0.03), rgba(9, 11, 20, 0.02));
  border: 1px solid rgba(9, 11, 20, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 30px rgba(0,0,0,0.08);
}
.footer-socials {
  margin-top: 18px;
  justify-content: flex-start;
}
.footer-socials .social-icon-btn {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.footer-socials .social-icon-btn:hover {
  background: rgba(124,92,255,0.22);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
  box-shadow: 0 10px 24px rgba(124,92,255,0.22);
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 11, 20, 0.04);
  border: 1px solid rgba(9, 11, 20, 0.04);
  color: #090b14;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.social-icon-btn:hover {
  transform: translateY(-2px);
  background: rgba(124,92,255,0.16);
  border-color: rgba(124,92,255,0.28);
  color: #fff;
  box-shadow: 0 8px 18px rgba(124,92,255,0.20);
}
.social-icon-btn svg,
.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.cart-btn strong {
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,92,255,0.18);
  color: var(--accent-soft);
  font-size: .88rem;
}

.plan-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}

.payment-note {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.contact-form-card,
.cart-summary,
.notice-banner,
.empty-state,
.cart-item,
.mini-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}
.contact-form-card,
.cart-summary,
.empty-state {
  padding: 24px;
}

.contact-form,
.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.contact-form .field span,
.checkout-form .field span {
  display: block;
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 8px;
}
.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select,
.checkout-form .field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.mini-card {
  padding: 16px;
}
.mini-card strong {
  display: block;
  margin-bottom: 8px;
}
.mini-card span {
  color: var(--muted);
  line-height: 1.6;
}

.notice-banner {
  padding: 16px 18px;
  margin-bottom: 18px;
  color: var(--accent-soft);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
}
.cart-item {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.cart-item-copy h3 { margin-top: 12px; }
.cart-item-side {
  display: grid;
  gap: 14px;
  justify-items: end;
}
.cart-item-side strong {
  font-size: 1.1rem;
}
.cart-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.qty-stepper button {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.08);
  color: var(--text);
  cursor: pointer;
}
.text-btn {
  padding: 0;
  background: none;
  border: 0;
  color: var(--accent-soft);
  cursor: pointer;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.summary-line:last-of-type { margin-bottom: 10px; }


.checkout-success-panel {
  align-items: stretch;
}
.checkout-status-grid {
  align-content: start;
}
.checkout-status-card p,
.checkout-status-card code {
  word-break: break-word;
}

.empty-state {
  text-align: center;
}

#contact-form-status.is-error,
#checkout-status.is-error {
  color: #ff95ab;
}

.btn-secondary.white {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}

@media (max-width: 1080px) {
  .cart-layout,
  .contact-mini-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header {
    gap: 14px;
  }
  .brand--logo {
    flex: 1 1 100%;
    justify-content: center;
  }
  .actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    justify-items: stretch;
  }
  .header-socials {
    order: 2;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cart-btn {
    justify-content: center;
  }
  .contact-mini-cards {
    grid-template-columns: 1fr;
  }
  .cart-item {
    flex-direction: column;
  }
  .cart-item-side {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .social-icon-btn {
    width: 40px;
    height: 40px;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
}


.success-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.case-stat,
.case-copy-box,
.timeline-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}
.case-stat {
  padding: 22px;
}
.case-stat strong {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 8px;
}
.case-stat span { color: var(--muted); }
.case-study-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: stretch;
}
.case-study-title {
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}
.case-study-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.case-copy-box,
.case-study-aside {
  padding: 22px;
}
.case-study-aside {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.08);
  background: radial-gradient(circle at top, rgba(124,92,255,.22), rgba(255,255,255,.03) 55%, rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.case-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.meta-pill.large {
  justify-content: flex-start;
  width: 100%;
  padding: 12px 14px;
}
.timeline-grid {
  display: grid;
  gap: 14px;
}
.timeline-item {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.timeline-year {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-soft);
}
.timeline-copy h3 {
  margin: 0 0 8px;
}
@media (max-width: 1080px) {
  .success-stats-grid,
  .case-study-boxes,
  .case-study-panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .timeline-item {
    grid-template-columns: 1fr;
  }
}


.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.shop-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 100%;
}
.shop-image-wrap {
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.shop-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: radial-gradient(circle at top, rgba(124,92,255,0.18), rgba(255,255,255,0.03) 58%, rgba(255,255,255,0.02));
}
.shop-copy {
  padding: 22px;
  display: grid;
  gap: 14px;
}
.price-tag {
  margin-top: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.shop-options {
  display: grid;
  gap: 12px;
}
.shop-option-field {
  display: grid;
  gap: 8px;
}
.shop-option-field span,
.shop-note {
  color: #090b14;
  font-size: 0.88rem;
  line-height: 1.5;
}
.shop-option-field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(9,11,20,.14);
  background: #fff;
  color: #090b14;
}
.shop-option-field select option {
  color: #090b14;
}
.shop-buy-btn {
  width: 100%;
}
.toggle-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.toggle-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.toggle-field span {
  display: grid;
  gap: 4px;
}
.toggle-field strong {
  font-size: 0.95rem;
}
.toggle-field small {
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 1080px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}


/* --- v15 mobile polish + responsive background framing --- */
.bg-slide {
  background-size: 0 0 !important;
  background-repeat: no-repeat;
  overflow: hidden;
}
.bg-slide::before,
.bg-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-repeat: no-repeat;
  background-position: var(--bg-position);
  pointer-events: none;
}
.bg-slide::before {
  background-size: cover;
}
.bg-slide::after {
  display: none;
}

@media (max-width: 680px), (hover: none) and (pointer: coarse) {
  .bg-slide::before {
    inset: -5%;
    background-size: cover;
    filter: blur(16px);
    opacity: 0.82;
    transform: scale(1.12);
  }
  .bg-slide::after {
    display: block;
    inset: 5% 4% 7%;
    background-size: contain;
    background-position: center center;
    opacity: 0.98;
  }
  .site-bg-overlay {
    background:
      linear-gradient(180deg, rgba(9, 11, 20, 0.24), rgba(9, 11, 20, 0.40)),
      radial-gradient(circle at center, rgba(9, 11, 20, 0.02), rgba(9, 11, 20, 0.22) 72%);
  }
}

@media (max-width: 480px) {
  .bg-slide::before {
    inset: -7%;
    filter: blur(18px);
  }
  .bg-slide::after {
    inset: 7% 3% 10%;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(1180px, calc(100vw - 20px));
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 46px 0;
  }

  .section.compact {
    padding-top: 18px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .h1, h1 {
    font-size: clamp(2rem, 7.8vw, 3rem);
    line-height: 1.02;
  }

  .h2, h2 {
    font-size: clamp(1.5rem, 5.8vw, 2.15rem);
    line-height: 1.06;
  }

  .h3, h3 {
    font-size: clamp(1.02rem, 4.3vw, 1.24rem);
  }

  .lead {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .header-wrap {
    padding-top: 10px;
  }

  .header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .brand--logo {
    flex: initial;
    justify-content: flex-start;
  }

  .brand-wordmark {
    width: clamp(112px, 30vw, 164px);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .nav {
    gap: 8px;
    padding-top: 8px;
  }

  .nav a {
    padding: 10px 12px;
    border-radius: 16px;
    font-size: 0.92rem;
  }

  .actions {
    gap: 12px;
  }

  .header-socials {
    padding: 6px;
    gap: 6px;
  }

  .hero-grid {
    gap: 18px;
    padding-top: 24px;
  }

  .hero-panel,
  .phone-panel,
  .card,
  .story-card,
  .review-card,
  .partner-card,
  .plan-card,
  .contact-card,
  .footer-card,
  .admin-card,
  .cta-strip,
  .shop-copy,
  .case-stat,
  .case-copy-box,
  .case-study-aside,
  .timeline-item,
  .payment-note,
  .contact-form-card,
  .cart-summary,
  .empty-state,
  .cart-item,
  .mini-card {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-actions .btn,
  .hero-actions .btn-secondary,
  .form-actions .btn,
  .form-actions .btn-secondary,
  .plan-actions .btn,
  .plan-actions .btn-secondary {
    width: auto;
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }

  .btn,
  .btn-secondary,
  .cart-btn {
    min-height: 46px;
    padding: 12px 18px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .stat-card {
    padding: 14px;
    border-radius: 18px;
  }

  .stat-card strong {
    font-size: 1.08rem;
    margin-bottom: 4px;
  }

  .stat-card span,
  .kicker,
  .shop-note,
  .shop-option-field span {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .grid-3,
  .grid-4,
  .success-stats-grid,
  .case-study-boxes,
  .contact-mini-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .grid-2,
  .process-grid,
  .highlight-panel,
  .case-study-panel,
  .cart-layout,
  .footer-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .phone-panel {
    align-items: center;
  }

  .phone-panel > * {
    width: 100%;
  }

  .phone-frame {
    width: min(100%, 280px);
    padding: 10px;
    border-radius: 30px;
  }

  .video-caption {
    margin-top: 12px;
  }

  .logo-card {
    width: 150px;
    height: 78px;
    padding: 16px;
  }

  .logo-card img {
    max-height: 34px;
  }

  .plan-card .plan-top,
  .story-card .story-top,
  .review-card .review-top,
  .partner-card .partner-top {
    gap: 12px;
  }

  .footer-socials,
  .footer-bottom {
    justify-content: center;
  }

  .footer-bottom {
    gap: 10px;
    text-align: center;
  }

  .shop-option-field select {
    padding: 12px 14px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(1180px, calc(100vw - 16px));
  }

  .section {
    padding: 38px 0;
  }

  .header {
    padding: 10px 12px;
    border-radius: 18px;
  }

  .brand-wordmark {
    width: clamp(108px, 34vw, 148px);
  }

  .header-socials {
    width: auto;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .hero-grid {
    padding-top: 18px;
  }

  .hero-actions,
  .form-actions,
  .footer-bottom {
    gap: 10px;
  }

  .hero-actions .btn,
  .hero-actions .btn-secondary,
  .form-actions .btn,
  .form-actions .btn-secondary,
  .plan-actions .btn,
  .plan-actions .btn-secondary,
  .shop-buy-btn,
  .cart-btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-stats {
    gap: 8px;
  }

  .stat-card {
    padding: 12px;
  }

  .stat-card strong {
    font-size: 1rem;
  }

  .stat-card span {
    font-size: 0.76rem;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .process-grid,
  .success-stats-grid,
  .case-study-boxes,
  .contact-mini-cards,
  .shop-grid,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .shop-copy {
    padding: 16px;
  }

  .phone-frame {
    width: min(100%, 250px);
    padding: 8px;
    border-radius: 26px;
  }

  .phone-screen {
    border-radius: 20px;
  }

  .highlight-art {
    min-height: 220px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}


.link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

.cookie-banner-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 16, 0.62);
  backdrop-filter: blur(10px);
}
.cookie-banner__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  color: #10141f;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}
.cookie-banner__aside {
  background: linear-gradient(180deg, #111624, #171d30);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-banner__logo-wrap {
  width: 100%;
  min-height: 180px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-banner__logo {
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
}
.cookie-banner__content {
  padding: 32px 34px 30px;
}
.cookie-banner__eyebrow {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #56607a;
  font-weight: 700;
}
.cookie-banner__content h3 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.04;
  margin-bottom: 14px;
  color: #10141f;
}
.cookie-banner__text {
  margin: 0 0 22px;
  color: #4d5568;
  line-height: 1.7;
}
.cookie-banner__options {
  display: grid;
  gap: 12px;
}
.cookie-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(16, 20, 31, 0.10);
  background: #f6f8fc;
  cursor: pointer;
}
.cookie-check.is-required {
  background: #eef2f8;
}
.cookie-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #111624;
}
.cookie-check strong {
  display: block;
  color: #10141f;
  font-size: 1rem;
}
.cookie-banner__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  min-height: 50px;
}
.cookie-btn--dark {
  color: #10141f;
  border-color: rgba(16,20,31,0.16);
  background: #ffffff;
}
.cookie-btn--ghost {
  color: #10141f;
  border-color: transparent;
  background: #edf1f8;
}
.cookie-banner__links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #56607a;
}
.cookie-banner__links a {
  color: #10141f;
  font-weight: 600;
}

@media (max-width: 820px) {
  .cookie-banner {
    padding: 16px;
  }
  .cookie-banner__dialog {
    grid-template-columns: 1fr;
  }
  .cookie-banner__aside {
    padding: 18px 18px 0;
    background: #ffffff;
  }
  .cookie-banner__logo-wrap {
    min-height: 110px;
    background: linear-gradient(180deg, #111624, #171d30);
  }
  .cookie-banner__content {
    padding: 22px 18px 20px;
  }
  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-banner__actions .btn,
  .cookie-banner__actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


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

.legal-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(18, 23, 42, .86);
  box-shadow: 0 24px 70px rgba(3, 8, 24, .28);
  backdrop-filter: blur(18px);
}

.legal-sidecard {
  position: sticky;
  top: 120px;
}

.legal-richtext {
  display: grid;
  gap: 16px;
  line-height: 1.78;
  color: rgba(246,247,251,.92);
}

.legal-richtext p {
  margin: 0;
}

.cookie-banner__status {
  min-height: 22px;
  margin-top: 14px;
  color: #24304f;
  font-size: .95rem;
  font-weight: 600;
}

.cookie-banner__dialog,
.cookie-banner__dialog * {
  pointer-events: auto;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidecard {
    position: static;
  }
}


/* --- v19 animation polish --- */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.72s cubic-bezier(.22,.61,.36,1),
    transform 0.72s cubic-bezier(.22,.61,.36,1),
    filter 0.72s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.btn,
.btn-secondary,
.icon-btn,
.social-icon-btn,
.nav a,
.pill,
.logo-card,
.shop-card,
.card,
.plan-card,
.story-card,
.review-card,
.partner-card,
.member-card,
.contact-form-card,
.footer-card,
.highlight-panel,
.cta-strip,
.payment-note,
.mini-card,
.cart-item,
.cart-summary,
.empty-state,
.legal-card,
.legal-sidecard {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    opacity 0.28s ease;
}

.btn,
.btn-secondary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -42%;
  width: 34%;
  height: 140%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-22deg) translateX(-180%);
  animation: buttonSheen 6.2s ease-in-out infinite;
  animation-delay: var(--btn-sheen-delay, 0s);
}
.btn-secondary::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.nav a:hover,
.nav a.active,
.icon-btn:hover,
.social-icon-btn:hover,
.logo-card:hover,
.card:hover,
.plan-card:hover,
.story-card:hover,
.review-card:hover,
.partner-card:hover,
.member-card:hover,
.shop-card:hover,
.contact-form-card:hover,
.footer-card:hover,
.highlight-panel:hover,
.cta-strip:hover,
.payment-note:hover,
.mini-card:hover,
.cart-item:hover,
.cart-summary:hover,
.empty-state:hover,
.legal-card:hover,
.legal-sidecard:hover {
  border-color: rgba(169, 142, 255, 0.32);
  box-shadow: 0 26px 72px rgba(7, 10, 19, 0.42), 0 0 0 1px rgba(169, 142, 255, 0.12);
}

.hero-panel,
.phone-panel,
.highlight-panel,
.cta-strip,
.case-study-panel,
.case-study-aside,
.shop-card,
.card,
.plan-card,
.story-card,
.review-card,
.partner-card,
.member-card,
.contact-form-card,
.footer-card,
.payment-note,
.mini-card,
.cart-item,
.cart-summary,
.empty-state,
.legal-card,
.legal-sidecard {
  will-change: transform;
  transform-style: preserve-3d;
}

[data-tilt].is-tilting {
  z-index: 2;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -26% auto auto -16%;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 94, 255, 0.34), rgba(118, 94, 255, 0.10) 48%, transparent 70%);
  filter: blur(18px);
  opacity: 0.85;
  animation: pulseGlow 8.5s ease-in-out infinite;
  pointer-events: none;
}

.phone-frame {
  position: relative;
  overflow: hidden;
}
.phone-frame::after {
  content: "";
  position: absolute;
  inset: auto -18% -26% auto;
  width: 58%;
  height: 34%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124,92,255,0.28), transparent 70%);
  filter: blur(26px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-chips .chip {
  position: relative;
  overflow: hidden;
  animation: chipFloat 6.8s ease-in-out infinite;
  animation-delay: calc(var(--chip-index, 0) * 0.35s);
}
.hero-chips .chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent 70%);
  transform: translateX(-130%);
  animation: chipShimmer 6.2s ease-in-out infinite;
  animation-delay: calc(var(--chip-index, 0) * 0.45s + 1.2s);
}

.stat-card {
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(124,92,255,0.95), rgba(80,225,255,0.65));
  box-shadow: 0 0 24px rgba(124,92,255,0.35);
}
.stat-card strong {
  letter-spacing: -0.03em;
}

.phone-frame,
.logo-card,
.shop-image-wrap img,
.hero-image-card img,
.member-card img {
  transition: transform 0.8s cubic-bezier(.22,.61,.36,1), filter 0.8s ease;
}
.phone-panel:hover .phone-frame,
.logo-card:hover,
.shop-card:hover .shop-image-wrap img,
.hero-image-card:hover img,
.member-card:hover img {
  transform: scale(1.04);
}

.phone-panel:hover .phone-frame {
  animation-play-state: paused;
}

.phone-frame {
  animation: phoneLevitate 7.8s ease-in-out infinite;
}

.pill.active {
  animation: activePulse 1.8s ease-in-out infinite;
}

@keyframes buttonSheen {
  0%, 100% { transform: skewX(-22deg) translateX(-190%); opacity: 0; }
  10% { opacity: 1; }
  22% { transform: skewX(-22deg) translateX(360%); opacity: 0; }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(0.94) translate3d(0, 0, 0); opacity: 0.72; }
  50% { transform: scale(1.08) translate3d(18px, 12px, 0); opacity: 1; }
}

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

@keyframes chipShimmer {
  0%, 100% { transform: translateX(-130%); opacity: 0; }
  16% { opacity: 1; }
  32% { transform: translateX(130%); opacity: 0; }
}

@keyframes phoneLevitate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-0.8deg); }
}

@keyframes activePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 18px rgba(124, 92, 255, 0.50); }
  50% { transform: scale(1.25); box-shadow: 0 0 24px rgba(124, 92, 255, 0.85); }
}

@media (max-width: 1099px), (hover: none) and (pointer: coarse) {
  [data-tilt] {
    transform: none !important;
  }
  .phone-frame {
    animation-duration: 8.8s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn::before,
  .btn-secondary::before,
  .hero-panel::before,
  .hero-chips .chip,
  .hero-chips .chip::after,
  .phone-frame,
  .pill.active {
    animation: none !important;
  }

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