/*
  FCK Expensive AI static site
  Update these variables to match your existing backend UI.
*/
:root {
  --bg: #08080d;
  --bg-soft: #10101a;
  --bg-card: rgba(255, 255, 255, 0.07);
  --bg-card-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f7f7fb;
  --muted: #a9abb8;
  --muted-2: #777b8c;
  --lime: #b6ff4d;
  --pink: #ff4dd8;
  --violet: #7c5cff;
  --blue: #39d7ff;
  --orange: #ffb14d;
  --danger: #ff5563;
  --radius-xl: 12px;
  --radius-lg: 9px;
  --radius-md: 6px;
  --radius-sm: 3px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(124, 92, 255, 0.28), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(255, 77, 216, 0.19), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(182, 255, 77, 0.13), transparent 33%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 85%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, transparent, rgba(8, 8, 13, .72) 72%);
  z-index: -1;
}

img,
video {
  max-width: 100%;
}

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

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

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--lime);
  color: #050507;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(8, 8, 13, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.logo img {
  width: 74px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 14px;
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  color: var(--text);
  border-radius: 6px;
  width: 42px;
  height: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  letter-spacing: -.02em;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}

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

.btn-primary {
  color: #07070b;
  background: linear-gradient(135deg, var(--lime), #f2ff83);
  box-shadow: 0 12px 28px rgba(182,255,77,.22);
}

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

.btn-ghost {
  color: var(--muted);
  background: transparent;
  border-color: var(--line);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 9px;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.hero {
  position: relative;
  padding: 80px 0 56px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% -10% -10%;
  background:
    radial-gradient(ellipse 60% 50% at 18% 28%, rgba(124, 92, 255, .22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 82% 72%, rgba(182, 255, 77, .14), transparent 60%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(255, 77, 216, .14), transparent 60%);
  filter: blur(12px);
  animation: heroBgFloat 22s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

@keyframes heroBgFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .9; }
  33%      { transform: translate3d(-2.5%, 1.8%, 0) scale(1.06); opacity: 1; }
  66%      { transform: translate3d(2%, -2.2%, 0) scale(.96); opacity: .85; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 38px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(182,255,77,.35);
  border-radius: 9px;
  background: rgba(182,255,77,.09);
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.display {
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .9;
  letter-spacing: -.08em;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #d8d2ff 18%, var(--lime) 38%, #7cf3ff 56%, var(--pink) 76%, #d8d2ff 92%, #ffffff 100%);
  background-size: 280% 280%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 9s ease-in-out infinite;
  will-change: background-position;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .gradient-text { animation: none; }
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-copy strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 28px;
}

.proof-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.055);
}

.proof-item strong {
  display: block;
  font-size: 18px;
}

.hero-proof .proof-item:first-child {
  position: relative;
  border-color: rgba(182, 255, 77, .28);
  background: rgba(182, 255, 77, .065);
  animation: creditsBoxPulse 4.5s ease-in-out infinite;
}

.hero-proof .proof-item:first-child strong {
  background: linear-gradient(110deg, var(--lime) 0%, #ffffff 45%, var(--lime) 90%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: creditsNumberShimmer 3.6s linear infinite;
}

@keyframes creditsBoxPulse {
  0%, 100% {
    border-color: rgba(182, 255, 77, .22);
    background: rgba(182, 255, 77, .055);
    box-shadow: 0 0 0 rgba(182, 255, 77, 0);
  }
  50% {
    border-color: rgba(182, 255, 77, .55);
    background: rgba(182, 255, 77, .12);
    box-shadow: 0 0 26px rgba(182, 255, 77, .18);
  }
}

@keyframes creditsNumberShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 250% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-proof .proof-item:first-child,
  .hero-proof .proof-item:first-child strong { animation: none; }
}

.proof-item span {
  color: var(--muted);
  font-size: 12px;
}

.hero-stage {
  position: relative;
  min-height: 660px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 160deg, rgba(182,255,77,.35), rgba(124,92,255,.18), rgba(255,77,216,.26), rgba(57,215,255,.2), rgba(182,255,77,.35));
  filter: blur(45px);
  opacity: .42;
  animation: spin 16s linear infinite;
}

@keyframes spin {
  to { transform: rotate(1turn); }
}

.video-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  padding: 18px;
}

