:root {
  --ink:#0b1118;
  --ink-soft:#151d27;
  --paper:#ffffff;
  --soft:#f3f6f8;
  --warm:#f6f4f0;
  --line:#d8e0e7;
  --muted:#5c6876;
  --blue:#1769ff;
  --blue-deep:#0b46b3;
  --green:#18a66f;
  --gold:#d89a28;
  --shadow:0 24px 70px rgba(11,17,24,.14);
  --content-max:1280px;
  font-family:"Segoe UI",Arial,Helvetica,sans-serif;
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { margin:0; overflow-x:hidden; color:var(--ink); background:var(--paper); line-height:1.55; }
body.menu-open { overflow:hidden; }
a { color:inherit; text-decoration:none; }
button,input,select,textarea { font:inherit; }
button { cursor:pointer; }
img { display:block; max-width:100%; }
svg { stroke-width:1.8; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
h1,h2,h3,p { margin-top:0; }
h1,h2,h3 { letter-spacing:0; }
h1 { font-size:5.4rem; line-height:.94; }
h2 { font-size:4.4rem; line-height:.98; }
h3 { font-size:1.45rem; line-height:1.15; }
p { color:var(--muted); }

.site-header {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
  min-height:82px;
  padding:10px max(20px,calc((100vw - var(--content-max))/2));
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.18);
  background:rgba(8,13,19,.68);
  backdrop-filter:blur(18px);
  transition:background-color 300ms ease,border-color 300ms ease,box-shadow 300ms ease;
}

.site-header.is-scrolled {
  color:var(--ink);
  background:rgba(255,255,255,.94);
  border-color:rgba(216,224,231,.88);
  box-shadow:0 8px 28px rgba(11,17,24,.06);
}

.brand { display:block; width:92px; overflow:hidden; border-radius:6px; }
.brand img { width:100%; }

.nav-menu {
  justify-self:center;
  display:flex;
  align-items:center;
  gap:26px;
  font-size:.88rem;
  font-weight:750;
}

.nav-menu a { position:relative; padding:9px 0; }
.nav-menu a::after {
  position:absolute;
  left:0;
  bottom:3px;
  width:100%;
  height:2px;
  content:"";
  background:currentColor;
  transform:scaleX(0);
  transform-origin:right;
  transition:transform 260ms cubic-bezier(.22,1,.36,1);
}
.nav-menu a:hover::after { transform:scaleX(1); transform-origin:left; }

.header-cta,.btn {
  display:inline-flex;
  min-height:50px;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:0 18px;
  border:1px solid transparent;
  border-radius:8px;
  font-weight:850;
  transition:transform 240ms cubic-bezier(.22,1,.36,1),box-shadow 240ms ease,background-color 240ms ease,color 240ms ease,border-color 240ms ease;
}

.header-cta { color:var(--ink); background:#fff; }
.site-header.is-scrolled .header-cta { color:#fff; background:var(--ink); }
.header-cta svg,.btn svg,.text-link svg { width:18px; height:18px; transition:transform 240ms ease; }
.header-cta:hover,.btn:hover { transform:translateY(-3px); }
.header-cta:hover svg,.btn:hover svg,.text-link:hover svg { transform:translateX(4px); }

.nav-toggle {
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:8px;
  color:inherit;
  background:transparent;
}
.nav-toggle svg { width:22px; margin:auto; }
.site-header.is-scrolled .nav-toggle { border-color:var(--line); }

.hero {
  position:relative;
  display:flex;
  min-height:760px;
  height:88vh;
  max-height:900px;
  align-items:flex-end;
  overflow:hidden;
  color:#fff;
  background:#111820;
}

.hero::after {
  position:absolute;
  inset:0;
  content:"";
  background:rgba(5,9,13,.58);
}

.hero-content {
  position:relative;
  z-index:2;
  width:min(calc(100% - 40px),var(--content-max));
  margin-inline:auto;
  padding:150px 0 112px;
}

.hero-kicker,.eyebrow {
  margin-bottom:18px;
  color:var(--blue);
  font-size:.76rem;
  font-weight:900;
  text-transform:uppercase;
}

.hero-kicker { color:#d9e8ff; }
.hero h1 { max-width:980px; margin-bottom:28px; color:#fff; }
.hero h1 span { color:#88afff; }
.hero-lede { max-width:650px; margin-bottom:32px; color:rgba(255,255,255,.78); font-size:1.16rem; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; }
.btn-primary { color:#fff; background:var(--blue); box-shadow:0 14px 36px rgba(23,105,255,.28); }
.btn-primary:hover { background:#0d58e7; box-shadow:0 20px 42px rgba(23,105,255,.36); }
.btn-ghost { color:#fff; border-color:rgba(255,255,255,.45); background:rgba(8,13,19,.2); }
.btn-ghost:hover { border-color:#fff; background:rgba(8,13,19,.48); }

.hero-meta {
  position:absolute;
  z-index:2;
  right:max(20px,calc((100vw - var(--content-max))/2));
  bottom:34px;
  display:flex;
  gap:22px;
  color:rgba(255,255,255,.65);
  font-size:.75rem;
  font-weight:750;
  text-transform:uppercase;
}

.scroll-cue {
  position:absolute;
  z-index:2;
  right:max(20px,calc((100vw - var(--content-max))/2));
  bottom:88px;
  display:grid;
  width:48px;
  height:48px;
  place-items:center;
  border:1px solid rgba(255,255,255,.38);
  border-radius:50%;
  transition:transform 240ms ease,background-color 240ms ease;
}
.scroll-cue:hover { transform:translateY(4px); background:rgba(255,255,255,.12); }
.scroll-cue svg { width:19px; }

.hero {
  position:relative;
  display:grid;
  min-height:900px;
  height:auto;
  max-height:none;
  align-items:start;
  overflow:hidden;
  color:#fff;
  background:#080d13;
  isolation:isolate;
}

.hero-background {
  position:absolute;
  inset:0;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 28%,rgba(23,105,255,.32),transparent 30%),
    radial-gradient(circle at 78% 18%,rgba(24,166,111,.2),transparent 24%),
    linear-gradient(135deg,#080d13 0%,#0e1824 42%,#07111a 100%);
}

.hero-background::before {
  position:absolute;
  inset:0;
  content:"";
  background:linear-gradient(90deg,rgba(8,13,19,.92) 0%,rgba(8,13,19,.5) 48%,rgba(8,13,19,.88) 100%);
}

.hero-grid {
  position:absolute;
  inset:0;
  opacity:.38;
  background-image:linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);
  background-size:68px 68px;
  mask-image:radial-gradient(circle at center,#000 0%,transparent 72%);
}

.hero-orbit {
  position:absolute;
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  animation:orbitFloat 12s ease-in-out infinite alternate;
}

.orbit-one { width:680px; height:680px; left:-110px; top:110px; }
.orbit-two { width:760px; height:760px; right:-160px; top:40px; animation-delay:-3s; }

.hero-glow {
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  filter:blur(34px);
  opacity:.36;
}

.glow-blue { left:48%; top:24%; background:#1769ff; }
.glow-green { right:11%; bottom:18%; background:#18a66f; }

@keyframes orbitFloat {
  to { transform:translate3d(0,24px,0) scale(1.03); }
}

.hero::after {
  position:absolute;
  inset:auto 0 0;
  height:220px;
  content:"";
  background:linear-gradient(0deg,#080d13 0%,rgba(8,13,19,0) 100%);
  z-index:1;
}

.hero-content {
  position:relative;
  z-index:2;
  display:grid;
  width:min(calc(100% - 40px),var(--content-max));
  margin-inline:auto;
  padding:170px 0 34px;
  grid-template-columns:minmax(0,1.02fr) minmax(360px,.72fr);
  gap:70px;
  align-items:center;
}

.hero-copy { max-width:850px; }
.hero-kicker { color:#92c1ff; letter-spacing:0; }
.hero h1 { max-width:920px; margin-bottom:28px; color:#fff; font-size:5.7rem; line-height:.92; }
.hero h1 span { color:#55d79f; }
.hero-lede { max-width:700px; margin-bottom:34px; color:rgba(255,255,255,.76); font-size:1.14rem; }

.hero-performance {
  display:grid;
  gap:14px;
  padding:18px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:8px;
  background:rgba(255,255,255,.055);
  box-shadow:0 28px 80px rgba(0,0,0,.32);
  backdrop-filter:blur(18px);
}

.performance-card {
  position:relative;
  overflow:hidden;
  min-height:118px;
  padding:18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.035));
}

.performance-card::after {
  position:absolute;
  inset:auto 18px 16px;
  height:3px;
  content:"";
  border-radius:999px;
  background:linear-gradient(90deg,#1769ff,#18a66f,#d89a28);
}

.main-card { min-height:190px; }
.card-label,.performance-card small {
  display:block;
  margin-bottom:12px;
  color:rgba(255,255,255,.55);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
}
.performance-card strong { display:block; color:#fff; font-size:1.45rem; line-height:1.08; }
.performance-card span { color:rgba(255,255,255,.62); font-size:.88rem; }

.performance-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.growth-line { position:absolute; left:18px; right:18px; bottom:34px; display:grid; grid-template-columns:repeat(4,1fr); gap:8px; align-items:end; height:58px; }
.growth-line span { display:block; border-radius:999px 999px 0 0; background:linear-gradient(180deg,#55d79f,#1769ff); }
.growth-line span:nth-child(1){height:24px}.growth-line span:nth-child(2){height:38px}.growth-line span:nth-child(3){height:46px}.growth-line span:nth-child(4){height:58px}

.hero-service-shell {
  position:relative;
  z-index:3;
  display:grid;
  width:min(calc(100% - 40px),var(--content-max));
  margin:0 auto 92px;
  gap:0;
}

.hero-service-tabs {
  display:grid;
  grid-template-columns:repeat(5,minmax(150px,1fr));
  gap:12px;
  margin-bottom:14px;
}

.hero-service-tabs button {
  min-height:66px;
  padding:10px 14px;
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  background:rgba(255,255,255,.07);
  box-shadow:0 14px 32px rgba(0,0,0,.16);
  font-size:.86rem;
  font-weight:900;
  text-transform:uppercase;
  transition:transform 220ms ease,background-color 220ms ease,border-color 220ms ease,color 220ms ease;
}

.hero-service-tabs button:hover,
.hero-service-tabs button.is-active {
  transform:translateY(-3px);
  color:#07111a;
  border-color:#55d79f;
  background:#55d79f;
}

.hero-service-panel {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:14px 34px;
  align-items:end;
  min-height:220px;
  padding:34px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  background:linear-gradient(135deg,rgba(255,255,255,.095),rgba(255,255,255,.045) 55%,rgba(24,166,111,.18));
  box-shadow:0 24px 70px rgba(0,0,0,.26);
  backdrop-filter:blur(18px);
}

.hero-service-panel .panel-kicker { grid-column:1 / -1; margin:0; color:#55d79f; font-size:.76rem; font-weight:900; text-transform:uppercase; }
.hero-service-panel h2 { max-width:820px; margin:0; color:#fff; font-size:2.28rem; line-height:1.08; }
.hero-service-panel p:not(.panel-kicker) { max-width:920px; margin:0; color:rgba(255,255,255,.72); font-size:1rem; line-height:1.75; }
.hero-service-panel a { grid-column:2; grid-row:2 / 4; display:inline-flex; align-items:center; gap:8px; justify-content:center; min-height:52px; padding:0 18px; border:1px solid rgba(255,255,255,.24); border-radius:8px; color:#fff; font-weight:850; white-space:nowrap; }
.hero-service-panel a:hover { background:#fff; color:#07111a; }
.signal-strip {
  overflow:hidden;
  padding:19px 0;
  color:#fff;
  background:var(--ink);
  border-top:1px solid rgba(255,255,255,.12);
}

.signal-track {
  display:flex;
  width:max-content;
  align-items:center;
  gap:24px;
  animation:marquee 24s linear infinite;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
}
.signal-track span { color:#fff; }
.signal-track b { color:var(--green); font-size:1rem; }
@keyframes marquee { to { transform:translateX(-50%); } }

.editorial,.services-section,.instagram-section,.method-section,.faq-section {
  padding:108px max(20px,calc((100vw - var(--content-max))/2));
}

.section-light { background:var(--warm); }

.section-label {
  display:grid;
  grid-template-columns:auto auto 1fr;
  align-items:center;
  gap:14px;
  margin-bottom:70px;
  color:#304050;
  font-size:.92rem;
  font-weight:900;
  text-transform:uppercase;
}

.section-label::after {
  display:block;
  height:1px;
  content:"";
  background:linear-gradient(90deg,rgba(23,105,255,.42),transparent);
}

.section-label span {
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
  border:1px solid rgba(23,105,255,.24);
  border-radius:50%;
  color:var(--blue);
  background:#fff;
  box-shadow:0 12px 28px rgba(23,105,255,.09);
  font-size:.82rem;
}

.section-label p { margin:0; font:inherit; color:inherit; }
.section-label.light { color:rgba(255,255,255,.78); }
.section-label.light::after { background:linear-gradient(90deg,rgba(114,224,178,.46),transparent); }
.section-label.light span { color:#72e0b2; border-color:rgba(114,224,178,.34); background:rgba(255,255,255,.06); box-shadow:none; }

.editorial-grid {
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(330px,.88fr);
  gap:9%;
  align-items:start;
}

.section-heading h2 { max-width:760px; margin:0; }
.editorial-copy { max-width:660px; padding-top:14px; }
.editorial-copy > p { font-size:1.12rem; line-height:1.75; }
.search-insight-card {
  position:relative;
  padding:32px;
  overflow:hidden;
  border:1px solid rgba(23,105,255,.16);
  border-radius:8px;
  background:linear-gradient(135deg,#ffffff 0%,#f4f8ff 48%,#eef8f3 100%);
  box-shadow:0 24px 64px rgba(11,17,24,.09);
}
.search-insight-card::before {
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  content:"";
  background:linear-gradient(180deg,var(--blue),var(--green));
}
.search-insight-card::after {
  position:absolute;
  right:-70px;
  bottom:-90px;
  width:230px;
  height:230px;
  content:"";
  border-radius:50%;
  background:rgba(24,166,111,.13);
}
.insight-tag {
  position:relative;
  z-index:1;
  display:inline-flex;
  margin-bottom:18px;
  padding:7px 10px;
  color:var(--blue);
  border:1px solid rgba(23,105,255,.18);
  border-radius:8px;
  background:#fff;
  font-size:.74rem;
  font-weight:900;
  text-transform:uppercase;
}
.search-insight-card p { position:relative; z-index:1; }
.search-insight-card .insight-lead { color:var(--ink-soft); font-size:1.18rem; font-weight:650; line-height:1.68; }
.search-chips { position:relative; z-index:1; display:flex; flex-wrap:wrap; gap:10px; margin-top:32px; }
.search-chips span {
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:38px;
  padding:8px 12px;
  border:1px solid rgba(23,105,255,.18);
  border-radius:8px;
  color:var(--ink-soft);
  background:rgba(255,255,255,.82);
  box-shadow:0 10px 24px rgba(11,17,24,.06);
  font-size:.82rem;
  font-weight:850;
}
.search-chips svg { width:15px; height:15px; color:var(--blue); }

.system-section {
  padding:108px max(20px,calc((100vw - var(--content-max))/2));
  color:#fff;
  background:var(--ink);
}

.system-intro {
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);
  gap:8%;
  align-items:end;
  padding-bottom:78px;
}

.system-intro > .eyebrow { grid-column:1 / -1; color:#72e0b2; }
.system-intro h2 { margin:0; color:#fff; font-size:6rem; }
.system-intro h2 span { color:#72e0b2; }
.system-intro > div { padding-bottom:8px; }
.system-intro > div p { color:rgba(255,255,255,.62); font-size:1.08rem; }
.text-link {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding-bottom:6px;
  color:var(--blue);
  border-bottom:1px solid currentColor;
  font-weight:850;
}
.system-intro .text-link { color:#fff; }

.system-steps { border-top:1px solid rgba(255,255,255,.18); }
.system-steps article {
  display:grid;
  grid-template-columns:70px minmax(0,1fr) auto;
  gap:28px;
  align-items:center;
  min-height:166px;
  padding:30px 0;
  border-bottom:1px solid rgba(255,255,255,.18);
  transition:padding 320ms cubic-bezier(.22,1,.36,1),background-color 320ms ease;
}
.system-steps article:hover { padding-inline:22px; background:rgba(255,255,255,.04); }
.step-number { color:#72e0b2; font-size:.74rem; font-weight:900; }
.system-steps h3 { margin:0 0 8px; color:#fff; font-size:2rem; }
.system-steps p { max-width:680px; margin:0; color:rgba(255,255,255,.56); }
.system-steps article > svg { width:34px; height:34px; color:#72e0b2; }

.services-section { background:#fff; }
.services-header {
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(300px,.6fr);
  gap:9%;
  align-items:end;
  margin-bottom:70px;
}
.services-header h2 { max-width:840px; margin:0; }
.services-header > p { margin:0; font-size:1.08rem; line-height:1.7; }
.services-summary {
  position:relative;
  align-self:stretch;
  display:flex;
  align-items:center;
  margin:0;
  padding:24px 24px 24px 28px;
  overflow:hidden;
  color:var(--ink-soft);
  border:1px solid var(--line);
  border-radius:8px;
  background:linear-gradient(135deg,#f8fbff 0%,#eef4ff 100%);
  box-shadow:0 18px 42px rgba(11,17,24,.07);
}
.services-summary::before {
  position:absolute;
  top:18px;
  bottom:18px;
  left:0;
  width:4px;
  content:"";
  border-radius:0 999px 999px 0;
  background:var(--blue);
}

.service-list { border-top:1px solid var(--line); }
.service-list article {
  display:grid;
  grid-template-columns:66px minmax(0,1fr) 54px;
  gap:28px;
  align-items:center;
  min-height:154px;
  padding:26px 0;
  border-bottom:1px solid var(--line);
  transition:padding 320ms cubic-bezier(.22,1,.36,1),background-color 320ms ease;
}
.service-list article:hover { padding-inline:22px; background:var(--soft); }
.service-index { color:var(--blue); font-size:.75rem; font-weight:900; }
.service-list h3 { margin:0 0 8px; font-size:1.8rem; }
.service-list p { max-width:760px; margin:0; }
.service-list a {
  display:grid;
  width:48px;
  height:48px;
  place-items:center;
  border:1px solid var(--line);
  border-radius:50%;
  transition:transform 260ms ease,background-color 260ms ease,color 260ms ease;
}
.service-list article:hover a { transform:rotate(45deg); color:#fff; background:var(--blue); border-color:var(--blue); }
.service-list svg { width:20px; }


.instagram-section {
  padding:108px max(20px,calc((100vw - var(--content-max))/2));
  color:#fff;
  background:
    radial-gradient(circle at 18% 20%,rgba(23,105,255,.24),transparent 28%),
    radial-gradient(circle at 82% 12%,rgba(24,166,111,.18),transparent 24%),
    linear-gradient(135deg,#0b1118 0%,#101926 50%,#08131d 100%);
}
.instagram-header {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,.58fr);
  gap:8%;
  align-items:end;
  margin-bottom:42px;
}
.instagram-header h2 { max-width:760px; margin:0; color:#fff; }
.instagram-header > p { margin:0; color:rgba(255,255,255,.68); font-size:1.08rem; line-height:1.75; }
.instagram-panel {
  display:grid;
  grid-template-columns:minmax(280px,.42fr) minmax(0,1fr);
  gap:16px;
}
.instagram-profile-card,
.instagram-post-card {
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  background:rgba(255,255,255,.07);
  box-shadow:0 24px 70px rgba(0,0,0,.24);
  backdrop-filter:blur(18px);
}
.instagram-profile-card {
  display:flex;
  min-height:360px;
  flex-direction:column;
  justify-content:space-between;
  padding:28px;
}
.instagram-profile-card::before,
.instagram-post-card::before {
  position:absolute;
  inset:0;
  content:"";
  background:linear-gradient(135deg,rgba(23,105,255,.24),rgba(24,166,111,.16),rgba(216,154,40,.16));
  opacity:.72;
  pointer-events:none;
}
.instagram-profile-card > *,
.instagram-post-card > * { position:relative; z-index:1; }
.instagram-mark {
  display:grid;
  width:54px;
  height:54px;
  place-items:center;
  color:#fff;
  border:1px solid rgba(255,255,255,.2);
  border-radius:8px;
  background:rgba(255,255,255,.12);
}
.instagram-mark svg { width:26px; height:26px; }
.profile-label { margin:0; color:#55d79f; font-weight:900; }
.instagram-profile-card strong { display:block; color:#fff; font-size:1.55rem; line-height:1.12; }
.instagram-feed-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.instagram-post-card {
  display:flex;
  min-height:172px;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px;
  transition:transform 240ms ease,border-color 240ms ease,background-color 240ms ease;
}
.instagram-post-card:hover { transform:translateY(-4px); border-color:rgba(85,215,159,.52); }
.instagram-post-card span { margin-bottom:28px; color:#55d79f; font-size:.74rem; font-weight:900; text-transform:uppercase; }
.instagram-post-card strong { margin-bottom:8px; color:#fff; font-size:1.08rem; line-height:1.2; }
.instagram-post-card p { margin:0; color:rgba(255,255,255,.64); font-size:.9rem; line-height:1.55; }
.instagram-post-card.has-image {
  min-height:0;
  padding:0;
  aspect-ratio:4 / 5;
  justify-content:flex-end;
  background:#0b1118;
}
.instagram-post-card.has-image::before {
  z-index:1;
  background:linear-gradient(180deg,rgba(8,13,19,0) 36%,rgba(8,13,19,.82) 100%);
  opacity:1;
}
.instagram-post-card.has-image img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 420ms cubic-bezier(.22,1,.36,1);
}
.instagram-post-card.has-image:hover img { transform:scale(1.045); }
.instagram-post-card.has-image span,
.instagram-post-card.has-image strong {
  margin-inline:18px;
  text-shadow:0 10px 24px rgba(0,0,0,.42);
}
.instagram-post-card.has-image span { margin-bottom:8px; }
.instagram-post-card.has-image strong { margin-bottom:18px; }
.instagram-post-card.has-media { min-height:230px; background-size:cover; background-position:center; }
.instagram-post-card.has-media::after { position:absolute; inset:0; content:""; background:linear-gradient(180deg,rgba(8,13,19,.12),rgba(8,13,19,.86)); }
.instagram-post-card.has-media > * { z-index:2; }
.method-section { overflow:hidden; background:var(--soft); }
.method-heading { max-width:900px; margin-bottom:76px; }
.method-heading h2 { margin-bottom:26px; }
.method-heading h2 span { color:var(--blue); }
.method-heading > p:last-child { max-width:620px; font-size:1.08rem; }

.timeline {
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,minmax(150px,1fr));
  border-top:1px solid #bfcad3;
}

.timeline::before {
  position:absolute;
  top:-1px;
  left:0;
  width:100%;
  height:2px;
  content:"";
  background:var(--blue);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 1.2s cubic-bezier(.22,1,.36,1);
}
.timeline.is-visible::before { transform:scaleX(1); }

.timeline article {
  min-height:300px;
  padding:36px 24px 28px 0;
  border-right:1px solid var(--line);
}
.timeline article:last-child { border-right:0; }
.timeline article > span { color:var(--blue); font-size:.76rem; font-weight:900; }
.timeline h3 { margin:70px 0 14px; }
.timeline p { margin:0; font-size:.92rem; }

.fit-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#fff;
}

.fit-panel { min-height:650px; padding:92px 6%; }
.fit-positive { background:linear-gradient(135deg,#f8fbff 0%,#eef4ff 54%,#edf8f2 100%); }
.fit-negative { color:#fff; background:linear-gradient(135deg,#0b1118 0%,#101926 58%,#07131d 100%); }
.fit-panel h2 { max-width:650px; margin-bottom:46px; font-size:3.6rem; }
.fit-negative h2 { color:#fff; }
.fit-negative .eyebrow { color:#88afff; }
.fit-panel ul { display:grid; gap:16px; margin:0; padding:0; list-style:none; }
.fit-panel li { display:flex; align-items:center; gap:12px; font-weight:750; }
.fit-panel li svg { width:20px; height:20px; color:var(--green); }
.fit-negative li { color:rgba(255,255,255,.72); }
.fit-negative li svg { color:#d89a28; }

.results-section {
  padding:108px max(20px,calc((100vw - var(--content-max))/2));
  color:#fff;
  background:#09111b;
}

.results-heading {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.55fr);
  gap:8%;
  align-items:end;
  margin-bottom:70px;
}
.results-heading .eyebrow { grid-column:1 / -1; color:#88afff; }
.results-heading h2 { margin:0; color:#fff; }
.results-heading > p:last-child { margin:0; color:rgba(255,255,255,.58); font-size:1.06rem; }

.result-grid {
  display:grid;
  grid-template-columns:repeat(5,minmax(150px,1fr));
  border-top:1px solid rgba(255,255,255,.2);
  border-bottom:1px solid rgba(255,255,255,.2);
}
.result-grid article {
  min-height:190px;
  padding:28px 22px;
  border-right:1px solid rgba(255,255,255,.16);
}
.result-grid article:last-child { border-right:0; }
.result-grid span { color:#88afff; font-size:.72rem; font-weight:900; }
.result-grid p { margin:70px 0 0; color:#fff; font-weight:800; }

.faq-section { background:var(--warm); }
.faq-layout {
  display:grid;
  grid-template-columns:minmax(300px,.7fr) minmax(0,1.3fr);
  gap:9%;
}
.faq-heading { position:sticky; top:130px; align-self:start; }
.faq-heading h2 { margin:0; font-size:5.2rem; line-height:.9; }
.cursor { display:inline-block; color:var(--blue); animation:blink 1s infinite; }
@keyframes blink { 0%,50%{opacity:1} 51%,100%{opacity:0} }

.faq-list { border-top:1px solid rgba(11,17,24,.18); }
details { border-bottom:1px solid rgba(11,17,24,.18); }
summary {
  display:grid;
  grid-template-columns:1fr 46px;
  gap:28px;
  align-items:center;
  padding:30px 0;
  color:var(--ink);
  cursor:pointer;
  list-style:none;
  font-size:1.35rem;
  font-weight:850;
}
summary::-webkit-details-marker { display:none; }
summary span {
  display:grid;
  width:44px;
  height:44px;
  place-items:center;
  border:1px solid rgba(11,17,24,.18);
  border-radius:50%;
  font-size:1.4rem;
  font-weight:400;
  transition:transform 340ms cubic-bezier(.22,1,.36,1),background-color 340ms ease,color 340ms ease;
}
details[open] summary span { transform:rotate(45deg); color:#fff; background:var(--ink); }
details > p {
  max-width:760px;
  margin:0;
  padding:0 74px 30px 0;
  line-height:1.8;
}

.contact-section {
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(420px,1.1fr);
  gap:8%;
  align-items:center;
  padding:108px max(20px,calc((100vw - var(--content-max))/2));
  color:#fff;
  background:var(--blue);
}
.contact-copy h2 { max-width:760px; margin-bottom:28px; color:#fff; }
.contact-copy > p { max-width:630px; color:rgba(255,255,255,.75); font-size:1.08rem; }
.contact-copy .eyebrow { color:#dbe8ff; }
.light-link { margin-top:16px; color:#fff; }

.contact-panel {
  display:grid;
  gap:18px;
}

.contact-form {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  padding:30px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:8px;
  background:#fff;
  box-shadow:var(--shadow);
}
label { display:grid; gap:8px; color:var(--ink); font-size:.84rem; font-weight:850; }
input,select,textarea {
  width:100%;
  min-height:50px;
  padding:0 13px;
  color:var(--ink);
  border:1px solid var(--line);
  border-radius:6px;
  background:#fff;
  transition:border-color 220ms ease,box-shadow 220ms ease;
}
textarea { min-height:130px; padding-top:13px; resize:vertical; }
input:focus,select:focus,textarea:focus { outline:0; border-color:var(--blue); box-shadow:0 0 0 4px rgba(23,105,255,.12); }
input.is-valid,select.is-valid,textarea.is-valid { border-color:var(--green); }
.full { grid-column:1 / -1; }
.contact-form .btn { border:0; }
.form-note { grid-column:1 / -1; margin:0; font-size:.78rem; }
.form-status { min-height:22px; color:var(--muted); }
.form-honey { position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
.contact-success { padding:30px; color:var(--ink); border:1px solid rgba(255,255,255,.25); border-radius:8px; background:#fff; box-shadow:var(--shadow); }
.contact-success h3 { margin-bottom:12px; font-size:1.8rem; }
.contact-success p:not(.eyebrow) { margin:0; color:var(--muted); }

.contact-form .btn.is-loading { color:transparent; pointer-events:none; }
.contact-form .btn.is-loading::after {
  position:absolute;
  width:22px;
  height:22px;
  content:"";
  border:2px solid rgba(255,255,255,.35);
  border-top-color:#fff;
  border-radius:50%;
  animation:spin .7s linear infinite;
}
.contact-form .btn { position:relative; }
.contact-form .btn.is-success { background:var(--green); }
@keyframes spin { to { transform:rotate(360deg); } }

.footer {
  display:grid;
  grid-template-columns:auto minmax(240px,1fr) auto;
  gap:34px;
  align-items:center;
  padding:36px max(20px,calc((100vw - var(--content-max))/2));
  color:#fff;
  background:var(--ink);
  border-top:1px solid rgba(255,255,255,.12);
}
.footer-brand { width:82px; overflow:visible; border-radius:0; }
.footer p { max-width:520px; margin:0; color:rgba(255,255,255,.54); }
.footer nav { display:flex; flex-wrap:wrap; gap:18px; color:rgba(255,255,255,.76); font-size:.85rem; font-weight:750; }

.global-header-actions {
  justify-self:end;
  display:flex;
  align-items:center;
  gap:12px;
}
.global-social-link {
  display:grid;
  width:46px;
  height:46px;
  place-items:center;
  color:#fff;
  border:1px solid rgba(255,255,255,.24);
  border-radius:8px;
  background:rgba(255,255,255,.08);
  transition:transform 240ms ease,background-color 240ms ease,color 240ms ease,border-color 240ms ease;
}
.global-social-link svg { width:20px; height:20px; }
.global-social-link:hover { transform:translateY(-3px); color:#55d79f; border-color:rgba(85,215,159,.42); background:rgba(85,215,159,.12); }
.global-header.is-scrolled .global-social-link,
.global-header.is-open .global-social-link { color:#0b1118; border-color:#d8e0e7; background:#fff; }
.global-header.is-scrolled .global-social-link:hover,
.global-header.is-open .global-social-link:hover { color:#1769ff; border-color:rgba(23,105,255,.28); background:#eef4ff; }
.footer-social-link { display:inline-flex; align-items:center; gap:7px; }
.footer-social-link svg { width:16px; height:16px; }
.footer nav a:hover { color:#fff; }

.floating-whatsapp {
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:90;
  display:grid;
  width:66px;
  height:66px;
  place-items:center;
  color:#fff;
  border:5px solid rgba(255,255,255,.9);
  border-radius:50%;
  background:#19c463;
  box-shadow:0 22px 48px rgba(25,196,99,.34),0 0 0 18px rgba(25,196,99,.08);
  font-weight:850;
  transition:transform 240ms ease,box-shadow 240ms ease,background-color 240ms ease;
}
.floating-whatsapp::before {
  position:absolute;
  right:10px;
  bottom:72px;
  min-width:136px;
  padding:10px 14px;
  content:"Fale conosco!";
  color:var(--ink);
  border:1px solid rgba(216,224,231,.82);
  border-radius:8px;
  background:#fff;
  box-shadow:0 12px 28px rgba(11,17,24,.14);
  font-size:.82rem;
  font-weight:850;
  text-align:center;
}
.floating-whatsapp::after {
  position:absolute;
  top:-9px;
  right:-5px;
  display:grid;
  width:24px;
  height:24px;
  place-items:center;
  content:"1";
  color:#fff;
  border:2px solid #fff;
  border-radius:50%;
  background:#ef4444;
  font-size:.78rem;
  font-weight:900;
}
.floating-whatsapp svg { width:31px; height:31px; }
.floating-whatsapp span { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.floating-whatsapp:hover { transform:translateY(-4px) scale(1.03); background:#11b85a; box-shadow:0 26px 56px rgba(25,196,99,.42),0 0 0 20px rgba(25,196,99,.1); }

.hero-reveal {
  opacity:0;
  transform:translateY(44px);
  filter:blur(10px);
  animation:heroReveal .95s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay:var(--motion-delay,0ms);
}
@keyframes heroReveal { to { opacity:1; transform:none; filter:blur(0); } }

.scroll-reveal {
  opacity:0;
  transform:translateY(42px);
  filter:blur(8px);
  transition:opacity .9s cubic-bezier(.22,1,.36,1),transform .9s cubic-bezier(.22,1,.36,1),filter .9s cubic-bezier(.22,1,.36,1);
  transition-delay:var(--stagger-delay,0ms);
}
.scroll-reveal.is-visible { opacity:1; transform:none; filter:blur(0); }

@media (max-width:1120px) {
  h1 { font-size:4.3rem; }
  h2 { font-size:3.7rem; }
  .system-intro h2 { font-size:4.8rem; }
  .nav-menu { gap:16px; }
  .header-cta { display:none; }
  .timeline { grid-template-columns:repeat(3,1fr); border-top:0; }
  .timeline article { border-top:1px solid var(--line); }
  .result-grid { grid-template-columns:repeat(3,1fr); }
  .result-grid article { border-bottom:1px solid rgba(255,255,255,.16); }
}

@media (max-width:860px) {
  h1 { font-size:3.8rem; }
  h2 { font-size:3.2rem; }
  .site-header { grid-template-columns:auto auto; min-height:72px; padding-inline:20px; }
  .brand { width:80px; }
  .nav-toggle { display:grid; justify-self:end; }
  .nav-menu {
    position:fixed;
    top:72px;
    left:0;
    right:0;
    display:grid;
    gap:0;
    padding:20px;
    color:var(--ink);
    background:#fff;
    border-bottom:1px solid var(--line);
    box-shadow:0 18px 34px rgba(11,17,24,.12);
    opacity:0;
    visibility:hidden;
    transform:translateY(-12px);
    transition:opacity 240ms ease,transform 240ms ease,visibility 240ms;
  }
  .nav-menu.is-open { opacity:1; visibility:visible; transform:none; }
  .nav-menu a { padding:14px 0; border-bottom:1px solid var(--line); }
  .hero { min-height:690px; height:86vh; }
  .hero-content { width:calc(100% - 40px); padding-bottom:112px; }
  .hero-meta { left:20px; right:auto; bottom:24px; }
  .scroll-cue { display:none; }
  .editorial,.services-section,.instagram-section,.method-section,.faq-section,.system-section,.results-section,.contact-section { padding:82px 20px; }
  .editorial-grid,.system-intro,.services-header,.instagram-header,.instagram-panel,.results-heading,.faq-layout,.contact-section { grid-template-columns:1fr; gap:38px; }
  .system-intro > .eyebrow,.results-heading .eyebrow { grid-column:auto; }
  .system-intro h2 { font-size:4rem; }
  .section-label { margin-bottom:52px; }
  .services-header { margin-bottom:46px; }
  .fit-panel { min-height:auto; padding:74px 28px; }
  .fit-panel h2 { font-size:3rem; }
  .fit-section { grid-template-columns:1fr; }
  .faq-heading { position:static; }
  .faq-heading h2 { font-size:4rem; }
  .instagram-feed-grid { grid-template-columns:1fr 1fr; }
  .timeline { grid-template-columns:1fr 1fr; }
  .timeline article { min-height:240px; }
  .result-grid { grid-template-columns:1fr 1fr; }
  .contact-panel {
  display:grid;
  gap:18px;
}

.contact-form { max-width:680px; }
  .footer { grid-template-columns:1fr; }
}

@media (max-width:560px) {
  h1 { font-size:2.65rem; line-height:.98; }
  h2 { font-size:2.55rem; }
  h3 { font-size:1.25rem; }
  .hero { min-height:660px; height:88vh; }
  .hero-content { padding-top:124px; padding-bottom:118px; }
  .hero-lede { font-size:1rem; }
  .hero-actions,.btn { width:100%; }
  .hero-meta { display:grid; gap:4px; font-size:.66rem; }
  .signal-track { font-size:.7rem; }
  .editorial,.services-section,.instagram-section,.method-section,.faq-section,.system-section,.results-section,.contact-section { padding-block:68px; }
  .system-intro h2 { font-size:3rem; }
  .system-steps article { grid-template-columns:42px 1fr; gap:15px; }
  .system-steps article > svg { display:none; }
  .system-steps h3 { font-size:1.55rem; }
  .service-list article { grid-template-columns:38px 1fr; gap:12px; padding-block:24px; }
  .service-list article > a { grid-column:2; width:42px; height:42px; }
  .service-list h3 { font-size:1.4rem; }
  .instagram-feed-grid { grid-template-columns:1fr; }
  .timeline { grid-template-columns:1fr; }
  .timeline article { min-height:auto; padding:30px 0; border-right:0; }
  .timeline h3 { margin:32px 0 10px; }
  .fit-panel h2 { font-size:2.5rem; }
  .result-grid { grid-template-columns:1fr; }
  .result-grid article { display:grid; grid-template-columns:42px 1fr; min-height:auto; gap:12px; padding:22px 0; border-right:0; }
  .result-grid p { margin:0; }
  .faq-heading h2 { font-size:3.4rem; }
  summary { grid-template-columns:1fr 40px; font-size:1.05rem; }
  summary span { width:38px; height:38px; }
  details > p { padding-right:0; }
  .contact-panel {
  display:grid;
  gap:18px;
}

.contact-form { grid-template-columns:1fr; padding:20px; }
  .footer { padding-bottom:90px; }
  .floating-whatsapp { right:14px; bottom:14px; width:58px; height:58px; padding:0; }
  .floating-whatsapp::before { right:2px; bottom:64px; min-width:120px; padding:9px 12px; font-size:.78rem; }
}

.hero-service-panel.is-changing {
  animation:panelSwitch 360ms cubic-bezier(.22,1,.36,1);
}

@keyframes panelSwitch {
  from { opacity:.35; transform:translateY(10px); }
  to { opacity:1; transform:none; }
}

@media (max-width:1120px) {
  .hero { min-height:820px; }
  .hero-content { grid-template-columns:1fr; gap:38px; padding-top:145px; }
  .hero-performance { max-width:720px; }
  .hero h1 { font-size:4.6rem; }
  .hero-service-panel { grid-template-columns:1fr; min-height:auto; }
  .hero-service-panel a { grid-column:auto; grid-row:auto; justify-self:start; }
}

@media (max-width:860px) {
  .hero { min-height:0; height:auto; }
  .hero-content { width:calc(100% - 40px); padding:124px 0 30px; }
  .hero h1 { font-size:3.45rem; }
  .hero-service-tabs { grid-template-columns:1fr 1fr; overflow:visible; }
  .hero-service-tabs button { min-height:58px; }
  .hero-service-shell { width:calc(100% - 40px); margin-bottom:86px; }
  .hero-meta { position:relative; left:auto; right:auto; bottom:auto; z-index:3; width:calc(100% - 40px); margin:0 auto 26px; }
}

@media (max-width:560px) {
  .hero { min-height:0; height:auto; }
  .hero-content { padding-top:112px; padding-bottom:24px; }
  .hero h1 { font-size:2.55rem; }
  .hero-lede { font-size:1rem; }
  .hero-performance { padding:12px; }
  .performance-grid { grid-template-columns:1fr; }
  .main-card { min-height:164px; }
  .hero-service-tabs { grid-template-columns:1fr; gap:8px; }
  .hero-service-panel { padding:20px; gap:16px; }
  .hero-service-panel h2 { font-size:1.45rem; }
  .hero-service-panel a { width:100%; white-space:normal; }
  .orbit-one { left:-360px; top:80px; }
  .orbit-two { right:-420px; top:180px; }
}
@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .scroll-reveal,.hero-reveal { opacity:1; transform:none; filter:none; }
}
.footer-brand img { width:100%; height:auto; object-fit:contain; filter:drop-shadow(0 8px 18px rgba(0,0,0,.28)); }

/* Global header styles inlined for homepage performance */
.global-header {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
  min-height:82px;
  padding:10px max(20px,calc((100vw - 1280px)/2));
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.18);
  background:rgba(8,13,19,.68);
  backdrop-filter:blur(18px);
  transition:background-color 300ms ease,border-color 300ms ease,box-shadow 300ms ease,color 300ms ease;
}

.global-header.is-scrolled,
.global-header.is-open {
  color:#0b1118;
  background:rgba(255,255,255,.94);
  border-color:rgba(216,224,231,.88);
  box-shadow:0 8px 28px rgba(11,17,24,.06);
}

.global-brand {
  display:block;
  width:82px;
  overflow:visible;
  border-radius:0;
}

.global-brand img {
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.28));
}

.global-nav {
  justify-self:center;
  display:flex;
  align-items:center;
  gap:26px;
  font-size:.88rem;
  font-weight:750;
}

.global-nav a,
.global-submenu-toggle {
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:9px 0;
  color:inherit;
  border:0;
  background:transparent;
  font:inherit;
  font-weight:inherit;
  cursor:pointer;
}

.global-nav a::after,
.global-submenu-toggle::after {
  position:absolute;
  left:0;
  bottom:3px;
  width:100%;
  height:2px;
  content:"";
  background:currentColor;
  transform:scaleX(0);
  transform-origin:right;
  transition:transform 260ms cubic-bezier(.22,1,.36,1);
}

.global-nav a:hover::after,
.global-submenu-toggle:hover::after,
.global-nav a[aria-current="page"]::after {
  transform:scaleX(1);
  transform-origin:left;
}

.global-submenu-toggle svg {
  width:15px;
  height:15px;
  transition:transform 220ms ease;
}

.global-nav-group {
  position:relative;
}

.global-nav-group.is-open .global-submenu-toggle svg {
  transform:rotate(180deg);
}

.global-submenu {
  position:absolute;
  top:calc(100% + 12px);
  left:50%;
  display:grid;
  min-width:245px;
  padding:10px;
  color:#0b1118;
  border:1px solid rgba(216,224,231,.96);
  border-radius:8px;
  background:#fff;
  box-shadow:0 18px 42px rgba(11,17,24,.14);
  opacity:0;
  visibility:hidden;
  transform:translate(-50%,-8px);
  transition:opacity 220ms ease,transform 220ms ease,visibility 220ms;
}

.global-nav-group.is-open .global-submenu,
.global-nav-group:focus-within .global-submenu,
.global-nav-group:hover .global-submenu {
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
}

.global-submenu a {
  display:grid;
  gap:3px;
  padding:11px 12px;
  border-radius:6px;
}

.global-submenu a::after {
  display:none;
}

.global-submenu a:hover {
  background:#eef3f7;
}

.global-submenu strong {
  color:#0b1118;
  font-size:.86rem;
  line-height:1.25;
}

.global-submenu span {
  color:#5c6876;
  font-size:.75rem;
  line-height:1.35;
}

.global-header.is-scrolled .global-brand img,
.global-header.is-open .global-brand img {
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.18));
}

.global-header-cta {
  display:inline-flex;
  min-height:50px;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:0 18px;
  color:#0b1118;
  border:1px solid transparent;
  border-radius:8px;
  background:#fff;
  font-weight:850;
  transition:transform 240ms cubic-bezier(.22,1,.36,1),box-shadow 240ms ease,background-color 240ms ease,color 240ms ease,border-color 240ms ease;
}

.global-header.is-scrolled .global-header-cta,
.global-header.is-open .global-header-cta {
  color:#fff;
  background:#0b1118;
}

.global-header-cta svg {
  width:18px;
  height:18px;
  transition:transform 240ms ease;
}

.global-header-cta:hover {
  transform:translateY(-3px);
}

.global-header-cta:hover svg {
  transform:translateX(4px);
}

.global-nav-toggle {
  display:none;
  width:46px;
  height:46px;
  place-items:center;
  color:inherit;
  border:1px solid rgba(255,255,255,.24);
  border-radius:8px;
  background:transparent;
  cursor:pointer;
}

.global-nav-toggle svg {
  width:22px;
  margin:auto;
}

.global-header.is-scrolled .global-nav-toggle,
.global-header.is-open .global-nav-toggle {
  border-color:#d8e0e7;
}

body.global-menu-open {
  overflow:hidden;
}

@media (max-width:1120px) {
  .global-nav {
    gap:16px;
  }

  

.global-header-cta {
    display:none;
  }
}

@media (max-width:860px) {
  .global-header {
    grid-template-columns:auto auto;
    min-height:72px;
    padding-inline:20px;
  }

  .global-brand {
    width:72px;
  }

  .global-nav-toggle {
    display:grid;
    justify-self:end;
  }

  .global-nav {
    position:fixed;
    top:72px;
    left:0;
    right:0;
    display:grid;
    gap:0;
    max-height:calc(100vh - 72px);
    overflow:auto;
    padding:12px 20px 20px;
    color:#0b1118;
    background:#fff;
    border-bottom:1px solid #d8e0e7;
    box-shadow:0 18px 34px rgba(11,17,24,.12);
    opacity:0;
    visibility:hidden;
    transform:translateY(-12px);
    transition:opacity 240ms ease,transform 240ms ease,visibility 240ms;
  }

  .global-nav.is-open {
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .global-nav a,
  .global-submenu-toggle {
    width:100%;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid #d8e0e7;
  }

  .global-nav a::after,
  .global-submenu-toggle::after {
    display:none;
  }

  .global-nav-group {
    border-bottom:1px solid #d8e0e7;
  }

  .global-nav-group .global-submenu-toggle {
    border-bottom:0;
  }

  .global-submenu {
    position:static;
    min-width:0;
    padding:0 0 10px 14px;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .global-submenu a {
    padding:10px 0;
    border-bottom:0;
  }

  .global-submenu a:hover {
    background:transparent;
  }
}

/* VP Ads mobile header actions fix */
@media (max-width:860px) {
  .global-header-actions { display:none !important; }
}

/* Mobile navigation stability */
.global-header,
.global-header.is-scrolled,
.global-header.is-open {
  color:#fff !important;
  border-color:rgba(255,255,255,.14) !important;
  background:rgba(8,13,19,.86) !important;
  box-shadow:0 10px 30px rgba(0,0,0,.18) !important;
}

.global-header.is-scrolled .global-brand img,
.global-header.is-open .global-brand img {
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.35)) !important;
}

.global-header.is-scrolled .global-nav-toggle,
.global-header.is-open .global-nav-toggle {
  color:#fff !important;
  border-color:rgba(255,255,255,.28) !important;
  background:rgba(255,255,255,.08) !important;
}

.global-header.is-scrolled .global-header-cta,
.global-header.is-open .global-header-cta {
  color:#0b1118 !important;
  background:#fff !important;
}

.global-header.is-scrolled .global-social-link,
.global-header.is-open .global-social-link {
  color:#fff !important;
  border-color:rgba(255,255,255,.24) !important;
  background:rgba(255,255,255,.08) !important;
}

@media (max-width:860px) {
  .global-header {
    min-height:72px !important;
    padding:10px 20px !important;
  }

  .global-brand {
    width:68px !important;
  }

  .global-nav {
    position:fixed !important;
    top:72px !important;
    left:20px !important;
    right:20px !important;
    width:auto !important;
    max-height:calc(100dvh - 96px) !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    display:grid !important;
    gap:0 !important;
    padding:14px 18px 20px !important;
    color:#0b1118 !important;
    border:1px solid rgba(216,224,231,.92) !important;
    border-radius:8px !important;
    background:#fff !important;
    box-shadow:0 24px 54px rgba(0,0,0,.24) !important;
    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
  }

  .global-nav.is-open {
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
  }

  .global-nav > a,
  .global-submenu-toggle {
    min-height:48px !important;
    width:100% !important;
    padding:13px 0 !important;
    justify-content:space-between !important;
    color:#0b1118 !important;
    border-bottom:1px solid #d8e0e7 !important;
    font-size:1rem !important;
    font-weight:850 !important;
    line-height:1.2 !important;
  }

  .global-nav-group {
    width:100% !important;
    border-bottom:1px solid #d8e0e7 !important;
  }

  .global-nav-group .global-submenu-toggle {
    border-bottom:0 !important;
  }

  .global-submenu {
    position:static !important;
    left:auto !important;
    top:auto !important;
    min-width:0 !important;
    width:100% !important;
    padding:0 0 12px 0 !important;
    color:#0b1118 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
  }

  .global-submenu a {
    display:grid !important;
    width:100% !important;
    min-height:0 !important;
    gap:3px !important;
    padding:10px 0 10px 14px !important;
    color:#0b1118 !important;
    border:0 !important;
    border-left:2px solid #d8e0e7 !important;
    border-radius:0 !important;
    white-space:normal !important;
    overflow:visible !important;
  }

  .global-submenu strong,
  .global-submenu span {
    display:block !important;
    max-width:100% !important;
    overflow:visible !important;
    white-space:normal !important;
    text-overflow:clip !important;
    word-break:normal !important;
  }

  .global-submenu strong {
    color:#0b1118 !important;
    font-size:.95rem !important;
    line-height:1.22 !important;
  }

  .global-submenu span {
    color:#5c6876 !important;
    font-size:.82rem !important;
    line-height:1.35 !important;
  }
}
/* Header compact sizing */
.global-header {
  min-height:82px !important;
  height:auto !important;
  grid-template-columns:auto minmax(0,1fr) auto !important;
  align-items:center !important;
  gap:28px !important;
  padding-block:10px !important;
}

.global-brand {
  width:82px !important;
  max-width:82px !important;
  flex:0 0 auto !important;
}

.global-brand img {
  width:100% !important;
  height:auto !important;
  max-height:72px !important;
  object-fit:contain !important;
}

.global-nav {
  min-width:0 !important;
}

.global-header-actions {
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:12px !important;
  justify-self:end !important;
}

.global-social-link {
  width:46px !important;
  height:46px !important;
  min-width:46px !important;
  min-height:46px !important;
  max-width:46px !important;
  max-height:46px !important;
  padding:0 !important;
  display:grid !important;
  place-items:center !important;
  flex:0 0 46px !important;
  overflow:hidden !important;
}

.global-social-link svg {
  width:20px !important;
  height:20px !important;
  min-width:20px !important;
  min-height:20px !important;
  max-width:20px !important;
  max-height:20px !important;
  display:block !important;
  flex:none !important;
}

.global-header-cta {
  min-height:50px !important;
  height:50px !important;
  padding:0 18px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  white-space:nowrap !important;
  flex:0 0 auto !important;
}

.global-header-cta svg {
  width:18px !important;
  height:18px !important;
  min-width:18px !important;
  max-width:18px !important;
  display:block !important;
  flex:none !important;
}

.global-nav-toggle {
  width:46px !important;
  height:46px !important;
  min-width:46px !important;
  min-height:46px !important;
  padding:0 !important;
}

.global-nav-toggle svg {
  width:22px !important;
  height:22px !important;
  max-width:22px !important;
  max-height:22px !important;
  display:block !important;
  flex:none !important;
}

@media (max-width:860px) {
  .global-header {
    min-height:72px !important;
    grid-template-columns:auto auto !important;
    gap:12px !important;
    padding:10px 20px !important;
  }

  .global-brand {
    width:68px !important;
    max-width:68px !important;
  }

  .global-brand img {
    max-height:62px !important;
  }

  .global-header-actions {
    display:none !important;
  }

  .global-nav-toggle {
    display:grid !important;
    justify-self:end !important;
  }
}
@media (max-width:860px) {
  .global-nav {
    left:20px !important;
    right:auto !important;
    width:calc(100vw - 40px) !important;
    max-width:none !important;
    box-sizing:border-box !important;
  }
}
