/* ============================================================
   Picnite · Sistema visual
   Tokens compartidos por la landing y las páginas legales.
   Los nombres de las variables se conservan para que legal.css
   siga funcionando con la nueva paleta.
   ============================================================ */

:root {
  --paper: #faf7f2;
  --paper-2: #ffffff;
  --ink: #1e1914;
  --muted: #6f665d;
  --faint: #a3988d;
  --line: rgba(30, 25, 20, .14);
  --line-soft: rgba(30, 25, 20, .07);
  --navy: #181310;
  --navy-2: #221b16;
  --blue: #7797ef;
  --blue-deep: #5575df;
  --lime: #e6d7a0;
  --cream: #f3ecdf;
  --display: ui-serif, "New York", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --ease: cubic-bezier(.16, .84, .34, 1);
  --shadow: 0 30px 70px -30px rgba(24, 19, 16, .35);
  --shadow-lg: 0 50px 110px -40px rgba(24, 19, 16, .5);
}

[data-theme="dark"] {
  --paper: #15110d;
  --paper-2: #1f1a15;
  --ink: #f4ede4;
  --muted: #b6aca1;
  --faint: #8d8378;
  --line: rgba(244, 237, 228, .16);
  --line-soft: rgba(244, 237, 228, .09);
  --navy: #15110d;
  --navy-2: #211b15;
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, .6);
  --shadow-lg: 0 50px 110px -40px rgba(0, 0, 0, .7);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; transition: background .4s ease, color .4s ease; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }

.wrap { width: min(100% - 64px, 1160px); margin: 0 auto; }
.section { position: relative; padding: clamp(84px, 11vw, 140px) 0; }
.section-dark { color: #f4ede4; background: var(--navy); }
.section-dark .section-kicker { color: var(--lime); }

/* ------------------------------------------------------------
   Utilidades editoriales
   ------------------------------------------------------------ */
.section-kicker, .eyebrow, .mono-label { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.section-kicker { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 22px; color: var(--blue-deep); }
.section-kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.section-title { margin: 0 0 20px; font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4.3rem); font-weight: 500; letter-spacing: -.045em; line-height: .96; }
.section-title em { color: var(--blue); font-style: italic; }
.section-lead { max-width: 46ch; margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.section-dark .section-lead { color: rgba(244, 237, 228, .68); }

/* ------------------------------------------------------------
   Botones y enlaces
   ------------------------------------------------------------ */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 22px; border: 1px solid transparent; border-radius: 8px; font-size: .86rem; font-weight: 700; text-decoration: none; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease); }
