/* Coshirae — Arcane × KPDH-inspired marketing stylesheet
   Neon idol gloss meets Hextech painterly shadows. */

:root {
  /* Core palette */
  --magenta:        #FF2D75;
  --magenta-deep:   #C4115A;
  --violet:         #9B5CFF;
  --violet-deep:    #5B22CC;
  --cyan:           #5BE9FF;
  --cyan-deep:      #1FB4D9;
  --gold:           #FFD580;
  --gold-deep:      #C49646;
  --kabuki-red:     #FF3D52;

  /* Surfaces */
  --midnight:       #080318;
  --midnight-2:     #0E0626;
  --twilight:       #150A33;
  --twilight-2:     #1F1042;
  --surface:        rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);

  --ink:            #F7EEFC;
  --ink-soft:       #D8CAE8;
  --ink-muted:      #9C8AB8;

  --hairline:       rgba(255, 255, 255, 0.10);
  --hairline-strong:rgba(255, 255, 255, 0.18);

  --glass-bg:       rgba(15, 6, 38, 0.55);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --shadow-card:  0 30px 60px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--hairline);
  --shadow-glow:  0 0 40px rgba(255, 45, 117, 0.35), 0 0 120px rgba(155, 92, 255, 0.18);

  --maxw: 1120px;
  --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
                 "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-system);
  background: var(--midnight);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Site-wide animated nebula backdrop — sits behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 50% 40% at 12% 8%,  rgba(255, 45, 117, 0.42), transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(91, 233, 255, 0.30), transparent 65%),
    radial-gradient(ellipse 65% 50% at 50% 95%, rgba(155, 92, 255, 0.45), transparent 70%),
    linear-gradient(180deg, var(--midnight) 0%, var(--midnight-2) 40%, var(--twilight) 100%);
  filter: saturate(1.1);
  animation: nebulaDrift 22s ease-in-out infinite alternate;
}
body::after {
  /* Painterly grain / film haze */
  content: "";
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

@keyframes nebulaDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1);    filter: hue-rotate(0deg)   saturate(1.1); }
  50%  { transform: translate3d(-2%, 1%, 0) scale(1.05); filter: hue-rotate(-12deg) saturate(1.2); }
  100% { transform: translate3d(2%, -1%, 0) scale(1.03); filter: hue-rotate(8deg)  saturate(1.15); }
}

a { color: var(--cyan); text-decoration: none; transition: color .2s ease, text-shadow .2s ease; }
a:hover { color: var(--magenta); text-shadow: 0 0 18px rgba(255, 45, 117, 0.55); text-decoration: none; }

img, svg { max-width: 100%; display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
  margin: 0 0 0.5em; color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
p.lede { color: var(--ink); font-size: 1.15rem; }

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

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--magenta); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 1000;
  box-shadow: 0 0 30px rgba(255, 45, 117, 0.7);
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--hairline);
}
.navbar::after {
  /* iridescent hairline */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--magenta), var(--violet), var(--cyan), transparent);
  opacity: 0.7;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--maxw); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-mark { width: 30px; height: 30px; border-radius: 7px; filter: drop-shadow(0 0 12px rgba(255, 45, 117, 0.45)); }

