/* ===========================================================
   FLY FLUENT — Landing Page premium "Dark Luxury · Ouro & Prata"
   =========================================================== */

:root {
  /* Surfaces (near-black, warm-neutral) */
  --bg:    #0E1116;
  --bg-2:  #141922;
  --bg-3:  #1C222C;
  --bg-4:  #232B37;
  --footer-bg: #090B0F;

  /* Text */
  --ink:      #F4F0E7;   /* warm ivory */
  --ink-soft: #DCD7CB;
  --muted:    #9BA1AC;   /* silver-gray */
  --muted-2:  #6C7280;

  /* Lines */
  --line:   rgba(244,240,231,0.10);
  --line-2: rgba(244,240,231,0.20);

  /* Gold (primary accent) */
  --gold:        #C9A24B;
  --gold-bright: #E2C57A;
  --gold-deep:   #A6802F;
  --gold-soft:   rgba(201,162,75,0.14);
  --gold-tint:   rgba(201,162,75,0.09);

  /* Silver (secondary accent) — mapped onto old --teal names */
  --teal:        #AEB4BE;
  --teal-bright: #C9CED7;
  --teal-tint:   rgba(199,206,215,0.10);

  /* legacy aliases kept so existing rules resolve */
  --paper:   var(--bg);
  --paper-2: var(--bg-2);
  --paper-3: var(--bg-3);
  --amber:        var(--gold);
  --amber-bright: var(--gold-bright);
  --amber-soft:   var(--gold-deep);
  --amber-tint:   var(--gold-soft);
  --dark:    var(--bg);
  --dark-2:  var(--bg-2);
  --on-dark:        var(--ink);
  --on-dark-muted:  var(--muted);
  --on-dark-line:   var(--line);

  /* Type */
  --display: 'Schibsted Grotesk', system-ui, sans-serif;
  --body:    'Hanken Grotesk', system-ui, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --section-y: clamp(76px, 10vw, 150px);
  --radius:    18px;
  --radius-sm: 11px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* ambient depth */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 60% at 85% -5%, rgba(201,162,75,0.10), transparent 55%),
    radial-gradient(90% 50% at 5% 0%, rgba(199,206,215,0.05), transparent 50%);
}
#root { position: relative; z-index: 1; }

img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 700; line-height: 1.04;
  letter-spacing: -0.022em; margin: 0; text-wrap: balance; color: var(--ink);
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #14181f; }

/* ---------- layout helpers ---------- */
.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }
.container-wide { width: min(1360px, 100% - 40px); margin-inline: auto; }
.container-narrow { width: min(860px, 100% - 48px); margin-inline: auto; }

.section { padding-block: var(--section-y); position: relative; }
.section-dark { background: var(--bg-2); }
.section-paper2 { background: var(--bg-2); }

.eyebrow {
  font-family: var(--body); font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: linear-gradient(90deg, var(--gold), transparent); display: inline-block; }

.section-head { max-width: 760px; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-title { font-size: clamp(31px, 4.2vw, 54px); }
.section-sub { margin-top: 20px; font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 620px; }

.amber-mark, .gold-mark { color: var(--gold-bright); font-style: italic; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--body); font-weight: 600; font-size: 16px; border: none; cursor: pointer;
  border-radius: 999px; padding: 15px 26px; display: inline-flex; align-items: center; gap: 10px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease; line-height: 1; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #15110a; font-weight: 700;
  box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 14px 30px -12px rgba(201,162,75,.55), 0 0 0 0 rgba(226,197,122,.55);
  animation: btn-glow 3.4s ease-in-out infinite;
}
.btn-primary::after { content: ""; position: absolute; top: 0; bottom: 0; left: -40%; width: 35%; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%); transform: skewX(-22deg); animation: btn-shimmer 3.4s ease-in-out infinite; pointer-events: none; }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 20px 40px -14px rgba(201,162,75,.85), 0 0 0 6px rgba(226,197,122,.18); animation-play-state: paused; }
.btn-primary:hover::after { animation-play-state: paused; }
@keyframes btn-shimmer { 0% { left: -45%; } 60%, 100% { left: 140%; } }
@keyframes btn-glow { 0%, 100% { box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 14px 30px -12px rgba(201,162,75,.55), 0 0 0 0 rgba(226,197,122,.0); } 60% { box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 18px 36px -12px rgba(201,162,75,.75), 0 0 0 8px rgba(226,197,122,.10); } }
@media (prefers-reduced-motion: reduce) { .btn-primary, .btn-primary::after { animation: none; } }
.btn-ghost { background: rgba(244,240,231,0.02); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 14.5px; }
.btn-lg { padding: 18px 32px; font-size: 17.5px; }

.btn-link {
  font-weight: 600; color: var(--gold-bright); display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; background: none; border: none; font-family: var(--body); font-size: 17px; transition: gap .18s ease, color .18s ease;
}
.btn-link:hover { gap: 13px; color: var(--gold); }
.btn-link svg { width: 17px; height: 17px; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; transition: background .3s ease, box-shadow .3s ease, padding .3s ease; padding-block: 20px; }
.nav.scrolled { background: color-mix(in srgb, var(--bg) 78%, transparent); backdrop-filter: blur(16px) saturate(1.3); box-shadow: 0 1px 0 var(--line); padding-block: 13px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); }
.brand-name em { color: var(--gold); font-style: italic; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(28px, 5vw, 60px); padding-bottom: var(--section-y); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px; background: var(--bg-2); border: 1px solid var(--line);
  padding: 7px 7px 7px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink-soft);
  margin-bottom: 30px; white-space: nowrap; max-width: 100%;
}
.hero-pill b { color: var(--ink); font-weight: 700; }
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 4px var(--gold-soft); }
.hero-pill .tag { background: var(--gold); color: #15110a; padding: 5px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }

.hero h1 { font-size: clamp(40px, 5.7vw, 80px); letter-spacing: -0.035em; line-height: 1.0; }
.hero h1 .u { position: relative; white-space: nowrap; color: var(--gold-bright); font-style: italic; }
.hero h1 .u::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.02em; height: 0.06em; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); border-radius: 2px; }
.hero-lead { margin-top: 28px; font-size: clamp(18px, 1.7vw, 21px); color: var(--muted); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-fineprint { margin-top: 22px; font-size: 14.5px; color: var(--muted); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-fineprint .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }
.hero-fineprint b { color: var(--gold-bright); font-weight: 700; }
.hero-microproof { margin-top: 18px; font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; line-height: 1.4; }
.hero-microproof svg { width: 15px; height: 15px; color: var(--gold-bright); flex-shrink: 0; }
.hero-microproof .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .5; }

