/* ==========================================================================
   Mark Beets — Freelance AI Process Developer
   Shared design system for the landing site
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@1,9..144,400;1,9..144,500;1,9..144,600&family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');
@import url('/assets/css/lang-switch.css');
@import url('/assets/css/meet-mark.css');
@import url('/assets/css/word-notes.css');

:root {
  --bg: #050814;
  --bg-2: #080b18;
  --panel: #0c1020;
  --panel-2: #101528;
  --navy: #040712;
  --indigo: #1e1b4b;
  --purple-deep: #4c1d95;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f4f6fb;
  --muted: #a6adbe;
  --muted-2: #737b8f;
  --gold: #f6c453;
  --gold-soft: #e5b83d;
  --gold-bright: #ffd98a;
  --gold-glow: rgba(246, 196, 83, 0.38);
  --cyan: #5ff2d0;
  --blue: #6aa9ff;
  --electric: #38bdf8;
  --violet: #9b63ff;
  --magenta: #db5cb8;
  --warm: #ff6b50;
  --wa: #25d366;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.8);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, var(--navy) 0%, var(--bg) 45%, #060a16 100%);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(246, 196, 83, 0.38);
  color: #fff8e8;
}
::-moz-selection {
  background: rgba(246, 196, 83, 0.38);
  color: #fff8e8;
}

/* Ambient background — navy base + blue/purple aurora */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 75% 55% at 50% -5%, rgba(30, 27, 75, 0.55) 0%, transparent 58%),
    radial-gradient(ellipse 62% 52% at 78% 52%, rgba(109, 40, 217, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 55% 48% at 18% 68%, rgba(37, 99, 235, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 28% 42%, transparent 16%, rgba(99, 102, 241, 0.1) 20%, rgba(139, 92, 246, 0.16) 24%, transparent 34%),
    radial-gradient(ellipse 48% 42% at 8% 18%, rgba(59, 130, 246, 0.16) 0%, transparent 52%),
    radial-gradient(ellipse 40% 36% at 92% 82%, rgba(76, 29, 149, 0.14) 0%, transparent 54%),
    radial-gradient(900px 600px at 88% -5%, rgba(246, 196, 83, 0.05), transparent 55%),
    linear-gradient(165deg, #030610 0%, #060a1a 28%, #0a0e24 52%, #080c1c 78%, #040710 100%);
  animation: bg-base-drift 48s ease-in-out infinite;
  transform-origin: 50% 40%;
}

.site-aura {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.site-aura::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(125deg, rgba(6, 10, 32, 0.55) 0%, rgba(46, 16, 101, 0.2) 42%, rgba(15, 23, 52, 0.45) 100%);
  animation: aura-mesh-flow 32s ease-in-out infinite;
}

.site-aura::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(30, 58, 138, 0.12) 0%, transparent 55%);
  animation: aura-floor-glow 24s ease-in-out infinite;
}

.site-aura__ring {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.site-aura__ring--1 {
  width: min(92vw, 820px);
  height: min(92vw, 820px);
  left: 28%;
  top: 42%;
  border: 1px solid rgba(129, 140, 248, 0.28);
  box-shadow:
    0 0 100px rgba(109, 40, 217, 0.14),
    inset 0 0 90px rgba(59, 130, 246, 0.08);
  background: radial-gradient(circle, rgba(109, 40, 217, 0.1) 0%, rgba(37, 99, 235, 0.04) 45%, transparent 55%);
  animation: aura-ring-breathe 20s ease-in-out infinite, aura-ring-drift-1 28s ease-in-out infinite;
}

.site-aura__ring--2 {
  width: min(68vw, 580px);
  height: min(68vw, 580px);
  left: 24%;
  top: 48%;
  border: 1px solid rgba(167, 139, 250, 0.32);
  box-shadow:
    0 0 70px rgba(139, 92, 246, 0.18),
    inset 0 0 80px rgba(76, 29, 149, 0.08);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(109, 40, 217, 0.05) 42%, transparent 50%);
  animation: aura-ring-breathe 16s ease-in-out infinite reverse, aura-ring-drift-2 22s ease-in-out infinite;
}

.site-aura__ring--3 {
  width: min(48vw, 400px);
  height: min(48vw, 400px);
  left: 22%;
  top: 50%;
  border: 1px solid rgba(96, 165, 250, 0.35);
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.2);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(99, 102, 241, 0.06) 40%, transparent 48%);
  animation: aura-ring-breathe 12s ease-in-out infinite, aura-ring-drift-3 18s ease-in-out infinite reverse;
}

.site-aura__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.72;
  will-change: transform, opacity;
}

