:root {
  --bg: #ffffff;
  --surface: #f1f3f4;
  --ink: #11191b;
  --ink-800: #1a2224;
  --ink-700: #283133;
  --red: #d82e2b;
  --red-600: #bc2523;
  --red-700: #9b1d1b;
  --red-800: #731514;
  --red-100: #fdeceb;
  --red-200: #fbd9d8;
  --red-300: #f5aba9;
  --red-400: #ea6f6c;
  --n-100: #f7f8f8;
  --n-200: #eef0f0;
  --n-300: #dfe2e2;
  --n-400: #c2c7c8;
  --n-500: #9aa1a2;
  --n-600: #767d7f;
  --n-700: #4f5658;
  --radius: 28px;
  --radius-md: 16px;
  --shadow-sm: 0 1px 2px rgba(17, 25, 27, 0.08);
  --shadow-lg: 0 18px 44px rgba(17, 25, 27, 0.12);
  --wrap: 1400px;
  --pad: clamp(18px, 4vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.025em; line-height: 1.06; }
p { margin: 0; }
img { max-width: 100%; }
a { color: var(--red-700); text-decoration: none; }
a:hover { color: var(--red-600); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
::selection { background: var(--red-200); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.section { padding-block: clamp(28px, 3.4vw, 52px); }
.section-tight { padding-block: clamp(18px, 2.2vw, 30px); }
.lead { font-size: clamp(15px, 1.15vw, 18px); line-height: 1.7; color: var(--n-700); max-width: 46ch; text-wrap: pretty; }
.body { font-size: 14.5px; line-height: 1.7; color: var(--n-700); }
.muted { color: var(--n-600); }
.grid { display: grid; gap: 14px; }
.g-240 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.g-260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g-300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g-320 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(20px, 3vw, 48px); align-items: end; }
.row { display: flex; flex-wrap: wrap; gap: 12px; }
.between { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--red-100); color: var(--red-800);
  border-radius: 999px; padding: 8px 16px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.kicker::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--red); }
.kicker-dark { background: rgba(255, 255, 255, 0.12); color: var(--red-300); }
.kicker-dark::before { background: var(--red-400); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 999px; padding: 15px 26px; border: 1.5px solid transparent;
  font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--ink); color: #fff; }
.btn-ghost { border-color: var(--n-300); color: var(--ink); background: var(--bg); }
.btn-ghost:hover { background: var(--surface); color: var(--ink); }
.btn-onink { border-color: rgba(255, 255, 255, 0.32); color: #fff; }
.btn-onink:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--red); color: #fff; }