.video-card {
  position: relative;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #161622;
  overflow: hidden;
  transform: translateY(18px);
  opacity: 0;
  animation: riseIn .7s ease forwards;
}

.video-card:nth-child(2) { animation-delay: .08s; }
.video-card:nth-child(3) { animation-delay: .16s; }
.video-card:nth-child(4) { animation-delay: .24s; }
.video-card:nth-child(5) { animation-delay: .32s; }
.video-card:nth-child(6) { animation-delay: .40s; }

@keyframes riseIn {
  to { transform: translateY(0); opacity: 1; }
}

.video-card video,
.video-card .video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-fallback {
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 22% 18%, rgba(182,255,77,.38), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255,77,216,.28), transparent 35%),
    linear-gradient(135deg, #171726, #07070b);
}

.video-fallback span {
  text-align: center;
  color: rgba(255,255,255,.74);
  font-weight: 900;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent 55%);
}

.video-card.tall {
  min-height: 300px;
  grid-row: span 2;
}

.video-card.wide {
  grid-column: span 2;
}

.video-meta {
  position: absolute;
  inset-inline: 14px;
  bottom: 14px;
  z-index: 2;
}

.video-meta small {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 9px;
  background: rgba(8,8,13,.72);
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.video-meta strong {
  display: block;
  font-size: 17px;
  letter-spacing: -.03em;
}

.video-meta p {
  margin: 4px 0 10px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 9px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.pill.lime {
  background: rgba(182,255,77,.18);
  color: var(--lime);
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 44px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--lime);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-title {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.06em;
}

.section-copy {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.credit-banner {
  position: relative;
  border: 1px solid rgba(182,255,77,.33);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(182,255,77,.12), transparent 35%),
    linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.credit-banner::before {
  content: "NO BS CREDIT POLICY";
  position: absolute;
  right: -42px;
  top: 34px;
  transform: rotate(18deg);
  padding: 10px 18px;
  border: 2px solid rgba(182,255,77,.55);
  border-radius: 9px;
  color: rgba(182,255,77,.72);
  font-weight: 950;
  letter-spacing: .08em;
}

.credit-banner-inner {
  padding: 34px;
}

.credit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 24px;
}

.credit-card,
.rule-card,
.model-card,
.plan-card,
.content-card,
.compare-card,
.step-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}

.credit-card {
  padding: 20px;
}

.credit-icon,
.rule-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: rgba(182,255,77,.14);
  color: var(--lime);
  font-size: 22px;
}

.credit-card h3,
.rule-card h3,
.model-card h3,
.plan-card h3,
.content-card h3,
.step-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: -.04em;
}

.credit-card p,
.rule-card p,
.model-card p,
.plan-card p,
.content-card p,
.step-card p,
.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.credit-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 9px;
  background: rgba(255,255,255,.09);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.rule-card,
.content-card,
.step-card {
  padding: 22px;
}

.models-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  padding: 10px 13px;
  cursor: pointer;
  font-weight: 800;
}

.filter-btn.active,
.filter-btn:hover {
  color: #07070b;
  background: var(--lime);
}

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

.model-card {
  overflow: hidden;
}

.model-card .video-card {
  margin: 10px;
  min-height: 260px;
  animation: none;
  opacity: 1;
  transform: none;
}

.model-body {
  padding: 6px 20px 22px;
}

.model-body ul,
.plan-card ul,
.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.model-body li,
.plan-card li,
.check-list li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.model-body li::before,
.plan-card li::before,
.check-list li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 900;
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: start;
  position: static;
  overflow: visible;
}