/* Hero logo — the actual app icon */
.hero-logo {
  width: 128px; height: 128px;
  border-radius: 28px;
  margin: 0 auto 24px;
  display: block;
  filter:
    drop-shadow(0 0 30px rgba(255, 45, 117, 0.55))
    drop-shadow(0 0 80px rgba(91, 233, 255, 0.35));
  animation: heroLogoFloat 5s ease-in-out infinite alternate;
}
@keyframes heroLogoFloat {
  from { transform: translateY(0px); }
  to   { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; }
}
.brand-name {
  font-size: 1.1rem; letter-spacing: -0.01em;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--ink-soft); padding: 8px 14px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
}
.nav-links a:hover {
  color: var(--ink);
  background: linear-gradient(120deg, rgba(255, 45, 117, 0.2), rgba(91, 233, 255, 0.2));
  text-shadow: none;
}
@media (max-width: 640px) {
  .nav-links a { padding: 6px 10px; font-size: 0.85rem; }
  .brand-name { font-size: 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(80px, 14vw, 160px) 0 clamp(64px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* Big idol-spotlight cone */
  content: ""; position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(255, 45, 117, 0.35), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 90%, rgba(155, 92, 255, 0.30), transparent 65%);
  z-index: -1;
  filter: blur(10px);
  animation: spotlightPulse 6s ease-in-out infinite alternate;
}
@keyframes spotlightPulse {
  from { opacity: 0.85; transform: scale(1); }
  to   { opacity: 1;    transform: scale(1.04); }
}
.hero-inner { text-align: center; max-width: 820px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--ink);
  padding: 7px 18px;
  border-radius: 999px;
  background:
    linear-gradient(var(--twilight), var(--twilight)) padding-box,
    linear-gradient(90deg, var(--magenta), var(--violet), var(--cyan)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 30px rgba(155, 92, 255, 0.35);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: blink 1.6s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0.35; } }

.hero h1 {
  color: var(--ink);
  text-shadow: 0 4px 80px rgba(91, 233, 255, 0.25);
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--magenta) 0%, var(--violet) 55%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow:
    0 0 24px rgba(255, 45, 117, 0.35),
    0 0 48px rgba(155, 92, 255, 0.25);
  position: relative;
}

.tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  margin: 18px auto 32px; max-width: 640px;
}
.cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700; font-size: 0.98rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-ghost {
  background: var(--surface-strong);
  color: var(--ink);
  border-color: var(--hairline-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: linear-gradient(135deg, rgba(255, 45, 117, 0.18), rgba(91, 233, 255, 0.18));
  border-color: var(--hairline-strong);
  box-shadow: 0 0 30px rgba(155, 92, 255, 0.25);
}

.appstore-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 700;
  color: #ffffff;
  background:
    linear-gradient(#0b061a, #0b061a) padding-box,
    linear-gradient(90deg, var(--magenta), var(--violet), var(--cyan)) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    0 0 28px rgba(255, 45, 117, 0.45),
    0 0 80px rgba(91, 233, 255, 0.18);
  transition: transform .2s ease, box-shadow .25s ease;
}
.appstore-badge:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 38px rgba(255, 45, 117, 0.6),
    0 0 120px rgba(91, 233, 255, 0.25);
}
.appstore-badge .small { font-size: 0.65rem; opacity: 0.85; display: block; line-height: 1; margin-bottom: 2px; letter-spacing: 0.06em; text-transform: uppercase; }
.appstore-badge .big   { font-size: 1.1rem; line-height: 1; letter-spacing: -0.01em; }
.appstore-badge[data-appstore-pending]::after {
  content: "Coming soon"; font-size: 0.62rem; padding: 3px 9px;
  background: linear-gradient(90deg, var(--magenta), var(--violet));
  color: #fff;
  border-radius: 999px; margin-left: 10px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ---------- Sections ---------- */
section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head h2 {
  background: linear-gradient(90deg, var(--ink) 0%, var(--cyan) 65%, var(--ink) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-head p { font-size: 1.08rem; color: var(--ink-soft); }

/* ---------- Feature cards ---------- */
.features-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature-card {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(var(--twilight), var(--twilight));
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature-card::before {
  /* Painterly glow that shifts on hover */
  content: ""; position: absolute; inset: -1px;
  border-radius: var(--radius-md);
  background: conic-gradient(from 200deg, var(--magenta), var(--violet), var(--cyan), var(--magenta));
  filter: blur(22px);
  opacity: 0;
  z-index: -1;
  transition: opacity .4s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.feature-card:hover::before { opacity: 0.55; }

.feature-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 45, 117, 0.20), rgba(91, 233, 255, 0.15));
  border: 1px solid var(--hairline-strong);
  margin-bottom: 18px;
  box-shadow: 0 0 24px rgba(255, 45, 117, 0.2) inset;
}
.feature-icon svg { width: 24px; height: 24px; color: var(--cyan); filter: drop-shadow(0 0 6px rgba(91, 233, 255, 0.6)); }
.feature-card h3 { color: var(--ink); margin-bottom: 8px; }
.feature-card p { font-size: 0.96rem; margin: 0; color: var(--ink-soft); }

.pro-tag {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--magenta), var(--violet));
  vertical-align: middle;
  box-shadow: 0 0 12px rgba(255, 45, 117, 0.45);
}