.card { background: var(--n-100); border-radius: var(--radius); padding: clamp(20px, 2.4vw, 32px); box-shadow: var(--shadow-sm); }
.card-hover { transition: transform .25s ease, box-shadow .25s ease; }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-title { font-size: clamp(19px, 1.6vw, 24px); font-weight: 600; letter-spacing: -0.025em; margin-bottom: 10px; }
.card-text { font-size: 13.5px; line-height: 1.65; color: var(--n-700); text-wrap: pretty; }
.num { width: 40px; height: 40px; border-radius: 999px; background: var(--red-100); color: var(--red-800); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; }
.num-ink { background: var(--ink); color: #fff; }
.pill { background: var(--n-100); border-radius: 999px; padding: 13px 22px; font-size: clamp(14px, 1.15vw, 17px); font-weight: 600; }
.panel { background: var(--ink); color: #fff; border-radius: var(--radius); padding: clamp(26px, 3.4vw, 60px); }
.panel a { color: var(--red-300); }
.panel .card-text, .panel .body { color: rgba(255, 255, 255, 0.72); }
.surface { background: var(--surface); border-radius: var(--radius); padding: clamp(24px, 3vw, 44px); }
.stat-value { font-size: clamp(36px, 3.8vw, 56px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.stat-label { font-size: 13px; font-weight: 500; color: var(--n-700); margin-top: 10px; }

/* ---------- top header + nav ---------- */
.topbar { background: var(--ink); color: #fff; font-size: 12.5px; }
.topbar .wrap { min-height: 42px; display: flex; flex-wrap: wrap; align-items: center; gap: clamp(12px, 2vw, 26px); }
.topbar a { color: rgba(255, 255, 255, 0.78); }
.topbar a:hover { color: var(--red-400); }
.topbar .lead-link { color: #fff; display: flex; align-items: center; gap: 8px; }
.topbar .lead-link::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--red); }
.topbar .spacer { flex: 1; }
.topbar .portal { color: #fff; font-weight: 600; }

.header { position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(16px); }
.header .bar { height: clamp(78px, 7.4vw, 98px); display: flex; align-items: center; gap: clamp(14px, 3vw, 40px); }
.logo img { height: clamp(42px, 4vw, 54px); width: auto; display: block; }
.nav { display: flex; align-items: center; gap: clamp(2px, 1vw, 10px); flex: 1; }
.nav > * { position: relative; }
.nav a.link { font-size: 14.5px; font-weight: 600; color: var(--ink); padding: 10px 15px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.nav a.link:hover, .nav a.link.active { background: var(--red-100); color: var(--red-800); }
.nav a.link .caret { font-size: 9px; opacity: .55; }
.lang { display: flex; background: var(--surface); border-radius: 999px; padding: 4px; }
.lang a { padding: 9px 15px; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--n-700); }
.lang a.on { background: var(--ink); color: #fff; }

.mega { position: absolute; left: 0; right: 0; top: 100%; padding: 0 var(--pad) 18px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.has-mega:hover .mega, .mega:hover, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega-inner { max-width: var(--wrap); margin: 0 auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(18px, 2vw, 26px); }
.mega-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
.mega-item { display: block; padding: 22px; border-radius: var(--radius); background: var(--n-100); color: var(--ink); }
.mega-item:hover { background: var(--ink); color: #fff; }
.mega-item .top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 14px; font-size: 11px; font-weight: 600; }
.mega-item .name { font-size: 21px; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 6px; }
.mega-item .tag { font-size: 13px; line-height: 1.5; opacity: .75; }

.burger { display: none; width: 48px; height: 48px; border-radius: 999px; background: var(--ink); border: 0; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 18px; height: 2.5px; border-radius: 999px; background: #fff; display: block; }
#drawer-toggle { display: none; }
.drawer { position: fixed; inset: 0; z-index: 90; background: var(--ink); color: #fff; overflow-y: auto; display: none; }
#drawer-toggle:checked ~ .drawer { display: block; }
.drawer .head { display: flex; align-items: center; justify-content: space-between; padding: 18px var(--pad); }
.drawer .head img { height: 46px; }
.drawer .close { width: 48px; height: 48px; border-radius: 999px; background: rgba(255, 255, 255, 0.14); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; cursor: pointer; }
.drawer .links { display: flex; flex-direction: column; gap: 8px; padding: 12px var(--pad) 40px; }
.drawer .links a { padding: 17px 22px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); color: #fff; font-size: 18px; font-weight: 600; display: flex; justify-content: space-between; }

@media (max-width: 1023px) {
  .nav, .header .lang + .btn { display: none; }
  .burger { display: flex; }
}

/* ---------- hero ---------- */
.hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: clamp(20px, 2.6vw, 40px); align-items: stretch; padding-top: clamp(18px, 2.4vw, 32px); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; gap: clamp(20px, 2.4vw, 30px); padding-block: clamp(8px, 2vw, 28px); }
.hero-copy h1 { font-size: clamp(40px, 5.4vw, 78px); line-height: 1.03; max-width: 18ch; text-wrap: balance; }
.hero-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.hero-card-dark { background: var(--ink); color: #fff; border-radius: var(--radius); padding: clamp(20px, 2.2vw, 28px); }
.hero-card-dark .stat-value { color: #fff; }
.hero-card-dark p { font-size: 13px; line-height: 1.55; color: rgba(255, 255, 255, 0.7); margin-top: 10px; max-width: 22ch; }
.avatars { display: flex; }
.avatars span { width: 26px; height: 26px; border-radius: 999px; border: 2px solid var(--ink); display: block; }
.avatars span + span { margin-left: -9px; }

.stage { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink); min-height: clamp(460px, 52vw, 660px); perspective: 1200px; }
.stage-3d { position: absolute; inset: -8%; transform-style: preserve-3d; transition: transform .18s ease-out;
  transform: rotateY(calc(var(--sd-mx, 0) * -8deg)) rotateX(calc(var(--sd-my, 0) * 6deg)) translateY(calc(var(--sd-scroll, 0) * -46px)) scale(1.02); }
.stage-grid { position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1.5px, transparent 1.5px 96px), repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1.5px, transparent 1.5px 96px); }
.pipe { position: absolute; }
.p1 { left: 6%; top: -6%; width: 34%; height: 62%; border-top: 30px solid var(--n-600); border-right: 30px solid var(--n-600); border-top-right-radius: 120px; transform: translateZ(20px); }
.p2 { left: 22%; top: 16%; width: 58%; height: 40%; border-bottom: 26px solid var(--n-500); border-left: 26px solid var(--n-500); border-bottom-left-radius: 110px; transform: translateZ(40px); }
.p3 { right: -4%; top: 6%; width: 42%; height: 34%; border-top: 24px solid var(--red); border-left: 24px solid var(--red); border-top-left-radius: 100px; transform: translateZ(10px); }
.p4 { left: 30%; bottom: -8%; width: 40%; height: 56%; border-top: 34px solid #fff; border-right: 34px solid #fff; border-top-right-radius: 140px; transform: translateZ(70px); box-shadow: 0 26px 60px rgba(0,0,0,.28); }
.p5 { left: 2%; bottom: 12%; width: 40%; height: 30%; border-bottom: 22px solid var(--n-400); border-right: 22px solid var(--n-400); border-bottom-right-radius: 90px; transform: translateZ(52px); }
.p6 { right: 12%; bottom: -14%; width: 30%; height: 40%; border-top: 22px solid var(--red-400); border-left: 22px solid var(--red-400); border-top-left-radius: 90px; transform: translateZ(28px); }
.p-dot { right: 8%; top: 44%; width: 120px; height: 120px; border-radius: 999px; background: var(--ink-700); transform: translateZ(6px); }
.floats { position: absolute; inset: 0; pointer-events: none; }
.float-a { position: absolute; left: clamp(14px, 4%, 40px); top: clamp(24px, 8%, 68px); animation: drift 7s ease-in-out infinite; transform: translateY(calc(var(--sd-scroll, 0) * -70px)); }
.float-b { position: absolute; right: clamp(14px, 5%, 44px); bottom: clamp(24px, 8%, 60px); animation: drift 9s ease-in-out infinite; transform: translateY(calc(var(--sd-scroll, 0) * 60px)); }
.glass { background: color-mix(in srgb, var(--ink) 88%, transparent); border: 1px solid rgba(255, 255, 255, 0.28); backdrop-filter: blur(14px); color: #fff; box-shadow: var(--shadow-lg); }
.glass-pill { display: flex; align-items: center; gap: 14px; border-radius: 999px; padding: 12px 20px 12px 14px; }
.glass-pill .icon { width: 38px; height: 38px; border-radius: 999px; background: #fff; color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; }
.glass-card { border-radius: var(--radius); padding: 18px 22px; min-width: 200px; }
.glass-card .v { font-size: 34px; font-weight: 600; letter-spacing: -0.03em; margin: 10px 0 12px; }
.delta { background: var(--red); color: #fff; border-radius: 999px; padding: 5px 11px; font-size: 11.5px; font-weight: 600; }
@keyframes drift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- layers / cycle ---------- */
.layer { display: flex; align-items: center; gap: clamp(12px, 2vw, 22px); }
.layer .bar { min-width: 160px; border-radius: 999px; padding: 15px clamp(18px, 1.8vw, 26px); display: flex; align-items: center; gap: 12px; color: #fff; transition: width .35s ease; }
.layer .bar span.n { font-size: 11.5px; font-weight: 600; opacity: .75; }
.layer .bar span.t { font-size: clamp(14px, 1.2vw, 17px); font-weight: 600; white-space: nowrap; }
.layer .desc { font-size: 12.5px; color: var(--n-600); }
.l-1 { background: var(--red); }
.l-2 { background: var(--ink); }
.l-3 { background: var(--ink-700); }
.l-4 { background: var(--n-500); }
.l-5 { background: var(--surface); color: var(--ink) !important; }
.stage-card { border-radius: var(--radius); padding: clamp(22px, 2.4vw, 34px); min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.stage-card .n { font-size: clamp(30px, 2.8vw, 42px); font-weight: 600; letter-spacing: -0.04em; opacity: .9; }
.c-1 { background: var(--red); color: #fff; }
.c-2 { background: var(--ink); color: #fff; }
.c-3 { background: var(--n-100); }
.c-4 { background: var(--ink-700); color: #fff; }
.c-5 { background: var(--surface); }
.c-6 { background: var(--red-100); color: var(--red-800); }

/* ---------- products ---------- */
.prod-row { border-radius: var(--radius); padding: clamp(24px, 3vw, 48px); display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 3.5vw, 56px); }
.prod-row.light { background: var(--n-100); }
.prod-row.dark { background: var(--ink); color: #fff; }
.prod-row h2 { font-size: clamp(30px, 3.4vw, 48px); margin-bottom: 14px; }
.prod-row .tagline { font-size: clamp(16px, 1.35vw, 19px); line-height: 1.55; font-weight: 600; margin-bottom: 14px; max-width: 34ch; color: var(--red-700); }
.prod-row.dark .tagline { color: var(--red-300); }
.prod-row .desc { font-size: 14.5px; line-height: 1.75; margin-bottom: 26px; max-width: 46ch; color: var(--n-700); }
.prod-row.dark .desc { color: rgba(255, 255, 255, 0.78); }
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px; align-content: start; }
.tile { background: #fff; border-radius: var(--radius-md); padding: 17px 19px; }
.prod-row.dark .tile { background: rgba(255, 255, 255, 0.09); }
.tile .t { font-size: 15.5px; font-weight: 600; margin-bottom: 7px; }
.tile .d { font-size: 12.5px; line-height: 1.55; opacity: .75; }
.status { border: 1px solid var(--n-400); border-radius: 999px; padding: 6px 13px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--n-700); }
.prod-row.dark .status, .panel .status { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.blob { position: absolute; border-radius: 999px; }

/* ---------- faq ---------- */
.faq { background: var(--n-100); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: clamp(18px, 2.1vw, 26px); cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq .q { display: flex; gap: 14px; align-items: center; font-size: clamp(16px, 1.4vw, 20px); font-weight: 600; letter-spacing: -0.02em; }
.faq .q .n { font-size: 11.5px; font-weight: 600; color: var(--red-600); }
.faq .sign { width: 36px; height: 36px; border-radius: 999px; background: var(--red-100); color: var(--red-800); display: flex; align-items: center; justify-content: center; font-size: 17px; flex: 0 0 auto; }
.faq[open] .sign { background: var(--red); color: #fff; }
.faq .a { padding: 0 clamp(18px, 2.1vw, 26px) clamp(22px, 2.4vw, 28px) clamp(46px, 4vw, 54px); }

/* ---------- table ---------- */
.table { width: 100%; min-width: 620px; border-collapse: collapse; }
.table th { text-align: left; font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--n-600); padding: 10px 14px 14px 10px; }
.table td { font-size: 14px; padding: 14px 14px 14px 10px; border-top: 1px solid var(--n-200); color: var(--n-700); }
.scroll-x { overflow-x: auto; background: var(--n-100); border-radius: var(--radius); padding: clamp(14px, 1.6vw, 24px); }

/* ---------- form ---------- */
.form-shell { background: var(--n-100); border-radius: var(--radius); padding: clamp(22px, 3vw, 44px); box-shadow: var(--shadow-sm); }
.form-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: clamp(22px, 2.6vw, 34px); }
.sla-note { display: inline-flex; align-items: center; gap: 9px; background: var(--red-100); color: var(--red-800); border-radius: 999px; padding: 9px 16px; font-size: 12px; font-weight: 600; }
.sla-note::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--red); }
form.quote { display: flex; flex-direction: column; gap: clamp(22px, 2.6vw, 34px); }
.fgroup + .fgroup { border-top: 1.5px solid var(--n-200); padding-top: clamp(20px, 2.2vw, 28px); }
.fgroup-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.fgroup-head .n { width: 30px; height: 30px; border-radius: 999px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11.5px; font-weight: 600; flex: 0 0 auto; }
.fgroup-head .t { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; }
.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span.lbl { font-size: 12px; font-weight: 600; color: var(--n-700); }
.field.wide { grid-column: 1 / -1; }
.input, select.input, textarea.input {
  border: 1.5px solid var(--n-300); background: var(--bg); color: var(--ink);
  border-radius: 999px; height: 52px; padding: 0 20px; font-size: 14.5px; width: 100%;
  font-family: inherit; transition: border-color .18s ease, box-shadow .18s ease;
}
textarea.input { border-radius: var(--radius); height: auto; padding: 18px 20px; line-height: 1.65; resize: vertical; }
.input:hover { border-color: var(--n-400); }
.input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px var(--red-100); }
.input.invalid { border-color: var(--red); background: var(--red-100); }
.err { font-size: 11.5px; font-weight: 600; color: var(--red-700); }
.hint-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.hint-chips span { background: var(--n-200); border-radius: 999px; padding: 8px 14px; font-size: 11.5px; color: var(--n-700); }
.drop { display: flex; align-items: center; gap: 16px; margin-top: 20px; border: 1.5px dashed var(--n-300); border-radius: var(--radius); padding: 18px 20px; cursor: pointer; transition: border-color .18s ease, background .18s ease; }
.drop:hover { border-color: var(--red); background: var(--red-100); }
.drop .icon { width: 44px; height: 44px; border-radius: 999px; background: var(--n-200); color: var(--red-700); display: flex; align-items: center; justify-content: center; font-size: 19px; flex: 0 0 auto; }
.drop input[type=file] { display: none; }
.drop .t { font-size: 14px; font-weight: 600; }
.drop .d { font-size: 11.5px; color: var(--n-600); margin-top: 3px; }
.submit-row { border-top: 1.5px solid var(--n-200); padding-top: clamp(18px, 2vw, 26px); display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.submit-row .btn { padding: 18px 30px; font-size: 14.5px; }
.consent { font-size: 12px; line-height: 1.6; color: var(--n-600); max-width: 44ch; }
.alert { background: var(--red-100); color: var(--red-800); border-radius: var(--radius-md); padding: 14px 18px; font-size: 13.5px; font-weight: 600; }
.success .icon { width: 52px; height: 52px; border-radius: 999px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 24px; }
.success .ref { display: inline-flex; align-items: center; gap: 10px; background: var(--surface); border-radius: 999px; padding: 12px 18px; font-size: 13.5px; font-weight: 600; margin-bottom: 24px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
.contact-grid > .form-shell { min-width: 0; }
@media (min-width: 1080px) {
  .contact-grid { grid-template-columns: 2fr 1fr; }
}
.aside { background: var(--ink); color: #fff; border-radius: var(--radius); padding: clamp(24px, 2.8vw, 40px); display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.aside .label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-300); margin-bottom: 10px; }
.aside a { color: #fff; }
.aside a:hover { color: var(--red-300); }
.aside .divider { height: 1px; background: rgba(255, 255, 255, 0.16); }
.aside .note { font-size: 11.5px; color: rgba(255, 255, 255, 0.55); }

/* ---------- cta + footer ---------- */
.cta { position: relative; overflow: hidden; background: var(--red); color: #fff; border-radius: var(--radius); padding: clamp(30px, 4vw, 68px); }
.cta h2 { font-size: clamp(30px, 4.2vw, 58px); max-width: 20ch; }
.cta p { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.7; margin: 0 0 26px; max-width: 40ch; color: rgba(255, 255, 255, 0.92); }
.cta .btn-ink { background: var(--ink); color: #fff; }
.cta .btn-ink:hover { background: #fff; color: var(--red-800); }
.cta .inner { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 3.5vw, 56px); align-items: end; }

.footer { background: var(--ink); color: #fff; border-radius: var(--radius) var(--radius) 0 0; margin-top: clamp(18px, 2.6vw, 36px); }
.footer .wrap { padding-top: clamp(34px, 4.4vw, 72px); padding-bottom: clamp(22px, 2.6vw, 34px); }
.footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: clamp(24px, 3vw, 48px); padding-bottom: clamp(26px, 3.4vw, 44px); }
.footer img { height: 58px; width: auto; margin-bottom: 20px; }
.footer p, .footer .addr { font-size: 13.5px; line-height: 1.75; color: rgba(255, 255, 255, 0.68); max-width: 32ch; }
.footer .ct { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-300); margin-bottom: 18px; }
.footer .list { display: flex; flex-direction: column; gap: 11px; }
.footer .list a { font-size: 13.5px; color: rgba(255, 255, 255, 0.8); }
.footer .list a:hover { color: var(--red-300); }
.footer .legal { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 12.5px; color: rgba(255, 255, 255, 0.55); }

/* ---------- effects ---------- */
#sd-cursor, #sd-ring { position: fixed; left: 0; top: 0; border-radius: 999px; pointer-events: none; opacity: 0; transform: translate3d(-100px, -100px, 0); }
#sd-cursor { width: 9px; height: 9px; background: var(--red); z-index: 2147483001; transition: opacity .25s ease; }
#sd-ring { width: 40px; height: 40px; border: 1.5px solid var(--red); z-index: 2147483000; transition: opacity .25s ease, width .18s ease, height .18s ease; }
#sd-particles { position: fixed; inset: 0; pointer-events: none; z-index: 2147482999; }
[data-reveal] { opacity: 0; transform: translateY(22px) scale(.985); transition: opacity .6s cubic-bezier(.22,.9,.24,1), transform .6s cubic-bezier(.22,.9,.24,1); }
[data-reveal].in { opacity: 1; transform: none; }

@media (hover: none) { #sd-cursor, #sd-ring { display: none; } }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
