:root {
  --bg: #080F17;
  --bg2: #0C1A28;
  --bg3: #111D2B;
  --card: #131E2C;
  --card2: #192535;
  --card3: #102334;
  --line: rgba(196,154,47,.15);
  --line2: rgba(58,80,104,.4);
  --gold: #C49A2F;
  --gold-l: #DFB96A;
  --gold-d: #8A6A1A;
  --gold-g: rgba(196,154,47,.08);
  --azure: #2E7FD4;
  --azure-l: #5BA3E8;
  --teal: #1A8A7A;
  --teal-l: #2DBDAA;
  --mist: #6B82A0;
  --slate: #334D66;
  --lt: #B8C8DC;
  --ink: #DDE5EF;
  --wht: #F5F8FC;
  --cream: #F0EDE4;
  --serif: 'Lora', Georgia, serif;
  --sans: 'Poppins', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --nav-h: 68px;
  --gutter: clamp(20px, 5vw, 80px);
  --max: 1120px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(46,127,212,.14), transparent 28%),
    radial-gradient(circle at top right, rgba(196,154,47,.08), transparent 26%),
    linear-gradient(180deg, #07111B 0%, #09131F 38%, #080F17 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--slate);
  border-radius: 2px;
}

.page-main {
  padding-top: var(--nav-h);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.S {
  padding: 112px 0;
}

.Sm {
  padding: 80px 0;
}

.Sx {
  padding: 48px 0;
}

.D1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6.9vw, 86px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.03em;
  color: var(--wht);
}

.D2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--wht);
}

.D1 em,
.D2 em,
.H2 em {
  font-style: italic;
}

.H2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--wht);
}

.H3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--wht);
}

.label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}

.label.az {
  color: var(--azure-l);
}

.label.tl {
  color: var(--teal-l);
}

.lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.78;
}

.body {
  font-size: 15px;
  font-weight: 300;
  color: var(--lt);
  line-height: 1.72;
}

.mono {
  font-family: var(--mono);
}

.rule {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 16px 0 28px;
}

.rule.az {
  background: var(--azure);
}

.rule.tl {
  background: var(--teal);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}

.nav.scrolled {
  background: rgba(8,15,23,.96);
  backdrop-filter: blur(16px);
}

.nav-in {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-wm {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--wht);
  letter-spacing: .04em;
}

.nav-dd {
  font-size: 7.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-a {
  padding: 7px 13px;
  border-radius: 5px;
  font-size: 13px;
  color: var(--mist);
  cursor: pointer;
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.nav-a:hover {
  color: var(--gold-l);
  background: var(--gold-g);
}

.nav-a.active {
  color: var(--gold);
}

.nav-btn {
  margin-left: 8px;
  padding: 9px 22px;
  background: var(--gold);
  color: var(--bg);
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
  letter-spacing: .02em;
}

.nav-btn:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  border: none;
  transition: .18s;
}

.btn-g {
  background: var(--gold);
  color: var(--bg);
}

.btn-g:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,154,47,.25);
}

.btn-o {
  background: transparent;
  color: var(--gold-l);
  border: 1px solid rgba(196,154,47,.3);
}

.btn-o:hover {
  background: var(--gold-g);
  border-color: rgba(196,154,47,.6);
}

.btn-a {
  background: var(--azure);
  color: #fff;
}

.btn-a:hover {
  background: var(--azure-l);
  transform: translateY(-1px);
}

.btn-t {
  background: var(--teal);
  color: #fff;
}

.btn-t:hover {
  background: var(--teal-l);
  transform: translateY(-1px);
}

.crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 28px;
}

.crumb span {
  cursor: pointer;
  transition: color .15s;
}

.crumb span:hover {
  color: var(--gold-l);
}

.crumb-sep {
  opacity: .4;
}

.phero {
  background:
    radial-gradient(circle at 85% 18%, rgba(196,154,47,.08), transparent 18%),
    linear-gradient(180deg, #0A1724 0%, #0B1724 100%);
  padding: calc(var(--nav-h) + 80px) var(--gutter) 80px;
  position: relative;
  overflow: hidden;
}

.phero-inner {
  max-width: var(--max);
  margin: 0 auto;
  max-width: 740px;
  position: relative;
  z-index: 1;
}

.page-accent {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  top: 122px;
  width: min(34vw, 420px);
  pointer-events: none;
  opacity: .82;
}

.page-accent svg {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pathPulse {
  0%, 100% { opacity: .45; }
  50% { opacity: .95; }
}

@keyframes strokeFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -120; }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.interactive-card {
  position: relative;
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
}

.interactive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--spot-x) var(--spot-y), rgba(255,255,255,.08), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.interactive-card:hover::after {
  opacity: 1;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(93,122,152,.25);
  background: linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(12,26,40,.98) 100%);
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 56px rgba(0,0,0,.22);
  border-color: rgba(196,154,47,.26);
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: auto auto -32% -12%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,47,.28), rgba(196,154,47,0));
  filter: blur(10px);
  opacity: .7;
}

.spotlight-card.teal::before {
  background: radial-gradient(circle, rgba(45,189,170,.24), rgba(45,189,170,0));
}

.spotlight-card.blue::before {
  background: radial-gradient(circle, rgba(91,163,232,.24), rgba(91,163,232,0));
}

.spotlight-no {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--gold-l);
  margin-bottom: 18px;
}

.spotlight-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--wht);
  line-height: 1.2;
  margin-bottom: 12px;
}

.spotlight-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mist);
  max-width: 300px;
}

.pain-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line2);
  border-radius: 12px;
  overflow: hidden;
}

.pain-item {
  background: linear-gradient(180deg, rgba(19,30,44,.98) 0%, rgba(16,27,39,.98) 100%);
  padding: 36px 32px;
}

.pain-n {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: .1em;
}

.pain-t {
  font-size: 15px;
  font-weight: 600;
  color: var(--wht);
  margin-bottom: 10px;
  line-height: 1.35;
}

.pain-d {
  font-size: 13.5px;
  font-weight: 300;
  color: #A7BAD0;
  line-height: 1.7;
}