/* Stagger the feature icon tints so they don't all look the same */
.features-grid > .feature-card:nth-child(6n+1) .feature-icon svg { color: var(--magenta); filter: drop-shadow(0 0 6px rgba(255, 45, 117, 0.55)); }
.features-grid > .feature-card:nth-child(6n+2) .feature-icon svg { color: var(--cyan);    filter: drop-shadow(0 0 6px rgba(91, 233, 255, 0.55)); }
.features-grid > .feature-card:nth-child(6n+3) .feature-icon svg { color: var(--violet);  filter: drop-shadow(0 0 6px rgba(155, 92, 255, 0.55)); }
.features-grid > .feature-card:nth-child(6n+4) .feature-icon svg { color: var(--gold);    filter: drop-shadow(0 0 6px rgba(255, 213, 128, 0.55)); }
.features-grid > .feature-card:nth-child(6n+5) .feature-icon svg { color: var(--magenta); filter: drop-shadow(0 0 6px rgba(255, 45, 117, 0.55)); }
.features-grid > .feature-card:nth-child(6n)   .feature-icon svg { color: var(--cyan);    filter: drop-shadow(0 0 6px rgba(91, 233, 255, 0.55)); }

/* ---------- Screenshot showcase ---------- */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
@media (max-width: 920px) {
  .screenshot-grid { grid-template-columns: 1fr; gap: 28px; }
}
.screenshot-grid figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.screenshot-grid img {
  width: 100%;
  max-width: 320px;
  border-radius: 36px;
  box-shadow:
    0 28px 64px rgba(231, 26, 71, 0.20),
    0 4px 16px rgba(0, 0, 0, 0.40);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}
.screenshot-grid figcaption {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
  max-width: 320px;
}

/* ---------- Pro section ---------- */
.pro-section {
  position: relative;
  background:
    radial-gradient(ellipse 60% 70% at 80% 0%,  rgba(255, 213, 128, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 70% at 10% 80%, rgba(255, 45, 117, 0.18), transparent 65%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  max-width: 920px; margin: 0 auto;
}
@media (max-width: 720px) { .compare-grid { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--twilight);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 30px;
  overflow: hidden;
}

.plan.pro {
  background:
    linear-gradient(var(--twilight-2), var(--twilight-2)) padding-box,
    conic-gradient(from 140deg at 50% 50%, var(--magenta), var(--violet), var(--cyan), var(--gold), var(--magenta)) border-box;
  border: 2px solid transparent;
  box-shadow:
    0 0 60px rgba(255, 45, 117, 0.25),
    0 0 120px rgba(91, 233, 255, 0.15);
}
.plan.pro::before {
  /* Shimmer sweep */
  content: ""; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.10) 50%, transparent 60%);
  animation: shimmer 6s linear infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { transform: translateX(-30%) translateY(-30%) rotate(0deg); }
  100% { transform: translateX(0%)   translateY(0%)   rotate(0deg); }
}
.plan.pro::after {
  content: "Pro"; position: absolute; top: -14px; right: 22px;
  font-weight: 800; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  padding: 5px 14px; border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), var(--violet));
  box-shadow: 0 0 18px rgba(255, 45, 117, 0.65);
}

.plan h3 { color: var(--ink); font-size: 1.3rem; }
.plan .price {
  font-size: 2.3rem; font-weight: 800; color: var(--ink);
  margin: 6px 0 4px; letter-spacing: -0.025em;
}
.plan.pro .price {
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.plan .price-note { color: var(--ink-muted); font-size: 0.88rem; margin: 0 0 22px; }

.plan ul { list-style: none; padding: 0; margin: 0; }
.plan li {
  padding: 11px 0 11px 30px; position: relative;
  color: var(--ink); font-size: 0.96rem;
  border-bottom: 1px solid var(--hairline);
}
.plan li:last-child { border-bottom: none; }
.plan li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 10px rgba(91, 233, 255, 0.5);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.5 11L3 7.5l1.2-1.2L6.5 8.6 11.8 3.3 13 4.5z' fill='black'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.5 11L3 7.5l1.2-1.2L6.5 8.6 11.8 3.3 13 4.5z' fill='black'/></svg>") center / contain no-repeat;
}
.plan.pro li::before {
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  box-shadow: 0 0 12px rgba(255, 213, 128, 0.55);
}

