/* =============================================
   KITSUNE — Site vitrine
   ============================================= */

:root {
  --bg: #0a0a0f;
  --bg-soft: #0f0f18;
  --bg-card: #15151f;
  --bg-card-hover: #1a1a28;
  --text: #e8e8f0;
  --text-muted: #8b8b9e;
  --text-dim: #5a5a6e;
  --accent: #ff6b35;
  --accent-2: #ff9558;
  --accent-glow: rgba(255,107,53,.35);
  --accent-soft: rgba(255,107,53,.1);
  --primary: #ff6b35;
  --primary-dark: #e85a2a;
  --border: rgba(255,255,255,.08);
  --border-hover: rgba(255,255,255,.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --max: 1140px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.5);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
summary { cursor: pointer; }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--accent-glow); }
.btn--ghost {
  background: rgba(255,255,255,.05);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--border-hover); }
.btn--light {
  background: #fff;
  color: #0a0a0f;
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.2); }
.btn--ghostlight {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
}
.btn--ghostlight:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ============ NAVBAR ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
}
.brand__logo { width: 36px; height: 36px; border-radius: 50%; }
.nav__links {
  display: flex;
  gap: 28px;
}
.nav__links a {
  color: var(--text-muted);
  font-size: .92rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ============ LANGUAGE SELECTOR ============ */
.lang-selector { position: relative; }
.lang-selector__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: var(--transition);
}
.lang-selector__btn:hover { background: rgba(255,255,255,.1); border-color: var(--border-hover); }
.lang-selector__btn svg { opacity: .5; transition: var(--transition); }
.lang-selector__btn:hover svg { opacity: .8; }
.lang-selector__menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 140px;
  z-index: 2000;
}
.lang-selector__menu--open { display: flex; flex-direction: column; gap: 2px; }
.lang-selector__menu button {
  padding: 10px 14px;
  border: none;
  background: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .88rem;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-selector__menu button::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--text-dim);
  flex-shrink: 0;
  transition: var(--transition);
}
.lang-selector__menu button:hover {
  background: var(--accent-soft);
  color: var(--accent-2);
}
.lang-selector__menu button:hover::before { border-color: var(--accent); }
.lang-selector__menu button.active {
  color: var(--accent);
  font-weight: 600;
}
.lang-selector__menu button.active::before {
  background: var(--accent);
  border-color: var(--accent);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .15;
  pointer-events: none;
}
.hero__glow--1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -100px; right: -100px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: #6b46ff;
  bottom: -50px; left: -100px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--accent-soft);
  border: 1px solid rgba(255,107,53,.2);
  color: var(--accent-2);
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.grad {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__stats {
  display: flex;
  gap: 36px;
}
.hero__stats > div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}
.hero__stats span { font-size: .82rem; color: var(--text-dim); }

/* ============ PHONE MOCKUP ============ */
.hero__visual { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 280px;
  height: 580px;
  border-radius: 42px;
  background: #1a1a28;
  border: 3px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg), 0 0 60px var(--accent-glow);
  overflow: hidden;
}
.phone__notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #0a0a0f;
  border-radius: 12px;
  z-index: 2;
}
.phone__screen {
  width: 100%; height: 100%;
  object-fit: cover;
}
.phone__fallback {
  padding: 50px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.phone__fb-line--avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-bottom: 8px;
}
.phone__fb-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: .85rem;
  line-height: 1.4;
  animation: fbFade .5s ease both;
}
.phone__fb-bubble--in {
  background: rgba(255,255,255,.06);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.phone__fb-bubble--out {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  animation-delay: .15s;
}
.phone__fb-bubble--in:nth-of-type(3) { animation-delay: .3s; }
.phone__fb-input {
  margin-top: auto;
  height: 40px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
}
@keyframes fbFade { from { opacity: 0; transform: translateY(10px); } }

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 80px; }