.site-aura__orb--cyan {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  left: 8%;
  top: 14%;
  background: rgba(37, 99, 235, 0.28);
  animation: aura-orb-drift-1 22s ease-in-out infinite;
}

.site-aura__orb--violet {
  width: min(45vw, 380px);
  height: min(45vw, 380px);
  left: 82%;
  top: 78%;
  background: rgba(109, 40, 217, 0.26);
  animation: aura-orb-drift-2 26s ease-in-out infinite reverse;
}

.site-aura__orb--indigo {
  width: min(70vw, 620px);
  height: min(70vw, 620px);
  left: 55%;
  top: 105%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(30, 58, 138, 0.28) 0%, rgba(76, 29, 149, 0.12) 45%, transparent 70%);
  opacity: 0.5;
  animation: aura-orb-indigo 22s ease-in-out infinite;
}

.site-aura__pulse {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.site-aura__pulse--top {
  width: min(60vw, 520px);
  height: min(60vw, 520px);
  left: 42%;
  top: -8%;
  background: rgba(76, 29, 149, 0.16);
  animation: aura-pulse-top 34s ease-in-out infinite;
}

.site-aura__pulse--mid {
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  left: -5%;
  top: 55%;
  background: rgba(37, 99, 235, 0.12);
  animation: aura-pulse-mid 28s ease-in-out infinite reverse;
}

@keyframes aura-ring-breathe {
  0%, 100% { opacity: 0.88; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.18); }
}

@keyframes aura-ring-drift-1 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(calc(-50% + 26px), calc(-50% - 18px)) scale(1.05); }
}

@keyframes aura-ring-drift-2 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(calc(-50% - 20px), calc(-50% + 24px)) scale(1.07); }
}

@keyframes aura-ring-drift-3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(calc(-50% + 16px), calc(-50% + 16px)) scale(0.94); }
}

@keyframes aura-orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.62; }
  50% { transform: translate(48px, -36px) scale(1.12); opacity: 0.82; }
}

@keyframes aura-orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.58; }
  50% { transform: translate(-42px, 32px) scale(1.1); opacity: 0.78; }
}

@keyframes aura-orb-indigo {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.48; }
  50% { transform: translate(calc(-50% + 32px), calc(-50% - 40px)) scale(1.1); opacity: 0.65; }
}

@keyframes aura-mesh-flow {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.82; }
  50% { transform: scale(1.06) rotate(2deg); opacity: 1; }
}

@keyframes aura-floor-glow {
  0%, 100% { opacity: 0.65; transform: translateY(0); }
  50% { opacity: 0.95; transform: translateY(-24px); }
}

@keyframes aura-pulse-top {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.52; }
  50% { transform: translate(32px, 24px) scale(1.15); opacity: 0.78; }
}

@keyframes aura-pulse-mid {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.48; }
  50% { transform: translate(28px, -32px) scale(1.12); opacity: 0.72; }
}

@keyframes bg-base-drift {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    filter: brightness(1) saturate(1);
  }
  33% {
    transform: scale(1.025) translate(1.2%, -0.8%);
    filter: brightness(1.04) saturate(1.06);
  }
  66% {
    transform: scale(1.015) translate(-0.8%, 0.6%);
    filter: brightness(1.02) saturate(1.03);
  }
}

@media (max-width: 760px) {
  .site-aura__ring--1 { left: 32%; top: 28%; opacity: 0.75; }
  .site-aura__ring--2 { left: 28%; top: 32%; opacity: 0.7; }
  .site-aura__ring--3 { left: 26%; top: 34%; opacity: 0.65; }
}

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
  .site-aura__ring,
  .site-aura__orb,
  .site-aura__pulse,
  .site-aura::before,
  .site-aura::after { animation: none; }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.12; margin: 0 0 .4em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(44px, 6vw, 72px) 0; }