.callout-card {
  position: relative;
  top: auto;
  padding: 28px;
  border: 1px solid rgba(255,77,216,.3);
  border-radius: 6px;
  background:
    radial-gradient(circle at 0 0, rgba(255,77,216,.18), transparent 38%),
    linear-gradient(160deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
  overflow: visible;
  transform: none;
  filter: none;
  height: auto;
  min-height: 0;
}

.callout-card .big-number {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .9;
  letter-spacing: -.08em;
  color: var(--lime);
  font-weight: 950;
}

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

.step-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.step-index {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  color: var(--lime);
  font-size: 18px;
  font-weight: 950;
}

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

.compare-card {
  padding: 24px;
}

.compare-card.bad {
  border-color: rgba(255,85,99,.28);
}

.compare-card.good {
  border-color: rgba(182,255,77,.34);
}

.compare-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.compare-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.compare-card.bad .compare-list li::before {
  content: "✕";
  color: var(--danger);
  font-weight: 900;
}

.compare-card.good .compare-list li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 900;
}

.pricing-hero {
  padding: 70px 0 20px;
}

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

.plan-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.plan-card.featured {
  border-color: rgba(182,255,77,.55);
  transform: translateY(-8px);
}

.plan-card.featured::before {
  content: "Most agency-friendly";
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 6px 10px;
  border-radius: 9px;
  background: var(--lime);
  color: #08080d;
  font-size: 12px;
  font-weight: 950;
}

.price {
  margin: 18px 0 8px;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 950;
}

.price span {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: -.02em;
}

.cost-calc {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
  margin-top: 24px;
}

.calc-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.06);
}

.calc-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.calc-field label {
  color: var(--muted);
  font-weight: 800;
}

.calc-field select,
.calc-field input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(8,8,13,.7);
  color: var(--text);
}

.calc-result {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(182,255,77,.36);
  border-radius: 9px;
  background: rgba(182,255,77,.08);
}

.calc-result strong {
  font-size: 56px;
  line-height: 1;
  letter-spacing: -.07em;
  color: var(--lime);
}

.page-hero {
  padding: 70px 0 34px;
}

.page-hero .display {
  max-width: 960px;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px;
}

.faq-item h3 {
  margin-bottom: 6px;
}

.cta-panel {
  position: relative;
  padding: clamp(28px, 6vw, 60px);
  border: 1px solid rgba(182,255,77,.3);
  border-radius: 6px;
  background:
    radial-gradient(circle at 0 0, rgba(182,255,77,.18), transparent 40%),
    radial-gradient(circle at 100% 30%, rgba(255,77,216,.14), transparent 42%),
    linear-gradient(160deg, rgba(255,255,255,.105), rgba(255,255,255,.04));
  overflow: hidden;
}

.cta-panel h2 {
  max-width: 820px;
  font-size: clamp(36px, 7vw, 78px);
  line-height: .94;
  letter-spacing: -.07em;
}

.cta-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.footer {
  padding: 80px 0 28px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 92, 255, 0.09), transparent 55%),
    rgba(0,0,0,.22);
}

/* Screen-reader-only label utility */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Footer CTA panel ----- */
.footer-cta {
  position: relative;
  margin: 0 0 56px;
}

.footer-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(20,20,32,.95) 0%, rgba(26,22,38,.95) 50%, rgba(15,12,26,.95) 100%);
  box-shadow:
    0 30px 80px -30px rgba(124,92,255,.45),
    0 1px 0 rgba(255,255,255,.05) inset;
}

.footer-cta-orb {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(182,255,77,.55) 0%, transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(124,92,255,.6) 0%, transparent 50%),
    conic-gradient(from 0deg, rgba(255,77,216,.4), rgba(57,215,255,.4), rgba(182,255,77,.4), rgba(124,92,255,.4), rgba(255,77,216,.4));
  filter: blur(50px);
  opacity: .55;
  animation: footerOrbFloat 14s ease-in-out infinite, spin 26s linear infinite;
  pointer-events: none;
}

.footer-cta-card::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,77,216,.3) 0%, transparent 60%);
  filter: blur(60px);
  opacity: .45;
  animation: footerOrbFloat 18s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes footerOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%      { transform: translate3d(-22px, 28px, 0) scale(1.08); }
  66%      { transform: translate3d(28px, -22px, 0) scale(.94); }
}

@media (prefers-reduced-motion: reduce) {
  .footer-cta-orb,
  .footer-cta-card::after { animation: none; }
}

