/* ============================================
   WolfOS Core 1.2 — styles.css
   Clean, professional, blue-blended
============================================ */

:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;

  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --bg-blend: linear-gradient(180deg, #ffffff 0%, #f3f7ff 50%, #ecf3ff 100%);
  --text: var(--slate-900);
  --border: #e6edf7;
  --border-strong: #d6e2f3;
  --gradient-blue: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  --gradient-blue-soft: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px -4px rgba(37, 99, 235, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 48px -16px rgba(37, 99, 235, 0.18), 0 8px 24px -8px rgba(15, 23, 42, 0.08);
  --shadow-blue: 0 14px 38px -10px rgba(37, 99, 235, 0.45);

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  background-image: var(--bg-blend);
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 28px; height: 28px;
  display: inline-flex;
  transition: transform 0.4s var(--ease);
}

.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.2s var(--ease);
}

.nav-links a:hover { color: var(--blue-700); }
.nav-links a.active { color: var(--blue-700); font-weight: 600; }

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

/* Mobile menu */
.nav-toggle {
  position: fixed;
  top: 14px; right: 18px;
  z-index: 60;
  width: 42px; height: 42px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 55;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 72px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-800);
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.btn {
  border: none;
  margin-top: 12px;
  color: #fff;
  justify-content: center;
}
body.menu-open { overflow: hidden; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  letter-spacing: -0.005em;
  font-family: inherit;
}

.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px -10px rgba(37, 99, 235, 0.6);
  filter: brightness(1.05);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: #fff;
  color: var(--slate-800);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--blue-400);
  color: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 26px; font-size: 15px; border-radius: 12px; }
.btn-block { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--blue-300), transparent 60%);
  top: -120px; left: -120px;
  animation: float 18s ease-in-out infinite;
}
.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sky-300), transparent 60%);
  top: -100px; right: -160px;
  opacity: 0.45;
  animation: float 22s ease-in-out infinite reverse;
}
.blob-3 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #c7d9ff, transparent 60%);
  bottom: -340px; left: 50%;
  opacity: 0.4;
  animation: float-center 28s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(40px, 40px); }
}
@keyframes float-center {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(30px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.pill-tag {
  background: var(--gradient-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--slate-900);
  margin: 0 auto 24px;
  max-width: 900px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 50%, var(--sky-400) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: gradient-shift 10s ease-in-out infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 19px;
  color: var(--slate-600);
  margin: 0 auto 36px;
  max-width: 620px;
  line-height: 1.55;
}

.hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-foot {
  font-size: 13px;
  color: var(--slate-500);
}

/* ===== SECTIONS ===== */
.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--slate-900);
  margin-bottom: 18px;
}

.section-head p {
  font-size: 18px;
  color: var(--slate-600);
  line-height: 1.55;
}

/* ===== FEATURES ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-blue-soft);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature:hover .feature-icon { transform: scale(1.05) rotate(-3deg); }

.feature h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.feature p {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ===== EDITIONS ===== */
.edition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.edition {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
  position: relative;
}

.edition:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

.edition-soon { opacity: 0.92; }
.edition-soon:hover { opacity: 1; }

.edition-featured {
  border-color: var(--blue-400);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: var(--shadow-md);
}

.edition-flag {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
}

.edition-flag-soon {
  background: var(--slate-200);
  color: var(--slate-600);
}

.edition-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}

.edition-tag {
  font-size: 14px;
  color: var(--slate-600);
  margin-top: 4px;
}

.edition-price {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--slate-900);
  margin-top: 18px;
}
.edition-price.free { color: var(--blue-600); }
.edition-price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0;
}

.edition-version {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--blue-600);
  margin-top: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.edition-soon .edition-version { color: var(--slate-400); }

.edition-list {
  list-style: none;
  margin: 24px 0 28px;
  flex: 1;
}

.edition-list li {
  font-size: 14.5px;
  color: var(--slate-700);
  padding: 7px 0 7px 22px;
  position: relative;
}

.edition-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 6px;
  border-left: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.edition-soon .edition-list li::before {
  border-color: var(--slate-300);
}

/* ===== CTA / DOWNLOAD ===== */
.cta-section { padding-bottom: 120px; }

.cta-card {
  background: var(--gradient-blue);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(37, 99, 235, 0.5);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
  animation: cta-sweep 14s ease-in-out infinite;
}

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

.cta-card h2 {
  position: relative;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.cta-card p {
  position: relative;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 36px;
  max-width: 560px;
}

.cta-row {
  position: relative;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 22px;
}

.cta-card .btn-primary {
  background: #fff;
  color: var(--blue-700);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.25);
}
.cta-card .btn-primary:hover {
  filter: brightness(1);
  background: #f8fafc;
}

