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

@import url('https://fonts.googleapis.com/css2?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');

:root {
  --bg: #07080c;
  --bg-2: #0c0e15;
  --panel: #10131d;
  --panel-2: #141828;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f4f6fb;
  --muted: #a6adbe;
  --muted-2: #737b8f;
  --gold: #e8c477;
  --gold-soft: #f3dca6;
  --blue: #6aa9ff;
  --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: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 600px at 82% -8%, rgba(232, 196, 119, 0.10), transparent 60%),
    radial-gradient(900px 700px at 0% 8%, rgba(106, 169, 255, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

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: .22em; 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; }

/* ---------- 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-soft), var(--gold)); color: #1a1406; box-shadow: 0 16px 40px -18px rgba(232, 196, 119, 0.7); }
.btn--ghost { background: rgba(255,255,255,.03); border-color: var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.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-soft), var(--gold));
  color: #1a1406;
  box-shadow: 0 16px 40px -18px rgba(232, 196, 119, 0.55);
}
.btn--calendly:hover { color: #1a1406; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7, 8, 12, 0.72);
  border-bottom: 1px solid var(--line);
}
.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-soft), var(--gold));
  color: #1a1406; display: grid; place-items: center; font-weight: 800; font-size: .95rem;
}
.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: #1a1406;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}
.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; padding: clamp(56px, 10vw, 120px) 0 clamp(52px, 8vw, 96px); }
.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: 9px;
  font-family: 'Sora', sans-serif; font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(232,196,119,.05); margin-bottom: 22px;
}
.hero__kicker span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--gold-soft); }
.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; }
.hero__portrait-btn {
  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 img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 40px 80px rgba(0,0,0,.6)); transition: transform .35s var(--ease), filter .35s var(--ease); }
.hero__portrait-btn:hover img,
.hero__portrait-btn:focus-visible img {
  transform: scale(1.02) translateY(-2px);
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.6)) drop-shadow(0 0 24px rgba(111, 224, 255, 0.25));
}
.hero__portrait::after {
  content: ""; position: absolute; inset: 6% 6% 0; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(232,196,119,.22), transparent 62%);
  filter: blur(10px);
}

/* ---------- 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;
}
.trust__group img {
  height: clamp(20px, 2.4vw, 27px);
  width: auto;
  opacity: .62;
  filter: brightness(0) invert(1);
  transition: opacity .25s var(--ease);
}
.trust__group img:hover { opacity: 1; }
.trust__text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  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-soft); font-weight: 700; }
.position__branches { margin-top: clamp(28px, 4vw, 40px); }
.position__branches-heading {
  color: var(--gold-soft);
  font-family: 'Sora', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.position__branches-group + .position__branches-group { margin-top: 22px; }
.position__branches-label {
  color: var(--muted-2);
  font-family: 'Sora', sans-serif;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.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(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); 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: var(--line-strong); box-shadow: var(--shadow); }
.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(232,196,119,.09); border: 1px solid var(--line); color: var(--gold-soft); }
.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-soft); font-weight: 600; font-size: .9rem; font-family: 'Sora', sans-serif; margin-top: 6px; }
.card__link:hover { gap: 10px; }

/* ---------- 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(232, 196, 119, 0.12);
  border: 1px solid rgba(232, 196, 119, 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__svg {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.triangle-viz__shape {
  filter: drop-shadow(0 0 12px rgba(111, 224, 255, 0.25));
}
.triangle-viz__core-label {
  fill: var(--gold-soft);
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  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: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.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(243, 220, 166, 0.25)); }
  50% { filter: drop-shadow(0 0 16px rgba(243, 220, 166, 0.45)); }
}

.triangle-viz__nodes {
  position: absolute;
  inset: clamp(12px, 2vw, 20px);
  pointer-events: none;
}
.triangle-viz__node {
  position: absolute;
  left: var(--node-x);
  top: var(--node-y);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.25s var(--ease);
}
.triangle-viz__node:hover { transform: translate(-50%, -50%) scale(1.05); }
.triangle-viz__node-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: var(--bg);
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.triangle-viz__node-label {
  font-family: 'Sora', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s var(--ease);
  white-space: nowrap;
}
.triangle-viz__node--quality.is-active .triangle-viz__node-dot {
  border-color: #f3dca6;
  box-shadow: 0 0 20px rgba(243, 220, 166, 0.55);
}
.triangle-viz__node--quality.is-active .triangle-viz__node-label { color: #f3dca6; }
.triangle-viz__node--time.is-active .triangle-viz__node-dot {
  border-color: #6fe0ff;
  box-shadow: 0 0 20px rgba(111, 224, 255, 0.55);
}
.triangle-viz__node--time.is-active .triangle-viz__node-label { color: #6fe0ff; }
.triangle-viz__node--money.is-active .triangle-viz__node-dot {
  border-color: #9b8cff;
  box-shadow: 0 0 20px rgba(155, 140, 255, 0.55);
}
.triangle-viz__node--money.is-active .triangle-viz__node-label { color: #9b8cff; }
.triangle-viz__node.is-active .triangle-viz__node-dot { transform: scale(1.15); }

.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(243, 220, 166, 0.88); }
.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; }
}

.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(232, 196, 119, 0.16);
  color: #f3dca6;
}
.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: .9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.about__photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel-2), var(--bg)); }
.about__photo img { width: 100%; display: block; }
.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(232,196,119,.4); color: var(--gold-soft); background: rgba(232,196,119,.06); }
.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, var(--panel-2), var(--bg-2));
  border: 1px solid var(--line-strong); border-radius: 22px;
  padding: clamp(32px, 5vw, 56px); box-shadow: var(--shadow);
  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-soft); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); 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 .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(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); 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); }
  .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: 420px; }
  .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, .problems__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .trust__inner { grid-template-columns: 1fr; gap: 14px; }
}