.footer-cta-content {
  position: relative;
  z-index: 1;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px);
  column-gap: 64px;
  align-items: start;
}

.footer-cta-content > .eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 18px;
}

.footer-cta-title {
  grid-column: 1;
  grid-row: 2;
  margin: 0 0 16px;
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.04;
  color: var(--text);
}

.footer-cta-copy {
  grid-column: 1;
  grid-row: 3;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  max-width: none;
}

.footer-cta-copy em {
  font-style: italic;
  color: var(--lime);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(182,255,77,.3);
}

.footer-cta-form {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  display: flex;
  align-items: stretch;
  gap: 6px;
  flex-wrap: wrap;
  padding: 6px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  max-width: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.footer-cta-form:focus-within {
  border-color: rgba(182,255,77,.45);
  box-shadow: 0 0 0 3px rgba(182,255,77,.10);
}

.footer-cta-form input {
  flex: 1 1 240px;
  min-width: 0;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}

.footer-cta-form input::placeholder { color: var(--muted-2); }
.footer-cta-form input:focus { outline: none; }

.footer-cta-form button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.footer-cta-meta {
  grid-column: 2;
  grid-row: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}

.footer-cta-meta strong {
  color: var(--lime);
  font-weight: 900;
  margin-right: 4px;
}

.footer-cta-dot {
  color: rgba(255,255,255,.18);
  font-weight: 900;
}

@media (max-width: 900px) {
  .footer-cta-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 0;
  }
  .footer-cta-content > .eyebrow { grid-column: 1; grid-row: auto; }
  .footer-cta-title { grid-column: 1; grid-row: auto; }
  .footer-cta-copy { grid-column: 1; grid-row: auto; margin-bottom: 24px; }
  .footer-cta-form {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
    max-width: 100%;
  }
  .footer-cta-meta { grid-column: 1; grid-row: auto; }
}

@media (max-width: 720px) {
  .footer-cta-card { padding: 32px 22px; border-radius: 18px; }
  .footer-cta-orb { width: 280px; height: 280px; top: -90px; right: -90px; }
  .footer-cta-card::after { width: 240px; height: 240px; bottom: -120px; left: -80px; }
  .footer-cta-form input { flex: 1 1 100%; }
  .footer-cta-form button { flex: 1 1 100%; }
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 56px;
  margin-bottom: 44px;
  align-items: start;
}

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

.footer-brand > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 260px;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 9px;
  font-size: 11px;
  color: var(--muted-2);
  background: rgba(255,255,255,.04);
}

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

.footer-col {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-col h3 {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer-col a {
  color: var(--muted);
  font-size: 14px;
}

.footer a:hover,
.footer-col a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--muted-2);
  font-size: 13px;
}

.footer-legal-links {
  display: flex;
  gap: 22px;
}

.footer-legal-links a {
  color: var(--muted-2) !important;
  font-size: 13px;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--lime) !important;
}

/* Legal document pages */
.legal-doc {
  max-width: 800px;
  padding: 0 0 80px;
}

.legal-doc h2 {
  margin: 48px 0 14px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
}

.legal-doc h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.legal-doc p,
.legal-doc li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 14px;
}

.legal-doc ul,
.legal-doc ol {
  padding-left: 22px;
  margin: 10px 0 18px;
}

.legal-doc .legal-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.04);
  font-size: 13px;
  color: var(--muted-2);
  margin: 0 0 40px;
}

.legal-meta-item strong {
  display: block;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.legal-doc .highlight-box {
  padding: 16px 20px;
  border: 1px solid rgba(182,255,77,.24);
  border-radius: 9px;
  background: rgba(182,255,77,.07);
  margin: 20px 0;
}

.legal-doc .highlight-box p {
  color: var(--text);
  margin: 0;
}

.legal-doc hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--bg-card);
}

.contact-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}