.hero-stats { display: flex; gap: clamp(20px, 3vw, 44px); margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--line); }
.stat .n { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3vw, 42px); letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.stat .n .plus { color: var(--gold); }
.stat .l { margin-top: 9px; font-size: 13.5px; color: var(--muted); line-height: 1.35; max-width: 135px; }

/* hero portrait */
.hero-portrait { position: relative; }
.hero-portrait .frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 50px 90px -40px rgba(0,0,0,.8); aspect-ratio: 4/4.7; background: var(--bg-3); border: 1px solid var(--line); }
.hero-portrait .frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(14,17,22,.55)); pointer-events: none; }
.hero-portrait .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-portrait .chip {
  position: absolute; left: -22px; bottom: 38px; z-index: 3; background: var(--bg-3); border: 1px solid var(--line-2);
  border-radius: 16px; padding: 16px 20px; box-shadow: 0 28px 50px -24px rgba(0,0,0,.8); display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.hero-portrait .chip .big { font-family: var(--display); font-weight: 700; font-size: 32px; color: var(--gold-bright); line-height: 1; letter-spacing: -0.03em; }
.hero-portrait .chip .txt { font-size: 13px; color: var(--ink-soft); line-height: 1.3; font-weight: 500; }
.hero-portrait .badge {
  position: absolute; right: 14px; top: 26px; z-index: 3; background: rgba(9,11,15,.7); backdrop-filter: blur(8px); color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 14px; padding: 11px 16px; box-shadow: 0 20px 38px -20px rgba(0,0,0,.7);
  font-size: 12.5px; font-weight: 600; display: flex; align-items: center; gap: 9px;
}
.hero-portrait .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #56d39a; box-shadow: 0 0 0 3px rgba(86,211,154,.22); }

/* ---------- credentials / logo wall ---------- */
.creds { padding-block: 46px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.creds-row { display: grid; grid-template-columns: 168px 1fr; gap: 36px; align-items: center; }
.creds-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; line-height: 1.5; }
.creds-logos { display: flex; align-items: center; flex-wrap: wrap; gap: clamp(26px, 4vw, 52px); }
.creds-logos img { height: 30px; width: auto; opacity: 0.62; transition: opacity .25s ease; filter: saturate(0); }
.creds-logos img:hover { opacity: 1; }
.creds-academic img { height: 42px; }
.cred-celta { font-family: var(--display); font-weight: 700; font-size: 21px; color: var(--silver, #C7CCD4); letter-spacing: 0.02em; opacity: .7; display: inline-flex; align-items: baseline; gap: 8px; }
.cred-celta small { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.creds-divider { height: 1px; background: var(--line); margin-block: 30px; }

.logo-marquee { position: relative; overflow: hidden; min-width: 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-marquee__track { display: flex; align-items: center; gap: clamp(40px, 5vw, 72px); width: max-content; animation: logo-marquee-scroll 32s linear infinite; }
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
.logo-marquee__item { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.logo-marquee__item img { height: 30px; width: auto; opacity: 0.62; filter: saturate(0); transition: opacity .25s ease; }
.logo-marquee__item img:hover { opacity: 1; }
@keyframes logo-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-marquee__track { animation: none; } }

/* ---------- audience switcher ---------- */
.seg { display: inline-flex; background: var(--bg-3); border-radius: 999px; padding: 5px; gap: 4px; border: 1px solid var(--line); }
.seg button { font-family: var(--body); font-weight: 600; font-size: 15px; border: none; background: none; cursor: pointer; padding: 11px 26px; border-radius: 999px; color: var(--muted); transition: all .2s ease; }
.seg button.active { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #15110a; box-shadow: 0 6px 16px -8px rgba(201,162,75,.6); }

.aud-card { margin-top: 40px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px, 4vw, 54px); display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.aud-card h3 { font-size: clamp(24px, 2.6vw, 34px); }
.aud-card .lead { margin-top: 16px; color: var(--muted); font-size: 18px; }
.aud-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.aud-points li { display: flex; gap: 13px; align-items: flex-start; font-size: 16.5px; color: var(--ink-soft); }
.aud-points li svg { width: 21px; height: 21px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }

/* ---------- fit filter ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.fit-col { border-radius: var(--radius); padding: clamp(28px, 3.4vw, 44px); }
.fit-no { background: var(--bg-2); border: 1px solid var(--line); color: var(--muted); }
.fit-yes { background: var(--bg-3); border: 1px solid var(--gold-soft); color: var(--ink); position: relative; overflow: hidden; box-shadow: 0 40px 80px -44px rgba(0,0,0,.8); }
.fit-yes::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 80% at 100% 0%, var(--gold-soft), transparent 55%); }
.fit-col h3 { font-size: clamp(20px, 2.2vw, 27px); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.fit-no h3 { color: var(--ink-soft); }
.fit-yes h3 { color: var(--ink); }
.fit-tag { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.fit-no .fit-tag { background: var(--bg-4); color: var(--muted); }
.fit-yes .fit-tag { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #15110a; }
.fit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; position: relative; z-index: 1; }
.fit-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; line-height: 1.45; }
.fit-list li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; }
.fit-no .fit-list li svg { color: var(--muted-2); }
.fit-yes .fit-list li { color: var(--ink-soft); }
.fit-yes .fit-list li svg { color: var(--gold-bright); }
.fit-yes .fit-list li b { color: var(--ink); font-weight: 700; }

/* ---------- Ryan block ---------- */
.section-dark { position: relative; overflow: hidden; }
.section-dark::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(70% 90% at 12% 10%, var(--gold-tint), transparent 55%); }
.ryan-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; z-index: 1; }
.ryan-photo { position: relative; }
.ryan-photo .frame { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 50px 100px -40px rgba(0,0,0,.85); position: relative; border: 1px solid var(--line); }
.ryan-photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.ryan-play {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 12px; cursor: pointer;
  background: rgba(9,11,15,.6); backdrop-filter: blur(10px); border: 1px solid var(--line-2); color: var(--ink);
  padding: 11px 20px 11px 12px; border-radius: 999px; font-family: var(--body); font-weight: 600; font-size: 14.5px; transition: all .2s ease; white-space: nowrap;
}
.ryan-play:hover { border-color: var(--gold); transform: translateX(-50%) translateY(-2px); }
.ryan-play .pico { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); display: grid; place-items: center; flex-shrink: 0; }
.ryan-play .pico svg { width: 14px; height: 14px; color: #15110a; margin-left: 2px; }

.ryan-copy .eyebrow { margin-bottom: 22px; }
.ryan-copy h2 { font-size: clamp(28px, 3.4vw, 44px); }
.ryan-quote { margin-top: 26px; display: grid; gap: 20px; }
.ryan-quote p { font-size: clamp(17px, 1.7vw, 19.5px); color: var(--ink-soft); line-height: 1.62; }
.ryan-quote p.lead-line { font-size: clamp(19px, 2vw, 23px); color: var(--ink); font-weight: 500; line-height: 1.45; }
.ryan-quote b { color: var(--gold-bright); font-weight: 700; }
.ryan-quote .punch { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.1vw, 25px); color: var(--ink); line-height: 1.4; letter-spacing: -0.01em; padding-left: 20px; border-left: 2px solid var(--gold); }
.ryan-credrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.ryan-credrow span { font-size: 13px; font-weight: 600; color: var(--ink-soft); border: 1px solid var(--line-2); padding: 8px 15px; border-radius: 999px; }

/* ---------- method · radial orbital ---------- */
.section-method { background: var(--bg); position: relative; overflow: hidden; }
.section-method .section-head { max-width: 720px; }
.section-method .section-lede { margin-top: 14px; color: var(--ink-soft); font-size: 15.5px; }

.orbital { position: relative; width: 100%; height: clamp(560px, 70vh, 720px); display: flex; align-items: center; justify-content: center; margin-top: 40px; }
.orbital::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, var(--gold-soft) 0%, transparent 70%); pointer-events: none; }
.orbital-stage { position: relative; width: 560px; height: 560px; max-width: 100%; perspective: 1000px; display: flex; align-items: center; justify-content: center; }

.orbital-core { position: absolute; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep)); display: grid; place-items: center; z-index: 10; box-shadow: 0 0 40px var(--gold-soft); animation: orbital-pulse 2.4s ease-in-out infinite; }
.orbital-core__inner { width: 32px; height: 32px; border-radius: 50%; background: rgba(244,240,231,.85); backdrop-filter: blur(4px); }
.orbital-core__ping { position: absolute; border-radius: 50%; border: 1px solid var(--line-2); animation: orbital-ping 1.6s cubic-bezier(0,0,.2,1) infinite; opacity: .7; }
.orbital-core__ping--1 { width: 80px; height: 80px; }
.orbital-core__ping--2 { width: 96px; height: 96px; animation-delay: .5s; opacity: .5; }

