/* twoplus11.com — shared stylesheet */

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100dvh;
  background: #0A0A0C;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* ── Design tokens ──────────────────────────────────────────────── */
:root {
  --bg:         #0A0A0C;
  --s1:         #131318;
  --s2:         #1C1C24;
  --s3:         #26262F;
  --b0:         rgba(255,255,255,0.05);
  --b1:         rgba(255,255,255,0.09);
  --b2:         rgba(255,255,255,0.18);
  --blue:       #0A84FF;
  --blue-d:     rgba(10,132,255,0.12);
  --blue-g:     rgba(10,132,255,0.28);
  --purple:     #9B72FF;
  --purple-d:   rgba(155,114,255,0.12);
  --purple-g:   rgba(155,114,255,0.24);
  --t1: #FFFFFF;
  --t2: rgba(255,255,255,0.70);
  --t3: rgba(255,255,255,0.42);
  --t4: rgba(255,255,255,0.22);
  --nav-h: 60px;
  --r-lg: 20px;
  --r-xl: 24px;
}

/* ── Dot-grid texture ───────────────────────────────────────────── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ── Wordmark ───────────────────────────────────────────────────── */
.wordmark {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-decoration: none;
  color: var(--t1);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.wordmark em {
  font-style: normal;
  background: linear-gradient(90deg, #0A84FF, #9B72FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navigation ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10,10,12,0.84);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--b1);
}
.nav__i {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin-left: auto;
}
.nav__links a {
  display: block;
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t3);
  text-decoration: none;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: -0.01em;
}
.nav__links a:hover { color: var(--t1); background: var(--b0); }
.nav__links .nav-cta {
  color: var(--blue);
  background: var(--blue-d);
  border: 1px solid rgba(10,132,255,0.2);
}
.nav__links .nav-cta:hover {
  background: rgba(10,132,255,0.2);
  color: var(--blue);
}
.nav__burger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--t2);
  padding: 0.45rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.nav__burger:hover { color: var(--t1); background: var(--b0); }
.nav__mobile {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #131318;
  border-bottom: 1px solid var(--b1);
  padding: 0.5rem 1rem 0.75rem;
}
.nav__mobile a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  border-radius: 12px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: -0.01em;
}
.nav__mobile a:hover { color: var(--t1); background: var(--b0); }
@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; align-items: center; justify-content: center; }
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s, color 0.18s;
  border: none;
  cursor: pointer;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px var(--blue-g);
}
.btn--primary:hover {
  background: #2a94ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--blue-g);
}
.btn--ghost {
  background: var(--b0);
  color: var(--t2);
  border: 1px solid var(--b1);
}
.btn--ghost:hover {
  background: var(--b1);
  color: var(--t1);
  border-color: var(--b2);
}
.btn--viddl {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px var(--blue-g);
}
.btn--viddl:hover {
  background: #2a94ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--blue-g);
}
.btn--gifcap {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 20px var(--purple-g);
}
.btn--gifcap:hover {
  background: #b290ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--purple-g);
}
.btn--stapl {
  background: #ff7a4d;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,122,77,0.28);
}
.btn--stapl:hover {
  background: #ff9068;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255,122,77,0.38);
}
.btn--convertr {
  background: #5E5CE6;
  color: #fff;
  box-shadow: 0 4px 20px rgba(94,92,230,0.28);
}
.btn--convertr:hover {
  background: #7573ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(94,92,230,0.38);
}
.btn--coffee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFDD00;
  color: #111;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(255,221,0,0.22);
}
.btn--coffee:hover {
  background: #ffe833;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255,221,0,0.32);
}

/* ── Sections ───────────────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.s-header {
  margin-bottom: 3rem;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.65rem;
}
.s-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--t1);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
.s-sub {
  font-size: 0.975rem;
  color: var(--t3);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(92vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.orb-a {
  width: 800px; height: 800px;
  background: radial-gradient(circle at center, rgba(10,132,255,0.22) 0%, transparent 65%);
  top: -280px; left: -220px;
}
.orb-b {
  width: 650px; height: 650px;
  background: radial-gradient(circle at center, rgba(155,114,255,0.18) 0%, transparent 65%);
  bottom: -200px; right: -180px;
}
.orb-c {
  width: 400px; height: 400px;
  background: radial-gradient(circle at center, rgba(10,132,255,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero__i {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--b0);
  border: 1px solid var(--b1);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--t3);
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.65); }
}
.hero__h {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--t1);
  margin-bottom: 1.25rem;
}
.grad {
  background: linear-gradient(100deg, #0A84FF 0%, #BD80FF 55%, #FF78C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--t3);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.hero__ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Marquee ────────────────────────────────────────────────────── */
