/* =========================================================
   v2raytun · v2ray2.help
   Clean light corporate (v2raytune.my-style)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --bg:       #ffffff;
  --bg-2:     #f8fafc;       /* slate-50 */
  --bg-3:     #f1f5f9;       /* slate-100 */
  --ink:      #0f172a;       /* slate-900 */
  --ink-2:    #1e293b;       /* slate-800 */
  --soft:     #475569;       /* slate-600 */
  --muted:    #94a3b8;       /* slate-400 */
  --line:     #e2e8f0;       /* slate-200 */
  --line-soft:#eef2f6;

  --accent:        #2563eb;  /* blue-600 */
  --accent-deep:   #1d4ed8;  /* blue-700 */
  --accent-soft:   #dbeafe;  /* blue-100 */
  --dark:          #1f2937;  /* gray-800 — secondary pill */
  --dark-hover:    #111827;

  --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, 'Menlo', monospace;

  --wrap:    1180px;
  --read:    720px;
  --gutter:  24px;
  --radius:  16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
  --shadow:    0 4px 16px -6px rgba(15,23,42,0.10);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html,body { overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

/* -------------- layout -------------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.read { max-width: var(--read); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  font-weight: 500;
}

/* -------------- header -------------- */
.head {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 50;
}
.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: center;
  color: var(--ink);
}
.brand-mark { display: none; }
.brand-name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.nav {
  display: flex; gap: 4px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav a {
  color: var(--soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.nav a:hover { color: var(--ink); background: var(--bg-2); }
.nav a.active { background: var(--accent-soft); color: var(--accent-deep); }
.head-cta { display: none; }
.head-row { justify-content: space-between; }
.head-row .nav { margin-left: auto; }

@media (max-width: 820px) {
  .nav { display: none; }
}

/* -------------- buttons -------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s, color 0.15s, border-color 0.15s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(37,99,235,0.45);
}
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 8px 22px -6px rgba(37,99,235,0.55); }
.btn-ghost {
  background: var(--dark);
  color: #fff;
}
.btn-ghost:hover { background: var(--dark-hover); }

.cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.cta-stack { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.cta-stack .btn { width: 100%; }

/* -------------- hero -------------- */
.hero {
  padding: 88px 0 96px;
  text-align: center;
  position: relative;
}
.hero-grid {
  display: block;
  max-width: 880px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 8px;
}
.hero h1 .hl, .hero h1 .hl-mint { color: inherit; }
.hero-lede {
  font-size: 1.2rem;
  color: var(--soft);
  max-width: 640px;
  margin: 24px auto 0;
  line-height: 1.5;
  font-weight: 400;
}
.hero-desc {
  margin: 28px auto 0;
  font-size: 1rem;
  color: var(--soft);
  max-width: 680px;
  line-height: 1.65;
}
.hero-desc strong { color: var(--ink); font-weight: 700; }
.hero-cta { margin-top: 36px; justify-content: center; }
.hero-meta {
  margin-top: 22px;
  display: flex; justify-content: center; gap: 22px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: #10b981; }

/* hide phone-card on this layout */
.hero-aside { display: none; }

/* metrics strip */
.metrics {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.metric {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  text-align: center;
}
.metric .v {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.metric .v sup {
  font-size: 0.5em;
  font-family: var(--mono);
  vertical-align: super;
  color: var(--accent);
  margin-left: 2px;
  font-weight: 600;
}
.metric .k {
  font-size: 12.5px;
  color: var(--soft);
  margin-top: 10px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .hero { padding: 56px 0 64px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
}

/* -------------- sections -------------- */
.section { padding: 88px 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.section.alt { background: var(--bg-2); }

.section-head {
  margin: 0 auto 56px;
  max-width: 760px;
  text-align: center;
}
.section-head h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-top: 14px;
  color: var(--ink);
}
.section-head h2 .hl, .section-head h2 .hl-mint { color: var(--accent); }
.section-head p {
  font-size: 1.05rem;
  color: var(--soft);
  margin: 16px auto 0;
  max-width: 580px;
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

/* -------------- features -------------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.feat:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.feat-no {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.10em;
  font-weight: 500;
  align-self: flex-start;
}
.feat-icon {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: grid; place-items: center;
  order: -1;
  margin-bottom: 6px;
}
.feat-icon svg { width: 24px; height: 24px; color: var(--accent-deep); }
.feat h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.feat p {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 1020px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* -------------- platforms -------------- */
.platforms {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.platform {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  transition: border-color 0.15s, transform 0.15s, background 0.15s;
}
.platform:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.platform svg { width: 26px; height: 26px; color: var(--soft); }
.platform:hover svg { color: var(--accent-deep); }
.platform .nm { font-size: 14px; font-weight: 700; }
.platform .sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media (max-width: 720px) { .platforms { grid-template-columns: repeat(2, 1fr); } }

/* -------------- servers -------------- */
.servers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.srv-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.srv-row:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.srv-row.head { display: none; }
.srv-flag {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 22px;
  background: var(--bg-2);
}
.srv-name { font-weight: 700; color: var(--ink); font-size: 15px; }
.srv-name .city {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-top: 2px;
}
.srv-load {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  font-weight: 500;
  grid-column: 1 / -1;
  background: #ecfdf5;
  color: #047857;
  padding: 4px 10px;
  border-radius: 999px;
  width: max-content;
  margin-top: 6px;
}
.srv-load .dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; }
.srv-load.mid { background: #fef3c7; color: #92400e; }
.srv-load.mid .dot { background: #f59e0b; }
.srv-load.hot { background: #fee2e2; color: #b91c1c; }
.srv-load.hot .dot { background: #ef4444; }
.srv-ping {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  grid-column: 1 / -1;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
}
.srv-ping b { color: var(--accent); }
.srv-ping::after {
  content: " мс";
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: 4px;
  vertical-align: 8px;
}
.srv-purpose { font-size: 13px; color: var(--soft); grid-column: 1 / -1; }
@media (max-width: 880px) { .servers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .servers { grid-template-columns: 1fr; } }

/* -------------- pricing -------------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  background: #fff;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.plan:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.plan-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.plan h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 18px;
}
.plan .price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
}
.plan .price .cu { font-size: 1.2rem; color: var(--soft); font-weight: 700; }
.plan .price .per { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-left: 6px; letter-spacing: 0.03em; font-weight: 500; }
.plan ul { margin: 22px 0 26px; display: flex; flex-direction: column; gap: 10px; }
.plan li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px;
  color: var(--soft);
}
.plan li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>") center/contain no-repeat;
  margin-top: 3px;
}
.plan .btn { margin-top: auto; }
.plan.fav {
  border-color: var(--accent);
  border-width: 2px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 70%);
}
.plan.fav::after {
  content: "популярный";
  position: absolute;
  top: -10px; right: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 11px;
  border-radius: 999px;
  font-weight: 600;
}
@media (max-width: 880px) { .pricing { grid-template-columns: 1fr; } }

/* -------------- faq -------------- */
.faq {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 48px;
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: 92px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.faq-aside p {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}
.faq-aside .small {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--soft);
  font-weight: 400;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .ans {
  padding: 0 22px 20px;
  color: var(--soft);
  font-size: 0.97rem;
  line-height: 1.6;
}
.faq-item .ans p + p { margin-top: 10px; }
.faq-item .ans code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--accent-soft);
  padding: 2px 7px;
  border-radius: 5px;
  color: var(--accent-deep);
}

@media (max-width: 880px) {
  .faq { grid-template-columns: 1fr; gap: 28px; }
  .faq-aside { position: static; }
}

/* -------------- middle offer-bar -------------- */
.offer-bar {
  margin: 56px 0;
  padding: 32px 36px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.offer-bar::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 380px; height: 380px;
  background: radial-gradient(closest-side, rgba(37,99,235,0.45), transparent);
  pointer-events: none;
}
.offer-bar::after { display: none; }
.offer-bar .l { position: relative; z-index: 1; }
.offer-bar .eyebrow { color: #93c5fd; margin-bottom: 10px; }
.offer-bar h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #fff;
}
.offer-bar h3 em { font-style: normal; color: #93c5fd; }
.offer-bar p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  margin-top: 8px;
  max-width: 480px;
}
.offer-bar .cta {
  position: relative; z-index: 1;
  flex-direction: column;
  align-items: stretch;
  min-width: 240px;
  gap: 10px;
  justify-content: flex-start;
}
.offer-bar .cta .btn { width: 100%; padding: 13px 22px; font-size: 14.5px; }
.offer-bar .cta .btn-primary { background: var(--accent); color: #fff; box-shadow: none; }
.offer-bar .cta .btn-primary:hover { background: var(--accent-deep); }
.offer-bar .cta .btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.offer-bar .cta .btn-ghost:hover { background: rgba(255,255,255,0.16); }
@media (max-width: 720px) {
  .offer-bar { grid-template-columns: 1fr; padding: 28px 24px; gap: 22px; margin: 48px 0; }
  .offer-bar h3 { font-size: 1.4rem; }
}

/* -------------- article (inner pages) -------------- */
.article { padding: 56px 0 80px; }
.article-hero {
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.article h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-top: 14px;
  color: var(--ink);
}
.article h1 .hl { color: var(--accent); }
.article-lede {
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--soft);
  font-weight: 400;
  max-width: 640px;
  margin: 18px auto 0;
}
.article-hero .cta { margin: 28px auto 0; justify-content: center; }
.article-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
}
.article-aside {
  font-size: 13px;
  color: var(--soft);
  position: sticky;
  top: 92px;
  align-self: start;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
}
.article-aside ol { list-style: none; counter-reset: aside; display: flex; flex-direction: column; gap: 10px; }
.article-aside li { counter-increment: aside; }
.article-aside a {
  display: flex; gap: 10px; color: var(--soft);
  transition: color 0.15s;
  font-weight: 500;
}
.article-aside a::before {
  content: counter(aside, decimal-leading-zero);
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 600;
}
.article-aside a:hover { color: var(--accent); }
.article-content { max-width: 720px; }
.article-content h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 48px 0 16px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  scroll-margin-top: 92px;
}
.article-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-content h2 .nm {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.10em;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
}
.article-content p {
  font-size: 1.05rem;
  line-height: 1.66;
  color: var(--soft);
  margin-bottom: 14px;
}
.article-content p strong { color: var(--ink); font-weight: 700; }
.article-content code {
  font-family: var(--mono);
  font-size: 0.86em;
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 500;
}
.article-content a:not(.btn) {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 880px) {
  .article-body { grid-template-columns: 1fr; }
  .article-aside { display: none; }
}

.inline-cta {
  margin: 56px 0 0;
  padding: 36px 32px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
}
.inline-cta h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 6px;
}
.inline-cta p { color: var(--soft); margin-top: 6px; font-size: 0.95rem; }
.inline-cta .cta { justify-content: flex-end; }
@media (max-width: 720px) {
  .inline-cta { grid-template-columns: 1fr; padding: 28px 22px; text-align: left; }
  .inline-cta .cta { justify-content: flex-start; }
}

/* -------------- footer -------------- */
.foot {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  margin-top: 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.foot h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.foot ul li { margin-bottom: 10px; }
.foot ul a {
  color: var(--soft);
  font-size: 14px;
  transition: color 0.15s;
}
.foot ul a:hover { color: var(--accent); }
.foot .blurb {
  color: var(--soft);
  font-size: 0.95rem;
  margin-top: 14px;
  max-width: 380px;
  line-height: 1.55;
}
.foot .brand-name { color: var(--ink); }
.foot-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* reveal */
.reveal { opacity: 0; transform: translateY(12px); animation: rise 0.6s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal.d1 { animation-delay: 0.05s; }
.reveal.d2 { animation-delay: 0.15s; }
.reveal.d3 { animation-delay: 0.25s; }
.reveal.d4 { animation-delay: 0.35s; }
.reveal.d5 { animation-delay: 0.45s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