/* ============ TRUST BAR ============ */
.trustbar {
  background: var(--bg-soft);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trustbar__icon { font-size: 1.8rem; }
.trustbar__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
}
.trustbar__item span { font-size: .82rem; color: var(--text-dim); }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.kicker {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.section__lead {
  font-size: 1.08rem;
  color: var(--text-muted);
}

/* ============ FEATURES ============ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.feature:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.feature__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.feature h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature p { color: var(--text-muted); font-size: .95rem; }

/* ============ UNIVERSES ============ */
.universe {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}
.universe__elements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.universe__el {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}
.universe__el:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.universe__el-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.universe__el-icon svg { width: 20px; height: 20px; }
.universe__el strong {
  display: block;
  font-family: var(--font-head);
  font-size: .98rem;
  margin-bottom: 4px;
}
.universe__el span {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.universe__memory {
  font-size: .95rem;
  color: var(--text-muted);
  padding: 18px 22px;
  background: var(--accent-soft);
  border: 1px solid rgba(255,107,53,.15);
  border-radius: var(--radius-sm);
}
.universe__memory strong { color: var(--accent-2); }
.universe__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.universe__orbit {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.universe__core {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 40px var(--accent-glow);
  animation: corePulse 4s ease infinite;
  color: #fff;
}
.universe__core svg { width: 36px; height: 36px; }
@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 40px var(--accent-glow); }
  50% { box-shadow: 0 0 60px var(--accent-glow); }
}
.universe__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.universe__ring--1 {
  width: 180px; height: 180px;
  animation: spin 20s linear infinite;
}
.universe__ring--2 {
  width: 260px; height: 260px;
  animation: spin 35s linear infinite reverse;
  border-style: dashed;
  opacity: .4;
}
@keyframes spin { to { transform: rotate(360deg); } }
.universe__node {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition);
  color: var(--text-muted);
}
.universe__node svg { width: 20px; height: 20px; }
.universe__node:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}
.universe__node--1 { top: 8px; left: 50%; transform: translateX(-50%); }
.universe__node--2 { right: 0; top: 50%; transform: translateY(-50%); }
.universe__node--3 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.universe__node--4 { left: 0; top: 50%; transform: translateY(-50%); }

/* ============ VALUES ============ */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: var(--transition);
}
.value:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.value:hover::before { opacity: 1; }
.value__icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.value h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.value p { color: var(--text-muted); margin-bottom: 18px; font-size: .95rem; }
.value__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: .9rem;
  color: var(--text-muted);
}
.value__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ============ SCREENS ============ */
.screens {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.screen {
  width: 240px;
  text-align: center;
}
.screen--center { transform: translateY(-20px); }
.screen img {
  width: 100%;
  border-radius: 20px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.screen--ph {
  aspect-ratio: 9/19;
  border-radius: 20px;
  border: 2px dashed var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: .8rem;
  margin-bottom: 16px;
}
.screen--ph::before { content: '📷 Capture d\'écran'; }
.screen--center.ph { transform: translateY(-20px); }
.screen figcaption {
  margin-top: 16px;
}
.screen figcaption strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  margin-bottom: 4px;
}
.screen figcaption span { font-size: .82rem; color: var(--text-dim); }

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p { color: var(--text-muted); font-size: .92rem; }

/* ============ PRIVACY ============ */
.privacy {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: center;
}
.privacy__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.privacy__col {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.privacy__col--yes { background: rgba(34,197,94,.05); border-color: rgba(34,197,94,.15); }
.privacy__col--no { background: rgba(239,68,68,.05); border-color: rgba(239,68,68,.15); }
.privacy__col h4 {
  font-family: var(--font-head);
  font-size: .92rem;
  margin-bottom: 14px;
}
.privacy__col--yes h4 { color: #4ade80; }
.privacy__col--no h4 { color: #f87171; }
.privacy__col li {
  font-size: .88rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.privacy__col li:last-child { border-bottom: none; }
.privacy__visual { display: flex; justify-content: center; }
.shield {
  text-align: center;
}
.shield__inner {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid rgba(255,107,53,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  animation: pulse 3s ease infinite;
}
.shield__inner svg { width: 64px; height: 64px; color: var(--accent); }
.shield__label {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: .03em;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 20px transparent; }
}

/* ============ ENCRYPTION / HOW PRIVACY WORKS ============ */
.encryption-flow {
  display: flex;
  align-items: stretch;
  margin-top: 8px;
}
.encryption-flow__node {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.encryption-flow__node--server {
  border-color: rgba(255,107,53,.25);
  background: var(--accent-soft);
}
.encryption-flow__icon {
  font-size: 2rem;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.encryption-flow__node h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 8px;
}
.encryption-flow__node p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.encryption-flow__arrow {
  flex: 0 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--accent-2);
  padding: 0 4px;
}
.encryption-flow__arrow span {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  white-space: nowrap;
}
.encryption-flow__arrow svg { width: 26px; height: 26px; }
.encryption-note {
  text-align: center;
  color: var(--text-dim);
  font-size: .85rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 22px auto 0;
}
.encryption-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,193,7,.08);
  border: 1px solid rgba(255,193,7,.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 56px;
}
.encryption-callout__icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1.6; }
.encryption-callout p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.encryption-callout strong { color: #ffd54f; }
.encryption-callout a { color: var(--accent-2); }

/* ============ COMMUNITY ============ */
.community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.community__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}
.social:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}
.social svg { width: 22px; height: 22px; }
.community__visual {
  display: flex;
  justify-content: center;
}
.community__logo {
  max-width: 320px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.3));
}