.orbital-track { position: absolute; width: 400px; height: 400px; border-radius: 50%; border: 1px dashed var(--line-2); }

.orbital-node { position: absolute; left: 50%; top: 50%; margin-left: -20px; margin-top: -20px; cursor: pointer; transition: transform .7s cubic-bezier(.2,.7,.3,1), opacity .5s ease; }
.orbital-node__halo { position: absolute; inset: -16px; border-radius: 50%; background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%); width: 72px; height: 72px; pointer-events: none; }
.orbital-node.is-related .orbital-node__halo { animation: orbital-pulse 1.2s ease-in-out infinite; background: radial-gradient(circle, rgba(244,240,231,.18) 0%, transparent 70%); }
.orbital-node__dot { position: relative; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-2); color: var(--ink); border: 2px solid var(--line-2); transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease; }
.orbital-node__dot svg { width: 16px; height: 16px; }
.orbital-node.is-related .orbital-node__dot { background: rgba(244,240,231,.55); color: #14181f; border-color: var(--ink-soft); }
.orbital-node.is-active .orbital-node__dot { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #15110a; border-color: var(--gold-bright); transform: scale(1.5); box-shadow: 0 0 30px var(--gold-soft); }
.orbital-node__title { position: absolute; top: 52px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-family: var(--display); font-weight: 700; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); transition: color .3s ease, transform .3s ease; }
.orbital-node.is-active .orbital-node__title { color: var(--gold-bright); transform: translateX(-50%) scale(1.18); top: 60px; }

.orbital-card { position: absolute; top: 90px; left: 50%; transform: translateX(-50%); width: clamp(280px, 22vw, 340px); background: rgba(14,17,22,0.92); backdrop-filter: blur(12px); border: 1px solid var(--line-2); border-radius: 14px; padding: 20px 22px; box-shadow: 0 30px 60px -28px rgba(0,0,0,.7), 0 0 30px var(--gold-soft); z-index: 300; }
.orbital-card__stem { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 1px; height: 14px; background: var(--gold); }
.orbital-card__head { display: flex; justify-content: space-between; align-items: center; }
.orbital-card__step { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; background: var(--gold-tint); border: 1px solid var(--gold-soft); color: var(--gold-bright); font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.orbital-card__id { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; color: var(--muted-2); }
.orbital-card__title { margin-top: 12px; font-family: var(--display); font-weight: 700; font-size: 17px; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); }
.orbital-card__body { margin-top: 8px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.orbital-card__hi { margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: var(--gold-tint); border: 1px solid var(--gold-soft); display: flex; gap: 10px; align-items: flex-start; }
.orbital-card__hi svg { width: 16px; height: 16px; color: var(--gold-bright); flex-shrink: 0; margin-top: 2px; }
.orbital-card__hi span { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.orbital-card__energy { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.orbital-card__energy .lab { display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: var(--muted); }
.orbital-card__energy .lab span { display: inline-flex; align-items: center; gap: 5px; }
.orbital-card__energy .lab svg { width: 11px; height: 11px; }
.orbital-card__energy .lab .val { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--ink-soft); }
.orbital-card__energy .bar { margin-top: 6px; height: 3px; background: var(--line); border-radius: 999px; overflow: hidden; }
.orbital-card__energy .bar > div { height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); border-radius: 999px; transition: width .6s ease; }
.orbital-card__rel { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.orbital-card__rel .lab { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 8px; }
.orbital-card__rel .chips { display: flex; flex-wrap: wrap; gap: 6px; }
.orbital-card__rel .chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; font-size: 11.5px; color: var(--ink-soft); background: transparent; border: 1px solid var(--line-2); border-radius: 0; cursor: pointer; transition: all .25s ease; font-family: var(--display); font-weight: 600; }
.orbital-card__rel .chip:hover { background: rgba(244,240,231,.06); color: var(--ink); border-color: var(--gold); }
.orbital-card__rel .chip svg { width: 10px; height: 10px; color: var(--muted); }

@keyframes orbital-pulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }
@keyframes orbital-ping { 75%,100% { transform: scale(1.8); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .orbital-core, .orbital-core__ping, .orbital-node.is-related .orbital-node__halo { animation: none; }
}
@media (max-width: 720px) {
  .orbital { height: 460px; }
  .orbital-stage { transform: scale(.72); transform-origin: center center; }
  .orbital-card { width: 260px; padding: 16px 18px; }
}

/* ---------- Bruno case (about-style layout with video) ---------- */
.section-bruno { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); padding-block: clamp(80px, 9vw, 140px); }
.section-bruno .bruno-bg { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.bruno-bg--a { top: 8%; left: -6%; width: 360px; height: 360px; background: var(--gold-soft); animation: bruno-float-a 14s ease-in-out infinite; }
.bruno-bg--b { bottom: 6%; right: -6%; width: 420px; height: 420px; background: rgba(199, 204, 212, 0.06); animation: bruno-float-b 18s ease-in-out infinite; }
.bruno-dot { position: absolute; border-radius: 50%; pointer-events: none; }
.bruno-dot--a { top: 28%; left: 18%; width: 10px; height: 10px; background: rgba(201,162,75,.45); animation: bruno-pulse 3s ease-in-out infinite; }
.bruno-dot--b { bottom: 24%; right: 22%; width: 14px; height: 14px; background: rgba(199,204,212,.35); animation: bruno-pulse 4s ease-in-out infinite 1s; }

.bruno-wrap { position: relative; z-index: 1; max-width: 1180px; }

.bruno-intro { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: clamp(48px, 6vw, 72px); }
.bruno-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-bright); font-family: var(--display); font-weight: 700; font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; }
.bruno-kicker svg { width: 14px; height: 14px; }
.bruno-h2 { font-family: var(--display); font-weight: 300; font-size: clamp(34px, 4.5vw, 56px); line-height: 1.08; letter-spacing: -0.025em; margin: 14px 0 18px; max-width: 820px; }
.bruno-h2 em { font-style: italic; font-weight: 500; color: var(--gold-bright); }
.bruno-rule { display: block; width: 96px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin-bottom: 22px; }
.bruno-lede { max-width: 640px; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }

.bruno-grid { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: clamp(32px, 4vw, 56px); align-items: start; }

.bruno-col { display: flex; flex-direction: column; gap: clamp(36px, 4vw, 56px); }

.bruno-feat { display: flex; flex-direction: column; transition: transform .3s ease; }
.bruno-feat:hover { transform: translateY(-4px); }
.bruno-feat__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.bruno-feat__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold-bright); border: 1px solid var(--line); transition: background .25s ease, transform .4s ease; }
.bruno-feat:hover .bruno-feat__icon { background: var(--gold-tint); transform: rotate(-6deg); }
.bruno-feat__icon svg { width: 22px; height: 22px; }
.bruno-feat__title { font-family: var(--display); font-weight: 600; font-size: 19px; color: var(--ink); transition: color .25s ease; }
.bruno-feat:hover .bruno-feat__title { color: var(--gold-bright); }
.bruno-feat__text { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; padding-left: 56px; }
.bruno-feat--right .bruno-feat__head { flex-direction: row; }

.bruno-center { display: flex; flex-direction: column; align-items: center; gap: 28px; padding-top: 8px; }
.bruno-video { position: relative; width: 100%; max-width: 360px; }
.bruno-video__frame { position: relative; border-radius: 12px; overflow: hidden; background: #000; box-shadow: 0 30px 60px -25px rgba(0,0,0,0.7), 0 0 0 1px var(--line-2); aspect-ratio: 9 / 16; }
.bruno-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.bruno-video__ring { position: absolute; inset: -12px; border: 2px solid var(--gold); border-radius: 16px; z-index: -1; opacity: .65; }
.bruno-video__blob { position: absolute; border-radius: 50%; pointer-events: none; }
.bruno-video__blob--a { top: -22px; right: -34px; width: 72px; height: 72px; background: var(--gold-soft); }
.bruno-video__blob--b { bottom: -26px; left: -42px; width: 88px; height: 88px; background: rgba(199,204,212,.10); }
.bruno-video__pip { position: absolute; left: 50%; transform: translateX(-50%); border-radius: 50%; }
.bruno-video__pip--top { top: -28px; width: 10px; height: 10px; background: var(--gold); animation: bruno-pip 2s ease-in-out infinite; }
.bruno-video__pip--bot { bottom: -34px; width: 8px; height: 8px; background: var(--ink-soft); opacity: .6; animation: bruno-pip 2.2s ease-in-out infinite .4s; }

.bruno-person--center { display: flex; align-items: center; gap: 14px; }
.bruno-person--center .av { width: 52px; height: 52px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--gold-bright); }
.bruno-person--center .meta .nm { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink); }
.bruno-person--center .meta .rl { font-size: 13.5px; color: var(--muted); }