.contact-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.contact-card a {
  color: var(--lime);
  font-weight: 800;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  margin-bottom: 14px;
  font-size: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .philosophy {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .cost-calc {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .model-grid,
  .plans-grid,
  .rules-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand > p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 820px) {
  .section {
    padding: 48px 0;
  }

  .nav-inner {
    align-items: flex-start;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
  }

  .nav.open .nav-inner {
    flex-wrap: wrap;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open .nav-link,
  .nav.open .btn {
    justify-content: center;
  }

  .hero {
    padding-top: 52px;
  }

  .display {
    font-size: clamp(42px, 14vw, 72px);
  }

  .hero-proof,
  .credit-grid,
  .compare-grid,
  .model-grid,
  .plans-grid,
  .rules-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .video-mosaic {
    grid-template-columns: 1fr;
  }

  .video-card.wide {
    grid-column: span 1;
  }

  .video-card,
  .video-card.tall {
    min-height: 260px;
  }

  .credit-banner::before {
    display: none;
  }

  .credit-banner-inner {
    padding: 22px;
  }

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

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero-actions,
  .models-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Login page */
.auth-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 18%, rgba(124, 92, 255, 0.34), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(57, 215, 255, 0.20), transparent 27%),
    radial-gradient(circle at 58% 92%, rgba(182, 255, 77, 0.13), transparent 32%),
    var(--bg);
}

.auth-nav {
  background: rgba(8, 8, 13, .55);
  border-color: rgba(255,255,255,.18);
}

.auth-main {
  min-height: calc(100vh - 96px);
}

.auth-section {
  position: relative;
  min-height: calc(100vh - 96px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 8vw, 104px) 0 72px;
  overflow: hidden;
}

.auth-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.055) 0 1px, transparent 1px 38px),
    linear-gradient(25deg, rgba(255,255,255,.035) 0 1px, transparent 1px 44px);
  mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,.88), transparent 72%);
  pointer-events: none;
}

.auth-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: .7;
  pointer-events: none;
  animation: floatOrb 9s ease-in-out infinite;
}

.orb-one {
  width: 240px;
  height: 240px;
  left: -70px;
  top: 18%;
  background: radial-gradient(circle, rgba(124,92,255,.55), transparent 68%);
}

.orb-two {
  width: 310px;
  height: 310px;
  right: -120px;
  top: 22%;
  background: radial-gradient(circle, rgba(255,77,216,.34), transparent 70%);
  animation-delay: -3s;
}

.orb-three {
  width: 200px;
  height: 200px;
  right: 24%;
  bottom: 5%;
  background: radial-gradient(circle, rgba(182,255,77,.26), transparent 70%);
  animation-delay: -6s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(18px,-22px,0) scale(1.08); }
}

.auth-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .78fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}

.auth-story {
  max-width: 680px;
}

.auth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(182,255,77,.26);
  border-radius: 9px;
  background: rgba(182,255,77,.08);
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.auth-title {
  max-width: 720px;
  margin: 22px 0 18px;
  font-size: clamp(46px, 7.5vw, 92px);
  line-height: .89;
  letter-spacing: -.08em;
}

.auth-copy {
  max-width: 610px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.auth-proof-panel {
  position: relative;
  max-width: 590px;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.auth-proof-panel::after {
  content: "";
  position: absolute;
  inset: auto -70px -110px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,255,77,.2), transparent 68%);
}

.auth-proof-top,
.auth-credit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-credit-stack {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.auth-credit-row {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: rgba(0,0,0,.18);
}

.auth-credit-row span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.auth-credit-row strong {
  flex: 1;
  font-size: 14px;
}

.auth-credit-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.auth-proof-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.auth-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  max-width: 590px;
  margin-top: 14px;
}

.auth-mini-grid article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
}

.auth-mini-grid span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
}

.auth-mini-grid h2 {
  margin: 12px 0 6px;
  font-size: 18px;
}

.auth-mini-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.auth-card {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07)),
    rgba(8,8,13,.48);
  box-shadow:
    0 34px 100px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(26px) saturate(135%);
  overflow: hidden;
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(182,255,77,.38), rgba(124,92,255,.25), rgba(255,77,216,.26), rgba(255,255,255,.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.auth-card-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,.36), transparent 68%);
  pointer-events: none;
}

