/* Loquela website — one stylesheet, no build step.
   Palette and idioms mirror the app (app/…/Theme.swift): indigo→violet brand,
   mesh-gradient backdrop, glass cards, 18/22/26px radii, gradient icon tiles. */

:root {
  --indigo: #5452EB;
  --violet: #9E4DF0;
  --teal: #0099A6;
  --mint: #1FBF99;
  --orange: #FA852E;
  --coral: #F5576B;
  --gold: #FABF24;
  --ink: #1D1C2B;
  --muted: #5E5C75;
  --bg: #FBFBFE;
  --glass: rgba(255,255,255,0.58);
  --glass-border: rgba(255,255,255,0.75);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--indigo); text-decoration: none; }
a:hover { color: #3E3CC9; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

/* ---- email obfuscation ----
   The address never appears in the HTML. site.js assembles it from the
   data-u / data-d1 / data-d2 parts (selectable text + mailto on click);
   this CSS fallback renders it when JS is off. */
.no-js .email-guard::after { content: attr(data-u) "\0040" attr(data-d1) "\002E" attr(data-d2); }

/* ---- mesh backdrops (the app's AppBackground) ---- */
.mesh {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(58% 46% at 4% 0%,   rgba(84,82,235,0.30) 0%, rgba(84,82,235,0) 100%),
    radial-gradient(50% 42% at 52% -6%, rgba(158,77,240,0.18) 0%, rgba(158,77,240,0) 100%),
    radial-gradient(52% 44% at 100% 2%, rgba(0,153,166,0.22) 0%, rgba(0,153,166,0) 100%),
    radial-gradient(46% 38% at 100% 55%, rgba(31,191,153,0.12) 0%, rgba(31,191,153,0) 100%),
    radial-gradient(50% 40% at 0% 100%, rgba(250,133,46,0.13) 0%, rgba(250,133,46,0) 100%),
    radial-gradient(52% 42% at 96% 100%, rgba(84,82,235,0.16) 0%, rgba(84,82,235,0) 100%),
    var(--bg);
}
.mesh-top {
  background:
    radial-gradient(58% 70% at 4% 0%,   rgba(84,82,235,0.22) 0%, rgba(84,82,235,0) 100%),
    radial-gradient(50% 64% at 52% -10%, rgba(158,77,240,0.13) 0%, rgba(158,77,240,0) 100%),
    radial-gradient(52% 66% at 100% 4%, rgba(0,153,166,0.16) 0%, rgba(0,153,166,0) 100%),
    var(--bg);
}
.mesh-top.support {
  background:
    radial-gradient(58% 70% at 4% 0%,   rgba(0,153,166,0.18) 0%, rgba(0,153,166,0) 100%),
    radial-gradient(50% 64% at 52% -10%, rgba(84,82,235,0.14) 0%, rgba(84,82,235,0) 100%),
    radial-gradient(52% 66% at 100% 4%, rgba(31,191,153,0.16) 0%, rgba(31,191,153,0) 100%),
    var(--bg);
}
.mesh-top.contact {
  background:
    radial-gradient(58% 60% at 4% 0%,   rgba(158,77,240,0.16) 0%, rgba(158,77,240,0) 100%),
    radial-gradient(50% 56% at 52% -10%, rgba(84,82,235,0.15) 0%, rgba(84,82,235,0) 100%),
    radial-gradient(52% 58% at 100% 4%, rgba(250,133,46,0.12) 0%, rgba(250,133,46,0) 100%),
    var(--bg);
}

/* ---- glass ---- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  backdrop-filter: blur(22px) saturate(1.5);
  box-shadow: 0 18px 44px rgba(29,28,58,0.10);
}

/* ---- nav ---- */
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 12px 12px 12px 22px;
  border-radius: 26px;
  margin-top: 24px;
}
.navlinks { display: flex; align-items: center; gap: 28px; }
.navlinks a.navlink { color: var(--ink); font-size: 15px; font-weight: 500; }
.navlinks a.navlink:hover { color: var(--indigo); }
.wordmark { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
a.wordmark:hover { color: var(--ink); }
.mark {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(84,82,235,0.35);
}
.mark.lg { width: 56px; height: 56px; border-radius: 16px; }
.mark.sm { width: 28px; height: 28px; border-radius: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px; border-radius: 26px;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #FFFFFF; box-shadow: 0 10px 24px rgba(84,82,235,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none; cursor: pointer; font-family: inherit;
}
.btn:hover { color: #FFFFFF; transform: translateY(-1px); box-shadow: 0 14px 30px rgba(84,82,235,0.42); }
.btn.small { height: 44px; padding: 0 20px; font-size: 15px; border-radius: 22px; }
.btn.ghost {
  background: rgba(255,255,255,0.6); color: var(--ink);
  border: 1px solid rgba(29,28,58,0.10); box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn.ghost:hover { color: var(--indigo); transform: none; }
.btn.static { cursor: default; }
.btn.static:hover { transform: none; box-shadow: 0 10px 24px rgba(84,82,235,0.35); }

/* ---- hero ---- */
.hero { display: flex; align-items: center; gap: 64px; padding: 84px 0 96px 0; }
.hero-copy { flex: 1 1 0; min-width: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--indigo); background: rgba(84,82,235,0.09);
  padding: 8px 14px; border-radius: 999px;
}
h1 {
  font-size: 64px; line-height: 1.04; letter-spacing: -0.035em; font-weight: 800;
  margin: 22px 0 24px 0; text-wrap: balance;
}
.grad-text {
  background: linear-gradient(120deg, var(--indigo), var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 20px; line-height: 1.55; color: var(--muted); margin: 0 0 34px 0; max-width: 34em; text-wrap: pretty; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ---- phone mockup ---- */
.phone-col { flex: none; display: flex; justify-content: center; }
.phone-float { animation: phoneFloat 7s ease-in-out infinite; }
@keyframes phoneFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.phone {
  width: 340px; height: 700px; border-radius: 54px;
  background: #F4F4FB;
  border: 1px solid rgba(29,28,58,0.10);
  box-shadow: 0 40px 90px rgba(29,28,58,0.22), inset 0 0 0 8px #FFFFFF, inset 0 0 0 9px rgba(29,28,58,0.08);
  overflow: hidden; position: relative;
}
.screen {
  position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px;
  border-radius: 46px; overflow: hidden;
  display: flex; flex-direction: column;
  background:
    radial-gradient(70% 40% at 0% 0%, rgba(0,153,166,0.20) 0%, rgba(0,153,166,0) 100%),
    radial-gradient(70% 40% at 100% 0%, rgba(31,191,153,0.16) 0%, rgba(31,191,153,0) 100%),
    radial-gradient(70% 45% at 50% 105%, rgba(84,82,235,0.12) 0%, rgba(84,82,235,0) 100%),
    #FAFBFE;
}
.scen-bar { display: flex; align-items: center; gap: 10px; padding: 58px 18px 12px 18px; }
.scen-col { display: flex; flex-direction: column; }
.scen-tile {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  box-shadow: 0 4px 10px rgba(0,153,166,0.35);
  display: flex; align-items: center; justify-content: center;
}
.scen-name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.scen-langs { font-size: 12px; font-weight: 500; color: var(--muted); }

.convo { flex: 1 1 0; display: flex; flex-direction: column; gap: 12px; padding: 10px 16px; min-height: 0; }
.bubble-them {
  align-self: flex-start; max-width: 88%;
  background: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 22px; border-bottom-left-radius: 8px;
  padding: 12px 15px; box-shadow: 0 8px 20px rgba(29,28,58,0.08);
}
.src-line { font-size: 12px; font-weight: 500; color: var(--muted); line-height: 1.4; }
.transl-slot { position: relative; min-height: 24px; }
.big-line { font-size: 17px; font-weight: 600; line-height: 1.35; margin-top: 5px; }
.big-line.dots { color: #A9A7BE; }
.bubble-me {
  align-self: flex-end; max-width: 82%;
  background: linear-gradient(135deg, rgba(84,82,235,0.14), rgba(158,77,240,0.14));
  border: 1px solid rgba(84,82,235,0.18);
  border-radius: 22px; border-bottom-right-radius: 8px;
  padding: 12px 15px;
}
.me-said { font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--ink); }
.me-sub { display: flex; align-items: center; gap: 6px; margin-top: 5px; font-size: 12px; font-weight: 600; color: var(--indigo); }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; padding: 2px 16px 10px 16px; }
.chip {
  background: rgba(255,255,255,0.8); border: 1px solid rgba(0,153,166,0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 18px; padding: 8px 13px; box-shadow: 0 4px 12px rgba(0,153,166,0.10);
}
.chip .ro { font-size: 14px; font-weight: 700; line-height: 1.2; }
.chip .en { font-size: 10.5px; font-weight: 500; color: var(--muted); line-height: 1.2; margin-top: 2px; }
.input-bar { display: flex; align-items: center; gap: 10px; padding: 6px 16px 26px 16px; }
.type-pill {
  flex: 1 1 0; height: 46px; border-radius: 26px;
  background: rgba(255,255,255,0.85); border: 1px solid rgba(29,28,58,0.08);
  display: flex; align-items: center; padding: 0 16px;
  font-size: 14px; color: var(--muted);
}
.mic-btn {
  width: 46px; height: 46px; border-radius: 23px; flex: none;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  box-shadow: 0 8px 18px rgba(84,82,235,0.4);
  display: flex; align-items: center; justify-content: center;
}

/* conversation loop (14s, shared timeline) */
.cue { opacity: 0; animation-duration: 14s; animation-iteration-count: infinite; animation-timing-function: ease; }
@keyframes cueDoctor  { 0%, 2% { opacity: 0; transform: translateY(14px); } 6%, 93% { opacity: 1; transform: translateY(0); } 97%, 100% { opacity: 0; } }
@keyframes cueDots    { 0%, 7% { opacity: 0; } 9%, 13% { opacity: 1; } 15%, 100% { opacity: 0; } }
@keyframes cueTransl  { 0%, 14% { opacity: 0; } 18%, 93% { opacity: 1; } 97%, 100% { opacity: 0; } }
@keyframes cueChip1   { 0%, 24% { opacity: 0; transform: translateY(8px); } 27%, 93% { opacity: 1; transform: translateY(0); } 97%, 100% { opacity: 0; } }
@keyframes cueChip2   { 0%, 27% { opacity: 0; transform: translateY(8px); } 30%, 93% { opacity: 1; transform: translateY(0); } 97%, 100% { opacity: 0; } }
@keyframes cueChip3   { 0%, 30% { opacity: 0; transform: translateY(8px); } 33%, 93% { opacity: 1; transform: translateY(0); } 97%, 100% { opacity: 0; } }
@keyframes cuePress   { 0%, 42% { box-shadow: 0 4px 12px rgba(0,153,166,0.10); background: rgba(255,255,255,0.8); }
                        46%, 50% { box-shadow: 0 6px 16px rgba(0,153,166,0.35); background: rgba(0,153,166,0.14); }
                        54%, 100% { box-shadow: 0 4px 12px rgba(0,153,166,0.10); background: rgba(255,255,255,0.8); } }
@keyframes cueReply   { 0%, 52% { opacity: 0; transform: translateY(14px); } 56%, 93% { opacity: 1; transform: translateY(0); } 97%, 100% { opacity: 0; } }
.anim-doctor { animation-name: cueDoctor; }
.anim-dots   { animation-name: cueDots; position: absolute; }
.anim-transl { animation-name: cueTransl; }
.anim-chip1  { animation-name: cueChip1; }
.anim-chip2  { animation-name: cueChip2; }
.anim-chip3  { animation-name: cueChip3; }
.anim-press  { animation-name: cuePress; opacity: 1; }
.anim-reply  { animation-name: cueReply; }
.anim-chip2.anim-press { animation-name: cueChip2, cuePress; }

@keyframes arcPing { 0%, 55% { opacity: 0; } 60% { opacity: 1; } 70% { opacity: 0.25; } 78% { opacity: 1; } 86% { opacity: 0.25; } 93% { opacity: 1; } 97%, 100% { opacity: 0; } }
.arc { animation: arcPing 14s ease infinite; }

/* waveform bars */
.wave { display: flex; align-items: center; gap: 3px; height: 18px; }
.wave i {
  display: block; width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, var(--indigo), var(--violet));
  animation: waveBar 1.1s ease-in-out infinite;
}
@keyframes waveBar { 0%, 100% { height: 5px; } 50% { height: 17px; } }
.hear-wave { margin-bottom: 2px; }
.hear-wave i:nth-child(2) { animation-delay: 0.12s; } .hear-wave i:nth-child(3) { animation-delay: 0.24s; }
.hear-wave i:nth-child(4) { animation-delay: 0.36s; } .hear-wave i:nth-child(5) { animation-delay: 0.48s; }
.hear-wave i:nth-child(6) { animation-delay: 0.6s; }  .hear-wave i:nth-child(7) { animation-delay: 0.72s; }

/* ---- section scaffolding ---- */
.section { padding: 96px 0; }
.sec-head { max-width: 640px; margin: 0 auto 56px auto; text-align: center; }
h2 { font-size: 42px; line-height: 1.1; letter-spacing: -0.03em; font-weight: 800; margin: 0 0 16px 0; text-wrap: balance; }
.sec-sub { font-size: 18px; line-height: 1.55; color: var(--muted); margin: 0; text-wrap: pretty; }

/* ---- three jobs ---- */
.jobs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.job {
  border-radius: 26px; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.job-tile {
  width: 52px; height: 52px; border-radius: 15px; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.tile-hear { background: linear-gradient(135deg, var(--teal), var(--mint)); box-shadow: 0 8px 18px rgba(0,153,166,0.35); }
.tile-answer { background: linear-gradient(135deg, var(--orange), var(--coral)); box-shadow: 0 8px 18px rgba(250,133,46,0.35); }
.tile-find { background: linear-gradient(135deg, var(--violet), var(--coral)); box-shadow: 0 8px 18px rgba(158,77,240,0.35); }
.job h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.job p { font-size: 15.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.job-scene {
  margin-top: auto; border-radius: 18px; padding: 16px;
  background: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.85);
  min-height: 128px; display: flex; flex-direction: column; gap: 10px; justify-content: center;
  overflow: hidden;
}

/* hear scene */
.stream { overflow: hidden; white-space: nowrap; }
.stream span { display: inline-block; }
@keyframes streamIn { 0% { width: 0; } 42% { width: 100%; } 100% { width: 100%; } }
.stream-en { animation: streamIn 7s steps(33) infinite; font-size: 12.5px; font-weight: 500; color: var(--muted); }
.stream-ro { animation: streamIn 7s steps(32) infinite; animation-delay: 1.6s; width: 0; font-size: 16px; font-weight: 700; }
.stream-ro span { color: var(--teal); }

/* answer scene */
.type-line {
  display: flex; align-items: center; gap: 8px;
  background: #FFFFFF; border: 1px solid rgba(29,28,58,0.1); border-radius: 14px;
  padding: 9px 13px; font-size: 15px; font-weight: 700;
}
.typed { overflow: hidden; white-space: nowrap; animation: typeIn 8s steps(13) infinite; }
@keyframes typeIn { 0% { width: 0; } 28% { width: 100%; } 100% { width: 100%; } }
.caret { width: 2px; height: 16px; background: var(--indigo); animation: caretBlink 1s steps(1) infinite; }
@keyframes caretBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
.spoken-line { display: flex; align-items: center; gap: 9px; opacity: 0; animation: spokenIn 8s ease infinite; }
@keyframes spokenIn { 0%, 36% { opacity: 0; transform: translateY(6px); } 44%, 92% { opacity: 1; transform: translateY(0); } 98%, 100% { opacity: 0; } }
.spoken-line b { font-size: 15px; font-weight: 700; color: var(--orange); }
@keyframes talkArc { 0%, 40% { opacity: 0.25; } 48% { opacity: 1; } 56% { opacity: 0.25; } 64% { opacity: 1; } 72% { opacity: 0.25; } 80% { opacity: 1; } 92%, 100% { opacity: 0.25; } }
.talk-arc { animation: talkArc 8s ease infinite; }

/* find scene */
.mini-chip {
  align-self: flex-start;
  background: #FFFFFF; border: 1px solid rgba(158,77,240,0.25); border-radius: 14px;
  padding: 7px 12px; opacity: 0;
}
.mini-chip .ro { font-size: 13.5px; font-weight: 700; line-height: 1.2; }
.mini-chip .en { font-size: 10px; font-weight: 500; color: var(--muted); line-height: 1.2; margin-top: 1px; }
@keyframes miniIn1 { 0%, 8% { opacity: 0; transform: translateY(8px); } 14%, 92% { opacity: 1; transform: translateY(0); } 98%, 100% { opacity: 0; } }
@keyframes miniIn2 { 0%, 16% { opacity: 0; transform: translateY(8px); } 22%, 92% { opacity: 1; transform: translateY(0); } 98%, 100% { opacity: 0; } }
@keyframes miniIn3 { 0%, 24% { opacity: 0; transform: translateY(8px); } 30%, 92% { opacity: 1; transform: translateY(0); } 98%, 100% { opacity: 0; } }
@keyframes miniGlow { 0%, 40% { border-color: rgba(158,77,240,0.25); box-shadow: none; } 48%, 84% { border-color: rgba(158,77,240,0.7); box-shadow: 0 6px 16px rgba(158,77,240,0.25); } 92%, 100% { border-color: rgba(158,77,240,0.25); box-shadow: none; } }
.mini-1 { animation: miniIn1 8s ease infinite; }
.mini-2 { animation: miniIn2 8s ease infinite, miniGlow 8s ease infinite; }
.mini-3 { animation: miniIn3 8s ease infinite; }

/* ---- inside the app (bento) ---- */
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; }
.b-card { border-radius: 26px; padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.span7 { grid-column: span 7; }
.span5 { grid-column: span 5; }
.span4 { grid-column: span 4; }
.b-card h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.b-card > p { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }
.b-demo {
  border-radius: 18px; padding: 18px; margin-top: auto;
  background: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.85);
  display: flex; flex-direction: column; gap: 12px;
}
.b-demo-title { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }

.scen-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.scen-cell { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.scen-cell .t {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.scen-cell span:not(.t) { font-size: 12px; font-weight: 600; text-align: center; line-height: 1.2; }
.t-medico { background: linear-gradient(135deg, var(--teal), var(--mint)); box-shadow: 0 6px 14px rgba(0,153,166,0.3); }
.t-hospital { background: linear-gradient(135deg, var(--coral), var(--orange)); box-shadow: 0 6px 14px rgba(245,87,107,0.3); }
.t-farmacia { background: linear-gradient(135deg, var(--mint), var(--teal)); box-shadow: 0 6px 14px rgba(31,191,153,0.3); }
.t-casa { background: linear-gradient(135deg, var(--orange), var(--coral)); box-shadow: 0 6px 14px rgba(250,133,46,0.3); }
.t-familia { background: linear-gradient(135deg, var(--violet), var(--coral)); box-shadow: 0 6px 14px rgba(158,77,240,0.3); }
.t-compras { background: linear-gradient(135deg, var(--gold), var(--orange)); box-shadow: 0 6px 14px rgba(250,191,36,0.35); }
.t-transporte { background: linear-gradient(135deg, var(--indigo), var(--mint)); box-shadow: 0 6px 14px rgba(84,82,235,0.3); }
.t-banco { background: linear-gradient(135deg, var(--teal), var(--indigo)); box-shadow: 0 6px 14px rgba(0,153,166,0.3); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 999px;
  background: rgba(84,82,235,0.08); color: var(--indigo);
}
.tag.on { background: linear-gradient(135deg, var(--indigo), var(--violet)); color: #FFFFFF; }
.phrase-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  background: #FFFFFF; border: 1px solid rgba(29,28,58,0.08); border-radius: 14px;
  padding: 10px 13px;
}
.phrase-row .ro { font-size: 14.5px; font-weight: 700; }
.phrase-row .en { font-size: 11.5px; font-weight: 500; color: var(--muted); text-align: right; flex: none; }
.phrase-row.hot { border-color: rgba(245,87,107,0.35); }
.phrase-row.hot .ro { color: var(--coral); }

.about-card-demo { display: flex; gap: 13px; align-items: flex-start; }
.about-ava {
  width: 40px; height: 40px; border-radius: 20px; flex: none;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
}
.about-card-demo .ro { font-size: 14.5px; font-weight: 700; line-height: 1.4; }
.about-card-demo .en { font-size: 11.5px; font-weight: 500; color: var(--muted); margin-top: 4px; line-height: 1.4; }

.lang-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #FFFFFF; border: 1px solid rgba(29,28,58,0.08); border-radius: 14px;
  padding: 9px 13px; font-size: 14px; font-weight: 600;
}
.lang-row.sel { border-color: rgba(84,82,235,0.4); }
.size-slider { display: flex; align-items: center; gap: 10px; padding: 2px 2px 0 2px; }
.size-slider .a-sm { font-size: 12px; font-weight: 700; color: var(--muted); }
.size-slider .a-lg { font-size: 19px; font-weight: 700; color: var(--muted); }
.track { flex: 1 1 0; height: 4px; border-radius: 2px; background: rgba(29,28,58,0.12); position: relative; }
.track .fill { position: absolute; left: 0; top: 0; bottom: 0; width: 65%; border-radius: 2px; background: linear-gradient(90deg, var(--indigo), var(--violet)); }
.track .knob { position: absolute; left: 65%; top: 50%; transform: translate(-50%, -50%); width: 18px; height: 18px; border-radius: 9px; background: #FFFFFF; box-shadow: 0 2px 8px rgba(29,28,58,0.3); }

/* ---- promises ---- */
.promises { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.promise { border-radius: 26px; padding: 26px; display: flex; gap: 18px; align-items: flex-start; }
.promise-tile { width: 44px; height: 44px; border-radius: 13px; flex: none; display: flex; align-items: center; justify-content: center; }
.pt-wifi { background: linear-gradient(135deg, var(--indigo), var(--teal)); box-shadow: 0 8px 16px rgba(84,82,235,0.3); }
.pt-eye { background: linear-gradient(135deg, var(--teal), var(--mint)); box-shadow: 0 8px 16px rgba(0,153,166,0.3); }
.pt-globe { background: linear-gradient(135deg, var(--violet), var(--indigo)); box-shadow: 0 8px 16px rgba(158,77,240,0.3); }
.pt-lock { background: linear-gradient(135deg, var(--orange), var(--gold)); box-shadow: 0 8px 16px rgba(250,133,46,0.3); }
.promise h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 6px 0; }
.promise p { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }
.honest { margin-top: 40px; text-align: center; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ---- closing ---- */
.closing { text-align: center; padding: 110px 0 120px 0; }
.closing-mark { display: flex; justify-content: center; margin-bottom: 26px; }
.closing h2 { font-size: 48px; }
.closing .etym { font-size: 17px; color: var(--muted); margin: 0 0 36px 0; }

/* ---- subpage scaffolding ---- */
.page-head { padding: 72px 0 44px 0; max-width: 720px; }
.page-head h1 { font-size: 48px; line-height: 1.06; letter-spacing: -0.03em; margin: 0 0 14px 0; }
.page-meta { font-size: 15px; color: var(--muted); margin: 0; }
.page-meta strong { color: var(--ink); font-weight: 600; }
.page-sub { font-size: 18px; line-height: 1.55; color: var(--muted); margin: 0; text-wrap: pretty; }
.placeholder { color: #A9A7BE; }

/* privacy prose */
.prose { max-width: 780px; margin: 0 auto; padding: 0 40px 40px 40px; }
.prose h2 { font-size: 26px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; margin: 44px 0 12px 0; }
.prose p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 14px 0; text-wrap: pretty; }
.prose li { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 8px 0; }
.prose ul { margin: 0 0 14px 0; padding-left: 22px; }
.prose strong { color: var(--ink); font-weight: 600; }
.short-version { border-radius: 26px; padding: 28px; margin: 8px 0 48px 0; display: flex; flex-direction: column; gap: 18px; }
.short-version h2 { margin: 0; font-size: 20px; letter-spacing: -0.02em; }
.short-row { display: flex; gap: 14px; align-items: flex-start; }
.short-dot { width: 34px; height: 34px; border-radius: 10px; flex: none; display: flex; align-items: center; justify-content: center; }
.sd-device { background: linear-gradient(135deg, var(--indigo), var(--violet)); }
.sd-up { background: linear-gradient(135deg, var(--teal), var(--mint)); }
.sd-del { background: linear-gradient(135deg, var(--orange), var(--coral)); }
.short-row p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink); }

/* support */
.content { padding: 12px 0 40px 0; }
.content h2 { font-size: 28px; margin: 48px 0 20px 0; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.step { border-radius: 22px; padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.step-num {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #FFFFFF;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  box-shadow: 0 6px 14px rgba(0,153,166,0.3);
}
.step h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; margin: 0; }
.step p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.steps-note { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 18px 0 0 0; max-width: 640px; }
.faq { display: flex; flex-direction: column; gap: 14px; max-width: 780px; }
.qa { border-radius: 22px; padding: 20px 24px; }
.qa h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 8px 0; }
.qa p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
.contact-cta {
  border-radius: 26px; padding: 30px; margin-top: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.contact-cta h2 { margin: 0 0 8px 0; font-size: 24px; }
.contact-cta p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--muted); max-width: 480px; }

/* contact */
.contact-grid { display: flex; gap: 48px; align-items: flex-start; padding-bottom: 40px; }
.form-card { flex: 1 1 0; min-width: 0; border-radius: 26px; padding: 34px; max-width: 620px; }
.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 15.5px; color: var(--ink);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(29,28,58,0.14); border-radius: 14px;
  padding: 13px 15px; outline: none; width: 100%;
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235E5C75' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(84,82,235,0.15); }
.field input::placeholder, .field textarea::placeholder { color: #A9A7BE; }
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.row-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form .btn { align-self: flex-start; }
.form-note { font-size: 13.5px; line-height: 1.5; color: var(--muted); margin: 0; }
.form-status { font-size: 14.5px; line-height: 1.5; margin: 0; display: none; }
.form-status.ok { display: block; color: var(--teal); font-weight: 600; }
.form-status.err { display: block; color: var(--coral); font-weight: 600; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.aside { flex: 0 1 340px; display: flex; flex-direction: column; gap: 16px; }
.aside-card { border-radius: 22px; padding: 22px; display: flex; gap: 14px; align-items: flex-start; }
.aside-dot { width: 34px; height: 34px; border-radius: 10px; flex: none; display: flex; align-items: center; justify-content: center; }
.ad-mail { background: linear-gradient(135deg, var(--indigo), var(--violet)); }
.ad-globe { background: linear-gradient(135deg, var(--teal), var(--mint)); }
.ad-co { background: linear-gradient(135deg, var(--orange), var(--gold)); }
.aside-card h3 { font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 4px 0; }
.aside-card p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; overflow-wrap: anywhere; }

/* ---- 404 ---- */
.notfound { text-align: center; padding: 140px 0 160px 0; }

/* ---- footer ---- */
footer { border-top: 1px solid rgba(29,28,58,0.08); padding: 34px 0 46px 0; }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 26px; }
.foot-links a { font-size: 14px; color: var(--muted); }
.foot-links a:hover { color: var(--indigo); }
.foot-note { font-size: 13.5px; color: var(--muted); }

/* ---- motion preferences ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cue, .arc, .wave i, .stream-en, .stream-ro, .typed, .caret, .spoken-line, .talk-arc,
  .mini-1, .mini-2, .mini-3, .phone-float, .anim-press { animation: none; opacity: 1; width: auto; }
  .anim-dots { opacity: 0; }
}

/* ---- phone width ---- */
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav { margin-top: 14px; padding: 10px 10px 10px 16px; }
  .navlinks { gap: 16px; }
  .navlinks a.navlink { display: none; }
  .hero { flex-direction: column; gap: 56px; padding: 56px 0 72px 0; }
  h1 { font-size: 42px; }
  .hero-sub { font-size: 17.5px; }
  .phone { width: 310px; height: 640px; }
  .section { padding: 68px 0; }
  h2 { font-size: 32px; }
  .closing h2 { font-size: 36px; }
  .sec-sub { font-size: 16.5px; }
  .jobs { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .span7, .span5, .span4 { grid-column: span 12; }
  .promises { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .closing { padding: 72px 0 80px 0; }
  .page-head h1 { font-size: 38px; }
  .steps { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .contact-grid { flex-direction: column; gap: 24px; }
  .aside { flex: 1 1 auto; width: 100%; }
  .row-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .prose { padding: 0 20px 40px 20px; }
  .foot-row { flex-direction: column; align-items: flex-start; gap: 18px; }
}