/* ---------- Privacy callout ---------- */
.privacy-callout {
  position: relative;
  max-width: 780px; margin: 0 auto;
  background:
    linear-gradient(var(--twilight), var(--twilight)) padding-box,
    linear-gradient(135deg, var(--magenta), var(--violet), var(--cyan)) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--radius-lg);
  padding: 38px;
  text-align: center;
  box-shadow: 0 0 80px rgba(91, 233, 255, 0.10);
}
.privacy-callout .icon {
  width: 64px; height: 64px;
  background: radial-gradient(circle, rgba(91, 233, 255, 0.25), rgba(91, 233, 255, 0) 70%);
  border: 1px solid rgba(91, 233, 255, 0.45);
  border-radius: 18px; display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 30px rgba(91, 233, 255, 0.35);
}
.privacy-callout .icon svg { width: 32px; height: 32px; color: var(--cyan); }

/* ---------- Footer ---------- */
footer.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 40px 0 56px;
  background: var(--midnight);
  color: var(--ink-muted);
  font-size: 0.92rem;
  position: relative;
}
footer.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--magenta), var(--cyan), transparent);
  opacity: 0.55;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--ink-muted); }
.footer-links a:hover { color: var(--ink); text-shadow: 0 0 18px rgba(255, 45, 117, 0.4); }

/* ---------- Generic article (privacy / impressum / support) ---------- */
article.doc {
  max-width: 780px; margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) 24px;
  position: relative;
}
article.doc h1 {
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--magenta), var(--violet), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
article.doc h2 { margin-top: 2.2em; font-size: 1.45rem; color: var(--ink); }
article.doc h3 { margin-top: 1.6em; font-size: 1.12rem; color: var(--cyan); }
article.doc p, article.doc li { color: var(--ink-soft); }
article.doc strong { color: var(--ink); }
article.doc ul { padding-left: 1.2em; }
article.doc address { font-style: normal; color: var(--ink-soft); }
.last-updated { color: var(--ink-muted); font-size: 0.9rem; margin-bottom: 24px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  border-radius: 999px; overflow: hidden;
  margin-bottom: 28px;
  background:
    linear-gradient(var(--twilight), var(--twilight)) padding-box,
    linear-gradient(90deg, var(--magenta), var(--cyan)) border-box;
  border: 1.5px solid transparent;
}
.lang-toggle button {
  background: transparent; color: var(--ink-soft);
  border: none; padding: 9px 20px; cursor: pointer;
  font-family: inherit; font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.04em;
}
.lang-toggle button.active {
  background: linear-gradient(90deg, var(--magenta), var(--violet));
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 45, 117, 0.6);
}
.lang-block[hidden] { display: none; }

/* ---------- Support / FAQ ---------- */
.contact-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    var(--twilight);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}
.contact-card h2 { margin-top: 0; }
.faq details {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--twilight);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  margin-bottom: 12px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq details[open] {
  border-color: var(--hairline-strong);
  box-shadow: 0 0 28px rgba(255, 45, 117, 0.18);
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; float: right;
  color: var(--magenta); font-weight: 800; font-size: 1.2rem; line-height: 1;
}
.faq details[open] summary::after { content: "−"; color: var(--cyan); }
.faq details p { margin-top: 12px; margin-bottom: 0; color: var(--ink-soft); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow: 0 0 24px rgba(91, 233, 255, 0.45);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  body::before { animation: none; }
  .hero::before { animation: none; }
  .plan.pro::before { animation: none; }
  .eyebrow::before { animation: none; }
}