.auth-card-header {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.no-bs-stamp {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(182,255,77,.32);
  border-radius: 9px;
  background: rgba(182,255,77,.08);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.auth-card h2 {
  margin: 0 0 8px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: .96;
  letter-spacing: -.06em;
}

.auth-card p {
  margin: 0;
  color: var(--muted);
}

.auth-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group span {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.field-group input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  background: rgba(0,0,0,.24);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field-group input::placeholder {
  color: rgba(169,171,184,.62);
}

.field-group input:focus {
  border-color: rgba(182,255,77,.52);
  box-shadow: 0 0 0 4px rgba(182,255,77,.10);
  background: rgba(0,0,0,.34);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 82px;
}

.password-toggle {
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  color: var(--muted);
  cursor: pointer;
}

.password-toggle:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.22);
}

.password-strength {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.password-strength[hidden] {
  display: none;
}

.password-strength-bar {
  display: flex;
  gap: 4px;
}

.password-strength-bar > span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  transition: background-color 120ms ease;
}

.password-strength-bar > span.is-on-weak    { background: #ef4444; }
.password-strength-bar > span.is-on-fair    { background: #f59e0b; }
.password-strength-bar > span.is-on-good    { background: #facc15; }
.password-strength-bar > span.is-on-strong  { background: #10b981; }

.password-strength-tip {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}
.password-strength-tip.is-weak    { color: #fca5a5; }
.password-strength-tip.is-fair    { color: #fcd34d; }
.password-strength-tip.is-good    { color: #fde68a; }
.password-strength-tip.is-strong  { color: #6ee7b7; }

.auth-form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.auth-form-row a,
.auth-switch a {
  color: var(--lime);
  font-weight: 800;
}

.check-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.check-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--lime);
}

.auth-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.13);
}

.social-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  color: var(--text);
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social-login:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
}

.social-dot {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--text);
  color: #11131a;
  font-weight: 900;
}

.auth-switch {
  text-align: center;
  font-size: 14px;
}

.auth-smallprint {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: rgba(0,0,0,.18);
}

.auth-smallprint p {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
}

/* ───── Social sign-in buttons (Google + Microsoft) ─────
   Used by the provider chooser on /login and /register. Buttons are
   anchors (real top-level navigations to /api/auth/oauth/<provider>)
   styled to feel like buttons. The "or" divider sits between the
   social stack and the "Continue with email" CTA.
*/
.auth-social {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.auth-social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: #f7f7fb;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.auth-social-button:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}
.auth-social-button:active { transform: translateY(0); }
.auth-social-button svg { flex-shrink: 0; }
.auth-social-button span { line-height: 1; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.auth-email-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.auth-email-toggle svg { flex-shrink: 0; }

/* "Don't have an account?" / "Already have an account?" link beneath
   the form. Centered, muted, with a lime accent on the link itself. */
.auth-footer-link {
  margin: 16px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 1;
}
.auth-footer-link a {
  color: #b6ff4d;
  text-decoration: none;
  font-weight: 500;
}
.auth-footer-link a:hover { text-decoration: underline; }

/* Terms-and-privacy checkbox on /register. Stacks the checkbox to the
   left of a wrapping label and slightly enlarges the touch target. */
.auth-checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
  margin: 4px 0 4px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.auth-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #b6ff4d;
  cursor: pointer;
}
.auth-checkbox a {
  color: #b6ff4d;
  text-decoration: underline;
}

/* Big lime tick icon used on the /register success state. */
.auth-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(132, 204, 22, 0.14);
  color: #b6ff4d;
  margin: 4px 0 16px;
}

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

  .auth-card,
  .auth-story {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .auth-section {
    padding-top: 44px;
  }

  .auth-title {
    font-size: clamp(42px, 13vw, 68px);
  }

  .auth-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .auth-form-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-credit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-card {
    border-radius: 9px;
  }
}

/* Model-led media upgrades */
.video-card img,
.video-card .waveform-visual,
.video-card .video-iframe-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-iframe-wrapper {
  overflow: hidden;
  pointer-events: none;
  background: #0a0a14;
}

.video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.18);
  border: 0;
  pointer-events: none;
}

.video-card img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.02);
}

