:root {
  --bg: #f5f5f7;
  --bg-2: #fafafa;
  --ink: #1d1d1f;
  --ink-2: #000000;
  --paper: #ffffff;
  --line: rgba(0,0,0,.08);
  --muted: #86868b;
  --text: #1d1d1f;
  --signal: #0071e3;
  --signal-2: #0077ed;
  --lime: #0071e3;
  --header-h: 48px;
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 8px 40px rgba(0,0,0,.06);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
  font-family: "Manrope", "Noto Sans SC", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  letter-spacing: -.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.serif { font-family: "Fraunces", "Georgia", serif; font-optical-sizing: auto; }

.topbar {
  background: var(--ink);
  color: #d2d2d7;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.topbar .wrap {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 9px 0;
}
.topbar a { color: #d2d2d7; }
.topbar a:hover { color: var(--lime); }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,240,232,.78);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.header .wrap {
  display: flex; align-items: center; gap: 22px;
  height: var(--header-h);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -.04em; font-size: 18px;
  color: var(--ink);
  flex: 0 0 auto;
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--ink); color: var(--lime);
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px;
}
.nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav a { font-size: 14px; font-weight: 600; color: #1d1d1f; }
.nav a:hover, .nav a.is-active { color: var(--signal); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.lang {
  display: flex; gap: 2px; background: rgba(12,13,16,.06);
  border-radius: 999px; padding: 3px;
}
.lang a {
  min-width: 32px; height: 28px; padding: 0 7px; display: grid; place-items: center;
  border-radius: 999px; font-size: 11px; font-weight: 700; color: var(--muted);
}
.lang a.is-active { background: var(--ink); color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; border-radius: 999px;
  padding: 12px 18px; font-weight: 700; letter-spacing: -.02em;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.22); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-line { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.menu-btn { display: none; border: 0; background: var(--ink); color: #fff; width: 42px; height: 42px; border-radius: 12px; }

.hero {
  position: relative; overflow: hidden; color: #f6f1e8;
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(232,93,4,.35), transparent 55%),
    radial-gradient(700px 380px at 0% 120%, rgba(214,245,106,.12), transparent 50%),
    linear-gradient(165deg, #000000 0%, #1d1d1f 58%, #0b0c10 100%);
  padding: 88px 0 92px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 70% 30%, #000 20%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: end; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--lime); padding: 0; font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1, .page-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 560;
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: .95; letter-spacing: -.045em;
  max-width: 12ch;
  margin-bottom: 22px;
}
.hero p.lead { font-size: 18px; color: #a1a1a6; max-width: 40ch; margin-bottom: 32px; font-weight: 400; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-primary { background: #0071e3; color: #fff; }
.hero .btn-primary:hover { background: #0077ed; }
.hero-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 32px; padding: 26px 24px; backdrop-filter: blur(16px);
}
.hero-card h3 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #86868b; margin-bottom: 16px; }
.hero-list { display: grid; gap: 12px; }
.hero-list li {
  list-style: none; display: flex; gap: 12px; align-items: flex-start;
  color: #f5f5f7; font-size: 15px;
}
.dot {
  width: 22px; height: 22px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(214,245,106,.16); color: var(--lime);
  display: grid; place-items: center; font-size: 11px; margin-top: 1px;
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px; overflow: hidden;
  margin-top: -36px; position: relative; z-index: 2;
}
.stat {
  background: var(--paper);
  padding: 22px 20px;
}
.stat b {
  display: block; font-family: "Fraunces", serif;
  font-size: 34px; letter-spacing: -.04em; color: var(--ink); font-weight: 560;
}
.stat span { color: var(--muted); font-size: 13px; }

section { padding: 92px 0; }
.sec-head { max-width: 760px; margin-bottom: 40px; }
.sec-head .kicker {
  color: var(--signal); font-weight: 700; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase;
}
.sec-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -.035em; line-height: 1.05;
  margin: 10px 0 14px; color: var(--ink); font-weight: 560;
}
.sec-head p { color: var(--muted); font-size: 17px; max-width: 52ch; }

.cards { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 26px;
  padding: 26px; transition: .2s ease; min-height: 220px;
  display: flex; flex-direction: column;
}
.card:first-child {
  grid-row: 1 / span 2;
  background: var(--ink); color: #f5f5f7; min-height: 100%;
}
.card:first-child p, .card:first-child .more { color: #86868b; }
.card:first-child .icon { background: #1c1e24; color: var(--lime); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: #f5f5f7; color: var(--ink); font-size: 16px;
}
.card h3 {
  font-family: "Fraunces", serif;
  font-size: 26px; letter-spacing: -.03em; margin-bottom: 10px; font-weight: 560;
}
.card p { color: var(--muted); font-size: 15px; flex: 1; }
.card .more { margin-top: 18px; color: var(--signal); font-weight: 700; font-size: 13px; letter-spacing: .04em; }

.band { background: transparent; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.step {
  background: var(--paper); border-radius: 22px; padding: 22px; border: 1px solid var(--line);
  min-height: 210px;
}
.step .n {
  font-family: "Fraunces", serif; font-size: 28px; font-weight: 560;
  color: var(--signal); margin-bottom: 18px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -.02em; }
.step p { color: var(--muted); font-size: 14.5px; }

.why { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.why-visual {
  min-height: 420px; border-radius: 36px; position: relative; overflow: hidden;
  background:
    radial-gradient(400px 200px at 80% 20%, rgba(232,93,4,.45), transparent 50%),
    linear-gradient(160deg, #1d1d1f, #000000);
}
.why-visual::after {
  content: "VED FIVE";
  position: absolute; left: -6px; top: 18%;
  font-family: "Fraunces", serif; font-size: 92px; color: rgba(255,255,255,.05);
  letter-spacing: -.06em; white-space: nowrap;
}
.why-visual .pane {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: #f5f5f7; border-radius: 18px; padding: 18px; backdrop-filter: blur(12px);
}
.check-list { display: grid; gap: 12px; margin-top: 20px; }
.check-list li { list-style: none; display: flex; gap: 10px; }
.check-list i {
  width: 22px; height: 22px; border-radius: 50%; background: var(--lime); color: #111;
  display: grid; place-items: center; flex: 0 0 auto; font-style: normal; font-weight: 800; font-size: 12px;
}

.routes { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 14px; font-weight: 650; font-size: 14px;
}

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.news-card {
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--paper);
  display: flex; flex-direction: column;
}
.news-card .thumb {
  height: 150px;
  background:
    radial-gradient(circle at 80% 20%, rgba(232,93,4,.55), transparent 40%),
    linear-gradient(135deg, #1d1d1f, #2a2100);
}
.news-card .body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.news-card time { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.news-card h3 { margin: 8px 0 10px; font-family: "Fraunces", serif; font-size: 22px; letter-spacing: -.03em; font-weight: 560; }
.news-card p { color: var(--muted); font-size: 14.5px; flex: 1; }

.cta {
  background: var(--ink); color: #f5f5f7; border-radius: 36px; padding: 46px;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
  position: relative; overflow: hidden;
}
.cta::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px;
  border-radius: 50%; background: rgba(232,93,4,.28);
}
.cta h2 { font-family: "Fraunces", serif; font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -.03em; margin-bottom: 8px; font-weight: 560; position: relative; z-index: 1; }
.cta p { color: #86868b; position: relative; z-index: 1; }
.cta .btn, .cta div { position: relative; z-index: 1; }
.cta .btn-primary { background: var(--lime); color: #111; }

.page-hero {
  background: var(--ink); color: #f5f5f7; padding: 64px 0 52px;
}
.page-hero h1 { max-width: 16ch; }
.crumbs { color: #86868b; font-size: 12px; margin-bottom: 16px; letter-spacing: .08em; text-transform: uppercase; }
.crumbs a { color: #0071e3; }

.prose { max-width: 760px; }
.prose h2 { font-family: "Fraunces", serif; font-size: 32px; margin: 28px 0 10px; letter-spacing: -.03em; font-weight: 560; }
.prose h3 { font-size: 20px; margin: 22px 0 8px; }
.prose p { margin: 0 0 14px; color: #1d1d1f; font-size: 17px; }
.prose ul { margin: 0 0 16px 18px; color: #1d1d1f; }
.prose li { margin: 6px 0; }

.split { display: grid; grid-template-columns: 1.4fr .8fr; gap: 28px; align-items: start; }
.side {
  position: sticky; top: 96px;
  background: var(--ink); color: #f5f5f7; border-radius: 28px; padding: 24px;
}
.side h3 { margin-bottom: 8px; font-family: "Fraunces", serif; font-weight: 560; }
.side p { color: #86868b; font-size: 14.5px; margin-bottom: 14px; }
.side .btn-primary { background: var(--lime); color: #111; }

.form { display: grid; gap: 10px; }
.form input, .form textarea, .form select {
  width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 13px 14px; background: var(--paper);
}
.form textarea { min-height: 110px; resize: vertical; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card { background: var(--paper); border-radius: 24px; padding: 24px; border: 1px solid var(--line); }
.info-card b { display: block; margin-bottom: 6px; }

footer {
  background: #000000; color: #a1a1a6; padding: 52px 0 24px;
}
.ft-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
footer a { color: #f5f5f7; }
footer a:hover { color: var(--lime); }
footer h4 { color: #fff; margin-bottom: 12px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
footer .logo { color: #fff; }
.ft-copy { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; font-size: 13px; color: #6e6e73; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.mobile-nav {
  display: none; position: fixed; inset: 72px 16px auto; background: var(--paper);
  border: 1px solid var(--line); border-radius: 18px; padding: 16px;
  box-shadow: var(--shadow); z-index: 60;
}
.mobile-nav a { display: block; padding: 10px 6px; font-weight: 700; }

@media (max-width: 980px) {
  .nav, .header-cta .btn { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .hero-grid, .cards, .process, .why, .news-grid, .ft-grid, .split, .contact-grid, .stats {
    grid-template-columns: 1fr;
  }
  .cards { grid-template-columns: 1fr; }
  .card:first-child { grid-row: auto; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: 18px; }
  .cta { flex-direction: column; align-items: flex-start; padding: 28px; }
  .hero { padding: 52px 0 56px; }
}
@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .stats { grid-template-columns: 1fr; }
  .topbar { display: none; }
}

.article-hero { position: relative; min-height: 420px; background: #000000; color: #f5f5f7; overflow: hidden; }
.article-cover {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.05) contrast(1.05);
}
.article-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,8,11,.25) 0%, rgba(7,8,11,.55) 45%, rgba(7,8,11,.92) 100%);
}
.article-cover-fallback {
  background:
    radial-gradient(circle at 80% 20%, rgba(232,93,4,.5), transparent 40%),
    linear-gradient(135deg, #1d1d1f, #2a2100);
}
.article-hero-text { position: relative; z-index: 2; padding: 160px 0 48px; }
.article-hero-text h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .98; letter-spacing: -.04em; max-width: 16ch; font-weight: 560;
}
.article-body { padding: 56px 0 20px; }
.article-prose { max-width: 760px; margin: 0 auto; }
.article-prose img,
.article-prose figure {
  border-radius: 22px; margin: 22px 0; width: 100%; height: auto;
}
.article-prose h1 { font-size: 34px; margin: 10px 0 16px; }
.article-cta {
  max-width: 760px; margin: 40px auto 0;
  background: var(--ink); color: #f5f5f7; border-radius: 28px; padding: 28px;
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
}
.article-cta p { color: #86868b; margin-top: 6px; }
.article-cta-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.article-cta .btn-primary { background: var(--lime); color: #111; }

.t-redactor__embedcode,
.t-redactor__embedcode + *,
iframe[src*="youtube.com/shorts"],
div[style*="background:#f7f7f7"],
div[style*="background:#f7f9fb"] { display: none !important; }

@media (max-width: 980px) {
  .article-hero { min-height: 320px; }
  .article-hero-text { padding: 110px 0 32px; }
  .article-cta { flex-direction: column; align-items: flex-start; }
}