.marquee-wrap {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--b1);
  border-bottom: 1px solid var(--b1);
  overflow: hidden;
  padding: 0.9rem 0;
  background: var(--s1);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee__t {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__t:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.m-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--t3);
  padding: 0 1.5rem;
  letter-spacing: 0.01em;
}
.m-pill svg { opacity: 0.5; flex-shrink: 0; }
.m-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--b2);
  flex-shrink: 0;
  margin: 0 0.25rem;
}
@media (prefers-reduced-motion: reduce) {
  .marquee__t { animation: none; }
}

/* ── App cards ──────────────────────────────────────────────────── */
.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 620px) {
  .apps-grid { grid-template-columns: 1fr; }
}
.app-card {
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.app-card:hover {
  border-color: var(--b2);
  transform: translateY(-3px);
}
.card-viddl:hover {
  box-shadow: 0 24px 60px rgba(10,132,255,0.14), inset 0 0 0 1px rgba(10,132,255,0.14);
}
.card-gifcap:hover {
  box-shadow: 0 24px 60px rgba(155,114,255,0.14), inset 0 0 0 1px rgba(155,114,255,0.14);
}
.card-stapl:hover {
  box-shadow: 0 24px 60px rgba(255,122,77,0.14), inset 0 0 0 1px rgba(255,122,77,0.14);
}
.card-convertr:hover {
  box-shadow: 0 24px 60px rgba(94,92,230,0.14), inset 0 0 0 1px rgba(94,92,230,0.14);
}
.app-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-viddl {
  background: linear-gradient(145deg, #0a3875, #0A84FF);
  box-shadow: 0 8px 24px rgba(10,132,255,0.40);
}
.icon-gifcap {
  background: linear-gradient(145deg, #3b1fa8, #9B72FF);
  box-shadow: 0 8px 24px rgba(155,114,255,0.40);
}
.icon-stapl {
  background: linear-gradient(145deg, #7a3a20, #ff7a4d);
  box-shadow: 0 8px 24px rgba(255,122,77,0.40);
}
.icon-convertr {
  background: linear-gradient(145deg, #2a2887, #5E5CE6);
  box-shadow: 0 8px 24px rgba(94,92,230,0.40);
}
.app-icon svg { width: 30px; height: 30px; color: #fff; }
.app-hd { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.app-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t1);
}
.app-badge {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.badge-v { background: var(--blue-d); border: 1px solid rgba(10,132,255,0.28); color: var(--blue); }
.badge-g { background: var(--purple-d); border: 1px solid rgba(155,114,255,0.28); color: var(--purple); }
.badge-s { background: rgba(255,122,77,0.12); border: 1px solid rgba(255,122,77,0.28); color: #ff7a4d; }
.badge-c { background: rgba(94,92,230,0.12); border: 1px solid rgba(94,92,230,0.28); color: #5E5CE6; }
.app-pricing {
  font-size: 0.78rem;
  color: var(--t4);
  margin-top: 0.15rem;
}
.app-pricing strong { font-weight: 600; }
.card-viddl .app-pricing strong { color: var(--blue); }
.card-gifcap .app-pricing strong { color: var(--purple); }
.card-stapl .app-pricing strong { color: #ff7a4d; }
.card-convertr .app-pricing strong { color: #5E5CE6; }
.app-desc {
  font-size: 0.875rem;
  color: var(--t2);
  line-height: 1.68;
  flex: 1;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.chip {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--b1);
  background: var(--b0);
  color: var(--t3);
}
.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.74rem;
  color: var(--t4);
}
.app-meta span { display: flex; align-items: center; gap: 0.3rem; }
.app-meta svg { flex-shrink: 0; }

/* ── Stats strip ────────────────────────────────────────────────── */
.stats-strip {
  position: relative;
  z-index: 1;
  background: var(--s1);
  border-top: 1px solid var(--b1);
  border-bottom: 1px solid var(--b1);
  padding: 4rem 1.5rem;
}
.stats-row {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 680px) { .stats-row { grid-template-columns: 1fr 1fr; } }
.stat-num {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--t1);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--t4);
  line-height: 1.4;
}

/* ── About section ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.about-text .eyebrow { margin-bottom: 0.5rem; }
.about-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--t1);
  margin-bottom: 1.25rem;
  line-height: 1.18;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--t2);
  line-height: 1.72;
  margin-bottom: 0.85rem;
}
.about-text .btn { margin-top: 0.5rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.val-card {
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 16px;
  padding: 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.val-card:hover { border-color: var(--b2); background: var(--s3); }
.val-icon {
  width: 34px; height: 34px;
  background: var(--b0);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  color: var(--blue);
}
.val-icon svg { width: 16px; height: 16px; }
.val-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.val-sub {
  font-size: 0.78rem;
  color: var(--t3);
  line-height: 1.5;
}

/* ── Portfolio ──────────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }
.port-card {
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.2s, transform 0.2s;
}
.port-card:hover { border-color: var(--b2); transform: translateY(-2px); }
.port-hd { display: flex; align-items: center; gap: 0.75rem; }
.port-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--s3);
  border: 1px solid var(--b1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  flex-shrink: 0;
}
.port-icon svg { width: 20px; height: 20px; }
.port-name {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.02em;
}
.port-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--t4);
  margin-top: 0.15rem;
}
.port-desc {
  font-size: 0.83rem;
  color: var(--t3);
  line-height: 1.62;
  flex: 1;
}
.port-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s;
  align-self: flex-start;
}
.port-link:hover { color: #4da3ff; }

/* ── Coffee card ────────────────────────────────────────────────── */
.coffee-card {
  background: linear-gradient(135deg, rgba(255,221,0,0.07), rgba(255,221,0,0.025));
  border: 1px solid rgba(255,221,0,0.18);
  border-radius: var(--r-xl);
  padding: 3.25rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.coffee-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: rgba(255,221,0,0.12);
  border: 1px solid rgba(255,221,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,221,0,0.8);
}
.coffee-icon svg { width: 24px; height: 24px; }
.coffee-headline {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--t1);
}
.coffee-sub {
  font-size: 0.9rem;
  color: var(--t3);
  max-width: 28rem;
  line-height: 1.65;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--b1);
  padding: 3.5rem 1.5rem 2.5rem;
  margin-top: 5rem;
}
.footer__i {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}
.footer__brand .wordmark { font-size: 1.05rem; }
.footer__brand p {
  font-size: 0.82rem;
  color: var(--t4);
  margin-top: 0.4rem;
  line-height: 1.5;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--t4);
  margin-top: 1.5rem;
}
.footer__cols { display: flex; gap: 3rem; }
.footer__col h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t4);
  margin-bottom: 0.9rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a {
  font-size: 0.85rem;
  color: var(--t3);
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: -0.01em;
}
.footer__col a:hover { color: var(--t1); }
@media (max-width: 700px) {
  .footer__i { grid-template-columns: 1fr; gap: 2rem; }
  .footer__cols { gap: 2rem; }
}
@media (max-width: 420px) {
  .footer__cols { flex-direction: column; gap: 1.5rem; }
}

/* ── Legal pages ────────────────────────────────────────────────── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 7rem;
}
.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--b1);
}
.legal-header .eyebrow { margin-bottom: 0.5rem; }
.legal-title {
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--t1);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 0.9rem;
}
.legal-meta span {
  font-size: 0.82rem;
  color: var(--t4);
}
.legal-shortlinks {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.legal-shortlinks a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--blue-d);
  border: 1px solid rgba(10,132,255,0.2);
  transition: background 0.15s;
}
.legal-shortlinks a:hover { background: rgba(10,132,255,0.2); }
.legal-content section { margin-bottom: 2.75rem; }
.legal-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  padding-top: 0.25rem;
}
.legal-content p {
  font-size: 0.925rem;
  color: var(--t2);
  line-height: 1.72;
  margin-bottom: 0.75rem;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul {
  list-style: none;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-content ul li {
  font-size: 0.925rem;
  color: var(--t2);
  line-height: 1.65;
  padding-left: 1.35rem;
  position: relative;
}
.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--t4);
}
.legal-content strong { color: var(--t1); font-weight: 600; }
.legal-callout {
  background: var(--s2);
  border: 1px solid var(--b1);
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}
.legal-callout p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--t2);
}
.legal-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.legal-contact:hover { color: #4da3ff; text-decoration: underline; }
.legal-divider {
  height: 1px;
  background: var(--b1);
  margin: 2.5rem 0;
}