.model-topline,
.model-title-row,
.model-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.provider-label,
.media-source,
.source-link {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 800;
}

.provider-label {
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;
  background: rgba(255,255,255,.08);
}

.media-source {
  color: var(--muted-2);
}

.source-link {
  color: var(--lime);
  text-decoration: none;
}

.source-link:hover {
  text-decoration: underline;
}

.waveform-visual {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 28% 24%, rgba(182,255,77,.24), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(124,92,255,.32), transparent 36%),
    linear-gradient(135deg, #11111b, #050508);
}

.waveform-visual .orb {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,255,77,.34), rgba(124,92,255,.12), transparent 70%);
  filter: blur(6px);
  animation: pulseOrb 3.4s ease-in-out infinite;
}

@keyframes pulseOrb {
  0%, 100% { transform: scale(.88); opacity: .55; }
  50% { transform: scale(1.08); opacity: .92; }
}

.waveform-visual .bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 160px;
  width: min(100%, 480px);
}

.waveform-visual .bars span {
  width: 5px;
  height: calc(24px + (var(--i) % 9) * 12px);
  border-radius: 9px;
  background: linear-gradient(to top, var(--lime), var(--purple));
  opacity: .78;
  animation: soundBar 1.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * .045s);
}

@keyframes soundBar {
  0%, 100% { transform: scaleY(.55); }
  50% { transform: scaleY(1.08); }
}

.wave-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.wave-copy strong {
  font-size: 18px;
  letter-spacing: -.03em;
}

.wave-copy span {
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.model-grid {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}

.model-card {
  position: relative;
  overflow: hidden;
}

.model-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(182,255,77,.12), transparent 38%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

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

.model-card .video-card {
  min-height: 340px;
  border-radius: 9px;
}

.model-card.is-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: stretch;
}

.model-card.is-featured .video-card {
  min-height: 460px;
}

.model-card.is-featured .model-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px 30px 12px;
}

.model-card.is-featured h3 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: .95;
}

.model-body {
  position: relative;
  z-index: 1;
}

.model-actions {
  margin-top: 20px;
}

@media (max-width: 1040px) {
  .model-card.is-featured {
    grid-template-columns: 1fr;
  }

  .model-card.is-featured .model-body {
    padding: 6px 20px 24px;
  }
}

@media (max-width: 820px) {
  .model-grid,
  .model-card.is-featured {
    grid-template-columns: 1fr;
  }

  .model-card.is-featured {
    grid-column: span 1;
  }

  .model-card .video-card,
  .model-card.is-featured .video-card {
    min-height: 300px;
  }
}

/* Pricing update: real FCKexpensive.ai plans */
.pricing-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.35fr);
  gap: 16px;
  margin-top: 28px;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.plan-topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.plan-tag,
.plan-ribbon {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .01em;
}

.free-plan,
.monthly-plan,
.pack-card {
  min-height: 100%;
}

.free-plan {
  border-color: rgba(182,255,77,.28);
  background:
    radial-gradient(circle at 0 0, rgba(182,255,77,.13), transparent 32%),
    linear-gradient(160deg, rgba(255,255,255,.095), rgba(255,255,255,.04));
}