.wwd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line2);
  border-radius: 12px;
  overflow: hidden;
}

.wwd-item {
  background: linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(16,27,39,.98) 100%);
  padding: 34px 32px 34px 36px;
  display: flex;
  gap: 20px;
}

.wwd-bar {
  width: 2px;
  flex-shrink: 0;
  border-radius: 1px;
  background: var(--gold);
}

.wwd-bar.az {
  background: var(--azure);
}

.wwd-bar.tl {
  background: var(--teal);
}

.wwd-t {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--wht);
  margin-bottom: 7px;
}

.wwd-d {
  font-size: 13px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.65;
}

.aud-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.aud-c {
  background: linear-gradient(180deg, rgba(15,25,37,.9) 0%, rgba(12,26,40,.98) 100%);
  border-radius: 14px;
  border: 1px solid var(--line2);
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.aud-c:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
  border-color: rgba(196,154,47,.22);
}

.aud-ico {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  border: 1px solid rgba(93,122,152,.26);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  display: flex;
  align-items: center;
  justify-content: center;
}

.aud-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-l);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aud-r {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-l);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 10px;
}

.aud-t {
  font-size: 15px;
  font-weight: 400;
  color: var(--wht);
  line-height: 1.45;
}

.cta-band {
  padding: 100px 0;
  background: linear-gradient(180deg, #0A1724 0%, #09131F 100%);
}

.cta-band-in {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}

.cta-band-in h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: var(--wht);
  line-height: 1.08;
  margin-bottom: 16px;
}

.cta-band-in p {
  font-size: 17px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.78;
  margin-bottom: 28px;
}

.billif-cta-wrap {
  margin-top: 34px;
}

.billif-cta {
  --billif-rgb: 45,189,170;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: min(100%, 780px);
  padding: 19px 24px;
  border-radius: 16px;
  color: var(--teal-l);
  border: 1px solid rgba(var(--billif-rgb), .28);
  background: linear-gradient(180deg, rgba(12,32,38,.98) 0%, rgba(8,23,30,.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    inset 0 -18px 28px rgba(0,0,0,.12),
    0 18px 36px rgba(0,0,0,.16),
    0 0 0 1px rgba(var(--billif-rgb), .05);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.billif-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background:
    radial-gradient(circle at var(--spot-x, 22%) var(--spot-y, 50%), rgba(var(--billif-rgb), .15), transparent 30%),
    linear-gradient(135deg, rgba(var(--billif-rgb), .1), rgba(255,255,255,0) 30%);
  opacity: .95;
  z-index: 0;
}

.billif-cta::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -22%;
  width: 38%;
  height: 320%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.16) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(18deg) translateX(-220%);
  opacity: .58;
  transition: transform .72s cubic-bezier(.22,.61,.36,1);
  z-index: 1;
}

.billif-cta:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--billif-rgb), .44);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 -20px 28px rgba(0,0,0,.08),
    0 24px 48px rgba(0,0,0,.22),
    0 0 32px rgba(var(--billif-rgb), .14);
}

.billif-cta:hover::after {
  transform: rotate(18deg) translateX(460%);
}

.billif-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(var(--billif-rgb), .24);
  background: linear-gradient(180deg, rgba(var(--billif-rgb), .12), rgba(var(--billif-rgb), .05));
  box-shadow:
    inset 0 0 22px rgba(var(--billif-rgb), .05),
    0 0 0 1px rgba(255,255,255,.015);
}

.billif-cta-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.billif-cta-title {
  font-size: 19px;
  font-weight: 500;
  color: var(--teal-l);
  letter-spacing: .01em;
}

.billif-cta-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(203,243,236,.88);
}

.premium-billif-cta:focus-visible {
  outline: none;
  border-color: rgba(var(--billif-rgb), .56);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 3px rgba(var(--billif-rgb), .14),
    0 24px 48px rgba(0,0,0,.22),
    0 0 32px rgba(var(--billif-rgb), .12);
}

footer {
  background: linear-gradient(180deg, #0A1724 0%, #09131F 100%);
  border-top: 1px solid var(--line2);
  padding: 72px 0 36px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.ft-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.7;
  margin-top: 18px;
  max-width: 260px;
}

.ft-hl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ft-l {
  font-size: 13px;
  font-weight: 300;
  color: var(--mist);
  cursor: pointer;
  transition: color .15s;
}

.ft-l:hover {
  color: var(--gold-l);
}

.ft-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line2);
  font-size: 12px;
  color: var(--slate);
}

.ft-legal {
  display: flex;
  gap: 20px;
}

.ft-legal span {
  cursor: pointer;
}

.ft-legal span:hover {
  color: var(--mist);
}