.section__eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__lead { color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.2rem); max-width: 720px; }
.section__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 36px;
}
.section__top h2 { margin-bottom: 0; }
.section__top-cta { flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: .95rem;
  padding: 13px 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #14110a;
  box-shadow: 0 8px 26px var(--gold-glow);
}
.btn--primary:hover { box-shadow: 0 12px 32px rgba(246, 196, 83, 0.5); }
.btn--ghost { background: rgba(255,255,255,.03); border-color: var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: rgba(246, 196, 83, 0.45); color: var(--gold); }
.btn--wa { background: var(--wa); color: #04210f; box-shadow: 0 16px 40px -18px rgba(37, 211, 102, 0.6); }
.btn--calendly {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #14110a;
  box-shadow: 0 8px 26px var(--gold-glow);
}
.btn--calendly:hover { color: #14110a; box-shadow: 0 12px 32px rgba(246, 196, 83, 0.5); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(5, 8, 22, 0.52);
  border-bottom: 1px solid rgba(99, 102, 241, 0.06);
  transform: translateY(-100%);
  animation: nav-slide-in 0.7s var(--ease) 2s forwards;
}

@keyframes nav-slide-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .nav { animation: none; transform: none; }
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #14110a; display: grid; place-items: center; font-weight: 800; font-size: .95rem;
  box-shadow: 0 6px 20px var(--gold-glow);
}
.brand small { display: block; color: var(--muted-2); font-family: 'Inter', sans-serif; font-weight: 500; font-size: .68rem; letter-spacing: .04em; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a { padding: 9px 14px; border-radius: 999px; color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .2s, background .2s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); background: rgba(255,255,255,.05); }
.nav__links a.nav__cta,
.nav__links a.nav__cta:hover {
  color: #14110a;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  box-shadow: 0 6px 20px var(--gold-glow);
}
.nav__cta { margin-left: 8px; padding: 10px 18px; }
.nav__toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: 9px; width: 42px; height: 42px; color: var(--ink); cursor: pointer; }
.nav__toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: -68px;
  padding: calc(68px + clamp(56px, 10vw, 120px)) 0 clamp(52px, 8vw, 96px);
  overflow: visible;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -80% -8% -25%;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(30, 27, 75, 0.28) 0%, rgba(14, 12, 32, 0.14) 22%, rgba(6, 8, 20, 0.04) 40%, transparent 58%),
    radial-gradient(ellipse 78% 72% at 94% 12%, rgba(3, 4, 9, 0.82) 0%, rgba(10, 11, 18, 0.62) 34%, rgba(16, 14, 28, 0.42) 50%, rgba(28, 20, 52, 0.24) 64%, rgba(55, 28, 105, 0.12) 78%, rgba(76, 29, 149, 0.05) 88%, transparent 98%),
    radial-gradient(ellipse 50% 45% at 20% 60%, rgba(37, 99, 235, 0.1) 0%, transparent 52%),
    linear-gradient(135deg, rgba(6, 10, 32, 0.22) 0%, rgba(76, 29, 149, 0.05) 50%, transparent 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Sora', sans-serif; font-size: .75rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.hero__kicker span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.hero h1 { margin-bottom: 18px; }
.hero h1 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--gold), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__stack { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin-bottom: 30px; }
.hero__stack b { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin-left: auto;
  overflow: visible;
}
.hero__portrait-btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: inherit;
}
.hero__portrait-btn:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}
.hero__portrait-btn img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 58%;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}
.hero__portrait-btn:hover img,
.hero__portrait-btn:focus-visible img {
  transform: scale(1.02) translateY(-2px);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 20px rgba(111, 224, 255, 0.18));
}
.hero__portrait::before {
  content: "";
  position: absolute;
  inset: -64% -78% -54% -52%;
  z-index: 0;
  border-radius: 50% / 58%;
  transform: translate(5%, -10%);
  background:
    radial-gradient(
      ellipse 128% 178% at 54% 8%,
      rgba(3, 4, 8, 0.82) 0%,
      rgba(6, 7, 12, 0.72) 36%,
      rgba(9, 10, 16, 0.52) 54%,
      rgba(13, 12, 22, 0.32) 68%,
      rgba(18, 15, 30, 0.16) 82%,
      rgba(26, 19, 46, 0.07) 90%,
      rgba(40, 22, 78, 0.03) 96%,
      transparent 100%
    ),
    linear-gradient(to top, rgba(2, 3, 7, 0.62) 0%, rgba(3, 4, 9, 0.4) 38%, rgba(4, 5, 10, 0.16) 62%, rgba(4, 5, 10, 0.05) 78%, transparent 88%),
    linear-gradient(225deg, rgba(2, 3, 7, 0.28) 0%, rgba(3, 4, 9, 0.1) 28%, transparent 52%);
  filter: blur(48px);
  pointer-events: none;
}
.hero__portrait::after {
  content: "";
  position: absolute;
  inset: -70% -84% -58% -56%;
  z-index: -1;
  border-radius: 50% / 60%;
  transform: translate(6%, -12%);
  background:
    radial-gradient(
      ellipse 132% 172% at 56% 6%,
      rgba(40, 18, 78, 0.09) 0%,
      rgba(76, 29, 149, 0.05) 48%,
      rgba(55, 48, 163, 0.03) 66%,
      rgba(30, 27, 75, 0.015) 80%,
      transparent 98%
    );
  filter: blur(72px);
  pointer-events: none;
}

