/* ─────────────────────────────────────────────────────────────
   Veylo · website styles — built on the Mini App design tokens
   ───────────────────────────────────────────────────────────── */

:root {
  --font-sans: 'Manrope', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* dark (default) — deep cool ink with warm amber accent */
  --bg:          #0d0f13;
  --bg-elev:     #131620;
  --surface:     #181c27;
  --surface-2:   #1c2130;
  --surface-3:   #2a3142;
  --hair:        rgba(255, 255, 255, 0.07);
  --hair-strong: rgba(255, 255, 255, 0.12);
  --text:        #f3f4f7;
  --text-dim:    #b8bdc9;
  --muted:       #7c818f;
  --subtle:      #555a66;

  --accent:      #ffb347;
  --accent-2:    #ff8b3d;
  --accent-ink:  #1a1206;
  --accent-soft: rgba(255, 179, 71, 0.14);
  --accent-line: rgba(255, 179, 71, 0.28);

  --success:     #5fd6a0;
  --danger:      #f06f6f;
  --warning:     #f5c352;
  --info:        #6ab1ff;

  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 28px rgba(0,0,0,0.4);
  --shadow-pop:  0 24px 60px rgba(0,0,0,0.55);

  --maxw: 1180px;
  --header-h: 72px;
}

:root[data-theme="light"] {
  --bg:          #f6f5f1;
  --bg-elev:     #ffffff;
  --surface:     #ffffff;
  --surface-2:   #f0eee9;
  --surface-3:   #e8e5dd;
  --hair:        rgba(0, 0, 0, 0.07);
  --hair-strong: rgba(0, 0, 0, 0.13);
  --text:        #14161c;
  --text-dim:    #3d4250;
  --muted:       #71768a;
  --subtle:      #a8acba;

  --accent:      #ed8a2e;
  --accent-2:    #e8742a;
  --accent-ink:  #fff6ea;
  --accent-soft: rgba(237, 138, 46, 0.12);
  --accent-line: rgba(237, 138, 46, 0.30);

  --shadow-card: 0 1px 0 rgba(255,255,255,0.7) inset, 0 6px 22px rgba(20,22,30,0.07);
  --shadow-pop:  0 18px 50px rgba(20,22,30,0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

::selection { background: var(--accent); color: var(--accent-ink); }

.mono { font-family: var(--font-mono); letter-spacing: -0.02em; }
.num  { font-variant-numeric: tabular-nums; }

h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

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

/* ── Accessibility skip link ──────────────────────────────── */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: 0 0 12px 0; font-weight: 700;
}
.skip:focus { left: 0; }

/* ── Brand mark ───────────────────────────────────────────── */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, #ffd07a, #ffb347 45%, #ff8b3d);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px var(--accent-soft), 0 1px 0 rgba(255,255,255,0.25) inset;
}
.brand-mark svg { width: 22px; height: 22px; display: block; }
.brand-name {
  font-size: 21px; font-weight: 800; letter-spacing: -0.04em; color: var(--text);
}
.brand-name b { color: var(--accent); font-weight: 800; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--hair);
}
.site-header .container { height: 100%; display: flex; align-items: center; gap: 24px; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 9px 14px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; color: var(--text-dim);
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a.active { color: var(--accent); }

.header-tools { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: var(--radius-pill);
  border: 1px solid var(--hair); background: var(--surface);
  color: var(--text-dim); display: grid; place-items: center; cursor: pointer;
  transition: color .15s, border-color .15s, transform .12s;
}
.theme-toggle:hover { color: var(--text); border-color: var(--hair-strong); }
.theme-toggle:active { transform: scale(0.93); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .ico-moon { display: none; }
:root[data-theme="light"] .theme-toggle .ico-sun { display: none; }
:root[data-theme="light"] .theme-toggle .ico-moon { display: block; }

.menu-btn {
  display: none; width: 40px; height: 40px; border-radius: var(--radius-pill);
  border: 1px solid var(--hair); background: var(--surface);
  color: var(--text); place-items: center; cursor: pointer;
}
.menu-btn svg { width: 20px; height: 20px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  padding: 13px 22px; border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .14s cubic-bezier(.2,.7,.3,1), background .15s, border-color .15s, box-shadow .2s, color .15s;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  box-shadow: 0 10px 30px var(--accent-soft);
}
.btn-primary:hover { box-shadow: 0 14px 40px var(--accent-soft); filter: brightness(1.04); }
.btn-secondary { background: var(--surface-3); color: var(--text); border-color: var(--hair); }
.btn-secondary:hover { border-color: var(--hair-strong); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--hair-strong); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* ── Pills / badges ───────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em;
  border: 1px solid var(--hair); background: var(--surface-2); color: var(--text-dim);
}
.pill svg { width: 14px; height: 14px; }
.pill-accent { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent); }
.pill-dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 22%, transparent);
}
.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ── Sections ─────────────────────────────────────────────── */
section { position: relative; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 46px); }
.section-head .lead { margin-top: 18px; font-size: clamp(16px, 1.7vw, 19px); color: var(--text-dim); font-weight: 500; }