@media (max-width: 1000px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .pain-list {
    grid-template-columns: 1fr;
  }

  .wwd {
    grid-template-columns: 1fr;
  }

  .aud-row {
    grid-template-columns: 1fr 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .page-accent {
    position: relative;
    inset: auto;
    width: min(88vw, 380px);
    margin: 24px auto 0;
    right: auto;
    top: auto;
  }
}

@media (max-width: 600px) {
  .aud-row,
  .ft-grid {
    grid-template-columns: 1fr;
  }

  .D2 {
    font-size: 34px;
  }

  .billif-cta {
    width: 100%;
    min-width: 0;
    padding: 16px 18px;
  }

  .billif-cta-copy {
    gap: 6px;
  }

  .billif-cta-title {
    font-size: 18px;
  }

  .billif-cta-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (hover: none), (pointer: coarse) {
  .interactive-card::after {
    display: none;
  }
}

.hero {
  min-height: calc(100vh - var(--nav-h));
  background: var(--bg2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(196,154,47,.12) 0%, rgba(196,154,47,.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  left: -10%;
  bottom: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(46,127,212,.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

.hero-main {
  padding: clamp(60px,8vh,120px) var(--gutter) 60px calc(max(var(--gutter), (100vw - var(--max)) / 2));
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 32px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(196,154,47,.7);
  animation: pathPulse 2.5s ease-in-out infinite;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.78;
  max-width: 500px;
  margin-top: 28px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line2);
  padding-top: 36px;
  margin-top: 16px;
}

.stat {
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid var(--line2);
}

.stat:last-child {
  border-right: none;
}

.stat-n {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--gold-l);
  line-height: 1;
  letter-spacing: -.02em;
}

.stat-l {
  font-size: 12px;
  font-weight: 300;
  color: var(--mist);
  margin-top: 6px;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-diamond-wrap {
  position: relative;
  width: 420px;
  height: 420px;
}

.hero-diamond-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(196,154,47,.22) 0%, transparent 65%);
  border-radius: 50%;
  animation: pathPulse 4s ease-in-out infinite;
}

.hero-diamond-svg {
  width: 100%;
  height: 100%;
  animation: floatY 7s ease-in-out infinite;
}

.ring-outer {
  animation: floatY 18s ease-in-out infinite;
  transform-origin: 50% 50%;
}

.ring-mid {
  animation: floatY 12s ease-in-out infinite;
  transform-origin: 50% 50%;
}

.ring-inner {
  animation: pathPulse 5s ease-in-out infinite;
  transform-origin: 50% 50%;
}

.stmt {
  padding: 26px var(--gutter);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(10,22,34,.96) 0%, rgba(8,15,23,.98) 100%);
}

.stmt-text {
  max-width: var(--max);
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
  color: var(--wht);
  letter-spacing: -.01em;
}

.trust-band {
  padding: 26px 0;
  border-bottom: 1px solid var(--line2);
  background: rgba(7,16,25,.78);
  backdrop-filter: blur(10px);
}

.trust-band-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}

.trust-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-l);
  padding-top: 6px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(93,122,152,.24);
  background: rgba(255,255,255,.02);
  color: var(--lt);
  font-size: 13px;
  line-height: 1.2;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}

.svc-card {
  background: linear-gradient(180deg, rgba(14,24,36,.98) 0%, rgba(10,19,30,.99) 100%);
  padding: 34px 30px 28px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,.16);
}

.svc-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 18px;
}

.svc-title {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
  color: var(--wht);
  letter-spacing: -.03em;
}

.svc-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.75;
  max-width: 290px;
}

.svc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-l);
  letter-spacing: .02em;
}

.svc-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(196,154,47,.07);
  border: 1px solid rgba(196,154,47,.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s, box-shadow .25s;
}

.svc-card:hover .svc-icon-wrap {
  background: rgba(196,154,47,.13);
  border-color: rgba(196,154,47,.35);
  box-shadow: 0 0 20px rgba(196,154,47,.15);
}

.svc-icon-wrap.tl {
  background: rgba(26,138,122,.08);
  border-color: rgba(26,138,122,.2);
}

.svc-card:hover .svc-icon-wrap.tl {
  background: rgba(26,138,122,.15);
  border-color: rgba(26,138,122,.4);
  box-shadow: 0 0 20px rgba(26,138,122,.2);
}

.quote-sec {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(180deg, #0A1724 0%, #09131F 100%);
}

.quote-bg {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .18;
  pointer-events: none;
}

.quote-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: start;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 90px;
  line-height: .8;
  color: var(--gold-l);
  margin-bottom: 12px;
}

.big-quote {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: var(--wht);
  letter-spacing: -.03em;
  max-width: 760px;
}

.quote-attr {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 400;
  color: var(--mist);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.quote-side {
  padding: 26px 28px;
  border-radius: 20px;
  border: 1px solid rgba(93,122,152,.22);
  background: linear-gradient(180deg, rgba(16,27,39,.96) 0%, rgba(11,23,36,.98) 100%);
  box-shadow: 0 20px 42px rgba(0,0,0,.16);
}

.quote-side-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 20px;
}

.quote-proof {
  display: grid;
  gap: 18px;
}

.quote-proof-item {
  display: grid;
  gap: 8px;
}

.quote-proof-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--wht);
}

.quote-proof-item span {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mist);
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  background: linear-gradient(180deg, #0A1724 0%, #09131F 100%);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}

.why-left {
  padding: 92px 72px calc(92px + 10px) calc(max(var(--gutter), (100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-right {
  padding: 92px calc(max(var(--gutter), (100vw - var(--max)) / 2)) 92px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(196,154,47,.08), transparent 28%),
    linear-gradient(180deg, rgba(14,24,36,.98) 0%, rgba(9,19,31,.98) 100%);
}

.why-pt {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(93,122,152,.16);
  background: rgba(255,255,255,.02);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.why-pt:hover {
  transform: translateY(-4px);
  border-color: rgba(196,154,47,.22);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}

.why-pt-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(196,154,47,.2);
  background: rgba(196,154,47,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-pt-icon svg {
  display: block;
}

.why-pt:hover .why-pt-icon {
  background: rgba(196,154,47,.12);
  border-color: rgba(196,154,47,.35);
  box-shadow: 0 0 16px rgba(196,154,47,.12);
}

.why-pt-icon.az {
  border-color: rgba(46,127,212,.25);
  background: rgba(46,127,212,.07);
}

.why-pt:hover .why-pt-icon.az {
  background: rgba(46,127,212,.14);
  border-color: rgba(46,127,212,.4);
}

.why-pt-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--wht);
  margin-bottom: 6px;
}

.why-pt-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mist);
}

.markets {
  background: var(--bg);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mkt {
  border-radius: 18px;
  border: 1px solid rgba(93,122,152,.2);
  background: linear-gradient(180deg, rgba(14,24,36,.98) 0%, rgba(10,19,30,.99) 100%);
  padding: 28px 24px;
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.mkt:hover {
  transform: translateY(-5px);
  border-color: rgba(196,154,47,.24);
  box-shadow: 0 22px 42px rgba(0,0,0,.18);
}

.mkt-region-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(196,154,47,.08);
  border: 1px solid rgba(196,154,47,.15);
}

.mkt.eu .mkt-region-icon {
  background: rgba(46,127,212,.08);
  border-color: rgba(46,127,212,.2);
}

.mkt.asia .mkt-region-icon {
  background: rgba(26,138,122,.08);
  border-color: rgba(26,138,122,.2);
}

.mkt.ca .mkt-region-icon {
  background: rgba(196,154,47,.08);
  border-color: rgba(196,154,47,.2);
}

.mkt-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--wht);
  margin-bottom: 8px;
}

.mkt-cities {
  font-size: 14px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 16px;
}

.mkt-regs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mkt-r {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(93,122,152,.22);
  background: rgba(255,255,255,.03);
  color: var(--lt);
  font-size: 11px;
  line-height: 1;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-main {
    padding: 60px var(--gutter);
    max-width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line2);
    padding-right: 0;
    padding-bottom: 24px;
    margin-right: 0;
  }

  .stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .trust-band-in {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .quote-inner {
    grid-template-columns: 1fr;
  }

  .why-split {
    grid-template-columns: 1fr;
  }

  .why-left {
    padding: 60px var(--gutter);
  }

  .why-right {
    padding: 60px var(--gutter);
  }

  .markets-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .D1 {
    font-size: 44px;
  }

  .stmt-text {
    font-size: 15px;
  }

  .hero-diamond-wrap {
    width: 300px;
    height: 300px;
  }

  .markets-grid {
    grid-template-columns: 1fr;
  }
}

.stmt {
  background: linear-gradient(90deg, rgba(196,154,47,.98), rgba(223,185,106,.98));
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stmt-text {
  font-family: var(--serif);
  font-size: clamp(15px, 2vw, 20px);
  font-style: italic;
  color: var(--bg);
  text-align: center;
  max-width: 800px;
  line-height: 1.4;
}

.trust-band {
  background: rgba(7,16,25,.88);
  border-top: 1px solid rgba(196,154,47,.14);
  border-bottom: 1px solid rgba(196,154,47,.08);
}

.trust-band-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.trust-head {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-l);
  white-space: nowrap;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(93,122,152,.25);
  color: #C3D0DE;
  font-size: 12px;
  font-weight: 500;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--line2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  background: transparent;
  gap: 0;
}

.svc-card {
  padding: 42px 38px 44px;
  border-right: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(15,25,37,.98) 100%);
  transition: background .2s, transform .2s, border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  min-height: auto;
  justify-content: flex-start;
  box-shadow: none;
}

