/* ============================================================
   adviceal lander — design system
   Family DNA: Adviceal family (minirez · maxirez · mixipos · mixifin).
   Palette taken from the original adviceal.com brand: the logo's
   sky-cyan → azure → deep-blue ramp, plus the hero's electric violet.
   Deep midnight-blue anchors, lowercase-friendly wordmark,
   "different horizon" motif.
   ============================================================ */

:root {
  /* deep midnight-blue base (the brand blues glow on it) */
  --bg0: #050b19;
  --bg1: #08122a;
  --bg2: #0c1b3c;
  --ink: #e8f2fb;
  --muted: #94aac6;
  --line: rgba(140, 185, 235, 0.14);

  /* BLUE ramp — straight off the AdviceAl logo. Everything inherits --grad */
  --brand1: #2db7eb;  /* sky cyan — logo "AI" + the A/M mark */
  --brand2: #0b94d9;  /* azure — core brand / primary CTA */
  --brand3: #265bb4;  /* deep blue — logo M anchor, section fills */
  --grad: linear-gradient(100deg, var(--brand1), var(--brand2) 52%, var(--brand3));
  --grad-cta: linear-gradient(100deg, var(--brand1), var(--brand2) 58%, var(--violet));

  /* the hero / instagram violet from the original banner */
  --violet: #5e17eb;
  --violet-soft: #7b3cf5;

  --sky: #7bc7ed;   /* the pale blue band on the original site */
  --ok: #34d399;
  --warn: #fb7185;
  --gold: #f5b84b;

  /* light surfaces — the original site is white-predominant */
  --paper: #f6faff;
  --paper-tint: #e9f2fb;
  --ink-dark: #1d1e20;   /* the original body ink */
  --muted-dark: #55637a;
  --line-dark: rgba(29, 30, 32, 0.1);

  /* legibility tokens */
  --accent-ink: #1b57a8;  /* readable blue for kickers/strokes on paper */
  --on-grad: #04121f;     /* near-black text ON gradient buttons */

  --font-display: 'Titillium Web', 'Segoe UI', system-ui, sans-serif;
  --font-text: 'DM Sans', 'Segoe UI', system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px -28px rgba(2, 10, 26, 0.68);
  --shadow-light: 0 22px 60px -30px rgba(15, 44, 90, 0.38);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg0);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(45, 183, 235, 0.35); color: #fff; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.14; margin: 0; letter-spacing: -0.015em; }
p { margin: 0; }
figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

:where(a, button):focus-visible {
  outline: 3px solid var(--brand1);
  outline-offset: 3px;
}

.container { width: min(var(--maxw), 100% - 48px); margin-inline: auto; }
.container--narrow { width: min(840px, 100% - 48px); margin-inline: auto; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------- scroll progress ---------------- */
.progress {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 3px;
  z-index: 60;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
}

/* ---------------- buttons & chips ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s, color 0.22s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--grad);
  color: #02121e;
  box-shadow: 0 12px 32px -10px rgba(11, 148, 217, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -10px rgba(11, 148, 217, 0.7); }
.btn--violet {
  background: linear-gradient(100deg, var(--violet-soft), var(--violet));
  color: #fff;
  box-shadow: 0 12px 32px -10px rgba(94, 23, 235, 0.6);
}
.btn--violet:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -10px rgba(94, 23, 235, 0.75); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: rgba(45, 183, 235, 0.55); background: rgba(45, 183, 235, 0.1); transform: translateY(-2px); }
.btn--onlight {
  background: #fff;
  color: var(--ink-dark);
  border-color: var(--line-dark);
  box-shadow: var(--shadow-light);
}
.btn--onlight:hover { transform: translateY(-2px); border-color: rgba(11, 148, 217, 0.45); color: var(--accent-ink); }
.btn--onblue {
  background: #fff;
  color: #12376f;
  box-shadow: 0 14px 34px -14px rgba(3, 20, 48, 0.6);
}
.btn--onblue:hover { transform: translateY(-2px); }
.btn--sm { font-size: 14px; padding: 10px 18px; }
.btn--lg { font-size: 16px; padding: 16px 30px; }
.btn--block { display: flex; width: 100%; }
.btn--shine::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 44px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  left: -70px;
  animation: shine 3.8s ease-in-out infinite;
}
@keyframes shine {
  0%, 64% { left: -70px; }
  82%, 100% { left: 130%; }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(45, 183, 235, 0.08);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.chip:hover { border-color: rgba(45, 183, 235, 0.5); }
.chip__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand1);
  box-shadow: 0 0 0 4px rgba(45, 183, 235, 0.18);
}
.chip--light {
  border-color: var(--line-dark);
  background: rgba(11, 148, 217, 0.09);
  color: var(--accent-ink);
}

/* ---------------- section furniture ---------------- */
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 76px 0; }
.section--paper { background: var(--paper); color: var(--ink-dark); }
.section--tint { background: var(--paper-tint); color: var(--ink-dark); }
.section--dark { background: var(--bg1); }