.cta-meta {
  position: relative;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-family: 'JetBrains Mono', monospace;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-meta code {
  font-family: inherit;
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 8px;
  border-radius: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--slate-50);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--slate-500);
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.55;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 480px;
}

.footer-cols h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.footer-cols a {
  display: block;
  font-size: 14px;
  color: var(--slate-600);
  padding: 5px 0;
  transition: color 0.2s var(--ease);
}
.footer-cols a:hover { color: var(--blue-700); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--slate-500);
}

.footer-version { font-family: 'JetBrains Mono', monospace; }

/* ============================================
   THANK YOU / DOWNLOAD PAGE
============================================ */
.ty-main {
  position: relative;
  padding: 130px 0 60px;
  overflow: hidden;
}

.ty-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ty-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

/* Thank-you hero */
.ty-hero {
  text-align: center;
  margin-bottom: 80px;
}

.ty-check {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  animation: check-pop 0.5s var(--ease) both;
}
.ty-check svg { width: 36px; height: 36px; }

@keyframes check-pop {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

.ty-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.ty-sub {
  font-size: 17px;
  color: var(--slate-600);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.ty-link {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ty-link:hover { color: var(--blue-800); }

/* Access code card */
.access-card {
  background: #fff;
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.access-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 60%);
  pointer-events: none;
}

.access-label {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--slate-500);
  margin-bottom: 14px;
}

.access-code {
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(24px, 5.6vw, 36px);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 14px 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px dashed var(--blue-200);
  animation: code-in 0.5s var(--ease) both 0.2s;
}

@keyframes code-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.access-card .btn { position: relative; }

.access-warn {
  position: relative;
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.55;
  margin-top: 18px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: left;
}
.access-warn strong { color: var(--blue-800); }

/* Thank-you sections */
.ty-section {
  margin-bottom: 72px;
  text-align: center;
}

.ty-section h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.ty-section-sub {
  font-size: 16px;
  color: var(--slate-600);
  margin: 0 auto 40px;
  max-width: 520px;
}

.ty-section code,
.ty-sub code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88em;
  background: var(--slate-100);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--slate-800);
}

/* Steps */
.steps {
  list-style: none;
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  transition: all 0.3s var(--ease);
}

.step:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gradient-blue-soft);
  color: var(--blue-700);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.step-body p {
  font-size: 14.5px;
  color: var(--slate-600);
  line-height: 1.6;
}

.step-body strong { color: var(--slate-900); }

kbd {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82em;
  background: var(--slate-100);
  border: 1px solid var(--border-strong);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 1px 6px;
  color: var(--slate-700);
}

/* Share section */
.share-card {
  background: var(--gradient-blue);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(37, 99, 235, 0.5);
}

.share-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
  animation: cta-sweep 14s ease-in-out infinite;
}

.share-card .eyebrow { color: rgba(255,255,255,0.85); position: relative; }

.share-card h2 {
  position: relative;
  color: #fff;
  margin-bottom: 14px;
}

.share-card p {
  position: relative;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.share-actions {
  position: relative;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.share-card .btn-primary {
  background: #fff;
  color: var(--blue-700);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.25);
}
.share-card .btn-primary:hover { filter: brightness(1); background: #f8fafc; }

.share-card .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
.share-card .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

/* ===== SAYINGS (scattered, page-relevant quotes) ===== */
.saying {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  padding: 76px 24px;
}

.saying-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 76px;
  line-height: 1;
  height: 36px;
  color: var(--blue-300);
}

.saying p {
  font-size: clamp(19px, 2.5vw, 26px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.015em;
  line-height: 1.45;
  color: var(--slate-700);
  margin-bottom: 14px;
}

.saying cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-600);
}

/* ===== STYLE SHOWCASE (sample app windows) ===== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.win {
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.win:hover {
  transform: translateY(-5px);
  box-shadow: 0 36px 70px -18px rgba(37, 99, 235, 0.26), 0 12px 30px -10px rgba(15, 23, 42, 0.1);
}

.win-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border-bottom: 1px solid var(--border);
}

.win-dot { width: 11px; height: 11px; border-radius: 50%; }
.win-dot.r { background: #ff5f57; }
.win-dot.y { background: #febc2e; }
.win-dot.g { background: #28c840; }

.win-name {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-500);
}

.win-body { min-height: 236px; }

/* Browser window */
.win-tabs {
  display: flex;
  gap: 4px;
  padding: 8px 8px 0;
  background: #eef2f7;
}