.svc-card:last-child {
  border-right: none;
}

.svc-card::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 0;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--gold), rgba(223,185,106,0));
  opacity: .85;
}

.svc-card:hover {
  background: linear-gradient(180deg, rgba(25,37,53,.98) 0%, rgba(17,29,43,1) 100%);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
}

.svc-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .12em;
}

.svc-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--wht);
  line-height: 1.2;
}

.svc-desc {
  font-size: 14px;
  font-weight: 300;
  color: #A7BAD0;
  line-height: 1.7;
  flex: 1;
  max-width: none;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: auto;
  transition: gap .15s;
}

.svc-card:hover .svc-link {
  gap: 14px;
}

@media (max-width: 1000px) {
  .trust-band-in {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    border-right: none;
    border-bottom: 1px solid var(--line2);
  }

  .svc-card:last-child {
    border-bottom: none;
  }
}

.quote-sec {
  background:
    radial-gradient(circle at 18% 30%, rgba(46,127,212,.08), transparent 20%),
    linear-gradient(180deg, #0B1724 0%, #0C1A28 100%);
  padding: 100px var(--gutter);
  position: relative;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  opacity: .04;
  pointer-events: none;
}

.quote-bg svg {
  animation: floatY 11s ease-in-out infinite;
}

.quote-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 32px;
  align-items: end;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 120px;
  color: var(--gold);
  line-height: .7;
  opacity: .3;
}

.big-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 44px);
  color: var(--wht);
  line-height: 1.25;
  max-width: 820px;
  margin-top: -20px;
}

.quote-attr {
  font-size: 13px;
  color: var(--mist);
  margin-top: 28px;
}

.quote-side {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(93,122,152,.24);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}

.quote-side-title {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 18px;
}

.quote-proof {
  display: grid;
  gap: 14px;
}

.quote-proof-item {
  padding: 14px 0;
  border-top: 1px solid rgba(93,122,152,.18);
}

.quote-proof-item:first-child {
  border-top: none;
  padding-top: 0;
}

.quote-proof-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--wht);
  margin-bottom: 4px;
}

.quote-proof-item span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: var(--mist);
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.why-left {
  padding: 80px var(--gutter) 80px calc(max(var(--gutter), (100vw - var(--max)) / 2));
  background: var(--bg3);
  border-right: 1px solid var(--line2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-right {
  padding: 80px calc(max(var(--gutter), (100vw - var(--max)) / 2)) 80px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  background: transparent;
}

.why-pt {
  display: flex;
  gap: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.why-pt:hover {
  transform: none;
  border: none;
  box-shadow: none;
}

.why-pt-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid rgba(196,154,47,.25);
  border-radius: 8px;
  background: var(--gold-g);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-pt-icon svg {
  width: 18px;
  height: 18px;
}

.why-pt-title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--wht);
  margin-bottom: 7px;
}

.why-pt-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.68;
}

@media (max-width: 1000px) {
  .quote-inner {
    grid-template-columns: 1fr;
  }

  .why-split {
    grid-template-columns: 1fr;
  }

  .why-left {
    padding: 60px var(--gutter);
  }

  .why-right {
    padding: 60px var(--gutter);
  }
}

.markets {
  background: var(--bg2);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid var(--line2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.16);
}

.mkt {
  padding: 42px 30px;
  border-right: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(15,25,37,.98) 100%);
  transition: background .18s, transform .18s, box-shadow .18s;
  border-radius: 0;
  box-shadow: none;
}

.mkt:last-child {
  border-right: none;
}

.mkt:hover {
  background: var(--card2);
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0,0,0,.2);
}

.mkt-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--wht);
  margin-bottom: 6px;
}

.mkt-cities {
  font-size: 11.5px;
  color: var(--gold-l);
  letter-spacing: .05em;
  margin-bottom: 14px;
}

.mkt-regs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mkt-r {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--mist);
  background: rgba(58,80,104,.4);
  padding: 3px 9px;
  border-radius: 2px;
  border: none;
}