.monthly-plan {
  border-color: rgba(132,61,255,.48);
  background:
    radial-gradient(circle at 100% 0, rgba(132,61,255,.24), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
}

.featured-wide::before,
.pack-popular::before {
  display: none;
}

.pack-popular {
  border-color: rgba(132,61,255,.62);
  box-shadow: 0 22px 70px rgba(132,61,255,.18), 0 18px 48px rgba(0,0,0,.18);
}

.pack-popular .plan-ribbon {
  position: absolute;
  left: 30px;
  top: -12px;
  margin: 0;
  background: var(--purple);
  color: #fff;
}

.plan-actions {
  margin-top: 28px;
}

.plan-actions .btn {
  width: 100%;
  justify-content: center;
}

.plan-card strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .pricing-plan-grid,
  .pack-grid {
    grid-template-columns: 1fr;
  }

  .plan-topline {
    flex-direction: column;
    gap: 8px;
  }

  .pack-popular .plan-ribbon {
    position: static;
    margin-bottom: 18px;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Freepik-style split auth layout
   Used by /login, /register, /verify-email. Strips the marketing nav
   and footer so the page is fully focused on the auth panel.
   ───────────────────────────────────────────────────────────────────── */
body.auth-split-body {
  background: #0c0c0e;
  margin: 0;
  min-height: 100vh;
}

.auth-split {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 100vh;
}

.auth-split-image {
  position: relative;
  background-color: #0e0e12;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 56px;
  color: #fff;
}
.auth-split-image--login {
  background-image: url("/assets/auth-hero-login.png");
}
.auth-split-image--register {
  background-image: url("/assets/auth-hero-register.png");
}
.auth-split-image--verify {
  background-image: url("/assets/auth-hero-login.png");
}
.auth-split-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(135deg, rgba(132, 204, 22, 0.10) 0%, transparent 55%);
  pointer-events: none;
}
.auth-split-image-overlay {
  position: relative;
  max-width: 460px;
}
.auth-split-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}
.auth-split-title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.auth-split-copy {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.auth-split-panel {
  background: #111114;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 48px;
  min-height: 100vh;
  position: relative;
}
.auth-split-panel-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding-top: 8px;
}
.auth-split-logo {
  display: inline-block;
  margin-bottom: 36px;
}
.auth-split-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.auth-split-heading h2 {
  font-size: 26px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.auth-split-heading p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.5;
}
.auth-split-foot {
  text-align: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.auth-split-foot a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth-split-foot a:hover { color: #fff; }

/* Inline reveal helpers (shared with the previous .auth-card markup) */
.auth-split-panel .auth-banner {
  margin: 0 0 16px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  display: none;
}
.auth-split-panel .auth-banner.is-visible { display: block; }
.auth-split-panel .auth-banner.is-error {
  background: rgba(239, 68, 68, 0.12);
  color: #ffb4b4;
  border: 1px solid rgba(239, 68, 68, 0.45);
}
.auth-split-panel .auth-banner.is-info {
  background: rgba(132, 204, 22, 0.12);
  color: #d9ffb0;
  border: 1px solid rgba(132, 204, 22, 0.4);
}
.auth-split-panel .auth-section-block { display: none; }
.auth-split-panel .auth-section-block.is-active { display: block; }
.auth-split-panel .totp-input {
  letter-spacing: 0.45em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-size: 20px;
}
.auth-split-panel .auth-link-button {
  background: transparent;
  border: 0;
  padding: 0;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth-split-panel .auth-link-button:hover { color: #fff; }
.auth-split-panel button[disabled],
.auth-split-panel .auth-submit[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.auth-back-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.7);
  font: inherit;
  cursor: pointer;
  padding: 4px 0;
}
.auth-back-row:hover { color: #fff; }

/* Verify-email screen blocks */
.verify-panel { text-align: center; }
.verify-panel .verify-block { padding-top: 8px; }
.verify-panel .verify-block h1 {
  margin: 16px 0 12px;
  font-size: 24px;
}
.verify-panel .verify-block p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  font-size: 14px;
}
.verify-panel .verify-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(132, 204, 22, 0.14);
  color: #b6ff4d;
  margin: 0 auto 4px;
}
.verify-panel .verify-icon.is-error {
  background: rgba(239, 68, 68, 0.14);
  color: #ffb4b4;
}
.verify-panel .verify-icon.is-loading {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255,255,255,0.6);
}
.verify-panel .verify-cta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.verify-panel .spinner {
  width: 28px; height: 28px;
  border: 3px solid rgba(255,255,255,0.18);
  border-top-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: verifyspin 0.9s linear infinite;
}
@keyframes verifyspin { to { transform: rotate(360deg); } }

@media (max-width: 820px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-split-image { display: none; }
  .auth-split-panel {
    padding: 32px 20px 20px;
    min-height: 100vh;
  }
  .auth-split-logo { margin-bottom: 24px; }
}