.lead { color: var(--text-dim); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero { position: relative; padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(56px, 8vw, 110px); overflow: hidden; }
.hero-glow {
  position: absolute; pointer-events: none; z-index: 0;
  width: 760px; height: 760px; right: -180px; top: -260px;
  background: radial-gradient(closest-side, var(--accent-soft), transparent 70%);
  filter: blur(8px);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-copy h1 { font-size: clamp(36px, 5.6vw, 66px); line-height: 1.02; }
.hero-copy h1 .hl { color: var(--accent); }
.hero-copy .lead { margin-top: 22px; font-size: clamp(17px, 1.9vw, 21px); font-weight: 500; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 40px; }
.hero-trust .stat { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .stat b { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; }
.hero-trust .stat span { font-size: 13px; color: var(--muted); font-weight: 600; }
.hero-trust .stat b .unit { color: var(--accent); }

/* ── Phone mockup ─────────────────────────────────────────── */
.phone-stage { display: flex; justify-content: center; perspective: 1600px; }
.phone {
  position: relative; width: 322px; flex-shrink: 0;
  border-radius: 46px; padding: 11px;
  background: linear-gradient(155deg, #2c3140, #14161d);
  box-shadow: var(--shadow-pop), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
:root[data-theme="light"] .phone { background: linear-gradient(155deg, #2a2d35, #0f1116); }
.phone-screen {
  position: relative; border-radius: 36px; overflow: hidden;
  background: #0d0f13; aspect-ratio: 322 / 660;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 104px; height: 26px; background: #05070a; border-radius: 14px; z-index: 5;
}
/* the app screen always renders in its own dark scope regardless of site theme */
.app { background: #0d0f13; color: #f3f4f7; flex: 1; display: flex; flex-direction: column; font-size: 13px; letter-spacing: -0.01em; }
.app * { box-sizing: border-box; }
.app-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px 4px; font-size: 13px; font-weight: 700; color: #f3f4f7;
}
.app-status .dots { display: flex; gap: 5px; align-items: center; }
.app-status svg { width: 16px; height: 16px; opacity: .9; }
.app-body { flex: 1; overflow: hidden; padding: 8px 16px 16px; display: flex; flex-direction: column; gap: 13px; }
.app-topbar { display: flex; align-items: center; gap: 11px; padding-top: 6px; }
.app-logo { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, #ffd07a, #ff8b3d); display: grid; place-items: center; }
.app-logo svg { width: 21px; height: 21px; }
.app-topbar .who { flex: 1; min-width: 0; }
.app-topbar .who b { display: block; font-size: 15px; font-weight: 800; color: #f3f4f7; letter-spacing: -0.02em; }
.app-topbar .who span { font-size: 11.5px; color: #7c818f; font-weight: 600; }
.app-bell { width: 38px; height: 38px; border-radius: 50%; background: #181c27; border: 1px solid rgba(255,255,255,0.07); display: grid; place-items: center; position: relative; }
.app-bell svg { width: 18px; height: 18px; color: #b8bdc9; }
.app-bell i { position: absolute; top: 7px; right: 8px; width: 7px; height: 7px; background: #ff8b3d; border-radius: 50%; border: 2px solid #0d0f13; }
.app-greet { margin-top: 2px; }
.app-greet h3, .app-greet-title { font-size: 26px; font-weight: 800; color: #f3f4f7; letter-spacing: -0.03em; line-height: 1.1; }
.app-greet h3 b, .app-greet-title b { color: #ffb347; }
.app-greet p { font-size: 13px; color: #868b99; font-weight: 600; margin-top: 4px; }
.app-search {
  display: flex; align-items: center; gap: 9px; padding: 12px 14px;
  background: #181c27; border: 1px solid rgba(255,255,255,0.07); border-radius: 14px;
}
.app-search svg { width: 17px; height: 17px; color: #868b99; }
.app-search span { font-size: 13px; color: #868b99; font-weight: 600; flex: 1; }
.app-search .urgent { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 800; color: #1a1206; background: linear-gradient(135deg,#ffb347,#ff8b3d); padding: 5px 9px; border-radius: 999px; }
.app-search .urgent svg { width: 11px; height: 11px; color: #1a1206; }
.app-booking {
  background: linear-gradient(135deg, rgba(255,179,71,0.16), rgba(255,139,61,0.06));
  border: 1px solid rgba(255,179,71,0.28); border-radius: 16px; padding: 13px;
  display: flex; align-items: center; gap: 12px;
}
.app-booking .bk-info { flex: 1; min-width: 0; }
.app-booking .bk-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #ffb347; }
.app-booking .bk-tag b { color: #7c818f; font-weight: 700; }
.app-booking .bk-title { font-size: 14px; font-weight: 800; color: #f3f4f7; margin-top: 5px; letter-spacing: -0.02em; }
.app-booking .bk-meta { font-size: 11.5px; color: #b8bdc9; font-weight: 600; margin-top: 2px; font-variant-numeric: tabular-nums; }
.app-booking .bk-day { width: 50px; height: 50px; border-radius: 13px; background: #ffb347; color: #1a1206; display: grid; place-items: center; text-align: center; flex-shrink: 0; }
.app-booking .bk-day small { display: block; font-size: 8px; font-weight: 800; text-transform: uppercase; opacity: .7; }
.app-booking .bk-day b { font-size: 19px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.app-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.app-cat { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.app-cat .ic { width: 100%; aspect-ratio: 1; border-radius: 15px; background: #181c27; border: 1px solid rgba(255,255,255,0.07); display: grid; place-items: center; }
.app-cat .ic svg { width: 22px; height: 22px; color: #ffb347; }
.app-cat span { font-size: 10.5px; font-weight: 700; color: #b8bdc9; }
.app-section-row { display: flex; align-items: center; justify-content: space-between; }
.app-section-row b { font-size: 14px; font-weight: 800; color: #f3f4f7; letter-spacing: -0.02em; }
.app-section-row a { font-size: 11.5px; font-weight: 700; color: #ffb347; }
.app-partner { display: flex; align-items: center; gap: 11px; padding: 11px; background: #181c27; border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; }
.app-partner .pa-ph { width: 44px; height: 44px; border-radius: 11px; background: repeating-linear-gradient(135deg, #20253200 0 9px, rgba(255,255,255,0.05) 9px 10px), #20232e; flex-shrink: 0; display: grid; place-items: center; font-family: var(--font-mono); font-size: 8px; color: #7c818f; }
.app-partner .pa-info { flex: 1; min-width: 0; }
.app-partner .pa-info b { display: block; font-size: 13px; font-weight: 800; color: #f3f4f7; letter-spacing: -0.01em; }
.app-partner .pa-meta { font-size: 10.5px; color: #868b99; font-weight: 600; font-variant-numeric: tabular-nums; display: flex; gap: 8px; margin-top: 2px; }
.app-partner .pa-meta .star { color: #ffb347; display: inline-flex; align-items: center; gap: 3px; }
.app-partner .pa-meta .star svg { width: 11px; height: 11px; }
.app-partner .pro { font-size: 9px; font-weight: 800; color: #ffb347; background: rgba(255,179,71,0.14); border: 1px solid rgba(255,179,71,0.28); padding: 3px 7px; border-radius: 999px; }
.app-tabbar { display: flex; align-items: center; justify-content: space-around; padding: 10px 8px 16px; border-top: 1px solid rgba(255,255,255,0.07); background: #0d0f13; }
.app-tab { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #555a66; }
.app-tab svg { width: 21px; height: 21px; }
.app-tab span { font-size: 9.5px; font-weight: 700; }
.app-tab.on { color: #ffb347; }

/* ── Phone mockup · LIGHT theme (mirrors Mini App light mode) ── */
:root[data-theme="light"] .phone-screen { background: #f6f5f1; }
:root[data-theme="light"] .app { background: #f6f5f1; color: #14161c; }
:root[data-theme="light"] .app-status { color: #14161c; }
:root[data-theme="light"] .app-topbar .who b { color: #14161c; }
:root[data-theme="light"] .app-topbar .who span { color: #71768a; }
:root[data-theme="light"] .app-bell { background: #ffffff; border-color: rgba(0,0,0,0.07); }
:root[data-theme="light"] .app-bell svg { color: #3d4250; }
:root[data-theme="light"] .app-bell i { border-color: #f6f5f1; }
:root[data-theme="light"] .app-greet h3, :root[data-theme="light"] .app-greet-title { color: #14161c; }
:root[data-theme="light"] .app-greet h3 b, :root[data-theme="light"] .app-greet-title b { color: #ed8a2e; }
:root[data-theme="light"] .app-greet p { color: #71768a; }
:root[data-theme="light"] .app-search { background: #ffffff; border-color: rgba(0,0,0,0.07); }
:root[data-theme="light"] .app-search svg { color: #71768a; }
:root[data-theme="light"] .app-search span { color: #71768a; }
:root[data-theme="light"] .app-booking .bk-tag { color: #d97a1e; }
:root[data-theme="light"] .app-booking .bk-tag b { color: #71768a; }
:root[data-theme="light"] .app-booking .bk-title { color: #14161c; }
:root[data-theme="light"] .app-booking .bk-meta { color: #3d4250; }
:root[data-theme="light"] .app-cat .ic { background: #ffffff; border-color: rgba(0,0,0,0.07); }
:root[data-theme="light"] .app-cat .ic svg { color: #ed8a2e; }
:root[data-theme="light"] .app-cat span { color: #3d4250; }
:root[data-theme="light"] .app-section-row b { color: #14161c; }
:root[data-theme="light"] .app-section-row a { color: #d97a1e; }
:root[data-theme="light"] .app-partner { background: #ffffff; border-color: rgba(0,0,0,0.07); }
:root[data-theme="light"] .app-partner .pa-ph { background: repeating-linear-gradient(135deg, transparent 0 9px, rgba(0,0,0,0.06) 9px 10px), #ece9e2; color: #8b8478; }
:root[data-theme="light"] .app-partner .pa-info b { color: #14161c; }
:root[data-theme="light"] .app-partner .pa-meta { color: #71768a; }
:root[data-theme="light"] .app-partner .pa-meta .star { color: #d97a1e; }
:root[data-theme="light"] .app-partner .pro { color: #d97a1e; }
:root[data-theme="light"] .app-tabbar { background: #f6f5f1; border-top-color: rgba(0,0,0,0.07); }
:root[data-theme="light"] .app-tab { color: #a8acba; }
:root[data-theme="light"] .app-tab.on { color: #ed8a2e; }

/* ── Logo strip / cities pills ─────────────────────────────── */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.city-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 17px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--hair);
  font-size: 14px; font-weight: 700; color: var(--text);
  transition: border-color .15s, transform .12s, color .15s;
}
.city-chip:hover { border-color: var(--accent-line); color: var(--accent); transform: translateY(-2px); }
.city-chip svg { width: 15px; height: 15px; color: var(--accent); }

/* ── Step cards ───────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding: 30px 26px; }
.step .step-n {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px; background: var(--accent-soft); border: 1px solid var(--accent-line);
  margin-bottom: 20px;
}
.step h3 { font-size: 20px; letter-spacing: -0.02em; }
.step p { margin-top: 11px; color: var(--text-dim); font-size: 15px; font-weight: 500; }

/* ── Category / feature grid ──────────────────────────────── */
.grid-cards { display: grid; gap: 16px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }

.feature { padding: 26px; display: flex; flex-direction: column; gap: 14px; transition: border-color .15s, transform .15s; }
.feature:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.feature .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; }
.feature .ic svg { width: 23px; height: 23px; color: var(--accent); }
.feature h3 { font-size: 18px; letter-spacing: -0.02em; }
.feature p { color: var(--text-dim); font-size: 14.5px; font-weight: 500; }

/* service category card with link */
.cat-card { padding: 22px; display: flex; flex-direction: column; gap: 12px; transition: border-color .15s, transform .15s; }
.cat-card:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.cat-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; }
.cat-card .ic svg { width: 22px; height: 22px; color: var(--accent); }
.cat-card b { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.cat-card span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ── Split / value section ───────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.value-list { display: flex; flex-direction: column; gap: 8px; }
.value-row { display: flex; gap: 15px; padding: 18px; border-radius: var(--radius-md); transition: background .15s; }
.value-row:hover { background: var(--surface-2); }
.value-row .vk { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; flex-shrink: 0; }
.value-row .vk svg { width: 20px; height: 20px; color: var(--accent); }
.value-row b { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.value-row p { margin-top: 4px; color: var(--text-dim); font-size: 14.5px; font-weight: 500; }

/* ── Striped placeholder ──────────────────────────────────── */
.ph {
  position: relative;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 16px, var(--hair) 16px 17px),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  background-color: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--hair);
}
.ph > span { position: relative; z-index: 1; padding: 4px 9px; background: color-mix(in srgb, var(--bg) 60%, transparent); border-radius: 6px; }

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(135deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--hair-strong);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(closest-side at 85% 20%, var(--accent-soft), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(26px, 4vw, 42px); }
.cta-band p { margin-top: 16px; color: var(--text-dim); font-size: 18px; font-weight: 500; max-width: 520px; }
.cta-band .hero-cta { margin-top: 30px; }

/* ── FAQ accordion ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--hair); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; transition: border-color .15s; }
.faq-item[open] { border-color: var(--accent-line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  font-size: 17px; font-weight: 700; letter-spacing: -0.02em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q { flex: 1; }
.faq-item summary .chev { width: 22px; height: 22px; color: var(--muted); transition: transform .25s; flex-shrink: 0; }
.faq-item[open] summary .chev { transform: rotate(180deg); color: var(--accent); }
.faq-item .ans { padding: 0 22px 22px; color: var(--text-dim); font-size: 15px; font-weight: 500; line-height: 1.65; }
.faq-item .ans p + p { margin-top: 12px; }

/* ── Prose (legal pages) ──────────────────────────────────── */
.prose { max-width: 760px; }
.prose h2 { font-size: 24px; margin-top: 44px; letter-spacing: -0.025em; }
.prose h3 { font-size: 18px; margin-top: 28px; letter-spacing: -0.02em; }
.prose p { margin-top: 14px; color: var(--text-dim); font-size: 16px; font-weight: 500; line-height: 1.7; }
.prose ul { margin-top: 14px; padding-left: 22px; color: var(--text-dim); font-size: 16px; font-weight: 500; line-height: 1.7; }
.prose li { margin-top: 8px; }
.prose a { color: var(--accent); font-weight: 700; }
.prose .upd { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.crumbs { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--muted); flex-wrap: wrap; }
.crumbs a:hover { color: var(--accent); }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }
.crumbs .cur { color: var(--text-dim); }

/* ── Page hero (interior pages) ───────────────────────────── */
.page-hero { padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(28px, 4vw, 44px); }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); margin-top: 20px; }
.page-hero .lead { margin-top: 18px; font-size: clamp(16px, 1.8vw, 20px); color: var(--text-dim); font-weight: 500; max-width: 640px; }

/* ── Contact rows ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-card { padding: 26px; display: flex; gap: 16px; align-items: flex-start; transition: border-color .15s; }
.contact-card:hover { border-color: var(--accent-line); }
.contact-card .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .ic svg { width: 22px; height: 22px; color: var(--accent); }
.contact-card .k { font-size: 13px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.contact-card .v { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-top: 5px; }
.contact-card .v a:hover { color: var(--accent); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--hair); padding-block: 64px 40px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-about { max-width: 320px; }
.footer-about p { margin-top: 16px; color: var(--muted); font-size: 14px; font-weight: 500; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: var(--surface); border: 1px solid var(--hair); display: grid; place-items: center; color: var(--text-dim); transition: color .15s, border-color .15s; }
.footer-social a:hover { color: var(--accent); border-color: var(--accent-line); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; font-weight: 600; color: var(--text-dim); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--hair); }
.footer-bottom p { font-size: 13px; color: var(--muted); font-weight: 500; }
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom .links a { font-size: 13px; color: var(--muted); font-weight: 600; }
.footer-bottom .links a:hover { color: var(--accent); }

/* ── Mobile nav drawer ────────────────────────────────────── */
.mobile-nav { display: none; }

/* ── Language switcher ────────────────────────────────────── */
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 12px;
  border-radius: var(--radius-pill); border: 1px solid var(--hair); background: var(--surface);
  color: var(--text-dim); font-family: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.lang-btn:hover { color: var(--text); border-color: var(--hair-strong); }
.lang-btn svg { width: 17px; height: 17px; }
.lang-btn .caret { width: 14px; height: 14px; opacity: .7; transition: transform .2s; }
.lang.open .lang-btn .caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px; z-index: 120;
  background: var(--bg-elev); border: 1px solid var(--hair-strong); border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop); padding: 6px; opacity: 0; transform: translateY(-6px);
  pointer-events: none; transition: opacity .18s, transform .18s;
}
.lang.open .lang-menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-menu a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--text-dim); transition: background .14s, color .14s;
}
.lang-menu a:hover { background: var(--surface-2); color: var(--text); }
.lang-menu a.cur { color: var(--accent); }
.lang-menu a .flag { font-size: 16px; line-height: 1; }
.lang-menu a .chk { margin-left: auto; width: 15px; height: 15px; opacity: 0; }
.lang-menu a.cur .chk { opacity: 1; }

/* ── Hero glow drift ──────────────────────────────────────── */
@keyframes glow-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-50px, 40px) scale(1.12); }
}
.hero-glow { animation: glow-drift 13s ease-in-out infinite alternate; }

/* ── Phone idle float + parallax tilt ─────────────────────── */
.phone-tilt { transform-style: preserve-3d; transition: transform .3s cubic-bezier(.2,.7,.3,1); will-change: transform; }
@keyframes phone-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.phone { animation: phone-float 6.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .phone, .hero-glow { animation: none; } }

/* live notification toast floating by the phone */
.live-toast {
  position: absolute; top: 8%; left: -30px; z-index: 6; width: 232px;
  display: flex; align-items: center; gap: 11px; padding: 11px 13px;
  background: color-mix(in srgb, var(--bg-elev) 88%, transparent);
  backdrop-filter: blur(14px) saturate(150%); -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid var(--hair-strong); border-radius: 15px; box-shadow: var(--shadow-pop);
  opacity: 0; transform: translateX(-14px) scale(.96); transition: opacity .45s, transform .45s;
}
.live-toast.show { opacity: 1; transform: none; }
.live-toast .lt-ic { width: 34px; height: 34px; border-radius: 10px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; flex-shrink: 0; }
.live-toast .lt-ic svg { width: 18px; height: 18px; color: var(--accent); }
.live-toast .lt-tx { min-width: 0; }
.live-toast .lt-tx b { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-toast .lt-tx span { font-size: 11px; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 5px; white-space: nowrap; margin-top: 2px; }
.live-toast .lt-tx span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 25%, transparent); }
@media (max-width: 1020px) { .live-toast { left: 50%; margin-left: -116px; top: -18px; } }
@media (max-width: 520px) { .live-toast { display: none; } }

/* search typewriter caret */
.type-caret { display: inline-block; width: 1.5px; height: 1.05em; background: var(--accent); margin-left: 1px; vertical-align: -2px; animation: caret-blink 1s steps(1) infinite; }
@keyframes caret-blink { 50% { opacity: 0; } }

/* urgent pill pulse */
@keyframes urgent-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,139,61,.0); } 50% { box-shadow: 0 0 0 5px rgba(255,139,61,.18); } }
.app-search .urgent { animation: urgent-pulse 2.4s ease-in-out infinite; }

/* bell badge pulse */
@keyframes bell-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }
.app-bell i { animation: bell-pulse 2.8s ease-in-out infinite; }

/* ── Marquee strip ────────────────────────────────────────── */
.marquee-band { border-block: 1px solid var(--hair); padding-block: 22px; overflow: hidden; }
.marquee { display: flex; gap: 14px; width: max-content; animation: marquee-scroll 38s linear infinite; }
.marquee.rev { animation-direction: reverse; }
.marquee + .marquee { margin-top: 14px; }
.marquee:hover { animation-play-state: paused; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
.mq-item {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 9px 17px; border-radius: var(--radius-pill); border: 1px solid var(--hair);
  background: var(--surface); font-size: 14px; font-weight: 700; color: var(--text-dim);
}
.mq-item svg { width: 15px; height: 15px; color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

/* primary button shine */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); transition: none;
}
.btn-primary:hover::after { left: 130%; transition: left .7s ease; }

/* ── Reveal on scroll ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
/* staggered children reveal */
.stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .55s cubic-bezier(.2,.7,.3,1), transform .55s cubic-bezier(.2,.7,.3,1); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1){transition-delay:.03s}
.stagger.in > *:nth-child(2){transition-delay:.09s}
.stagger.in > *:nth-child(3){transition-delay:.15s}
.stagger.in > *:nth-child(4){transition-delay:.21s}
.stagger.in > *:nth-child(5){transition-delay:.27s}
.stagger.in > *:nth-child(6){transition-delay:.33s}
.stagger.in > *:nth-child(7){transition-delay:.39s}
.stagger.in > *:nth-child(8){transition-delay:.45s}
@media (prefers-reduced-motion: reduce) { .stagger > * { opacity: 1; transform: none; transition: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { order: 1; text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .phone-stage { order: 0; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-about { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-btn { display: grid; }
  .header-cta-desktop { display: none; }
  .steps { grid-template-columns: 1fr; }
  .cols-3 { grid-template-columns: 1fr; }
  .cols-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* mobile drawer */
  .mobile-nav {
    display: block; position: fixed; inset: 0; z-index: 150;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 88px 24px 32px; transform: translateY(-12px); opacity: 0;
    pointer-events: none; transition: opacity .22s, transform .22s;
  }
  .mobile-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-nav a { display: block; padding: 16px 4px; font-size: 22px; font-weight: 800; letter-spacing: -0.03em; border-bottom: 1px solid var(--hair); }
  .mobile-nav a:last-of-type { border-bottom: none; }
  .mobile-nav .btn { margin-top: 24px; }
  .mobile-close { position: absolute; top: 18px; right: 24px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hair); background: var(--surface); color: var(--text); display: grid; place-items: center; cursor: pointer; }
  .mobile-close svg { width: 20px; height: 20px; }
}
@media (max-width: 460px) {
  .container { padding-inline: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: 1fr 1fr; }
  .hero-trust { gap: 14px 22px; }
}