.win-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--slate-500);
  background: #dfe6ee;
  padding: 8px 13px;
  border-radius: 9px 9px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-tab.active { background: #fff; color: var(--slate-800); }
.win-tab i {
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--blue-400);
  display: inline-block;
  flex-shrink: 0;
}

.win-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--slate-500);
  background: #fff;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.win-url::before {
  content: '';
  width: 11px; height: 11px;
  border: 2px solid var(--blue-400);
  border-radius: 50%;
  flex-shrink: 0;
}

.win-page { padding: 20px; }
.win-page-banner {
  height: 56px;
  border-radius: 10px;
  background: var(--gradient-blue);
  margin-bottom: 14px;
}
.win-line {
  height: 9px;
  border-radius: 999px;
  background: var(--slate-200);
  margin-bottom: 9px;
}
.win-line.w80 { width: 80%; }
.win-line.w60 { width: 60%; }
.win-line.w40 { width: 40%; background: var(--blue-200); }

/* Files window */
.win-files { display: flex; }

.win-fside {
  width: 132px;
  background: var(--slate-50);
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  flex-shrink: 0;
}

.win-fitem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--slate-600);
  padding: 7px 9px;
  border-radius: 7px;
}
.win-fitem.active { background: var(--blue-50); color: var(--blue-700); }
.win-fitem i {
  width: 13px; height: 13px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.55;
}

.win-fmain {
  flex: 1;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 12px;
  align-content: start;
}

.file { text-align: center; }
.file-ico {
  height: 42px;
  border-radius: 9px;
  background: var(--gradient-blue-soft);
  margin-bottom: 6px;
}
.file-ico.folder { background: linear-gradient(135deg, #bfdbfe, #dbeafe); }
.file-ico.doc { background: linear-gradient(135deg, #e0f2fe, #eff6ff); }
.file span {
  font-size: 11px;
  color: var(--slate-600);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Terminal window (dark) */
.win.win-dark {
  background: #0f172a;
  border-color: #1e293b;
}
.win-dark .win-bar {
  background: #1e293b;
  border-color: #334155;
}
.win-dark .win-name { color: #64748b; }

.win-term {
  padding: 16px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  line-height: 1.85;
  color: #cbd5e1;
}
.win-term .p { color: #38bdf8; }
.win-term .c { color: #f1f5f9; }
.win-term .o { color: #94a3b8; }
.win-term .ok { color: #4ade80; }
.win-term .cur {
  display: inline-block;
  width: 7px; height: 14px;
  background: #38bdf8;
  vertical-align: -2px;
  animation: term-blink 1.1s steps(2) infinite;
}
@keyframes term-blink { 50% { opacity: 0; } }

/* Settings window */
.win-settings { padding: 6px 0; }

.set-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.set-row:last-child { border-bottom: none; }

.set-label { font-size: 13px; font-weight: 500; color: var(--slate-700); }
.set-sub { font-size: 11px; color: var(--slate-400); margin-top: 1px; }

.toggle {
  width: 38px; height: 22px;
  border-radius: 999px;
  background: var(--slate-200);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s var(--ease);
}
.toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: left 0.2s var(--ease);
}
.toggle.on { background: var(--blue-500); }
.toggle.on::after { left: 18px; }

/* ===== INTERIOR PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 170px 0 72px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px circle at 22% -5%, rgba(96, 165, 250, 0.20), transparent 60%),
    radial-gradient(620px circle at 86% 8%, rgba(56, 189, 248, 0.16), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--slate-900);
  margin: 0 auto 18px;
  max-width: 840px;
}

.page-hero .lead {
  font-size: 19px;
  color: var(--slate-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}

.page-hero .hero-cta { margin-top: 32px; }

/* ===== SPLIT (alternating feature rows) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split + .split { margin-top: 110px; }
.split.reverse .split-text { order: 2; }

.split-text h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--slate-900);
  margin-bottom: 14px;
}
.split-text > p {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

.split-list {
  list-style: none;
  margin-top: 20px;
}
.split-list li {
  position: relative;
  padding: 9px 0 9px 28px;
  font-size: 15px;
  color: var(--slate-700);
}
.split-list li strong { color: var(--slate-900); }
.split-list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 15px;
  width: 13px; height: 6px;
  border-left: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  transform: rotate(-45deg);
  border-radius: 1px;
}

/* Generic visual card (when there's no app-window mockup) */
.visual-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  background: var(--gradient-blue-soft);
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.visual-card::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28), transparent 65%);
  top: -120px; right: -120px;
}
.visual-card svg {
  width: 110px; height: 110px;
  color: var(--blue-600);
  position: relative;
  z-index: 1;
}

/* ===== APPS GRID ===== */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s var(--ease);
}
.app-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
}
.app-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gradient-blue-soft);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.app-ico svg { width: 26px; height: 26px; }
.app-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--slate-900);
  margin-bottom: 6px;
}
.app-card .app-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.app-card p {
  font-size: 14.5px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ===== COMPARISON TABLE ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 560px;
}
.compare th,
.compare td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.compare thead th {
  background: var(--slate-50);
  font-weight: 700;
  color: var(--slate-900);
  text-align: center;
  font-size: 15px;
}
.compare thead th:first-child { text-align: left; }
.compare thead th.col-featured {
  background: var(--blue-50);
  color: var(--blue-700);
}
.compare tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--slate-700);
}
.compare tbody td {
  text-align: center;
  color: var(--slate-600);
}
.compare td.col-featured { background: rgba(239, 246, 255, 0.6); }
.compare .yes { color: var(--blue-600); font-weight: 700; }
.compare .no { color: var(--slate-300); }
.compare tr:last-child th,
.compare tr:last-child td { border-bottom: none; }