.section__head { max-width: 720px; margin-bottom: 52px; }
.section__head--center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand1);
  margin-bottom: 14px;
}
.section--paper .kicker, .section--tint .kicker { color: var(--accent-ink); }
.section__title { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; }
.section__sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
  max-width: 62ch;
}
.section--paper .section__sub, .section--tint .section__sub { color: var(--muted-dark); }
.section__head--center .section__sub { margin-inline: auto; }

/* ---------------- reveal ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn--shine::after { animation: none; display: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 11, 25, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.nav.is-scrolled { background: rgba(5, 11, 25, 0.93); border-bottom-color: var(--line); }
.nav .container { width: min(1340px, 100% - 32px); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__logo { height: 34px; width: auto; }
.footer .brand__logo { height: 38px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-inline: auto;
  font-size: 14.5px;
  font-weight: 500;
}
.nav__links a { color: var(--muted); transition: color 0.2s; white-space: nowrap; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--brand1); }
.nav__social { display: flex; gap: 6px; }
.nav__social a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.nav__social a:hover { border-color: rgba(45, 183, 235, 0.55); background: rgba(45, 183, 235, 0.1); transform: translateY(-2px); }
.nav__social svg { width: 15px; height: 15px; fill: var(--muted); }
.nav__social a:hover svg { fill: var(--brand1); }

.locale-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}
.locale-switcher a {
  min-width: 34px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.locale-switcher a:hover { color: var(--ink); }
.locale-switcher a.is-active {
  background: var(--grad);
  color: var(--on-grad);
}

.nav__burger {
  display: none;
  width: 42px; height: 38px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
}
.nav__burger span { width: 17px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6.3px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6.3px) rotate(-45deg); }

.nav__sheet {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px 28px;
  border-top: 1px solid var(--line);
  background: rgba(5, 11, 25, 0.98);
}
.nav__sheet a { font-size: 15.5px; color: var(--muted); }
.nav__sheet .btn { justify-content: center; }
.nav.is-open .nav__sheet { display: flex; }
.nav__sheet .locale-switcher--mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
  padding: 5px;
}
.nav__sheet .locale-switcher--mobile a {
  padding: 9px 12px;
  font-size: 14px;
}

@media (max-width: 1400px) { .nav__social { display: none; } }
@media (max-width: 1240px) { .nav__phone { display: none; } }
@media (max-width: 1080px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { margin-inline-start: auto; }
}
@media (max-width: 640px) {
  .nav__social { display: none; }
  .nav__partner { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 92px 0 96px;
  overflow: hidden;
  background: radial-gradient(1200px 620px at 50% -10%, rgba(94, 23, 235, 0.32), transparent 62%), var(--bg0);
}
.hero__sky { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 22s ease-in-out infinite alternate;
}
.aurora--1 { width: 620px; height: 620px; top: -220px; left: -140px; background: rgba(94, 23, 235, 0.55); }
.aurora--2 { width: 540px; height: 540px; top: -160px; right: -120px; background: rgba(45, 183, 235, 0.45); animation-delay: -7s; }
.aurora--3 { width: 620px; height: 420px; bottom: -220px; left: 34%; background: rgba(38, 91, 180, 0.5); animation-delay: -13s; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(36px, -26px, 0) scale(1.08); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(140, 185, 235, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 185, 235, 0.07) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(closest-side at 50% 30%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(closest-side at 50% 30%, #000 55%, transparent 100%);
}
.hero__horizon {
  position: absolute;
  left: 50%;
  bottom: -34%;
  width: 150%;
  height: 62%;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(45, 183, 235, 0.2), transparent 62%);
  border-top: 1px solid rgba(45, 183, 235, 0.3);
}
.hero__inner { position: relative; text-align: center; }
.hero__title {
  margin-top: 22px;
  font-size: clamp(36px, 6.1vw, 68px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.9vw, 20px);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sky);
}
.hero__tag::before, .hero__tag::after {
  content: '';
  width: clamp(24px, 6vw, 68px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand1));
}
.hero__tag::after { background: linear-gradient(90deg, var(--brand1), transparent); }
.hero__sub {
  margin: 24px auto 0;
  max-width: 62ch;
  font-size: 17.5px;
  color: var(--muted);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

/* the two "Discover" cards from the original banner */
.discover {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 58px;
  text-align: left;
}
.discover__card {
  position: relative;
  overflow: hidden;
  padding: 30px 30px 26px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(45, 183, 235, 0.13), rgba(8, 18, 42, 0.72));
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease;
}
.discover__card:hover { transform: translateY(-4px); border-color: rgba(45, 183, 235, 0.42); }
.discover__card--maxi { background: linear-gradient(160deg, rgba(19, 88, 166, 0.34), rgba(5, 18, 48, 0.88)); }
.discover__eyebrow {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.discover__word {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.discover__card--mini .discover__word { color: var(--brand1); }
.discover__card--maxi .discover__word { color: #4a86e8; }
.discover__desc { margin-top: 10px; color: var(--muted); font-size: 15.5px; max-width: 30ch; }
.discover__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.discover__link svg { transition: transform 0.22s; }
.discover__card:hover .discover__link svg { transform: translateX(4px); }
@media (max-width: 760px) { .discover { grid-template-columns: 1fr; } }

/* ---------------- statement band ---------------- */
.statement {
  background: var(--paper);
  color: var(--ink-dark);
  padding: 74px 0;
  text-align: center;
}
.statement__title {
  font-size: clamp(24px, 3.1vw, 34px);
  font-weight: 700;
  color: var(--accent-ink);
  max-width: 22ch;
  margin-inline: auto;
}
.statement__body {
  margin: 20px auto 0;
  max-width: 76ch;
  font-size: 17px;
  color: var(--muted-dark);
}
.statement__body strong { color: var(--ink-dark); }

/* ---------------- quote band ---------------- */
.quoteband {
  background: linear-gradient(100deg, var(--violet), var(--brand3) 58%, var(--brand2));
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.quoteband__text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  max-width: 24ch;
  margin-inline: auto;
  line-height: 1.22;
}
.quoteband__sub { margin-top: 14px; color: rgba(255, 255, 255, 0.82); font-size: 16px; }

/* ============================================================
   PRODUCT SECTIONS
   ============================================================ */
.product { padding: 96px 0; position: relative; overflow: hidden; }
.product--minirez { background: linear-gradient(150deg, #0b4ea8, #0b94d9 62%, #2db7eb); color: #fff; }
.product--maxirez { background: linear-gradient(150deg, #061b46, #0b3677 55%, #1358a6); color: #fff; }
.product--mixipos { background: linear-gradient(150deg, #ff9a2f, #f26722 58%, #d9480f); color: #fff; }
.product--mixifin { background: linear-gradient(150deg, #64dce7, #27b8db 55%, #2183c5); color: #06263f; }

.product__inner {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 54px;
  align-items: center;
}
.product--flip .product__visual { order: -1; }
.product__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}
.product--mixifin .product__badge { background: rgba(6, 38, 63, 0.12); border-color: rgba(6, 38, 63, 0.24); color: #06263f; }
.product__title {
  margin-top: 18px;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
}
.product__title b { font-weight: 700; }
.product__lead {
  margin-top: 16px;
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}
.product--mixifin .product__lead { color: rgba(6, 38, 63, 0.82); }
.product__caption {
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.product--mixifin .product__caption { color: rgba(6, 38, 63, 0.7); }

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.services li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.42;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.22s, transform 0.22s;
}
.services li:hover { background: rgba(255, 255, 255, 0.19); transform: translateY(-2px); }
.services svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: #fff; }
.product--mixifin .services li { background: rgba(255, 255, 255, 0.5); border-color: rgba(6, 38, 63, 0.12); color: #06263f; }
.product--mixifin .services li:hover { background: rgba(255, 255, 255, 0.75); }
.product--mixifin .services svg { stroke: #0b5f9e; }
.product__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@media (max-width: 520px) { .services { grid-template-columns: 1fr; } }

.product__visual { position: relative; }
.product__shot {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 70px -30px rgba(2, 14, 36, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.product__num {
  position: absolute;
  right: -8px;
  bottom: -18px;
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.24);
  letter-spacing: -0.04em;
  pointer-events: none;
}
.product--mixifin .product__num { color: rgba(6, 38, 63, 0.2); }
@media (max-width: 940px) {
  .product__inner { grid-template-columns: 1fr; gap: 40px; }
  .product--flip .product__visual { order: 0; }
  .product__num { font-size: 58px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: start;
}
.about__body p { margin-bottom: 18px; color: var(--muted-dark); font-size: 16.5px; }
.about__body p:last-child { margin-bottom: 0; }
.about__body strong { color: var(--ink-dark); }
.about__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 96px;
}
.about__shot {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  background: var(--paper-tint);
}
.about__shot img { width: 100%; height: 100%; object-fit: cover; }
.about__shot--wide { grid-column: span 2; aspect-ratio: 16 / 10; }
.about__shot--sq { aspect-ratio: 1 / 1; }
.about__shot--pres { grid-column: span 2; aspect-ratio: 16 / 9; }
.about__shot--pres img { object-fit: contain; background: #fff; }
.about__award {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-light);
}
.about__award img { width: 78px; height: auto; border-radius: 8px; box-shadow: none; }
.about__award p { font-size: 14px; color: var(--muted-dark); }
.about__award b { color: var(--ink-dark); display: block; font-family: var(--font-display); }

.mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}
.mv__card {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}
.mv__card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--grad);
}
.mv__card h3 { font-size: 21px; color: var(--ink-dark); margin-bottom: 12px; }
.mv__card p { color: var(--muted-dark); font-size: 16px; }
@media (max-width: 900px) {
  .about__grid, .mv { grid-template-columns: 1fr; gap: 34px; }
  .about__media { position: static; }
}

/* ---------------- brand marks ---------------- */
.marks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.mark {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-light);
}
.mark img { width: 74px; height: 74px; object-fit: contain; border-radius: 10px; }
.mark span {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-dark);
}
@media (max-width: 820px) { .marks { grid-template-columns: 1fr; } }

/* ---------------- family strip ---------------- */
.family {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}
.familycard {
  padding: 24px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(45, 183, 235, 0.1), rgba(8, 18, 42, 0.6));
  transition: transform 0.25s, border-color 0.25s;
}
.familycard:hover { transform: translateY(-4px); border-color: rgba(45, 183, 235, 0.45); }
.familycard__word { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.familycard__word.is-mini { color: var(--brand1); }
.familycard__word.is-maxi { color: #4a86e8; }
.familycard__word.is-pos { color: #ff922b; }
.familycard__word.is-fin { color: #35c9dd; }
.familycard.is-maxi .familycard__go { color: #4a86e8; }
.familycard.is-pos .familycard__go { color: #ff922b; }
.familycard.is-fin .familycard__go { color: #35c9dd; }
.familycard p { margin-top: 8px; font-size: 14.5px; color: var(--muted); }
.familycard__go { margin-top: 14px; display: inline-flex; gap: 7px; align-items: center; font-size: 14px; color: var(--brand1); font-weight: 600; }
@media (max-width: 900px) { .family { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .family { grid-template-columns: 1fr; } }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 8px;
}
.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 34px 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-light);
  transition: transform 0.25s, box-shadow 0.25s;
}
.partner:hover { transform: translateY(-4px); box-shadow: 0 28px 66px -30px rgba(15, 44, 90, 0.5); }
.partner__logo {
  height: 132px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.partner h3 {
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dark);
}
.partner p { font-size: 15px; color: var(--muted-dark); max-width: 46ch; }
.partner__year {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-ink);
}
@media (max-width: 760px) { .partners { grid-template-columns: 1fr; } }

/* ============================================================
   PARTNER PROGRAM
   ============================================================ */
.programs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.program {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(45, 183, 235, 0.1), rgba(8, 18, 42, 0.66));
  transition: transform 0.25s, border-color 0.25s;
}
.program:hover { transform: translateY(-4px); border-color: rgba(45, 183, 235, 0.45); }
.program__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(45, 183, 235, 0.14);
  border: 1px solid rgba(45, 183, 235, 0.3);
  margin-bottom: 18px;
}
.program__icon svg { width: 21px; height: 21px; stroke: var(--brand1); fill: none; }
.program h3 { font-size: 20px; margin-bottom: 10px; }
.program p { font-size: 15px; color: var(--muted); margin-bottom: 12px; }
.program p:last-of-type { margin-bottom: 0; }
.program__rev {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--font-display);
  font-weight: 700;
}
.program__rev b { font-size: 30px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.program__rev span { font-size: 13px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.program__actions { margin-top: 36px; }
@media (max-width: 940px) { .programs { grid-template-columns: 1fr; } }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta {
  background: linear-gradient(165deg, var(--violet) 0%, #4a12c4 55%, #1b1f8c 100%);
  padding: 96px 0;
  color: #fff;
}
.insta__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.insta__head .kicker { color: rgba(255, 255, 255, 0.72); }
.insta__title { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; }
.insta__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.igcard {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.igcard:hover { transform: translateY(-4px); box-shadow: 0 26px 56px -26px rgba(0, 0, 0, 0.7); }
.igcard img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.igcard:hover img { transform: scale(1.06); }
.igcard__veil {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(180deg, transparent 42%, rgba(6, 4, 30, 0.9));
  opacity: 0;
  transition: opacity 0.28s;
}
.igcard:hover .igcard__veil { opacity: 1; }
.igcard__cap {
  font-size: 12.5px;
  line-height: 1.45;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.igcard__type {
  position: absolute;
  top: 11px; right: 11px;
  width: 27px; height: 27px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(6, 4, 30, 0.55);
  backdrop-filter: blur(4px);
}
.igcard__type svg { width: 14px; height: 14px; fill: #fff; }
.empty-state {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}
@media (max-width: 1080px) { .insta__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .insta__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--bg1);
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute;
  inset: -40% 20% auto;
  height: 460px;
  background: radial-gradient(closest-side, rgba(45, 183, 235, 0.28), transparent);
  pointer-events: none;
}
.cta__inner { position: relative; }
.cta__title { font-size: clamp(28px, 3.8vw, 46px); font-weight: 700; }
.cta__sub { margin: 18px auto 0; max-width: 58ch; color: var(--muted); font-size: 17px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

.offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}
.office {
  padding: 26px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.office h3 { font-size: 17px; margin-bottom: 10px; }
.office p { font-size: 15px; color: var(--muted); }
.office a { display: inline-flex; gap: 8px; align-items: center; margin-top: 12px; font-size: 15px; font-weight: 600; color: var(--brand1); }
@media (max-width: 760px) { .offices { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #030711;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
}
.footer__brandcol p { font-size: 14px; color: var(--muted); margin-top: 18px; max-width: 36ch; }
.footer__brandcol p a { color: var(--brand1); font-weight: 600; }
.footer__socialtitle {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__social { display: flex; gap: 10px; margin-top: 12px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.footer__social a:hover { border-color: rgba(45, 183, 235, 0.55); background: rgba(45, 183, 235, 0.1); transform: translateY(-2px); }
.footer__social svg { width: 17px; height: 17px; fill: var(--muted); }
.footer__social a:hover svg { fill: var(--brand1); }
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 11px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--brand1); }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(140, 185, 235, 0.1);
  font-size: 12.5px;
  color: rgba(148, 170, 198, 0.7);
}
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------------- misc responsive ---------------- */
@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .product { padding: 72px 0; }
  .insta, .cta { padding: 76px 0; }
  .container, .container--narrow { width: min(100% - 34px, var(--maxw)); }
}