.bruno-stats { margin-top: clamp(64px, 7vw, 96px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.bruno-stat { background: rgba(244,240,231,0.025); backdrop-filter: blur(6px); border: 1px solid var(--line); border-radius: 14px; padding: clamp(22px, 2.5vw, 30px) 20px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.bruno-stat:hover { transform: translateY(-4px); background: rgba(244,240,231,0.04); border-color: var(--line-2); }
.bruno-stat__value { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 3.5vw, 46px); line-height: 1; letter-spacing: -0.03em; color: var(--gold-bright); }
.bruno-stat__label { margin-top: 10px; font-size: 13px; color: var(--muted); line-height: 1.45; max-width: 200px; }
.bruno-stat__rule { width: 36px; height: 2px; background: var(--gold); margin-top: 14px; transition: width .3s ease; }
.bruno-stat:hover .bruno-stat__rule { width: 60px; }

.bruno-cta-card { margin-top: clamp(56px, 6vw, 80px); display: flex; flex-direction: column; gap: 22px; align-items: center; justify-content: space-between; background: linear-gradient(135deg, var(--bg-3), var(--bg-4)); border: 1px solid var(--line-2); border-radius: 18px; padding: clamp(28px, 3.5vw, 40px) clamp(28px, 4vw, 48px); position: relative; overflow: hidden; }
.bruno-cta-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 100% 0%, var(--gold-soft), transparent 55%); pointer-events: none; }
.bruno-cta-card__copy { position: relative; z-index: 1; text-align: center; }
.bruno-cta-card__copy h3 { font-family: var(--display); font-weight: 600; font-size: clamp(22px, 2.4vw, 28px); color: var(--ink); margin-bottom: 6px; }
.bruno-cta-card__copy p { color: var(--ink-soft); font-size: 15.5px; }
.bruno-cta-card .btn { position: relative; z-index: 1; }

@keyframes bruno-float-a { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px, -24px); } }
@keyframes bruno-float-b { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-26px, 18px); } }
@keyframes bruno-pulse { 0%,100% { opacity: .35; transform: scale(1); } 50% { opacity: 1; transform: scale(1.25); } }
@keyframes bruno-pip { 0%,100% { transform: translate(-50%, 0); opacity: .5; } 50% { transform: translate(-50%, -8px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .bruno-bg--a, .bruno-bg--b, .bruno-dot--a, .bruno-dot--b, .bruno-video__pip { animation: none; }
}

@media (min-width: 900px) {
  .bruno-cta-card { flex-direction: row; text-align: left; }
  .bruno-cta-card__copy { text-align: left; }
}

/* ---------- testimonials ---------- */
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.tcard { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; cursor: pointer; }
.tcard:hover { transform: translateY(-4px); box-shadow: 0 30px 56px -30px rgba(0,0,0,.7); border-color: var(--line-2); }
.tcard .thumb { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; overflow: hidden; }
.tcard .thumb .play { width: 56px; height: 56px; border-radius: 50%; background: rgba(9,11,15,.45); backdrop-filter: blur(6px); border: 1px solid var(--line-2); display: grid; place-items: center; transition: all .25s ease; z-index: 2; }
.tcard:hover .thumb .play { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); border-color: transparent; transform: scale(1.06); }
.tcard .thumb .play svg { width: 18px; height: 18px; color: var(--ink); margin-left: 2px; }
.tcard:hover .thumb .play svg { color: #15110a; }
.tcard .body { padding: 22px 24px 26px; }
.tcard .quote { font-size: 16.5px; color: var(--ink-soft); line-height: 1.5; font-weight: 500; }
.tcard .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.tcard .who .nm { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink); }
.tcard .who .rl { font-size: 13px; color: var(--muted); }

.section-testimonials { background: var(--bg-2); padding-block: clamp(80px, 9vw, 130px); }
.section-testimonials .section-lede { margin-top: 14px; color: var(--ink-soft); font-size: 16.5px; line-height: 1.55; max-width: 640px; margin-inline: auto; }
.thumb--yt { aspect-ratio: 9 / 16; background: #000; }
.thumb--yt img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .25s ease; }
.tcard:hover .thumb--yt img { transform: scale(1.04); filter: brightness(.9); }
.thumb--yt .thumb__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,17,22,.05) 0%, rgba(14,17,22,.55) 100%); z-index: 1; pointer-events: none; }
.thumb--yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.thumb--yt.is-active { cursor: default; }