/* ============ FAQ ============ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: var(--transition);
}
.faq__item[open] { border-color: rgba(255,107,53,.2); }
.faq__item summary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  transition: var(--transition);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: .92rem;
}
.faq__item a { color: var(--accent-2); }

/* ============ CTA ============ */
.cta {
  background: linear-gradient(135deg, #1a0a05, #0a0a0f);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; }
.cta__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta__lead { color: var(--text-muted); font-size: 1.08rem; margin-bottom: 28px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand p { color: var(--text-dim); font-size: .9rem; margin-top: 12px; max-width: 280px; }
.footer__logo { width: 40px; height: 40px; border-radius: 50%; }
.footer__col h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  color: var(--text-dim);
  font-size: .9rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__social a:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: .82rem; color: var(--text-dim); }

/* ============ LEGAL PAGES ============ */
.legal-page {
  padding: 120px 0 60px;
}
.legal-page h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.legal-page .updated {
  color: var(--text-dim);
  font-size: .85rem;
  margin-bottom: 32px;
}
.legal-page h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--accent-2);
}
.legal-page h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--text);
}
.legal-page p, .legal-page li {
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.7;
}
.legal-page ul { padding-left: 20px; margin-bottom: 12px; }
.legal-page ul li { list-style: disc; }
.legal-page ul ul { margin: 8px 0 8px 8px; }
.legal-page ul ul li { list-style: circle; }
.legal-page a { color: var(--accent); }
.legal-page strong { color: var(--text); }

/* ============ TRANSLATION DISCLAIMER ============ */
.translation-disclaimer {
  background: rgba(255,193,7,.08);
  border: 1px solid rgba(255,193,7,.2);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-bottom: 28px;
  font-size: .88rem;
  color: #ffd54f;
  line-height: 1.5;
}
.translation-disclaimer strong { color: #ffd54f; }

/* ============ TELEMETRY TRANSPARENCY PAGE ============ */
.telemetry-never {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0 40px;
}
.telemetry-never h2 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 12px !important;
}
.telemetry-never ul { padding-left: 20px; margin-bottom: 0; }
.telemetry-never li { color: var(--text-muted); margin-bottom: 6px; line-height: 1.6; }

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0 12px;
}
.telemetry-cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: var(--transition);
}
.telemetry-cat:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.telemetry-cat h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.telemetry-cat__badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.telemetry-cat__purpose {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.telemetry-field {
  border-top: 1px solid var(--border);
  padding: 10px 0;
}
.telemetry-field:first-of-type { border-top: none; padding-top: 0; }
.telemetry-field__name {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: .78rem;
  color: var(--accent-2);
  display: block;
  margin-bottom: 3px;
}
.telemetry-field__desc {
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.5;
}
.telemetry-generated {
  color: var(--text-dim);
  font-size: .8rem;
  margin-top: 24px;
}
.telemetry-state {
  color: var(--text-muted);
  padding: 40px 0;
  text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  body.nav-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,15,.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  body.nav-open .nav__cta {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 160px); left: 0; right: 0;
    background: rgba(10,10,15,.98);
    padding: 0 24px 20px;
    gap: 8px;
  }

  .hero { padding: 110px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__lead { margin: 0 auto 32px; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__stats { gap: 24px; }

  .trustbar__inner { grid-template-columns: 1fr; gap: 20px; }

  .features { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .screens { flex-direction: column; align-items: center; }
  .screen--center { transform: none; }

  .privacy { grid-template-columns: 1fr; }
  .privacy__compare { grid-template-columns: 1fr; }
  .privacy__visual { order: -1; }

  .encryption-flow { flex-direction: column; }
  .encryption-flow__arrow { flex-direction: row; padding: 4px 0; }
  .encryption-flow__arrow svg { transform: rotate(90deg); }

  .universe { grid-template-columns: 1fr; }
  .universe__elements { grid-template-columns: 1fr; }
  .universe__visual { order: -1; }

  .community { grid-template-columns: 1fr; text-align: center; }
  .community__social { justify-content: center; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 500px) {
  .section { padding: 64px 0; }
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .footer__inner { grid-template-columns: 1fr; }
  .phone { width: 240px; height: 500px; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions, .cta__actions { flex-direction: column; }
}