/* Portrait frame — v1 = fade at neck, v2 = bust with smooth base */
.portrait-frame {
  position: relative;
  isolation: isolate;
}
.portrait-frame__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(111, 224, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.12),
    0 0 48px rgba(109, 40, 217, 0.22),
    inset 0 0 40px rgba(76, 29, 149, 0.16);
  pointer-events: none;
  z-index: 2;
}
.portrait-frame__bg {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(109, 40, 217, 0.34) 0%, rgba(30, 27, 75, 0.55) 42%, rgba(5, 8, 22, 0.98) 78%);
  pointer-events: none;
  z-index: 0;
}
.portrait-frame__media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.portrait-frame__media img {
  width: 86%;
  height: 86%;
  object-fit: cover;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.55));
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}
.portrait-frame--v1 .portrait-frame__media img {
  object-position: center 24%;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0, 0, 0, 0.55) 78%, transparent 92%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0, 0, 0, 0.55) 78%, transparent 92%);
}
.portrait-frame--v2 {
  aspect-ratio: 4 / 5;
  max-width: 420px;
}
.portrait-frame--v2 .portrait-frame__ring,
.portrait-frame--v2 .portrait-frame__bg {
  border-radius: 46% / 44%;
}
.hero__portrait.portrait-frame--v2 .portrait-frame__bg {
  inset: 2%;
  background:
    radial-gradient(ellipse 62% 48% at 50% 22%, rgba(2, 3, 8, 0.97) 0%, rgba(5, 7, 16, 0.92) 36%, rgba(12, 10, 28, 0.72) 58%, rgba(3, 5, 12, 0.98) 84%);
}
.hero__portrait.portrait-frame--v2 .portrait-frame__ring {
  border-color: rgba(111, 224, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.08),
    0 0 36px rgba(109, 40, 217, 0.14),
    inset 0 0 32px rgba(4, 6, 14, 0.55);
}
.portrait-frame--v2 .portrait-frame__media {
  overflow: hidden;
  border-radius: 46% / 44%;
}
.hero__portrait.portrait-frame--v2 .portrait-frame__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 68% 52% at 50% 18%, rgba(1, 2, 6, 0.5) 0%, rgba(2, 3, 8, 0.22) 48%, transparent 76%);
  pointer-events: none;
  z-index: 2;
}
.portrait-frame--v2 .portrait-frame__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  -webkit-mask-image: none;
  mask-image: none;
  position: relative;
  z-index: 1;
}
.hero__portrait.portrait-frame--v2 .hero__portrait-btn:hover img,
.hero__portrait.portrait-frame--v2 .hero__portrait-btn:focus-visible img {
  transform: scale(1.015);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 24px rgba(111, 224, 255, 0.22));
}
.hero__portrait.portrait-frame--v2::after { display: none; }
.hero__portrait.portrait-frame--v1 .hero__portrait-btn:hover img,
.hero__portrait.portrait-frame--v1 .hero__portrait-btn:focus-visible img {
  transform: scale(1.02) translateY(-2px);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 24px rgba(111, 224, 255, 0.22));
}
.hero__portrait.portrait-frame--v1::after,
.hero__portrait.portrait-frame--v2::after { display: none; }

/* ---------- Trust bar ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.trust__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 52px);
  padding: 22px 0;
}
.trust__label {
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2); font-family: 'Sora', sans-serif; font-weight: 600;
  white-space: nowrap;
}
.trust__slider {
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.trust__track {
  display: flex;
  width: max-content;
  animation: trust-marquee 42s linear infinite;
}
.trust__track:hover { animation-play-state: paused; }
.trust__group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding-right: clamp(28px, 4vw, 56px);
  flex-shrink: 0;
  min-height: 32px;
}
.trust__group img {
  display: block;
  width: clamp(72px, 10vw, 104px);
  height: 28px;
  object-fit: contain;
  object-position: center;
  opacity: .62;
  filter: brightness(0) invert(1);
  transition: opacity .25s var(--ease);
}
.trust__group img:hover { opacity: 1; }
.trust__text {
  display: flex;
  align-items: center;
  height: 28px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(.82rem, 1.35vw, .98rem);
  line-height: 1;
  color: var(--muted);
  letter-spacing: .01em;
  opacity: .8;
  white-space: nowrap;
  transition: color .2s, opacity .2s;
}
.trust__text:hover { color: var(--ink); opacity: 1; }
@keyframes trust-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust__track { animation: none; flex-wrap: wrap; width: auto; }
  .trust__slider { mask-image: none; -webkit-mask-image: none; overflow: visible; }
  .trust__group:last-child { display: none; }
}

/* ---------- Positioning ---------- */
.position { text-align: center; }
.position h2 { max-width: 900px; margin: 0 auto; }
.position h2 b { color: var(--gold); font-weight: 700; }
.position__branches {
  margin-top: clamp(72px, 10vw, 112px);
  padding-top: clamp(56px, 8vw, 80px);
  padding-bottom: clamp(56px, 8vw, 80px);
  border-top: 1px solid rgba(99, 102, 241, 0.12);
  text-align: center;
}
.position__branches-heading {
  color: var(--gold);
  font-family: 'Sora', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.chips-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.chips-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 18px;
  color: var(--muted-2);
  font-family: 'Sora', sans-serif;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.chips-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.chips-legend__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chips-legend__dot--branch {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(246, 196, 83, 0.45);
}
.chips-legend__dot--interest {
  background: rgba(147, 170, 230, 0.95);
  box-shadow: 0 0 8px rgba(120, 150, 210, 0.35);
}
.chips--center { justify-content: center; max-width: 760px; margin: 0 auto; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background:
    linear-gradient(165deg, rgba(12, 16, 32, 0.95) 0%, rgba(8, 11, 24, 0.98) 100%);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: var(--radius);
  padding: 26px 24px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, 0.28); box-shadow: 0 30px 80px -40px rgba(30, 27, 75, 0.65); }