/* ---------- comparison ---------- */
.cmp { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-2); }
.cmp-col { padding: clamp(26px, 3vw, 38px); border-right: 1px solid var(--line); }
.cmp-col:last-child { border-right: none; }
.cmp-col.win { background: var(--bg-3); position: relative; }
.cmp-col .cmp-tag { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.cmp-col.win .cmp-tag { color: var(--gold-bright); }
.cmp-col h3 { font-size: clamp(20px, 2.2vw, 25px); margin-top: 14px; }
.cmp-feat { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.cmp-feat li { display: flex; gap: 12px; font-size: 15.5px; align-items: flex-start; line-height: 1.45; color: var(--muted); }
.cmp-feat li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; }
.cmp-col .cmp-feat li svg { color: var(--muted-2); }
.cmp-col.win .cmp-feat li { color: var(--ink-soft); }
.cmp-col.win .cmp-feat li svg { color: var(--gold-bright); }
.cmp-badge { position: absolute; top: 0; right: 0; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #15110a; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 7px 14px; border-bottom-left-radius: 12px; }

/* --- compare slider (before/after) --- */
.cmp-slider { position: relative; width: 100%; max-width: 1100px; margin-inline: auto; aspect-ratio: 16 / 9; min-height: 420px; border-radius: var(--radius); overflow: hidden; user-select: none; box-shadow: 0 30px 60px -28px rgba(0,0,0,.7); border: 1px solid var(--line); cursor: ew-resize; touch-action: none; }
.cmp-pane { position: absolute; inset: 0; display: flex; align-items: center; padding: clamp(28px, 4vw, 56px); }
.cmp-pane--others { background: linear-gradient(135deg, var(--bg-2), var(--bg-3)); justify-content: flex-start; }
.cmp-pane--us { background: linear-gradient(135deg, #1A1410 0%, #221A0E 100%); justify-content: flex-end; }
.cmp-pane--us::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 100% 50%, var(--gold-soft), transparent 70%); pointer-events: none; }
.cmp-pane__inner { position: relative; max-width: 440px; width: 100%; pointer-events: none; }
.cmp-pane--others .cmp-pane__inner { color: var(--muted); }
.cmp-pane--us .cmp-pane__inner { color: var(--ink); margin-left: auto; }
.cmp-pane h3 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; margin-top: 12px; letter-spacing: -0.02em; }
.cmp-pane--others h3 { color: var(--ink-soft); }
.cmp-pane--us h3 { color: var(--ink); }
.cmp-pane ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.cmp-pane li { display: flex; gap: 12px; font-size: 15px; line-height: 1.5; align-items: flex-start; }
.cmp-pane li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.cmp-pane--others li svg { color: var(--muted-2); }
.cmp-pane--us li svg { color: var(--gold-bright); }
.cmp-tag--others { color: var(--muted-2); }
.cmp-tag--us { color: var(--gold-bright); }
.cmp-tag { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.cmp-handle { position: absolute; top: 0; bottom: 0; width: 2px; cursor: ew-resize; z-index: 10; }
.cmp-handle__line { position: absolute; top: 0; bottom: 0; left: 0; width: 2px; background: linear-gradient(180deg, transparent, var(--gold-bright) 8%, var(--gold) 50%, var(--gold-bright) 92%, transparent); box-shadow: 0 0 18px var(--gold-soft); }
.cmp-handle__knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #15110a; display: grid; place-items: center; box-shadow: 0 10px 28px -8px rgba(0,0,0,.6), 0 0 0 4px rgba(14,17,22,.85), 0 0 30px var(--gold-soft); transition: transform .2s ease, box-shadow .2s ease; cursor: ew-resize; }
.cmp-handle:hover .cmp-handle__knob, .cmp-handle.is-dragging .cmp-handle__knob { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 14px 36px -8px rgba(0,0,0,.7), 0 0 0 4px rgba(14,17,22,.85), 0 0 42px var(--gold-soft); }
.cmp-handle__knob svg { color: #15110a; }
.cmp-handle:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

@media (max-width: 760px) {
  .cmp-slider { aspect-ratio: auto; min-height: 540px; }
  .cmp-pane { padding: 24px; }
  .cmp-pane__inner { max-width: 100%; }
  .cmp-pane h3 { font-size: 20px; }
  .cmp-pane li { font-size: 14px; }
  .cmp-handle__knob { width: 44px; height: 44px; }
}

/* ---------- pillars (features-8 layout) ---------- */
.section-pillars { background: var(--bg); }
.section-pillars .section-head { max-width: 720px; }
.section-pillars .section-lede { margin-top: 14px; color: var(--ink-soft); font-size: 15.5px; }

.pgrid { margin-top: 48px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.pcard { grid-column: span 2; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: relative; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -32px rgba(0,0,0,.7); border-color: var(--line-2); }
.pcard--wide { grid-column: span 6; }
.pcard__inner { padding: 28px 26px 30px; display: flex; flex-direction: column; align-items: center; text-align: center; min-height: 100%; }
.pcard h3 { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--ink); margin-top: 18px; letter-spacing: -0.01em; line-height: 1.25; }
.pcard p { font-size: 14.5px; color: var(--muted); margin-top: 10px; line-height: 1.55; }

/* --- 01 big number badge --- */
.pbadge { position: relative; width: 224px; height: 96px; display: grid; place-items: center; }
.pbadge__ring { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--line-2); }
.pbadge__num { font-family: var(--display); font-weight: 700; font-size: 52px; letter-spacing: -0.04em; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* --- 02 concentric ring with icon --- */
.pring { position: relative; width: 128px; height: 128px; }
.pring__halo { position: absolute; inset: -10px; border: 1px dashed var(--line-2); border-radius: 50%; animation: pring-spin 22s linear infinite; }
.pring__core { position: absolute; inset: 0; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; background: radial-gradient(70% 70% at 50% 35%, var(--gold-tint), transparent 70%); }
.pring__core svg { width: 36px; height: 36px; color: var(--gold-bright); }
@keyframes pring-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .pring__halo { animation: none; } }

/* --- 03 sparkline --- */
.pspark { width: 100%; max-width: 220px; height: 96px; }

/* --- 04 wide pillar — feedback panel --- */
.pcard__inner--split { padding: 32px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: stretch; text-align: left; }
.pwide-copy { display: flex; flex-direction: column; justify-content: center; }
.pwide-icon { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--gold-bright); background: radial-gradient(60% 60% at 50% 50%, var(--gold-tint), transparent 80%); position: relative; }
.pwide-icon::before { content: ""; position: absolute; inset: -8px; border: 1px solid var(--line); border-radius: 50%; }
.pwide-icon svg { width: 22px; height: 22px; }
.pwide-copy h3 { margin-top: 28px; font-size: 22px; }
.pwide-copy p { font-size: 15.5px; color: var(--ink-soft); margin-top: 12px; line-height: 1.55; max-width: 360px; }

.pfeedback { position: relative; background: linear-gradient(180deg, rgba(244,240,231,0.02), rgba(244,240,231,0.04)); border-left: 1px solid var(--line); border-top: 1px solid var(--line); border-radius: 12px 0 0 0; padding: 18px 18px 14px; display: flex; flex-direction: column; gap: 10px; }
.pfeedback::before { content: ""; position: absolute; top: 8px; left: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); box-shadow: 10px 0 0 var(--line-2), 20px 0 0 var(--line-2); }
.pfb { display: flex; gap: 10px; align-items: center; padding: 9px 12px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; }
.pfb__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--muted-2); flex-shrink: 0; }
.pfb__dot--ok { background: var(--gold-bright); box-shadow: 0 0 8px var(--gold-soft); }
.pfb__dot--warn { background: #C99878; }
.pfb__label { font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }
.pfb__label i { color: var(--gold-bright); font-style: italic; }
.pfb__after { display: flex; align-items: center; gap: 8px; margin-top: 6px; padding-top: 10px; border-top: 1px dashed var(--line); }
.pfb__avatar { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #15110a; font-family: var(--display); font-weight: 700; font-size: 11px; display: grid; place-items: center; }
.pfb__sent { font-size: 11.5px; color: var(--muted-2); letter-spacing: .02em; }

@media (max-width: 900px) {
  .pgrid { grid-template-columns: 1fr 1fr; }
  .pcard { grid-column: span 1; }
  .pcard--wide { grid-column: span 2; }
  .pcard__inner--split { grid-template-columns: 1fr; gap: 24px; }
  .pfeedback { border-radius: 12px; border-left: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .pgrid { grid-template-columns: 1fr; }
  .pcard, .pcard--wide { grid-column: span 1; }
}

/* ---------- content pillars ("O que você vai trabalhar") ---------- */
.section-content-pillars { background: var(--bg); position: relative; }
.section-content-pillars .section-head { max-width: 760px; }
.section-content-pillars .section-lede { margin-top: 14px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; max-width: 640px; margin-inline: auto; }
.cp-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cp-card { display: flex; flex-direction: column; background: linear-gradient(180deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px 24px; position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.cp-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 100% 0%, var(--gold-tint), transparent 55%); opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.cp-card:hover { transform: translateY(-5px); box-shadow: 0 34px 64px -34px rgba(0,0,0,.75); border-color: var(--line-2); }
.cp-card:hover::before { opacity: 1; }
.cp-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cp-num { font-family: var(--display); font-weight: 700; font-size: 42px; line-height: 1; letter-spacing: -0.04em; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cp-icon { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--line); color: var(--gold-bright); flex-shrink: 0; }
.cp-icon svg { width: 20px; height: 20px; }
.cp-title { font-family: var(--display); font-weight: 600; font-size: 19px; color: var(--ink); letter-spacing: -0.01em; line-height: 1.25; }
.cp-text { font-size: 14.5px; color: var(--muted); margin-top: 10px; line-height: 1.55; flex-grow: 1; }
.cp-week { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line-2); display: flex; flex-direction: column; gap: 4px; }
.cp-week__lbl { font-family: var(--display); font-weight: 700; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.cp-week__txt { font-size: 14px; color: var(--ink-soft); font-style: italic; line-height: 1.45; }
@media (max-width: 900px) { .cp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cp-grid { grid-template-columns: 1fr; } }

/* ---------- Bruno pull-quote ---------- */
.bruno-pull { position: relative; z-index: 1; max-width: 820px; margin: clamp(40px, 5vw, 64px) auto; text-align: center; padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 56px); }
.bruno-pull::before, .bruno-pull::after { content: ""; display: block; width: 120px; height: 1px; margin: 0 auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.bruno-pull blockquote { font-family: var(--display); font-style: italic; font-weight: 300; font-size: clamp(21px, 2.8vw, 28px); line-height: 1.4; letter-spacing: -0.01em; color: var(--ink); margin: 26px 0; position: relative; }
.bruno-pull blockquote::before { content: "\201C"; color: var(--gold-bright); font-size: 1.4em; line-height: 0; vertical-align: -0.35em; margin-right: 4px; }
.bruno-pull blockquote::after { content: "\201D"; color: var(--gold-bright); font-size: 1.4em; line-height: 0; vertical-align: -0.55em; margin-left: 2px; }
.bruno-pull figcaption { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: .04em; color: var(--gold-bright); margin-top: 26px; }

/* ---------- close: diagnóstico gratuito + Calendly embed ---------- */
.close-free { margin-bottom: 22px; position: relative; }
.close-free__main { font-family: var(--display); font-weight: 700; font-size: clamp(44px, 6vw, 60px); line-height: 1; letter-spacing: -0.03em; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.close-free__add { margin-top: 12px; font-size: 15px; color: var(--ink-soft); }
.close-free__sub { margin-top: 8px; font-size: 13.5px; color: var(--muted); font-style: italic; }
.close-embed { position: relative; margin: 4px 0 26px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.close-embed__widget { min-width: 320px; height: 660px; }
@media (max-width: 560px) { .close-embed__widget { height: 720px; } }

/* ---------- process ---------- */
.proc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.proc-step { position: relative; }
.proc-step .pnum { font-family: var(--display); font-weight: 700; font-size: 15px; color: #15110a; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); display: grid; place-items: center; box-shadow: 0 12px 26px -10px rgba(201,162,75,.6); }
.proc-step .pbar { position: absolute; top: 19px; left: 48px; right: -22px; height: 1px; background: var(--line-2); }
.proc-step:last-child .pbar { display: none; }
.proc-step h4 { font-size: 20px; margin-top: 22px; }
.proc-step p { font-size: 15px; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.proc-step .pmeta { margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--teal-bright); display: inline-flex; align-items: center; gap: 7px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; font-family: var(--display); font-weight: 600; font-size: clamp(18px, 2vw, 22px); color: var(--ink); text-align: left; padding: 26px 48px 26px 0; position: relative; letter-spacing: -0.01em; transition: color .2s ease; }
.faq-q:hover { color: var(--gold-bright); }
.faq-q .ic { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; transition: transform .3s ease; color: var(--gold); }
.faq-item.open .faq-q .ic { transform: translateY(-50%) rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding: 0 60px 28px 0; font-size: 17px; color: var(--muted); line-height: 1.65; }
.faq-a-inner b { color: var(--ink-soft); font-weight: 700; }

/* ---------- vacancies ---------- */
.vac { display: flex; justify-content: center; }
.vac-inner { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 16px 30px; font-size: 15.5px; color: var(--muted); justify-content: center; }
.vac-inner .vdot { width: 9px; height: 9px; border-radius: 50%; background: #56d39a; box-shadow: 0 0 0 4px rgba(86,211,154,.16); }
.vac-inner b { color: var(--ink); font-weight: 700; }
.vac-inner .hot { color: var(--gold-bright); font-weight: 700; }

/* ---------- final CTA — closing card ---------- */
.close-final { background: var(--bg-2); position: relative; overflow: hidden; padding-block: clamp(80px, 10vw, 140px); }
.close-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 100% at 50% 0%, var(--gold-soft), transparent 60%); pointer-events: none; }
.close-final::after { content: ""; position: absolute; bottom: -20%; left: -10%; width: 60%; height: 80%; background: radial-gradient(circle at center, var(--gold-tint), transparent 65%); pointer-events: none; filter: blur(60px); }

.close-card { position: relative; z-index: 1; max-width: 540px; margin-inline: auto; background: linear-gradient(180deg, var(--bg-3), var(--bg-4)); border: 1px solid var(--line-2); border-radius: 22px; padding: clamp(36px, 4.5vw, 56px) clamp(28px, 3.6vw, 48px); box-shadow: 0 60px 120px -40px rgba(0,0,0,.85), 0 0 0 1px rgba(226,197,122,.08), 0 0 60px var(--gold-soft); text-align: center; }
.close-card::before { content: ""; position: absolute; inset: 0; border-radius: 22px; background: radial-gradient(120% 80% at 50% 0%, var(--gold-tint), transparent 55%); pointer-events: none; }

.close-eyebrow { font-family: var(--display); font-size: 14.5px; color: var(--muted); margin-bottom: 18px; position: relative; }
.close-eyebrow em { font-style: italic; }

.close-title { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.6vw, 30px); color: var(--ink); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 28px; position: relative; }
.close-title svg { width: 22px; height: 22px; color: var(--gold-bright); flex-shrink: 0; }
.close-title span { max-width: 360px; }

.close-price { margin-bottom: 22px; position: relative; }
.close-price__row { display: flex; justify-content: center; align-items: baseline; gap: 14px; font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.close-price__from s { opacity: 0.6; }
.close-price__by { font-style: italic; }
.close-price__main { font-family: var(--display); font-weight: 700; font-size: clamp(48px, 6vw, 64px); line-height: 1; letter-spacing: -0.03em; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.close-price__main small { font-family: var(--display); font-weight: 500; font-size: 0.32em; color: var(--ink-soft); -webkit-text-fill-color: var(--ink-soft); letter-spacing: 0; margin-left: 8px; vertical-align: middle; }
.close-price__alt { margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); }
.close-price__alt b { color: var(--gold-bright); font-weight: 700; }

.close-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px; background: var(--gold-tint); border: 1px solid var(--gold-soft); color: var(--gold-bright); font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 26px; position: relative; }
.close-pill svg { width: 14px; height: 14px; }
.close-pill::after, .close-pill::before { content: ""; position: absolute; top: 50%; transform: translateY(-50%); width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2)); }
.close-pill::before { right: calc(100% + 12px); background: linear-gradient(90deg, transparent, var(--line-2)); }
.close-pill::after { left: calc(100% + 12px); background: linear-gradient(90deg, var(--line-2), transparent); }

.close-feats { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 12px; text-align: left; max-width: 380px; margin-inline: auto; position: relative; }
.close-feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.close-feats li svg { width: 18px; height: 18px; color: var(--gold-bright); flex-shrink: 0; margin-top: 2px; }

.close-cta { width: 100%; justify-content: center; letter-spacing: .04em; font-size: 16.5px; padding-block: 22px; position: relative; }

.close-trust { margin-top: 22px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted); position: relative; }
.close-trust span { display: inline-flex; align-items: center; gap: 6px; }
.close-trust svg { width: 14px; height: 14px; color: var(--gold); }
.close-trust .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }

@media (max-width: 600px) {
  .close-card { padding: 32px 22px; }
  .close-title { font-size: 22px; gap: 8px; }
  .close-title svg { width: 18px; height: 18px; }
  .close-price__main { font-size: 44px; }
  .close-pill::before, .close-pill::after { display: none; }
}

/* ---------- footer ---------- */
.footer { background: var(--footer-bg); color: var(--muted); padding-block: 52px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 14.5px; transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-legal { font-size: 13px; color: var(--muted-2); }

/* ---------- video modal ---------- */
.modal-back { position: fixed; inset: 0; z-index: 200; background: rgba(6,8,11,.82); backdrop-filter: blur(8px); display: grid; place-items: center; padding: 24px; opacity: 0; animation: fadein .25s forwards; }
@keyframes fadein { to { opacity: 1; } }
.modal { width: min(900px, 100%); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 60px 120px -40px rgba(0,0,0,.85); transform: translateY(14px); animation: rise .3s forwards; }
@keyframes rise { to { transform: translateY(0); } }
.modal .mvid { aspect-ratio: 16/9; position: relative; display: grid; place-items: center; }
.modal .mbar { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-top: 1px solid var(--line); }
.modal .mbar .mt { color: var(--ink); font-family: var(--display); font-weight: 700; font-size: 16px; }
.modal .mbar .ms { color: var(--muted); font-size: 13.5px; }
.modal-close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,.5); border: 1px solid var(--line-2); color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: background .2s ease; }
.modal-close:hover { background: var(--gold); color: #15110a; }
.modal-close svg { width: 18px; height: 18px; }

/* ---------- video placeholder ---------- */
.vph { position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, #1a212c 0 14px, #151b24 14px 28px); }
.vph.dark { background-image: repeating-linear-gradient(135deg, #11161e 0 14px, #0d1117 14px 28px); }
.vph-note { position: absolute; bottom: 12px; left: 12px; font-family: 'Hanken Grotesk', monospace; font-size: 11px; letter-spacing: .04em; color: var(--muted-2); background: rgba(9,11,15,.6); padding: 4px 9px; border-radius: 6px; text-transform: uppercase; font-weight: 600; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 420px; margin-inline: auto; order: -1; }
  .ryan-grid, .method-grid, .aud-card { grid-template-columns: 1fr; }
.proc { grid-template-columns: repeat(2, 1fr); gap: 36px 22px; }
  .proc-step .pbar { display: none; }
  .cmp, .tg { grid-template-columns: 1fr; }
  .cmp-col { border-right: none; border-bottom: 1px solid var(--line); }
  .creds-row { grid-template-columns: 1fr; gap: 18px; }
  .bruno-grid { grid-template-columns: 1fr; gap: 36px; }
  .bruno-center { order: -1; max-width: 380px; margin-inline: auto; }
  .bruno-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16.5px; }
  .fit-grid { grid-template-columns: 1fr; }
  .proc { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 22px; }
  .nav-cta-text { display: none; }
  .bruno-stats { grid-template-columns: 1fr; }
  .bruno-feat__text { padding-left: 0; }
}