.cta-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(196,154,47,.12), transparent 20%),
    linear-gradient(135deg, rgba(19,30,44,.98), rgba(12,26,40,.98));
  border-radius: 20px;
  border: 1px solid var(--line2);
  padding: 44px 48px;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}

.cta-bar-t {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--wht);
  line-height: 1.3;
}

.cta-bar-s {
  font-size: 15px;
  font-weight: 300;
  color: #A7BAD0;
  margin-top: 8px;
  max-width: 640px;
}

footer {
  background: linear-gradient(180deg, #0A1724 0%, #09131F 100%);
  border-top: 1px solid var(--line2);
  padding: 72px 0 36px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.ft-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.7;
  margin-top: 18px;
  max-width: 260px;
}

.ft-hl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ft-l {
  font-size: 13px;
  font-weight: 300;
  color: var(--mist);
  cursor: pointer;
  transition: color .15s;
}

.ft-l:hover {
  color: var(--gold-l);
}

.ft-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line2);
  font-size: 12px;
  color: var(--slate);
}

.ft-legal {
  display: flex;
  gap: 20px;
}

.ft-legal span {
  cursor: pointer;
}

.ft-legal span:hover {
  color: var(--mist);
}

@media (max-width: 1000px) {
  .markets-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .markets-grid,
  .ft-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes diamond-slow-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes diamond-slow-rotate-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes diamond-float-premium {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes diamond-glow-breathe {
  0%, 100% {
    opacity: .38;
    transform: scale(1);
  }
  50% {
    opacity: .62;
    transform: scale(1.04);
  }
}

.hero-diamond-wrap {
  animation: diamond-float-premium 8s ease-in-out infinite;
  transform-origin: 50% 50%;
}

.hero-diamond-glow {
  animation: diamond-glow-breathe 6s ease-in-out infinite;
}

.hero-diamond-svg .ring-outer {
  transform-origin: 50% 50%;
  animation: diamond-slow-rotate 96s linear infinite;
}

.hero-diamond-svg .ring-mid {
  transform-origin: 50% 50%;
  animation: diamond-slow-rotate-reverse 68s linear infinite;
}

.hero-diamond-svg .ring-inner {
  transform-origin: 50% 50%;
  animation: pathPulse 5.5s ease-in-out infinite;
}

.accent-dwh .phero {
  background:
    radial-gradient(circle at 82% 22%, rgba(91,163,232,.12), transparent 18%),
    linear-gradient(180deg, #091522 0%, #0B1724 100%);
}

.pain-list {
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.pain-item {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pain-t {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
}

.pain-d {
  font-size: 13.5px;
  line-height: 1.75;
}

.wwd {
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.wwd-item {
  min-height: 150px;
  align-items: flex-start;
}

.wwd-t {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 10px;
}

.wwd-d {
  font-size: 13.5px;
  line-height: 1.72;
}

.aud-row {
  gap: 14px;
}

.aud-c {
  padding: 36px 22px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.aud-r {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 10px;
}

.aud-t {
  font-size: 14px;
  line-height: 1.55;
  color: var(--wht);
}

@media (max-width: 1000px) {
  .pain-item,
  .wwd-item,
  .aud-c {
    min-height: auto;
  }
}

.accent-dwh .page-accent {
  opacity: .92;
}

.accent-dwh .page-accent svg {
  filter: drop-shadow(0 18px 48px rgba(46,127,212,.08));
}

.mockup-sec {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: center;
}

.mockup-copy {
  max-width: 440px;
}

.mockup-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(93,122,152,.24);
  background: linear-gradient(180deg, rgba(16,27,39,.98) 0%, rgba(11,23,36,.98) 100%);
  box-shadow: 0 26px 56px rgba(0,0,0,.2);
}

.mockup-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(196,154,47,.14), transparent 22%),
    radial-gradient(circle at bottom left, rgba(46,127,212,.14), transparent 24%);
  pointer-events: none;
}

.mockup-window {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid rgba(93,122,152,.25);
  background: rgba(7,16,25,.88);
  overflow: hidden;
}

.mockup-topbar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(93,122,152,.18);
}

.mockup-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(196,154,47,.7);
}

.mockup-body {
  padding: 18px;
}

.mockup-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.mockup-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(91,163,232,.42), rgba(91,163,232,.08));
}

.mockup-lines span:nth-child(2n) {
  background: linear-gradient(90deg, rgba(196,154,47,.34), rgba(196,154,47,.08));
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mockup-grid div {
  height: 76px;
  border-radius: 12px;
  border: 1px solid rgba(93,122,152,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}

.accent-dwh .cta-band-in h2 {
  font-style: normal;
}

@media (max-width: 1000px) {
  .mockup-sec {
    grid-template-columns: 1fr;
  }
}

body.page-id-51 .phero-inner {
  max-width: 1000px;
}

body.page-id-51 .page-accent {
  width: min(22vw, 260px);
  top: 118px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  opacity: .78;
}

body.page-id-51 .phero {
  padding-top: calc(var(--nav-h) + 78px);
  padding-bottom: 56px;
}

body.page-id-51 .page-main > section:first-of-type {
  padding-top: 56px;
}

body.page-id-51 .mockup-sec {
  align-items: start;
  gap: 36px;
}

body.page-id-51 .mockup-copy {
  max-width: 420px;
  padding-top: 8px;
}


.accent-growth .phero {
  background:
    radial-gradient(circle at 80% 20%, rgba(196,154,47,.1), transparent 18%),
    radial-gradient(circle at 22% 30%, rgba(46,127,212,.08), transparent 20%),
    linear-gradient(180deg, #091522 0%, #0B1724 100%);
}

.accent-growth .phero-inner {
  max-width: 640px;
}

.accent-growth .page-accent {
  width: min(30vw, 340px);
  top: 126px;
  opacity: .84;
}

.feature-grid-alt {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 14px;
}

.feature-panel {
  padding: 28px 26px;
  border-radius: 18px;
  border: 1px solid rgba(93,122,152,.2);
  background: linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(15,25,37,.98) 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  min-height: 220px;
}

.feature-panel.wide {
  min-height: 220px;
}

.feature-panel h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--wht);
  margin-bottom: 12px;
}

.feature-panel p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--mist);
}