a.card { display: block; color: inherit; }
a.card:hover .card__link { gap: 10px; }
.card__num { font-family: 'Sora', sans-serif; font-weight: 700; font-size: .8rem; color: var(--gold); letter-spacing: .1em; }
.card__ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(246,196,83,.1); border: 1px solid rgba(246,196,83,.18); color: var(--gold); }
.card__ico svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; margin: 0 0 14px; }
.card ul { margin: 0; padding: 0; list-style: none; }
.card ul li { color: var(--muted); font-size: .9rem; padding: 4px 0 4px 20px; position: relative; }
.card ul li::before { content: ""; position: absolute; left: 2px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600; font-size: .9rem; font-family: 'Sora', sans-serif; margin-top: 6px; }
.card__link:hover { gap: 10px; }

/* ---------- Service tiles (compact LP links) ---------- */
.services-more { padding-top: 0; }
.grid--tiles {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.service-tile {
  display: block;
  padding: 16px 18px;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(99, 102, 241, 0.1);
  background: linear-gradient(165deg, rgba(12, 16, 32, 0.82) 0%, rgba(8, 11, 24, 0.9) 100%);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.service-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow: 0 16px 40px -28px rgba(30, 27, 75, 0.55);
}
.service-tile h3 {
  font-size: .98rem;
  margin: 0 0 6px;
  line-height: 1.35;
}
.service-tile p {
  margin: 0;
  color: var(--muted-2);
  font-size: .84rem;
  line-height: 1.45;
}

/* ---------- Problems ---------- */
.problems__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.problem {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.02); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 20px;
}
.problem__x { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; background: rgba(255,90,90,.12); color: #ff9a9a; font-weight: 700; }
.problem p { margin: 0; color: var(--muted); font-size: .96rem; }
.problem b { color: var(--ink); display: block; font-family: 'Sora', sans-serif; font-weight: 600; font-size: .98rem; margin-bottom: 2px; }

/* ---------- Profile radar chart ---------- */
.profile-web-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

/* ---------- Time · Money · Quality triangle ---------- */
.triangle-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.triangle-section__steps {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: tri-step;
}
.triangle-section__steps li {
  counter-increment: tri-step;
  position: relative;
  padding: 14px 16px 14px 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}
.triangle-section__steps li::before {
  content: counter(tri-step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(246, 196, 83, 0.12);
  border: 1px solid rgba(246, 196, 83, 0.25);
}
.triangle-section__steps li b {
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}

.triangle-viz {
  position: relative;
  padding: clamp(12px, 2vw, 20px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(90% 70% at 50% 40%, rgba(155, 140, 255, 0.12), transparent 60%),
    linear-gradient(165deg, rgba(18, 16, 28, 0.96), rgba(10, 12, 18, 0.92));
  box-shadow: var(--shadow);
}
.triangle-viz__chart {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.triangle-viz__svg {
  display: block;
  width: 100%;
}
.triangle-viz__shape {
  filter: drop-shadow(0 0 12px rgba(111, 224, 255, 0.25));
  transition: points 0.35s var(--ease);
}
.triangle-viz__fill {
  transition: points 0.35s var(--ease);
}
.triangle-viz.is-dragging .triangle-viz__shape,
.triangle-viz.is-dragging .triangle-viz__fill,
.triangle-viz.is-dragging .triangle-viz__spoke,
.triangle-viz.is-dragging .triangle-viz__corner,
.triangle-viz.is-dragging .triangle-viz__handle {
  transition: none;
}
.triangle-viz__spoke {
  transition: x2 0.35s var(--ease), y2 0.35s var(--ease);
}
.triangle-viz__corner {
  transition: x 0.35s var(--ease), y 0.35s var(--ease), fill 0.25s var(--ease);
}
.triangle-viz__drag-hint {
  margin: 10px 0 0;
  text-align: center;
  font-size: .72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}
.triangle-viz__handle {
  cursor: grab;
  outline: none;
  transition: transform 0.35s var(--ease);
}
.triangle-viz__handle:active,
.triangle-viz.is-dragging .triangle-viz__handle {
  cursor: grabbing;
}
.triangle-viz__handle-hit {
  fill: transparent;
}
.triangle-viz__handle-dot {
  fill: #050814;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 2;
  transition: stroke 0.25s var(--ease), filter 0.25s var(--ease), transform 0.25s var(--ease);
}
.triangle-viz__handle--quality.is-active .triangle-viz__handle-dot,
.triangle-viz__handle--quality:focus-visible .triangle-viz__handle-dot {
  stroke: var(--gold);
  filter: drop-shadow(0 0 10px rgba(246, 196, 83, 0.65));
}
.triangle-viz__handle--time.is-active .triangle-viz__handle-dot,
.triangle-viz__handle--time:focus-visible .triangle-viz__handle-dot {
  stroke: #6fe0ff;
  filter: drop-shadow(0 0 10px rgba(111, 224, 255, 0.65));
}
.triangle-viz__handle--money.is-active .triangle-viz__handle-dot,
.triangle-viz__handle--money:focus-visible .triangle-viz__handle-dot {
  stroke: #9b8cff;
  filter: drop-shadow(0 0 10px rgba(155, 140, 255, 0.65));
}
.triangle-viz.is-dragging .triangle-viz__core {
  animation: none;
}
.triangle-viz__core-label {
  fill: var(--gold);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.triangle-viz__core-sub {
  fill: rgba(255, 255, 255, 0.45);
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.triangle-viz__corner {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: rgba(255, 255, 255, 0.42);
  transition: fill 0.25s var(--ease), filter 0.25s var(--ease);
}
.triangle-viz__corner.is-active.triangle-viz__corner--quality { fill: rgba(246, 196, 83, 0.78); }
.triangle-viz__corner.is-active.triangle-viz__corner--time { fill: rgba(111, 224, 255, 0.72); }
.triangle-viz__corner.is-active.triangle-viz__corner--money { fill: rgba(155, 140, 255, 0.72); }
.triangle-viz__corner.is-primary.triangle-viz__corner--quality {
  fill: var(--gold);
  filter: drop-shadow(0 0 8px rgba(246, 196, 83, 0.55));
}
.triangle-viz__corner.is-primary.triangle-viz__corner--time {
  fill: #6fe0ff;
  filter: drop-shadow(0 0 8px rgba(111, 224, 255, 0.5));
}
.triangle-viz__corner.is-primary.triangle-viz__corner--money {
  fill: #9b8cff;
  filter: drop-shadow(0 0 8px rgba(155, 140, 255, 0.5));
}
.triangle-viz__spoke.is-active { stroke: rgba(255, 255, 255, 0.14); }
.triangle-viz__spoke.is-primary { stroke-width: 1.5; }
.triangle-viz__spoke.is-primary[data-spoke="quality"] { stroke: rgba(246, 196, 83, 0.45); }
.triangle-viz__spoke.is-primary[data-spoke="time"] { stroke: rgba(111, 224, 255, 0.42); }
.triangle-viz__spoke.is-primary[data-spoke="money"] { stroke: rgba(155, 140, 255, 0.42); }
.triangle-viz__spoke.is-active:not(.is-primary)[data-spoke="quality"] { stroke: rgba(246, 196, 83, 0.22); }
.triangle-viz__spoke.is-active:not(.is-primary)[data-spoke="time"] { stroke: rgba(111, 224, 255, 0.2); }
.triangle-viz__spoke.is-active:not(.is-primary)[data-spoke="money"] { stroke: rgba(155, 140, 255, 0.2); }
.triangle-viz__handle.is-active:not(.is-primary) .triangle-viz__handle-dot {
  stroke-width: 2;
}
.triangle-viz__handle--quality.is-active:not(.is-primary) .triangle-viz__handle-dot {
  stroke: rgba(246, 196, 83, 0.55);
  filter: drop-shadow(0 0 6px rgba(246, 196, 83, 0.35));
}
.triangle-viz__handle--time.is-active:not(.is-primary) .triangle-viz__handle-dot {
  stroke: rgba(111, 224, 255, 0.5);
  filter: drop-shadow(0 0 6px rgba(111, 224, 255, 0.3));
}
.triangle-viz__handle--money.is-active:not(.is-primary) .triangle-viz__handle-dot {
  stroke: rgba(155, 140, 255, 0.5);
  filter: drop-shadow(0 0 6px rgba(155, 140, 255, 0.3));
}
.triangle-viz__core {
  animation: triangle-core-pulse 3s ease-in-out infinite;
}
@keyframes triangle-core-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(246, 196, 83, 0.25)); }
  50% { filter: drop-shadow(0 0 16px rgba(246, 196, 83, 0.45)); }
}

.triangle-viz__hint {
  margin: 8px 0 0;
  padding: 12px 14px;
  text-align: center;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 3.2em;
  transition: color 0.25s var(--ease);
}
.triangle-viz[data-active="quality"] .triangle-viz__hint { color: rgba(246, 196, 83, 0.9); }
.triangle-viz[data-active="time"] .triangle-viz__hint { color: rgba(111, 224, 255, 0.88); }
.triangle-viz[data-active="money"] .triangle-viz__hint { color: rgba(155, 140, 255, 0.88); }

.triangle-viz__pairs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.triangle-viz__pairs span {
  font-size: .68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .triangle-viz__core { animation: none; }
  .triangle-viz__shape,
  .triangle-viz__fill,
  .triangle-viz__spoke,
  .triangle-viz__corner,
  .triangle-viz__handle { transition: none; }
}

.profile-web {
  position: relative;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(120, 90, 160, 0.18), transparent 55%),
    radial-gradient(90% 70% at 100% 100%, rgba(60, 120, 90, 0.12), transparent 50%),
    linear-gradient(165deg, rgba(18, 16, 28, 0.96), rgba(10, 12, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(14px, 2.5vw, 22px);
  box-shadow:
    0 24px 60px -30px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  overflow: hidden;
}
.profile-web.is-ready { opacity: 1; transform: none; }
.profile-web__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.profile-web__tab {
  flex: 1;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Sora', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.profile-web__tab:hover { color: rgba(255, 255, 255, 0.85); }
.profile-web__tab.is-active {
  background: rgba(246, 196, 83, 0.16);
  color: var(--gold-soft);
}
.profile-web__notes {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}
.profile-web__notes p {
  margin: 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.profile-web__notes b { color: var(--ink); }
.profile-web__chart-wrap {
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
}
.profile-web__svg { display: block; width: 100%; height: auto; max-width: 520px; margin: 0 auto; }
.profile-radar__bg { stroke: rgba(255, 255, 255, 0.06); stroke-width: 1; }
.profile-radar__ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
}
.profile-radar__spoke {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}
.profile-radar__tick {
  font-family: 'Lora', Georgia, serif;
  font-size: 10px;
  font-weight: 600;
  fill: rgba(255, 255, 255, 0.55);
}
.profile-radar__vertex {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 0.5;
}
.profile-radar__polygon {
  fill: var(--radar-fill, rgba(74, 168, 255, 0.38));
  stroke: var(--radar-stroke, var(--blue));
  stroke-width: 1.5;
  stroke-linejoin: round;
  transition: opacity .3s var(--ease), filter .3s var(--ease);
}
.profile-radar__polygon.is-dimmed { opacity: 0.28; }
.profile-radar__polygon.is-highlight { opacity: 1; filter: saturate(1.15); }
.profile-radar__polygon--animate {
  transform-origin: center;
  animation: profile-radar-in 1s var(--ease) both;
}
.profile-radar__polygon--animate:nth-child(2) { animation-delay: .08s; }
.profile-radar__polygon--animate:nth-child(3) { animation-delay: .16s; }
.profile-radar__point {
  fill: var(--point-color, var(--blue));
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.5;
  transition: r .2s var(--ease);
}
.profile-radar__point.is-active { stroke-width: 2; }
.profile-radar__axis { cursor: pointer; outline: none; }
.profile-radar__axis-hit { fill: transparent; stroke: none; pointer-events: all; }
.profile-radar__axis-marker {
  fill: var(--marker-color, var(--gold));
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 0.5;
  pointer-events: none;
}
.profile-radar__axis-label {
  font-family: 'Lora', Georgia, serif;
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  fill: rgba(255, 255, 255, 0.78);
  pointer-events: none;
  transition: fill .2s var(--ease);
}
.profile-radar__axis.is-active .profile-radar__axis-label { fill: #fff; font-weight: 600; font-style: normal; }
.profile-web__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}
.profile-web__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Lora', Georgia, serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color .2s var(--ease);
}
.profile-web__legend-item.is-active { color: #fff; }
.profile-web__legend-swatch {
  width: 10px;
  height: 10px;
  background: var(--swatch, var(--gold));
  transform: rotate(30deg);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 8px color-mix(in srgb, var(--swatch, var(--gold)) 55%, transparent);
}
@keyframes profile-radar-in {
  from { opacity: 0; transform: scale(0.86); }
  to { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .profile-radar__polygon--animate { animation: none; }
}

/* ---------- About + Stack ---------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.about__photo {
  max-width: 100%;
  margin: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}
.about__photo img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}
.about__photo.portrait-frame--v2 .portrait-frame__media {
  overflow: hidden;
  border-radius: 46% / 44%;
}
.about__photo.portrait-frame--v2 .portrait-frame__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  -webkit-mask-image: none;
  mask-image: none;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}
.about p { color: var(--muted); }
.about p b { color: var(--ink); }
.stackgroup { margin-top: 26px; }
.stackgroup h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 12px; font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-family: 'Sora', sans-serif; font-size: .82rem; font-weight: 500; padding: 6px 13px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.02); color: var(--muted); }
.chip--hot { border-color: rgba(246,196,83,.45); color: var(--gold); background: rgba(246,196,83,.08); }
.chip--branch { border-color: rgba(246,196,83,.4); color: rgba(255, 224, 150, 0.95); background: rgba(246,196,83,.1); }
.chip--interest { border-color: rgba(160,180,220,.35); color: rgba(210,220,245,.92); background: rgba(120,150,210,.08); }

/* ---------- Contact / CTA band ---------- */
.contact { position: relative; }
.contact__card {
  background:
    linear-gradient(135deg, rgba(16, 21, 40, 0.98) 0%, rgba(10, 14, 28, 0.98) 55%, rgba(12, 10, 32, 0.96) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 22px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 30px 80px -40px rgba(30, 27, 75, 0.7);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 4vw, 48px); align-items: center;
}
.contact__card h2 { margin-bottom: 10px; }
.contact__card p { color: var(--muted); margin-bottom: 0; }
.contact__actions { display: flex; flex-direction: column; gap: 12px; }
.contact__actions .btn { justify-content: center; }
.contact__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; color: var(--muted); font-size: .92rem; }
.contact__meta a { color: var(--muted); }
.contact__meta a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(99, 102, 241, 0.12);
  background: linear-gradient(180deg, rgba(8, 11, 24, 0.98) 0%, rgba(4, 7, 16, 1) 100%);
  padding: clamp(48px, 6vw, 72px) 0 34px;
}
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr .9fr; gap: 34px; }
.footer__brand .brand { margin-bottom: 14px; }
.footer__brand p { color: var(--muted); font-size: .92rem; max-width: 300px; }
.footer h4 { font-family: 'Sora', sans-serif; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 9px; }
.footer ul li a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.footer ul li a:hover { color: var(--ink); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; margin-top: clamp(36px, 5vw, 52px); padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .85rem; }
.footer__lang { flex-shrink: 0; }
.footer__bottom a { color: var(--muted-2); }
.footer__bottom a:hover { color: var(--muted); }

/* ---------- Landing page extras ---------- */
.lp-hero { padding: clamp(56px, 8vw, 96px) 0 clamp(36px, 5vw, 56px); }
.lp-hero .breadcrumbs { font-size: .82rem; color: var(--muted-2); margin-bottom: 18px; font-family: 'Sora', sans-serif; }
.lp-hero .breadcrumbs a:hover { color: var(--gold-soft); }
.lp-hero h1 { max-width: 900px; }
.lp-hero h1 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--gold), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-hero .section__lead { margin-top: 8px; margin-bottom: 26px; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); }
.checklist li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }
.checklist li b { color: var(--ink); }
.checklist--warn li svg { color: #ff9a9a; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.panel {
  background: linear-gradient(165deg, rgba(12, 16, 32, 0.92) 0%, rgba(8, 11, 24, 0.96) 100%);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
}
.related { display: flex; flex-wrap: wrap; gap: 10px; }
.related a { font-family: 'Sora', sans-serif; font-size: .88rem; font-weight: 500; padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,.02); transition: all .2s; }
.related a:hover { border-color: var(--gold); color: var(--gold-soft); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__portrait { max-width: 360px; margin: 0 auto; order: -1; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--tiles { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .profile-web-section__grid { grid-template-columns: 1fr; }
  .triangle-section__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 240px; margin: 0 auto; }
  .about__photo img { max-width: 100%; }
  .contact__card { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__links { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(9, 11, 17, 0.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px; transform: translateY(-120%); transition: transform .35s var(--ease); }
  .nav__links.is-open { transform: none; }
  .nav__links a { padding: 13px 14px; }
  .nav__cta { margin: 6px 0 0; }
  .nav__toggle { display: grid; place-items: center; }
  .grid--4, .grid--3, .grid--2, .grid--tiles, .problems__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .trust__inner { grid-template-columns: 1fr; gap: 14px; }
}
