/* ================================
   Art4IRA — Design System
   ================================ */

:root {
  --purple: #6B4DFF;
  --purple-dark: #4a2fd9;
  --pink: #FF5DA2;
  --yellow: #FFD93D;
  --cyan: #4DD8E6;
  --green: #4ECB8D;
  --orange: #FF8A5B;

  --ink: #1a1333;
  --ink-soft: #4b4366;
  --ink-mute: #7a7192;
  --line: #eae6f5;
  --bg: #fdfbff;
  --bg-soft: #f5f1ff;
  --white: #ffffff;

  --grad-hero: linear-gradient(135deg, #FF5DA2 0%, #6B4DFF 50%, #4DD8E6 100%);
  --grad-text: linear-gradient(90deg, #FF5DA2 0%, #6B4DFF 100%);
  --grad-cta: linear-gradient(135deg, #6B4DFF 0%, #FF5DA2 100%);
  --grad-card: linear-gradient(135deg, rgba(107,77,255,0.05), rgba(255,93,162,0.05));

  --shadow-sm: 0 2px 8px rgba(26,19,51,0.06);
  --shadow-md: 0 10px 30px rgba(26,19,51,0.08);
  --shadow-lg: 0 20px 60px rgba(107,77,255,0.18);
  --shadow-glow: 0 0 40px rgba(107,77,255,0.25);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { color: var(--ink-soft); }

a { color: inherit; text-decoration: none; transition: all 0.2s ease; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(107,77,255,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.underline-wobble {
  position: relative;
  display: inline-block;
}
.underline-wobble::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -0.1em;
  height: 0.35em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-small { padding: 10px 20px; font-size: 0.88rem; }
.btn-large { padding: 18px 36px; font-size: 1.05rem; }

.btn-primary {
  background: var(--grad-cta);
  color: white;
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 70px rgba(107,77,255,0.35);
}

.btn-ghost {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}

/* ================================
   NAV
   ================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.logo-mark {
  font-size: 1.6rem;
  animation: wiggle 4s ease-in-out infinite;
  transform-origin: center;
  display: inline-block;
}
@keyframes wiggle {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-15deg); }
  94% { transform: rotate(15deg); }
  96% { transform: rotate(-10deg); }
  98% { transform: rotate(5deg); }
}
.logo-accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--purple); }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content .lead {
  font-size: 1.15rem;
  margin: 1.5rem 0 2rem;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: 'Roboto', sans-serif;
  font-size: 1.7rem;
  color: var(--ink);
}
.hero-stats span {
  font-size: 0.85rem;
  color: var(--ink-mute);
}

/* Hero blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--pink);
  top: -150px; right: -100px;
  animation: blobFloat 20s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--purple);
  bottom: -100px; left: -100px;
  animation: blobFloat 25s ease-in-out infinite reverse;
}
.blob-3 {
  width: 350px; height: 350px;
  background: var(--cyan);
  top: 40%; left: 40%;
  opacity: 0.3;
  animation: blobFloat 30s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Hero visual cards */
.hero-visual {
  position: relative;
  height: 480px;
}
.art-card {
  position: absolute;
  width: 200px;
  background: white;
  border-radius: var(--r-md);
  padding: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease;
}
.art-card:hover {
  transform: translateY(-8px) rotate(0deg) !important;
}
.art-preview {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.art-1 {
  background:
    radial-gradient(circle at 30% 40%, #fff 0 3px, transparent 4px),
    radial-gradient(circle at 70% 20%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 85% 60%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 20% 80%, #fff 0 2px, transparent 3px),
    linear-gradient(135deg, #6B4DFF 0%, #FF5DA2 60%, #FFD93D 100%);
}
.art-1::after {
  content: '🦄';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.art-2 {
  background: linear-gradient(135deg, #4DD8E6, #4ECB8D, #FFD93D, #FF8A5B, #FF5DA2);
  position: relative;
}
.art-2::after {
  content: '🐱';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.art-3 {
  background: radial-gradient(circle at 50% 50%, #1a1333 0%, #4a2fd9 70%, #6B4DFF 100%);
  position: relative;
}
.art-3::after {
  content: '🚀';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.art-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px;
  font-size: 0.85rem;
  font-weight: 500;
}
.art-meta strong {
  color: var(--purple);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

.card-1 {
  top: 20px; left: 20px;
  transform: rotate(-6deg);
  animation: float1 6s ease-in-out infinite;
}
.card-2 {
  top: 30px; right: 40px;
  transform: rotate(5deg);
  animation: float2 7s ease-in-out infinite;
}
.card-3 {
  bottom: 60px; left: 80px;
  transform: rotate(3deg);
  animation: float1 8s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-15px) rotate(-6deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-18px) rotate(5deg); }
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  right: 10px;
  background: white;
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float2 5s ease-in-out infinite;
}
.floating-badge span {
  font-size: 1.8rem;
}
.floating-badge strong {
  display: block;
  font-family: 'Roboto', sans-serif;
  color: var(--green);
  font-size: 1rem;
}
.floating-badge small {
  color: var(--ink-mute);
  font-size: 0.75rem;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; margin-top: 40px; }
  .art-card { width: 160px; }
}

/* ================================
   SECTION HEADS
   ================================ */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-head h2 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 1.05rem;
  margin-top: 1rem;
}
.section-sub em {
  font-style: normal;
  font-weight: 700;
  color: var(--purple);
}

/* ================================
   HOW IT WORKS
   ================================ */
.how {
  padding: 100px 0;
  background: var(--bg-soft);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: white;
  padding: 32px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 44px; height: 44px;
  background: var(--grad-cta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(107,77,255,0.3);
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.95rem; }

@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}

/* ================================
   BENEFITS
   ================================ */
.benefits { padding: 100px 0; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: white;
  padding: 36px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.benefit-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 20px;
  background: var(--grad-card);
}
.benefit-card h3 { margin-bottom: 10px; }
.benefit-card p { font-size: 0.95rem; }

@media (max-width: 960px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

/* ================================
   CALCULATOR
   ================================ */
.calculator {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.calc-card {
  max-width: 960px;
  margin: 0 auto;
  background: white;
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.calc-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,217,61,0.15), transparent 70%);
  pointer-events: none;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.calc-field label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 6px;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  outline: none;
  background-image: var(--grad-cta);
  background-size: 50% 100%;
  background-repeat: no-repeat;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--purple);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(107,77,255,0.35);
  transition: transform 0.15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--purple);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(107,77,255,0.35);
}

.slider-value {
  min-width: 110px;
  text-align: right;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 2px;
}
.slider-value .currency { color: var(--ink-mute); font-size: 1rem; margin-right: 1px; }
.slider-value .per { color: var(--ink-mute); font-size: 0.8rem; font-weight: 500; margin-left: 4px; }

.slider-ticks {
  display: flex;
  justify-content: space-between;
  color: var(--ink-mute);
  font-size: 0.75rem;
  font-weight: 500;
}

.calc-output {
  background: linear-gradient(160deg, #1a1333 0%, #4a2fd9 100%);
  color: white;
  padding: 36px 32px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.calc-output::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,93,162,0.4), transparent 70%);
  pointer-events: none;
}
.calc-label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.calc-big {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 3.6rem);
  background: linear-gradient(90deg, #FFD93D 0%, #FF8A5B 50%, #FF5DA2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.calc-sub {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.calc-sub strong {
  color: white;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
}
.calc-bar {
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}
.calc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD93D, #FF5DA2);
  border-radius: 999px;
  width: 0%;
  transition: width 0.4s ease;
}
.calc-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .calc-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
}

/* ================================
   TESTIMONIALS
   ================================ */
.stories {
  padding: 100px 0;
  background: var(--bg-soft);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: white;
  padding: 28px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial blockquote {
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial figcaption strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial figcaption span {
  color: var(--ink-mute);
  font-size: 0.82rem;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.a1 { background: linear-gradient(135deg, #FF5DA2, #FFD93D); }
.a2 { background: linear-gradient(135deg, #4DD8E6, #6B4DFF); }
.a3 { background: linear-gradient(135deg, #4ECB8D, #4DD8E6); }
.a4 { background: linear-gradient(135deg, #FFD93D, #FF8A5B); }
.a5 { background: linear-gradient(135deg, #6B4DFF, #FF5DA2); }
.a6 { background: linear-gradient(135deg, #FF8A5B, #FF5DA2); }

@media (max-width: 960px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ================================
   RESOURCES
   ================================ */
.resources { padding: 100px 0; }
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.resource-card {
  background: white;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--r-lg);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.resource-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
}
.resource-tag {
  display: inline-block;
  background: rgba(107,77,255,0.1);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.resource-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.resource-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex-grow: 1;
}
.read-more {
  color: var(--purple);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .resource-grid { grid-template-columns: 1fr; }
}

/* ================================
   FAQ
   ================================ */
.faq {
  padding: 100px 0;
  background: var(--bg-soft);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq details {
  background: white;
  border-radius: var(--r-md);
  padding: 0;
  border: 1px solid var(--line);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.faq details[open] {
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  padding: 22px 26px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 60px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq details p {
  padding: 0 26px 22px;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ================================
   CTA
   ================================ */
.cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  text-align: center;
  background: var(--grad-hero);
  color: white;
  padding: 80px 40px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '🎨 🦄 ✨ 🚀 💫 🌈';
  position: absolute;
  inset: 0;
  font-size: 3rem;
  opacity: 0.08;
  display: flex;
  align-items: center;
  justify-content: space-around;
  letter-spacing: 40px;
  pointer-events: none;
}
.cta h2 {
  color: white;
  margin-bottom: 14px;
  position: relative;
}
.cta p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}
.cta-buttons {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.cta .btn-ghost {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: white;
  backdrop-filter: blur(10px);
}
.cta .btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
  color: white;
}
.cta .btn-primary {
  background: white;
  color: var(--purple);
}
.cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: #13102a;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: white; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 360px; }
.footer-contact { margin-top: 16px; }
.footer-contact a { color: var(--cyan); font-weight: 500; }
.footer-contact a:hover { color: white; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-cols a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  padding: 6px 0;
}
.footer-cols a:hover { color: white; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom small {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  line-height: 1.6;
  display: block;
}

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ================================
   LEGAL PAGES
   ================================ */
.legal {
  padding: 60px 0 100px;
  max-width: 820px;
  margin: 0 auto;
}
.legal h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}
.legal .updated {
  color: var(--ink-mute);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}
.legal h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}
.legal p, .legal li {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.legal ul, .legal ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.legal a {
  color: var(--purple);
  font-weight: 500;
}
.legal a:hover { text-decoration: underline; }
.legal .intro {
  background: var(--bg-soft);
  padding: 20px 24px;
  border-radius: var(--r-md);
  margin-bottom: 2rem;
  border-left: 4px solid var(--purple);
}