/* ===== VERIFY CODE WIDGET ===== */
.verify {
  max-width: 460px;
  margin: 0 auto;
}
.verify-form {
  display: flex;
  gap: 10px;
}
.verify-input {
  flex: 1;
  min-width: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--slate-900);
}
.verify-input:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}
.verify-result {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
  color: var(--slate-500);
}
.verify-result.ok { color: #16a34a; }
.verify-result.bad { color: #dc2626; }

/* Access code status note (download page) */
.code-note {
  position: relative;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-500);
  margin-top: 12px;
}
.code-note.synced { color: #16a34a; }

/* Access code account tip (download page) */
.code-tip {
  position: relative;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.55;
}
.code-tip a {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.code-tip a:hover { color: var(--blue-800); }

/* ===== ACCOUNTS: sign in / sign up / profile ===== */
.nav-actions .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  transition: color 0.2s var(--ease);
}
.nav-actions .nav-link:hover,
.nav-actions .nav-link.active { color: var(--blue-700); }

.auth-wrap {
  max-width: 460px;
  margin: 0 auto;
}

.auth-card,
.profile-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
}

.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--slate-100);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  text-align: center;
  padding: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-500);
  border-radius: 9px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s var(--ease);
}
.auth-tab.active {
  background: #fff;
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

.auth-panel { display: none; }
.auth-panel.active { display: block; }

/* Continue with Google */
.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  color: var(--slate-800);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-google:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
}
.btn-google:disabled {
  opacity: 0.6;
  cursor: default;
  box-shadow: none;
}
.btn-google svg { flex-shrink: 0; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 24px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-divider span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
}

.field { margin-bottom: 16px; text-align: left; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--slate-900);
}
.field input:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}

.auth-msg {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate-500);
  min-height: 18px;
  margin: 4px 0 14px;
}
.auth-msg.error { color: #dc2626; }
.auth-msg.ok { color: #16a34a; }

.auth-card .btn-lg { width: 100%; }

.auth-foot {
  margin-top: 18px;
  font-size: 13px;
  color: var(--slate-500);
  text-align: center;
}
.auth-foot strong { color: var(--slate-700); }

.auth-note {
  max-width: 460px;
  margin: 18px auto 0;
  font-size: 12.5px;
  color: var(--slate-500);
  text-align: center;
  line-height: 1.55;
}

/* Profile dashboard */
.profile-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}
.profile-email {
  font-size: 14px;
  color: var(--slate-500);
}

.profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.profile-row .k { color: var(--slate-500); }
.profile-row .v { color: var(--slate-900); font-weight: 600; }

.profile-code-box {
  margin: 22px 0;
  background: var(--gradient-blue-soft);
  border: 1px solid var(--blue-200);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}
.profile-code-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 6px 0 10px;
}

.profile-code-empty {
  margin: 22px 0;
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}
.profile-code-empty p {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 16px;
}

.profile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.profile-actions .btn { flex: 1; min-width: 140px; }
.profile-code-box .profile-actions,
.profile-code-empty .profile-actions {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Select fields (match .field input) */
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--slate-900);
  cursor: pointer;
}
.field select:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}

/* Child profiles (parental controls) */
.profile-children { margin-top: 20px; }

.children-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--slate-900);
}
.children-sub {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.55;
  margin: 4px 0 18px;
}

.child-list { margin-bottom: 14px; }

.child-empty {
  font-size: 13.5px;
  color: var(--slate-500);
  line-height: 1.55;
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.child-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
}
.child-avatar {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-blue-soft);
  color: var(--blue-700);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.child-info { flex: 1; min-width: 0; }