.accent-growth .pain-list {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1000px) {
  .feature-grid-alt {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .feature-panel.wide {
    min-height: auto;
  }

  .accent-growth .pain-list {
    grid-template-columns: 1fr;
  }
}

.feature-grid-alt {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.feature-panel {
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(93,122,152,.22);
  background: linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(15,25,37,.98) 100%);
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
  min-height: 220px;
}

.feature-panel.wide {
  min-height: 220px;
}

.feature-panel h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
  color: var(--wht);
  margin-bottom: 14px;
}

.feature-panel p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--mist);
}

.feature-grid-alt + .pain-list,
.feature-grid-alt ~ .pain-list {
  margin-top: 0;
}

.accent-growth .phero-inner,
.page-main .feature-grid-alt,
.page-main .pain-list,
.page-main .wwd,
.page-main .aud-row,
.page-main .cta-band-in {
  max-width: 1120px;
}

.accent-growth .phero-inner {
  max-width: 700px;
}

.accent-growth .page-accent {
  width: min(31vw, 360px);
  top: 118px;
  opacity: .84;
}

.pain-list {
  grid-template-columns: repeat(3, 1fr);
}

.pain-item {
  min-height: 210px;
}

.wwd {
  grid-template-columns: 1fr 1fr;
}

.wwd-item {
  min-height: 156px;
}

.aud-row {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.aud-c {
  min-height: 200px;
}

.cta-band-in {
  max-width: 920px;
}

@media (max-width: 1000px) {
  .feature-grid-alt {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .feature-panel.wide,
  .pain-item,
  .wwd-item,
  .aud-c {
    min-height: auto;
  }
}


.accent-growth .phero-inner {
  max-width: 760px;
}

.accent-growth .D2 {
  font-size: clamp(42px, 5.3vw, 66px);
  line-height: 1.02;
}

.accent-growth .lead {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.78;
}

.accent-growth .page-accent {
  width: min(32vw, 390px);
}

.feature-panel {
  padding: 36px 32px;
  min-height: 250px;
}

.feature-panel.wide {
  min-height: 250px;
}

.feature-panel h3 {
  font-size: 30px;
  line-height: 1.12;
  margin-bottom: 16px;
}

.feature-panel:not(.wide) h3 {
  font-size: 24px;
}

.feature-panel p {
  font-size: 15px;
  line-height: 1.78;
}

.pain-item {
  min-height: 230px;
  padding: 40px 34px;
}

.pain-t {
  font-size: 20px;
  line-height: 1.2;
}

.pain-d {
  font-size: 14px;
  line-height: 1.78;
}

.wwd-item {
  min-height: 170px;
  padding: 38px 34px 38px 38px;
}

.wwd-t {
  font-size: 20px;
  line-height: 1.2;
}

.wwd-d {
  font-size: 14px;
  line-height: 1.76;
}

.aud-c {
  min-height: 220px;
  padding: 40px 24px;
}

.aud-t {
  font-size: 15px;
  line-height: 1.58;
}

.cta-band-in h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.cta-band-in p {
  font-size: 16px;
}

@media (max-width: 1000px) {
  .feature-panel,
  .feature-panel.wide,
  .pain-item,
  .wwd-item,
  .aud-c {
    min-height: auto;
  }
}

.accent-about .phero {
  background:
    radial-gradient(circle at 78% 24%, rgba(196,154,47,.1), transparent 18%),
    radial-gradient(circle at 18% 30%, rgba(91,163,232,.06), transparent 22%),
    linear-gradient(180deg, #091522 0%, #0B1724 100%);
}

.accent-about .phero-inner {
  max-width: 720px;
}

.accent-about .page-accent {
  width: min(28vw, 320px);
  top: 116px;
  opacity: .82;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fc {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(93,122,152,.22);
  background: linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(15,25,37,.98) 100%);
  box-shadow: 0 20px 44px rgba(0,0,0,.18);
  padding: 32px 30px;
}

.fc-head {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(93,122,152,.16);
}

.fc-bg {
  position: absolute;
  right: -8px;
  top: -10px;
  opacity: .18;
  pointer-events: none;
}

.fc-name {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--wht);
  line-height: 1.12;
  margin-bottom: 6px;
}

.fc-title {
  position: relative;
  z-index: 1;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-l);
}

.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.fc-tag {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(93,122,152,.22);
  background: rgba(255,255,255,.03);
  font-size: 11px;
  color: var(--lt);
}

.fc-bio {
  font-size: 14px;
  line-height: 1.78;
  color: var(--mist);
  margin-bottom: 18px;
}

.fc-pts {
  display: grid;
  gap: 10px;
}

.fc-pt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--lt);
}

.fc-dot {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.testimonial-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testimonial-card {
  border-radius: 18px;
  border: 1px solid rgba(93,122,152,.18);
  background: linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(15,25,37,.98) 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  padding: 28px 24px;
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.22;
  color: var(--wht);
  margin-bottom: 14px;
}

.testimonial-meta {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--mist);
}

@media (max-width: 1000px) {
  .founder-grid,
  .testimonial-stack {
    grid-template-columns: 1fr;
  }
}

.vals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.val {
  padding: 28px 24px 30px;
  border-radius: 18px;
  border: 1px solid rgba(93,122,152,.2);
  background: linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(15,25,37,.98) 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.val.az {
  border-color: rgba(46,127,212,.28);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.val-t {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--wht);
  margin-bottom: 14px;
  line-height: 1.15;
}

.val-rule {
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.val-rule.az {
  background: var(--azure);
}

.val-d {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist);
}

.accent-about .cta-band-in h2 {
  font-style: normal;
  font-size: clamp(38px, 4.2vw, 60px);
}

.accent-about .cta-band-in p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1000px) {
  .vals {
    grid-template-columns: 1fr;
  }
}

.fc {
  padding: 36px 34px;
  border-radius: 24px;
}