.button span { transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translateX(4px); }
.button-primary { color: #fff; background: var(--blue-deep); box-shadow: 0 12px 30px -12px rgba(85, 117, 223, .7); }
.button-primary:hover { background: var(--blue); }
.button-dark { color: #fff; background: #1a1511; }
.button-dark:hover { background: #000; }
.button-light { color: var(--ink); background: var(--cream); border-color: var(--line); }
.button-light:hover { background: #fff; }
.button-outline { color: #fff; border-color: rgba(244, 237, 228, .32); }
.button-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .07); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: .86rem; font-weight: 600; text-decoration: none; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

/* ------------------------------------------------------------
   Cabecera
   ------------------------------------------------------------ */
.site-header { position: fixed; inset: 0 0 auto; z-index: 40; display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: 0 max(28px, calc((100vw - 1160px) / 2)); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--paper) 85%, transparent); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 1.06rem; font-weight: 800; letter-spacing: -.03em; text-decoration: none; }
.brand img { display: block; width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 6px 16px -6px rgba(0, 0, 0, .35); }
.site-nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: .82rem; }
.site-nav a:not(.nav-cta) { text-decoration: none; transition: color .2s ease; }
.site-nav a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta { padding: 10px 15px; border-radius: 7px; color: #fff !important; background: var(--blue-deep); font-weight: 700; text-decoration: none; }
.nav-cta:hover { background: var(--blue); }
.nav-cta span { margin-left: 7px; }
.lang-toggle { padding: 6px 9px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted) !important; font-family: var(--mono); font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-decoration: none; }
.lang-toggle:hover { color: var(--ink) !important; border-color: var(--muted); }
.theme-toggle, .menu-toggle { border: 0; color: var(--muted); background: transparent; font: inherit; cursor: pointer; }
.theme-toggle { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 7px; font-size: 1.05rem; }
.theme-toggle:hover { background: var(--line-soft); color: var(--ink); }
.menu-toggle { display: none; }

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; padding: clamp(150px, 18vw, 190px) 0 clamp(60px, 7vw, 90px); color: #f4ede4; background: var(--navy); }
.hero::before { content: ''; position: absolute; inset: 0; background:
  radial-gradient(circle at 78% 12%, rgba(119, 151, 239, .35), transparent 34%),
  radial-gradient(circle at 12% 88%, rgba(85, 117, 223, .22), transparent 30%); }
.hero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(244,237,228,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(244,237,228,.1) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 75%); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(40px, 6vw, 96px); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 28px; padding: 7px 12px; border: 1px solid rgba(244, 237, 228, .2); border-radius: 999px; color: rgba(244, 237, 228, .72); }
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(230, 215, 160, .18); }
.hero h1 { margin: 0 0 26px; color: #f4ede4; font-family: var(--display); font-size: clamp(3rem, 6.5vw, 5.9rem); font-weight: 500; letter-spacing: -.055em; line-height: .92; }
.hero h1 em { color: var(--lime); font-style: italic; }
.hero-lead { max-width: 47ch; margin: 0 0 34px; color: rgba(244, 237, 228, .72); font-size: 1.05rem; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.hero-actions .text-link { color: rgba(244, 237, 228, .85); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px 24px; margin-top: 38px; color: rgba(244, 237, 228, .5); font-family: var(--mono); font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }

.hero-shot { position: relative; }
.window { overflow: hidden; border: 1px solid rgba(244, 237, 228, .18); border-radius: 12px; background: #101010; box-shadow: var(--shadow-lg); }
.window-chrome { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid rgba(244, 237, 228, .1); }
.window-chrome > span { width: 9px; height: 9px; border-radius: 50%; background: #ff5f57; }.window-chrome > span:nth-child(2) { background: #febc2e; }.window-chrome > span:nth-child(3) { background: #28c840; }
.window-chrome b { margin: 0 auto; color: rgba(244, 237, 228, .55); font-family: var(--mono); font-size: .58rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.window-chrome small { font-family: var(--mono); font-size: .58rem; color: rgba(244, 237, 228, .4); }
.window img { width: 100%; height: auto; }

.hero-chip { position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(244, 237, 228, .16); border-radius: 9px; background: rgba(24, 19, 16, .82); color: #f4ede4; font-family: var(--mono); font-size: .6rem; letter-spacing: .05em; text-transform: uppercase; box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .55); backdrop-filter: blur(8px); }
.hero-chip b { color: var(--lime); font-weight: 600; }
.hero-chip i { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 6px; font-style: normal; }
.hero-chip-1 { top: -22px; right: 26px; animation: floaty 6s ease-in-out infinite; }
.hero-chip-1 i { color: #fff; background: var(--blue); }
.hero-chip-2 { bottom: 30px; left: -30px; animation: floaty 7s ease-in-out .9s infinite; }
.hero-chip-2 i { color: #fff; background: var(--blue); }
.hero-chip-3 { bottom: -20px; right: 14%; animation: floaty 5.5s ease-in-out .4s infinite; }
.hero-chip-3 i { color: #221b16; background: var(--lime); }

/* ------------------------------------------------------------
   Franja de características rápidas
   ------------------------------------------------------------ */
.quick-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-item { display: flex; align-items: center; gap: 13px; padding: 26px 22px; border-right: 1px solid var(--line); }
.quick-item:last-child { border-right: 0; }
.quick-item b { display: block; font-family: var(--display); font-size: 1.18rem; font-weight: 600; letter-spacing: -.02em; }
.quick-item span { display: block; margin-top: 2px; color: var(--muted); font-size: .8rem; }

/* ------------------------------------------------------------
   Funciones · capturas reales
   ------------------------------------------------------------ */
.showcase-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: end; margin-bottom: clamp(54px, 7vw, 86px); }
.showcase-grid { display: grid; gap: clamp(70px, 9vw, 120px); }
.showcase { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.showcase.flip { grid-template-columns: .92fr 1.08fr; }
.showcase.flip .showcase-media { order: 2; }
.showcase-media { position: relative; }
.showcase-media img { border-radius: 10px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.showcase-num { position: absolute; top: -16px; left: 16px; display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 9px; background: var(--paper-2); color: var(--blue-deep); font-family: var(--mono); font-size: .62rem; box-shadow: 0 10px 24px -10px rgba(0,0,0,.25); }
.showcase-tag { display: inline-block; margin: 0 0 14px; padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--blue-deep); font-family: var(--mono); font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; }
.showcase h3 { margin: 0 0 16px; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 500; letter-spacing: -.04em; line-height: .98; }
.showcase h3 em { color: var(--blue); font-style: italic; }
.showcase p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.72; }
.showcase-points { display: grid; gap: 11px; margin-top: 22px; padding: 0; list-style: none; }
.showcase-points li { display: flex; gap: 10px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.showcase-points i { flex: none; display: grid; width: 18px; height: 18px; margin-top: 2px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-style: normal; font-size: .6rem; }

/* ------------------------------------------------------------
   IA asistente
   ------------------------------------------------------------ */
.ai-section { background: var(--paper-2); }
.ai-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 7vw, 96px); align-items: center; }
.ai-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.ai-list li { display: flex; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.ai-list i { flex: none; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 9px; color: #fff; background: var(--blue-deep); font-style: normal; font-family: var(--mono); font-size: .72rem; }
.ai-list strong { display: block; margin-bottom: 5px; font-family: var(--display); font-size: 1.15rem; font-weight: 600; }
.ai-list span { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.ai-chat { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); box-shadow: var(--shadow); }
.ai-chat-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ai-soon { padding: 5px 10px; border-radius: 999px; color: #fff; background: var(--blue-deep); font-family: var(--mono); font-size: .54rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.ai-msg { display: flex; flex-direction: column; gap: 14px; padding: 18px; }
.ai-bubble { max-width: 84%; padding: 11px 14px; border-radius: 12px; font-size: .86rem; line-height: 1.6; }
.ai-bubble.user { align-self: flex-end; color: #fff; background: var(--blue-deep); border-bottom-right-radius: 3px; }
.ai-bubble.bot { align-self: flex-start; color: var(--ink); background: var(--paper-2); border: 1px solid var(--line); border-bottom-left-radius: 3px; }
.ai-bubble.bot i { display: inline-block; margin-right: 7px; color: var(--blue); font-style: normal; }

/* ------------------------------------------------------------
   Privacidad
   ------------------------------------------------------------ */
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(40px, 6vw, 62px); }
.privacy-card { padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, .04); transition: transform .3s var(--ease), background .3s var(--ease); }
.privacy-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .07); }
.privacy-card i { display: grid; width: 40px; height: 40px; margin-bottom: 20px; place-items: center; border-radius: 10px; color: var(--lime); background: rgba(230, 215, 160, .12); font-style: normal; font-family: var(--mono); font-size: .8rem; }
.privacy-card h3 { margin: 0 0 9px; color: #f4ede4; font-family: var(--display); font-size: 1.3rem; font-weight: 600; }
.privacy-card p { margin: 0; color: rgba(244, 237, 228, .62); font-size: .88rem; line-height: 1.65; }

/* ------------------------------------------------------------
   Precios
   ------------------------------------------------------------ */
.pricing-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.pricing-note { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.75; }
.pricing-card { position: relative; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper-2); box-shadow: var(--shadow); }
.pricing-card::before { content: 'PRUEBA 30 DÍAS GRATIS'; position: absolute; top: 16px; right: -34px; width: 170px; padding: 6px 0; transform: rotate(38deg); color: #221b16; background: var(--lime); font-family: var(--mono); font-size: .52rem; letter-spacing: .08em; text-align: center; }
.pricing-card .plan-kicker { color: var(--blue-deep); font-family: var(--mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.pricing-card h3 { margin: 12px 0 6px; font-family: var(--display); font-size: 2.1rem; font-weight: 600; letter-spacing: -.035em; }
.pricing-card .price { margin: 0 0 20px; color: var(--muted); font-size: .92rem; }
.pricing-card .price b { color: var(--blue-deep); font-family: var(--display); font-size: 2.4rem; font-weight: 600; letter-spacing: -.03em; margin-right: 8px; }
.pricing-card ul { display: grid; gap: 11px; margin: 0 0 26px; padding: 0; list-style: none; }
.pricing-card li { display: flex; gap: 10px; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.pricing-card li i { flex: none; display: grid; width: 18px; height: 18px; margin-top: 2px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-style: normal; font-size: .6rem; }
.pricing-card .button { width: 100%; }
.pricing-small { margin: 14px 0 0; color: var(--faint); font-size: .76rem; line-height: 1.6; text-align: center; }

/* ------------------------------------------------------------
   CTA final
   ------------------------------------------------------------ */
.final-cta { position: relative; overflow: hidden; padding: clamp(90px, 12vw, 150px) 0; text-align: center; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(63, 125, 111, .35), transparent 60%); }
.final-cta .wrap { position: relative; }
.final-cta h2 { margin: 0 0 20px; color: #f4ede4; font-family: var(--display); font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 500; letter-spacing: -.05em; line-height: .95; }
.final-cta h2 em { color: var(--lime); font-style: italic; }
.final-cta p { max-width: 44ch; margin: 0 auto 36px; color: rgba(244, 237, 228, .7); font-size: 1.02rem; line-height: 1.7; }

/* ------------------------------------------------------------
   Aviso de cookies
   ------------------------------------------------------------ */
.consent-banner { position: fixed; right: 24px; bottom: 24px; left: 24px; z-index: 90; max-width: 520px; margin: 0 auto; padding: 20px 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper-2); box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.consent-banner.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.consent-banner p { margin: 0 0 16px; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.consent-banner p strong { color: var(--ink); }
.consent-banner a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: flex-end; }
.consent-accept { padding: 10px 16px; border: 0; border-radius: 7px; color: #fff; background: var(--blue-deep); font: 700 .78rem var(--sans); cursor: pointer; }
.consent-accept:hover { background: var(--blue); }
.consent-dismiss { padding: 10px 12px; border: 0; color: var(--muted); background: transparent; font: 600 .78rem var(--sans); cursor: pointer; }
.consent-dismiss:hover { color: var(--ink); }

/* ------------------------------------------------------------
   Pie de página
   ------------------------------------------------------------ */
.site-footer { padding: 66px 0 24px; color: #f4ede4; background: #120e0b; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr .9fr; gap: 60px; padding-bottom: 54px; }
.footer-brand { color: #f4ede4; }
.footer-grid p { margin: 16px 0 0; color: rgba(244, 237, 228, .46); font-family: var(--mono); font-size: .62rem; line-height: 1.6; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid nav { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-grid nav strong { margin-bottom: 6px; color: var(--blue); font-family: var(--mono); font-size: .6rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid nav a { color: rgba(244, 237, 228, .62); font-size: .84rem; text-decoration: none; transition: color .2s ease; }
.footer-grid nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(244, 237, 228, .12); color: rgba(244, 237, 228, .4); font-family: var(--mono); font-size: .56rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a span { margin-left: 7px; color: var(--blue); }

/* ------------------------------------------------------------
   Animaciones
   ------------------------------------------------------------ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-chip { animation: none !important; }
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 960px) {
  .hero-layout, .showcase, .showcase.flip, .ai-layout, .pricing-layout { grid-template-columns: 1fr; }
  .showcase.flip .showcase-media { order: 0; }
  .showcase-media { margin-top: 6px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .privacy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .showcase-head { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 40px, 560px); }
  .site-header { min-height: 60px; padding: 0 20px; }
  .menu-toggle { display: block; padding: 10px 0; font-family: var(--mono); font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; }
  .site-nav { position: absolute; top: 60px; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; gap: 2px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper-2); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a:not(.nav-cta), .theme-toggle { padding: 12px 10px; text-align: left; }
  .site-nav a.lang-toggle { display: inline-block; width: fit-content; margin: 10px 0 0; text-align: center; }
  .nav-cta { margin-top: 8px; justify-content: center; text-align: center !important; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: clamp(2.9rem, 15vw, 4.6rem); }
  .hero-trust { gap: 8px 18px; }
  .hero-chip-1 { right: 8px; }
  .hero-chip-2 { left: -6px; }
  .hero-chip-3 { right: 6%; }
  .section { padding: 76px 0; }
  .showcase-head { margin-bottom: 46px; }
  .showcase { gap: 34px; }
  .privacy-card { padding: 24px; }
  .pricing-card { padding: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