.child-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--slate-900);
}
.child-age {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-600);
  margin-top: 1px;
}
.child-limits {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 3px;
  line-height: 1.45;
}
.child-remove {
  flex-shrink: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-500);
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.child-remove:hover {
  color: #dc2626;
  border-color: #fca5a5;
}

.child-add {
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
}
.child-add-actions {
  display: flex;
  gap: 8px;
}
.child-add-actions .btn { flex: 1; }

/* ===== WOLF+ SUBSCRIPTION ===== */
.plus-hero-mark {
  font-size: clamp(46px, 9vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--slate-900);
  margin-bottom: 6px;
}
.plus-hero-mark span {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Inline Wolf+ badge */
.plus-pill {
  display: inline-block;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 6px;
  vertical-align: middle;
}

/* Pricing card */
.plus-price-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px 36px;
  text-align: center;
}
.plus-price {
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plus-price small {
  font-size: 17px;
  font-weight: 600;
  color: var(--slate-500);
  -webkit-text-fill-color: var(--slate-500);
}
.plus-price-note {
  font-size: 13px;
  color: var(--slate-500);
  margin-top: 6px;
}
.plus-list {
  list-style: none;
  text-align: left;
  margin: 26px 0;
}
.plus-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: 14.5px;
  color: var(--slate-700);
}
.plus-list li strong { color: var(--slate-900); }
.plus-list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 15px;
  width: 13px; height: 6px;
  border-left: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.plus-price-card .btn { width: 100%; }
.plus-avail {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--slate-500);
}

/* "Stays forever" highlight */
.plus-keep {
  max-width: 780px;
  margin: 0 auto;
  background: var(--gradient-blue-soft);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.plus-keep::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 65%);
  top: -130px; right: -110px;
  pointer-events: none;
}
.plus-keep-ico {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: var(--gradient-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.plus-keep-ico svg { width: 28px; height: 28px; }
.plus-keep h3 {
  position: relative;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.plus-keep p {
  position: relative;
  font-size: 15.5px;
  color: var(--slate-600);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* Wolf+ teaser banner (home / apps / editions) */
.plus-banner {
  background: var(--gradient-blue);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(37, 99, 235, 0.5);
}
.plus-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 70%; height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.16), transparent 60%);
  pointer-events: none;
}
.plus-banner-text { position: relative; }
.plus-banner-text h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.plus-banner-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  max-width: 540px;
  line-height: 1.55;
}
.plus-banner .btn {
  position: relative;
  flex-shrink: 0;
  background: #fff;
  color: var(--blue-700);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.25);
}
.plus-banner .btn:hover { background: #f8fafc; filter: none; }

@media (max-width: 640px) {
  .plus-banner { padding: 32px 24px; }
  .plus-keep { padding: 32px 22px; }
  .plus-price-card { padding: 32px 24px; }
}

/* ===== REVEAL ANIMATIONS =====
   Only hide .reveal elements when JS is available (html.js).
   If JS is disabled or fails to load, content stays fully visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.feature-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.feature-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
.feature-grid .reveal:nth-child(4) { transition-delay: 0.05s; }
.feature-grid .reveal:nth-child(5) { transition-delay: 0.12s; }
.feature-grid .reveal:nth-child(6) { transition-delay: 0.19s; }

.edition-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.edition-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.edition-grid .reveal:nth-child(3) { transition-delay: 0.25s; }

.showcase-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.showcase-grid .reveal:nth-child(2) { transition-delay: 0.13s; }
.showcase-grid .reveal:nth-child(3) { transition-delay: 0.21s; }
.showcase-grid .reveal:nth-child(4) { transition-delay: 0.29s; }

.app-grid .reveal:nth-child(3n+1) { transition-delay: 0.05s; }
.app-grid .reveal:nth-child(3n+2) { transition-delay: 0.13s; }
.app-grid .reveal:nth-child(3n+3) { transition-delay: 0.21s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .edition-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; }
  .split { gap: 44px; }
  .split + .split { margin-top: 80px; }
}

@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-text { order: 0; }
  .split-visual { order: -1; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 140px 0 90px; }
  .page-hero { padding: 130px 0 56px; }
  .section { padding: 70px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .win-fmain { grid-template-columns: repeat(2, 1fr); }
  .saying { padding: 52px 18px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-card { padding: 50px 24px; }
  .ty-main { padding: 110px 0 50px; }
  .access-card { padding: 28px 22px; }
  .step { padding: 20px; gap: 14px; }
  .share-card { padding: 44px 24px; }
  .verify-form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