.fc-head {
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.fc-bg {
  right: -2px;
  top: -4px;
  opacity: .24;
  transform: scale(1.06);
}

.fc-name {
  font-size: 32px;
  margin-bottom: 8px;
}

.fc-title {
  font-size: 11px;
  letter-spacing: .16em;
}

.fc-tags {
  margin-bottom: 20px;
}

.fc-tag {
  padding: 8px 12px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fc-bio {
  font-size: 14.5px;
  line-height: 1.82;
  margin-bottom: 20px;
  max-width: 48ch;
}

.fc-pts {
  gap: 12px;
}

.fc-pt {
  font-size: 13.5px;
  line-height: 1.72;
}

.testimonial-stack {
  gap: 18px;
}

.testimonial-card {
  position: relative;
  padding: 34px 28px 30px;
  border-radius: 22px;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  left: 20px;
  top: 12px;
  font-family: var(--serif);
  font-size: 74px;
  line-height: 1;
  color: rgba(196,154,47,.18);
  pointer-events: none;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  font-size: 30px;
  line-height: 1.16;
  margin-bottom: 18px;
  max-width: 12ch;
}

.testimonial-meta {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  line-height: 1.74;
  max-width: 30ch;
}

@media (max-width: 1000px) {
  .testimonial-card blockquote {
    max-width: none;
  }

  .fc-bio,
  .testimonial-meta {
    max-width: none;
  }
}

.accent-about .phero-inner {
  max-width: 760px !important;
}

.accent-about .page-accent {
  width: min(24vw, 280px) !important;
  right: max(28px, calc((100vw - var(--max)) / 2)) !important;
  top: 126px !important;
  opacity: .78 !important;
}

.accent-about .lead {
  max-width: 760px;
}

@media (max-width: 1000px) {
  .accent-about .phero-inner {
    max-width: 100% !important;
  }

  .accent-about .page-accent {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: min(72vw, 280px) !important;
    margin: 28px auto 0 !important;
    opacity: .88 !important;
  }
}


body.page-id-58 .phero-inner {
  max-width: 900px !important;
}

body.page-id-58 .page-accent {
  width: min(22vw, 250px) !important;
  right: max(36px, calc((100vw - var(--max)) / 2)) !important;
  top: 134px !important;
  opacity: .78 !important;
}

body.page-id-58 .lead {
  max-width: 760px !important;
}

@media (max-width: 1000px) {
  body.page-id-58 .phero-inner {
    max-width: 100% !important;
  }

  body.page-id-58 .page-accent {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: min(72vw, 260px) !important;
    margin: 28px auto 0 !important;
  }
}


body.page-id-58 .phero-inner {
  max-width: 980px !important;
}

body.page-id-58 .page-accent {
  width: min(30vw, 380px) !important;
  right: max(8px, calc((100vw - var(--max)) / 2) - 18px) !important;
  top: 118px !important;
  opacity: .82 !important;
}


.accent-contact .phero {
  background:
    radial-gradient(circle at 82% 24%, rgba(91,163,232,.12), transparent 18%),
    radial-gradient(circle at 20% 28%, rgba(196,154,47,.06), transparent 18%),
    linear-gradient(180deg, #091522 0%, #0B1724 100%);
}

.accent-contact .phero-inner {
  max-width: 700px;
}

.accent-contact .page-accent {
  width: min(30vw, 340px);
  top: 118px;
  opacity: .86;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 22px;
  align-items: start;
}

.form-box {
  padding: 34px 32px;
  border-radius: 24px;
  border: 1px solid rgba(93,122,152,.22);
  background: linear-gradient(180deg, rgba(19,30,44,.97) 0%, rgba(15,25,37,.99) 100%);
  box-shadow: 0 24px 52px rgba(0,0,0,.18);
}

.form-box h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--wht);
  margin-bottom: 10px;
}

.form-box > p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--mist);
  margin-bottom: 22px;
}

.fg {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.fg label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-l);
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(93,122,152,.22);
  background: rgba(255,255,255,.03);
  color: var(--wht);
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.fg textarea {
  min-height: 150px;
  resize: vertical;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(184,200,220,.5);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(196,154,47,.42);
  box-shadow: 0 0 0 3px rgba(196,154,47,.08);
  background: rgba(255,255,255,.045);
}

.contact-info-col {
  display: grid;
  gap: 16px;
}

.disc-box {
  padding: 28px 26px;
  border-radius: 20px;
  border: 1px solid rgba(93,122,152,.2);
  background: linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(15,25,37,.98) 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.disc-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.18;
  color: var(--wht);
  margin-bottom: 18px;
}

.disc-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(93,122,152,.16);
  font-size: 14px;
  line-height: 1.72;
  color: var(--mist);
}

.disc-step:first-of-type {
  border-top: none;
  padding-top: 0;
}

.disc-n {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
}

.accent-contact .spotlight-grid {
  gap: 16px;
}

.accent-contact .spotlight-card {
  min-height: 170px !important;
}

@media (max-width: 1000px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .form-box,
  .disc-box {
    padding: 28px 22px;
  }
}


.accent-contact .phero-inner {
  max-width: 760px;
}

.accent-contact .page-accent {
  width: min(34vw, 430px);
  top: 108px;
  right: max(8px, calc((100vw - var(--max)) / 2));
  opacity: .9;
}

.accent-contact .D2 {
  font-size: clamp(44px, 5.4vw, 70px);
  line-height: 1.02;
}

.accent-contact .lead {
  max-width: 700px;
  font-size: 16px;
}

.accent-contact .phero {
  padding-bottom: 64px;
}

.contact-info-col .spotlight-card {
  min-height: 150px !important;
  padding: 24px 22px;
}

.contact-info-col .spotlight-card h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-info-col .spotlight-card p {
  font-size: 14px;
  line-height: 1.72;
}

@media (max-width: 1000px) {
  .accent-contact .page-accent {
    width: min(76vw, 360px);
    right: auto;
  }
}


body.page-id-60 .phero-inner {
  max-width: 980px !important;
}

body.page-id-60 .page-accent {
  width: min(31vw, 390px) !important;
  right: max(8px, calc((100vw - var(--max)) / 2) - 18px) !important;
  top: 108px !important;
  opacity: .88 !important;
}

body.page-id-60 .lead {
  max-width: 760px !important;
}

.form-alert {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
}

.form-alert.success {
  background: rgba(45,189,170,.08);
  border: 1px solid rgba(45,189,170,.24);
  color: #c8f3eb;
}

.form-alert.error {
  background: rgba(196,154,47,.08);
  border: 1px solid rgba(196,154,47,.24);
  color: #f0d79c;
}


.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 420;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  border: 1px solid rgba(93,122,152,.22);
  background:
    radial-gradient(circle at top right, rgba(45,189,170,.14), transparent 26%),
    linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(12,26,40,.98) 100%);
  box-shadow:
    0 18px 40px rgba(0,0,0,.24),
    0 0 0 1px rgba(255,255,255,.02) inset;
  color: var(--wht);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.wa-float:hover {
  transform: translateY(-3px);
  border-color: rgba(45,189,170,.34);
  box-shadow:
    0 24px 46px rgba(0,0,0,.28),
    0 0 28px rgba(45,189,170,.12);
}

.wa-float__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(45,189,170,.2), rgba(45,189,170,.1));
  color: #ecfffb;
  box-shadow:
    inset 0 0 0 1px rgba(45,189,170,.24),
    0 0 20px rgba(45,189,170,.08);
  flex-shrink: 0;
}

.wa-float__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.wa-float__copy {
  display: flex;
  align-items: center;
}

.wa-float__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-l);
  white-space: nowrap;
}

.wa-float__number {
  display: none;
}

@media (max-width: 720px) {
  .wa-float {
    right: 14px;
    bottom: 14px;
    padding: 10px;
    border-radius: 999px;
  }

  .wa-float__copy {
    display: none;
  }
}

.contact-select {
  position: relative;
}

.contact-select__native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.contact-select__trigger {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(93,122,152,.22);
  background: linear-gradient(180deg, rgba(28,40,56,.96) 0%, rgba(23,34,49,.98) 100%);
  color: var(--wht);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}

.contact-select__trigger:hover {
  border-color: rgba(196,154,47,.32);
}

.contact-select__trigger:focus-visible {
  outline: none;
  border-color: rgba(196,154,47,.42);
  box-shadow: 0 0 0 3px rgba(196,154,47,.08);
}

.contact-select__value {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(245,248,252,.92);
}

.contact-select:not(.has-value) .contact-select__value {
  color: rgba(184,200,220,.42);
}

.contact-select__chevron {
  width: 20px;
  height: 20px;
  color: rgba(245,248,252,.84);
  flex-shrink: 0;
  transition: transform .2s ease;
}

.contact-select__chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-select.is-open .contact-select__trigger {
  border-color: rgba(196,154,47,.38);
  box-shadow:
    0 14px 30px rgba(0,0,0,.22),
    0 0 0 3px rgba(196,154,47,.05);
}

.contact-select.is-open .contact-select__chevron {
  transform: rotate(180deg);
}

.contact-select__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(93,122,152,.24);
  background:
    linear-gradient(180deg, rgba(23,34,49,.98) 0%, rgba(18,27,39,.99) 100%);
  box-shadow:
    0 28px 56px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.02) inset;
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 70;
  backdrop-filter: blur(18px);
}

.contact-select.is-open .contact-select__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-select__option {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(245,248,252,.92);
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1.4;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.contact-select__option:hover,
.contact-select__option:focus-visible {
  outline: none;
  background: rgba(255,255,255,.045);
}

.contact-select__option.is-selected {
  background: linear-gradient(180deg, rgba(46,112,199,.96) 0%, rgba(38,102,186,.96) 100%);
  color: #ffffff;
}

.contact-select__option-check {
  width: 18px;
  height: 18px;
  color: currentColor;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .16s ease, transform .16s ease;
  flex-shrink: 0;
}

.contact-select__option-check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-select__option.is-selected .contact-select__option-check {
  opacity: 1;
  transform: scale(1);
}

.contact-select.is-invalid .contact-select__trigger {
  border-color: rgba(255,120,120,.38);
  box-shadow: 0 0 0 3px rgba(255,120,120,.08);
}

.contact-select.is-native .contact-select__native {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  opacity: 1;
  pointer-events: auto;
  border-radius: 18px;
  border: 1px solid rgba(93,122,152,.22);
  background: linear-gradient(180deg, rgba(28,40,56,.96) 0%, rgba(23,34,49,.98) 100%);
  color: var(--wht);
  padding: 16px 48px 16px 18px;
  font: inherit;
  line-height: 1.45;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}

.contact-select.is-native::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  border-right: 1.8px solid rgba(245,248,252,.84);
  border-bottom: 1.8px solid rgba(245,248,252,.84);
  transform: rotate(45deg);
  pointer-events: none;
}

.contact-select.is-native .contact-select__trigger,
.contact-select.is-native .contact-select__menu {
  display: none !important;
}

@media (max-width: 720px) {
  .contact-select__menu {
    border-radius: 18px;
    padding: 8px;
  }

  .contact-select__option {
    min-height: 50px;
    padding: 13px 14px;
  }
}

.legal-phero {
  padding-bottom: 56px;
}

.legal-phero-inner {
  max-width: 820px;
}

.legal-wrap {
  max-width: 900px;
}

.legal-shell {
  padding: 38px 34px;
  border-radius: 26px;
  border: 1px solid rgba(93,122,152,.2);
  background: linear-gradient(180deg, rgba(19,30,44,.96) 0%, rgba(15,25,37,.98) 100%);
  box-shadow: 0 24px 52px rgba(0,0,0,.18);
}

.legal-meta {
  margin-bottom: 26px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-l);
}

.legal-section + .legal-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(93,122,152,.14);
}

.legal-section h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
  color: var(--wht);
}

.legal-section p,
.legal-section li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--lt);
}

.legal-section a {
  color: var(--gold-l);
}

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
  margin-top: 10px;
}

@media (max-width: 720px) {
  .legal-shell {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .legal-section h2 {
    font-size: 22px;
  }
}

