@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #05070d;
  --bg-soft: #090d17;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.105);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f8ff;
  --muted: #a3a9ba;
  --muted-2: #687083;
  --blue: #5d7dff;
  --violet: #8b5cf6;
  --gold: #d7ae62;
  --green: #28d192;
  --danger: #ff7171;
  --radius: 10px;
  --mx: 50%;
  --my: 50%;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(93, 125, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(139, 92, 246, 0.12), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #070a12 40%, #05070d 100%);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

@media (pointer: fine) {
  body.cursor-enabled,
  body.cursor-enabled a,
  body.cursor-enabled button,
  body.cursor-enabled input,
  body.cursor-enabled select,
  body.cursor-enabled textarea {
    cursor: none;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0), rgba(5, 7, 13, 0.8));
}

.cursor-dot,
.cursor-halo,
.page-spotlight {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
}

.cursor-dot {
  width: 9px;
  height: 9px;
  left: 0;
  top: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.76);
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.18s ease, height 0.18s ease, opacity 0.18s ease, background 0.18s ease;
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor-halo {
  width: 220px;
  height: 220px;
  left: 0;
  top: 0;
  z-index: 9999;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(93, 125, 255, 0.14) 28%, rgba(139, 92, 246, 0.08) 48%, transparent 70%);
  transform: translate3d(-50%, -50%, 0);
  filter: blur(0.5px);
  /* transform lag via CSS compositor — very short so it doesn't "stick" on nav items */
  transition: opacity 0.2s ease, width 0.18s ease, height 0.18s ease,
              transform 0.06s linear;
  mix-blend-mode: normal;
  will-change: transform;
}

.page-spotlight {
  inset: 0;
  z-index: -1;
  opacity: 0.9;
  background: radial-gradient(circle 440px at var(--mx) var(--my), rgba(93, 125, 255, 0.1), transparent 64%);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-halo {
  opacity: 1;
}

body.cursor-active .cursor-dot {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.82);
}

body.cursor-active .cursor-halo {
  /* Smaller delta (220→260 instead of 220→280) + faster size transition
     so it doesn't visually "linger" over the previous nav item */
  width: 260px;
  height: 260px;
  opacity: 0.65;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: white;
  color: #05070d;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: auto;
}

.header-inner,
.mobile-menu {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 13, 23, 0.72);
  backdrop-filter: blur(26px) saturate(1.25);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.header-inner {
  position: relative;
  isolation: isolate;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 8px 8px 14px;
  border-radius: var(--radius);
  overflow: visible;
}

.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 26%, rgba(255, 255, 255, 0.08) 72%, transparent),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.18), transparent 32%);
  clip-path: inset(0 round var(--radius));
  opacity: 0.7;
  pointer-events: none;
}

.header-inner > * {
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 16px 44px rgba(93, 125, 255, 0.34);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

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

.desktop-nav a,
.mobile-menu a {
  color: rgba(247, 248, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button,
.lang-toggle,
.menu-toggle {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 850;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 18px 44px rgba(93, 125, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button::before,
.lang-toggle::before,
.menu-toggle::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.24) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.button:hover::before,
.lang-toggle:hover::before,
.menu-toggle:hover::before {
  transform: translateX(120%);
}

.button > *,
.lang-toggle > *,
.menu-toggle > * {
  position: relative;
  z-index: 1;
}

.button {
  padding: 0 20px;
}

.button:hover,
.lang-toggle:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(93, 125, 255, 0.36);
}

.button-small {
  min-height: 42px;
  padding: 0 15px;
  font-size: 14px;
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.button-ghost.dark {
  background: rgba(5, 7, 13, 0.34);
}

.language {
  position: relative;
  z-index: 40;
}

.lang-toggle,
.menu-toggle {
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.lang-toggle svg {
  width: 12px;
  transition: transform 0.2s ease;
}

.language.open .lang-toggle svg {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 300;
  width: 188px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 13, 23, 0.94);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transform-origin: top right;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.language.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu button,
.footer-langs button {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  color: rgba(247, 248, 255, 0.72);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  text-align: left;
  font-weight: 750;
}

.lang-menu button:hover,
.lang-menu button.active,
.footer-langs button:hover,
.footer-langs button.active {
  color: white;
  background: rgba(93, 125, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 42px;
  padding: 0;
}

.mobile-menu {
  display: none;
  width: min(1180px, calc(100% - 40px));
  margin: 8px auto 0;
  padding: 8px;
  border-radius: var(--radius);
}

.mobile-menu.open {
  display: grid;
}

section {
  position: relative;
  padding: 108px 0;
  scroll-margin-top: 104px;
}

.company-hero {
  min-height: calc(100svh - 96px);
  display: grid;
  align-items: center;
  padding: 108px 0 26px;
  overflow: hidden;
}

.company-hero::before,
.account-hero::before,
.offer-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%);
  opacity: 0.62;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
}

.aurora-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora-ribbon {
  position: absolute;
  width: 54vw;
  height: 18vw;
  min-width: 520px;
  min-height: 180px;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.34;
  transform: rotate(-14deg);
  animation: auroraDrift 13s ease-in-out infinite;
}

.ribbon-one {
  left: -12%;
  top: 12%;
  background: linear-gradient(90deg, rgba(93, 125, 255, 0), rgba(93, 125, 255, 0.82), rgba(40, 209, 146, 0.34), rgba(93, 125, 255, 0));
}

.ribbon-two {
  right: -18%;
  top: 28%;
  animation-delay: -4s;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0), rgba(139, 92, 246, 0.72), rgba(215, 174, 98, 0.28), rgba(139, 92, 246, 0));
}

.ribbon-three {
  left: 28%;
  bottom: 4%;
  animation-delay: -8s;
  background: linear-gradient(90deg, rgba(40, 209, 146, 0), rgba(40, 209, 146, 0.34), rgba(93, 125, 255, 0.56), rgba(40, 209, 146, 0));
}

@keyframes auroraDrift {
  0%, 100% {
    translate: 0 0;
    scale: 1;
  }
  50% {
    translate: 5vw -2vw;
    scale: 1.08;
  }
}

.company-hero-inner,
.hero-grid,
.teams-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: 70px;
  align-items: center;
}

.company-copy,
.hero-content,
.section-heading,
.offer-board,
.contact-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.kicker,
.offer-overline {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 13px;
  border: 1px solid rgba(93, 125, 255, 0.22);
  border-radius: 999px;
  background: rgba(93, 125, 255, 0.1);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(40, 209, 146, 0.12);
}

.kicker.gold,
.offer-overline {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(52px, 7.7vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* Hero heading keeps the large scale */
.account-hero h2 {
  margin: 0 0 28px;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.lead,
.section-heading p,
.service-card p,
.why-card p,
.step-card p,
.contact-copy p,
.footer-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.lead {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 22px);
}

.company-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #fff, #b8c5ff 45%, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
}

.company-visual,
.hero-card-stack {
  position: relative;
  min-height: 410px;
}

.glass-device {
  position: absolute;
  right: 6%;
  top: 4%;
  width: min(300px, 82vw);
  aspect-ratio: 0.68;
  padding: 30px 26px 104px;
  display: grid;
  align-content: end;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 70% 12%, rgba(255, 255, 255, 0.34), transparent 18%),
    radial-gradient(circle at 18% 62%, rgba(93, 125, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, rgba(9, 21, 46, 0.96), rgba(93, 125, 255, 0.44), rgba(139, 92, 246, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  transform: rotate(7deg);
  animation: floatA 7s ease-in-out infinite;
  overflow: hidden;
  transform-style: preserve-3d;
}

.glass-device::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.22), transparent 34%);
  opacity: 0.74;
  pointer-events: none;
}

.device-top {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 35%;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(-50%);
}

.ios-status {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 38px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
}

.ios-grid {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ios-grid i,
.ios-dock i,
.ios-control .control-tile,
.ios-wallet-card i {
  display: block;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(93, 125, 255, 0.74), rgba(139, 92, 246, 0.64));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 10px 26px rgba(0, 0, 0, 0.2);
}

.ios-grid i {
  aspect-ratio: 1;
  opacity: 0.88;
}

.ios-grid i:nth-child(2),
.ios-grid i:nth-child(7) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(120, 206, 255, 0.56), rgba(93, 125, 255, 0.66), rgba(139, 92, 246, 0.48));
}

.ios-grid i:nth-child(4),
.ios-grid i:nth-child(5) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(215, 174, 98, 0.74), rgba(139, 92, 246, 0.52));
}

.glass-device strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 68px;
  line-height: 0.9;
}

.glass-device span {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.ios-dock {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  height: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.ios-control {
  position: absolute;
  left: 2%;
  top: 32%;
  width: 176px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  animation: floatB 7.5s ease-in-out infinite;
}

.ios-control .control-tile {
  height: 54px;
}

.ios-control .control-tile.active {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(93, 125, 255, 0.86), rgba(139, 92, 246, 0.72));
}

.control-slider {
  grid-column: 1 / -1;
  height: 44px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.control-slider span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.8));
}

.floating-panel {
  position: absolute;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  font-weight: 800;
  transform-style: preserve-3d;
  animation: floatB 8s ease-in-out infinite;
}

.panel-a {
  top: 12%;
  left: 4%;
}

.panel-b {
  right: 0;
  bottom: 18%;
}

.panel-c {
  left: 10%;
  bottom: 8%;
}

@keyframes floatA {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

@keyframes floatB {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 14px; }
}

.account-hero {
  padding-top: 120px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--bg-soft);
}

.hero-card-stack {
  display: grid;
  place-items: center;
}

.developer-orbit {
  position: relative;
  width: 320px;
  height: 320px;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(93, 125, 255, 0.22);
  animation: pulseRing 4s ease-in-out infinite;
}

.orbit-ring.small {
  inset: 48px;
  border-color: rgba(215, 174, 98, 0.28);
  animation-delay: 0.8s;
}

@keyframes pulseRing {
  0%, 100% { scale: 1; opacity: 0.75; }
  50% { scale: 1.05; opacity: 0.4; }
}

.developer-badge {
  position: relative;
  z-index: 1;
  width: 174px;
  height: 174px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 26px;
  border-radius: 34px;
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.developer-badge svg {
  width: 78px;
  height: 78px;
  color: var(--blue);
}

.metric-card {
  position: absolute;
  width: 190px;
  padding: 18px;
  border-radius: var(--radius);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.metric-card::before,
.ios-wallet-card::before,
.ios-notification::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.22), transparent 42%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.metric-card:hover::before,
.ios-wallet-card:hover::before,
.ios-notification:hover::before {
  opacity: 1;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
}

.top-card {
  top: 60px;
  left: 20px;
}

.bottom-card {
  right: 8px;
  bottom: 62px;
}

.ios-wallet-card,
.ios-notification {
  position: absolute;
  border-radius: 24px;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.ios-wallet-card {
  right: 2px;
  top: 108px;
  width: 154px;
  min-height: 124px;
  padding: 18px;
  animation: floatB 8s ease-in-out infinite;
}

.ios-wallet-card span,
.ios-notification span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ios-wallet-card strong,
.ios-notification strong {
  display: block;
  margin-top: 7px;
  font-size: 24px;
}

.ios-wallet-card i {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, var(--green), var(--blue));
}

.ios-notification {
  left: 24px;
  bottom: 28px;
  width: 220px;
  padding: 16px;
  animation: floatA 7.8s ease-in-out infinite;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.trust-row div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.trust-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 24px;
}

.trust-row span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 12px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.services-grid,
.why-grid,
.steps-grid {
  display: grid;
  margin-top: 52px;
  gap: 14px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 174, 98, 0.45), rgba(93, 125, 255, 0.42), transparent);
  opacity: 0.58;
}

.service-card,
.why-card,
.step-card,
.stats-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* contact-form needs overflow:visible so the custom dropdown escapes the card bounds */
.contact-form {
  position: relative;
  overflow: visible;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-card::before,
.why-card::before,
.step-card::before,
.contact-form::before,
.stats-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle 240px at var(--mx) var(--my), rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(circle 180px at var(--mx) var(--my), rgba(93, 125, 255, 0.14), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.service-card:hover::before,
.why-card:hover::before,
.step-card:hover::before,
.contact-form:hover::before,
.stats-panel:hover::before {
  opacity: 1;
}

.service-card > *,
.why-card > *,
.step-card > *,
.contact-form > *,
.stats-panel > *,
.payout-card > *,
.buyout-band > *,
.referral-row > *,
.offer-contact-panel > *,
.offer-board > * {
  position: relative;
  z-index: 1;
}

.service-card,
.why-card,
.step-card {
  padding: 28px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover,
.why-card:hover,
.step-card:hover {
  transform: translateY(-7px);
  border-color: rgba(93, 125, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(93, 125, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: 0 12px 40px rgba(93, 125, 255, 0.18), 0 0 0 1px rgba(93, 125, 255, 0.22);
}

.service-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--blue);
}

.why-section,
.faq-section {
  background: rgba(255, 255, 255, 0.025);
}

.why-card span,
.step-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.offer-section,
.process-section,
.contact-section {
  color: white;
  background:
    radial-gradient(circle at 80% 0%, rgba(215, 174, 98, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.96), rgba(3, 4, 8, 1));
  overflow: hidden;
}

.offer-board {
  margin-top: 56px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  contain: paint;
  perspective: 1200px;
  padding: clamp(22px, 4vw, 42px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 174, 98, 0.15), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(93, 125, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.offer-board::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -48%;
  width: 34%;
  z-index: 0;
  background:
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.13) 48%, transparent 100%);
  opacity: 0.24;
  pointer-events: none;
  transform: skewX(-16deg) translate3d(0, 0, 0);
  animation: offerSheen 8s ease-in-out infinite;
  will-change: transform;
}

.offer-orb {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.42;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.35s ease;
  will-change: transform, opacity;
}

.offer-orb-a {
  width: 230px;
  height: 230px;
  right: 8%;
  top: 8%;
  background: radial-gradient(circle, rgba(93, 125, 255, 0.28), transparent 68%);
  animation: offerOrbFloatA 9s ease-in-out infinite;
}

.offer-orb-b {
  width: 180px;
  height: 180px;
  left: 5%;
  top: 34%;
  background: radial-gradient(circle, rgba(215, 174, 98, 0.22), transparent 68%);
  animation: offerOrbFloatB 10s ease-in-out infinite;
}

.offer-orb-c {
  width: 210px;
  height: 210px;
  right: 16%;
  bottom: 5%;
  background: radial-gradient(circle, rgba(40, 209, 146, 0.16), transparent 68%);
  animation: offerOrbFloatC 11s ease-in-out infinite;
}

.offer-board.is-interacting .offer-orb {
  opacity: 0.68;
}

@keyframes offerSheen {
  0%, 58%, 100% {
    transform: skewX(-16deg) translate3d(0, 0, 0);
  }
  76% {
    transform: skewX(-16deg) translate3d(460%, 0, 0);
  }
}

@keyframes offerOrbFloatA {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: -14px 18px;
  }
}

@keyframes offerOrbFloatB {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 18px -12px;
  }
}

@keyframes offerOrbFloatC {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: -10px -16px;
  }
}

.offer-main {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at 82% 24%, rgba(93, 125, 255, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s ease, border-color 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.offer-main::after {
  content: "";
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  top: clamp(18px, 4vw, 38px);
  width: clamp(76px, 12vw, 132px);
  aspect-ratio: 1;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(93, 125, 255, 0.56), rgba(139, 92, 246, 0.42));
  box-shadow: 0 18px 48px rgba(93, 125, 255, 0.18);
  opacity: 0.38;
  transform: rotate(9deg);
  animation: offerTileFloat 6.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes offerTileFloat {
  0%, 100% {
    transform: rotate(9deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(6deg) translate3d(-8px, 7px, 0);
  }
}

.offer-main > * {
  position: relative;
  z-index: 1;
}

.offer-main h3 {
  max-width: 920px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.offer-main p:not(.offer-overline),
.buyout-band p,
.referral-row p {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

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

.payout-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 154px;
  padding: 22px;
  display: grid;
  align-content: end;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.payout-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.24), var(--blue));
  opacity: 0.74;
}

.payout-card:hover {
  transform: translate3d(0, -5px, 0);
  border-color: rgba(215, 174, 98, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 174, 98, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

.payout-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--gold);
  transition: transform 0.24s ease;
}

.payout-card:hover svg {
  transform: translate3d(0, -4px, 0) scale(1.05);
}

.payout-card strong {
  color: var(--gold);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
}

.payout-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.payout-card.accent strong,
.payout-card.accent svg {
  color: var(--green);
}

.formula {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 850;
}

.buyout-band,
.referral-row,
.offer-contact-panel {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 26px;
  border-radius: var(--radius);
  transform: translate3d(0, 0, 0);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
  will-change: transform;
}

.buyout-band:hover,
.referral-row:hover,
.offer-contact-panel:hover {
  transform: translate3d(0, -3px, 0);
}

.buyout-band {
  border: 1px solid rgba(40, 209, 146, 0.5);
  background: linear-gradient(135deg, rgba(40, 209, 146, 0.13), rgba(255, 255, 255, 0.035));
}

.buyout-band:hover {
  border-color: rgba(40, 209, 146, 0.64);
  background: linear-gradient(135deg, rgba(40, 209, 146, 0.16), rgba(255, 255, 255, 0.045));
}

.buyout-band span,
.buyout-band strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.buyout-band h3 {
  margin: 10px 0 12px;
  max-width: 960px;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.buyout-band strong {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(40, 209, 146, 0.35);
  border-radius: 999px;
  background: rgba(40, 209, 146, 0.08);
}

.referral-row,
.offer-contact-panel {
  border: 1px solid rgba(215, 174, 98, 0.48);
  background: linear-gradient(135deg, rgba(215, 174, 98, 0.12), rgba(255, 255, 255, 0.035));
}

.referral-row:hover,
.offer-contact-panel:hover {
  border-color: rgba(215, 174, 98, 0.62);
  background: linear-gradient(135deg, rgba(215, 174, 98, 0.15), rgba(255, 255, 255, 0.045));
}

.referral-row {
  display: flex;
  gap: 18px;
}

.referral-row svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.referral-row strong,
.offer-contact-panel > span {
  color: var(--gold);
  font-weight: 900;
}

.offer-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.offer-steps span {
  position: relative;
  overflow: hidden;
  padding: 9px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  animation: offerChipFloat 5.5s ease-in-out infinite;
  will-change: transform;
}

.offer-steps span:nth-child(2) {
  animation-delay: -1.1s;
}

.offer-steps span:nth-child(3) {
  animation-delay: -2.2s;
}

.offer-steps span:nth-child(4) {
  animation-delay: -3.3s;
}

.offer-steps span:nth-child(5) {
  animation-delay: -4.4s;
}

.offer-steps span:hover {
  transform: translate3d(0, -3px, 0);
  border-color: rgba(215, 174, 98, 0.42);
  color: white;
  background: rgba(215, 174, 98, 0.1);
}

@keyframes offerChipFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -3px;
  }
}

.offer-contact-panel h3 {
  margin: 8px 0 22px;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.offer-contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.offer-contact-links a,
.direct-links a {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
  overflow-wrap: anywhere;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.offer-contact-links a:hover,
.direct-links a:hover {
  transform: translate3d(0, -3px, 0);
  border-color: rgba(215, 174, 98, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.offer-contact-links svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.offer-final-cta {
  position: relative;
  overflow: hidden;
  min-height: 72px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: var(--radius);
  color: #070707;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #f7d98c, var(--gold));
  box-shadow: 0 24px 70px rgba(215, 174, 98, 0.25);
  font-weight: 950;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transform: translate3d(0, 0, 0);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  will-change: transform;
}

.offer-final-cta::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -42%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-16deg) translate3d(0, 0, 0);
  animation: offerCtaSheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.offer-final-cta:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 28px 84px rgba(215, 174, 98, 0.32);
}

@keyframes offerCtaSheen {
  0%, 52%, 100% {
    transform: skewX(-16deg) translate3d(0, 0, 0);
  }
  72% {
    transform: skewX(-16deg) translate3d(410%, 0, 0);
  }
}

.steps-grid {
  counter-reset: step;
}

.step-card {
  min-height: 282px;
  display: grid;
  align-content: start;
}

.step-card:hover {
  border-color: rgba(215, 174, 98, 0.4);
}

.step-visual {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.32), transparent 32%),
    linear-gradient(135deg, rgba(93, 125, 255, 0.28), rgba(215, 174, 98, 0.13));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 30px;
  line-height: 1;
  transform: translateZ(0);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.step-card:hover .step-visual {
  transform: translate3d(0, -4px, 0) scale(1.04);
  box-shadow: 0 24px 58px rgba(93, 125, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.teams-section {
  background: rgba(255, 255, 255, 0.03);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag-list span {
  padding: 9px 13px;
  border: 1px solid rgba(93, 125, 255, 0.22);
  border-radius: 999px;
  color: #c9d2ff;
  background: rgba(93, 125, 255, 0.1);
  font-size: 13px;
  font-weight: 850;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  max-width: 640px;
}

.audience-chip {
  position: relative;
  overflow: hidden;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(93, 125, 255, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.audience-chip::after {
  content: "";
  position: absolute;
  inset: auto -20% -56% 28%;
  height: 92px;
  border-radius: 999px;
  background: rgba(215, 174, 98, 0.14);
  filter: blur(24px);
  pointer-events: none;
}

.audience-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 125, 255, 0.36);
  background:
    radial-gradient(circle at 100% 0%, rgba(93, 125, 255, 0.2), transparent 36%),
    rgba(255, 255, 255, 0.075);
}

.audience-chip span {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-size: 23px;
}

.audience-chip strong {
  position: relative;
  z-index: 1;
  color: rgba(247, 248, 255, 0.88);
  font-size: 14px;
}

.audience-chip.wide {
  grid-column: 1 / -1;
}

.stats-panel {
  padding: 26px;
  display: grid;
  gap: 14px;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 125, 255, 0.2), transparent 34%),
    radial-gradient(circle at 18% 100%, rgba(215, 174, 98, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.stats-panel::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 106px;
  height: 150px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 28px 34px, rgba(93, 125, 255, 0.62) 0 10px, transparent 11px),
    radial-gradient(circle at 68px 34px, rgba(40, 209, 146, 0.56) 0 10px, transparent 11px),
    radial-gradient(circle at 28px 76px, rgba(215, 174, 98, 0.56) 0 10px, transparent 11px),
    radial-gradient(circle at 68px 76px, rgba(139, 92, 246, 0.58) 0 10px, transparent 11px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  opacity: 0.32;
  pointer-events: none;
}

.stats-panel div {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 20px;
}

.stats-emoji {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(93, 125, 255, 0.12);
  border: 1px solid rgba(93, 125, 255, 0.18);
  font-size: 28px;
  line-height: 1;
}

.stats-text {
  display: flex;
  flex-direction: column;
}

.stats-panel strong {
  display: block;
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
}

.stats-panel span:not(.stats-emoji) {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.faq-grid {
  max-width: 900px;
  margin: 52px auto 0;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--text);
  text-align: left;
  font-weight: 850;
}

.faq-question svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--blue);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-layout {
  align-items: start;
}

.direct-links {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.direct-links a {
  display: grid;
  gap: 4px;
}

.direct-links span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.form-feedback.success {
  display: block;
  background: rgba(40, 209, 146, 0.1);
  border: 1px solid rgba(40, 209, 146, 0.3);
  color: #28d192;
}

.form-feedback.error {
  display: block;
  background: rgba(255, 113, 113, 0.1);
  border: 1px solid rgba(255, 113, 113, 0.3);
  color: #ff7171;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 14px;
  color: white;
  background: rgba(0, 0, 0, 0.22);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(93, 125, 255, 0.74);
  box-shadow: 0 0 0 4px rgba(93, 125, 255, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

/* ---- Custom Select ------------------------------------------------- */

.custom-select {
  position: relative;
}

.custom-select-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.38);
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.custom-select.has-value .custom-select-btn {
  color: white;
}

.custom-select-btn:focus,
.custom-select.open .custom-select-btn {
  border-color: rgba(93, 125, 255, 0.74);
  box-shadow: 0 0 0 4px rgba(93, 125, 255, 0.12);
}

.custom-select-chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.2s ease;
}

.custom-select.open .custom-select-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

/* Dropdown list — appended to <body> via JS portal, position:fixed set by JS */
.custom-select-list {
  /* position: fixed is set inline by JS */
  margin: 0;
  padding: 6px;
  list-style: none;
  /* 100% opaque — nothing can bleed through */
  background: #111827;
  border: 1px solid rgba(93, 125, 255, 0.5);
  border-radius: var(--radius);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.5),
    0 16px 48px rgba(0, 0, 0, 0.9);
  z-index: 99999;
  /* Hidden state */
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select-list.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* List items */
.custom-select-list li {
  padding: 12px 16px;
  border-radius: calc(var(--radius) - 3px);
  color: #c8cde0;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    color 0.14s ease,
    background 0.14s ease,
    opacity 0.18s ease,
    transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Stagger delays for enter animation */
.custom-select-list li:nth-child(1) { transition-delay: 0.04s; }
.custom-select-list li:nth-child(2) { transition-delay: 0.09s; }
.custom-select-list li:nth-child(3) { transition-delay: 0.14s; }
.custom-select-list li:nth-child(4) { transition-delay: 0.19s; }

.custom-select-list.is-open li {
  opacity: 1;
  transform: translateY(0);
}

.custom-select-list li:hover {
  color: #fff;
  background: rgba(93, 125, 255, 0.16);
}

.custom-select-list li[aria-selected="true"] {
  color: #fff;
  background: rgba(93, 125, 255, 0.13);
}

/* Checkmark */
.custom-select-list li[aria-selected="true"]::after {
  content: "";
  width: 6px;
  height: 11px;
  border-right: 2px solid #5d7dff;
  border-bottom: 2px solid #5d7dff;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-bottom: 2px;
}

/* Shake error state */
.custom-select.select-error .custom-select-btn {
  border-color: rgba(255, 113, 113, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 113, 113, 0.12);
  animation: select-shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes select-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(3px); }
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  padding: 68px 0 34px;
  background: #04060b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.7fr;
  gap: 42px;
  align-items: start;
}

.footer-grid p {
  max-width: 320px;
  margin: 18px 0 0;
}

.footer-links,
.footer-langs {
  display: grid;
  gap: 10px;
}

.footer-links strong {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-weight: 750;
}

.footer-links a:hover {
  color: white;
}

.footer-langs button {
  border: 1px solid var(--line);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-2);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .company-hero-inner,
  .hero-grid,
  .teams-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .company-visual,
  .hero-card-stack {
    min-height: 420px;
  }

  .services-grid,
  .why-grid,
  .steps-grid,
  .payout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid::before {
    display: none;
  }

  .offer-contact-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .shell,
  .mobile-menu {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    top: 8px;
  }

  .header-inner {
    min-height: 58px;
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions .button-small {
    display: none;
  }

  section {
    padding: 64px 0;
  }

  .company-hero {
    min-height: auto;
    padding: 108px 0 56px;
    text-align: center;
  }

  .account-hero {
    text-align: center;
  }

  /* Center hero content when card stack is hidden */
  .hero-content,
  .company-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions,
  .company-actions {
    justify-content: center;
    width: 100%;
  }

  .lead {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .account-hero h2 {
    font-size: clamp(32px, 9vw, 50px);
  }

  h2 {
    font-size: clamp(22px, 7vw, 34px);
  }

  .offer-main h3 {
    font-size: clamp(24px, 7.5vw, 36px);
  }

  .offer-main::after {
    display: none;
  }

  .lead,
  .section-heading p,
  .offer-main p:not(.offer-overline),
  .buyout-band p,
  .referral-row p {
    font-size: 16px;
  }

  .company-visual,
  .hero-card-stack {
    display: none;
  }

  /* Trust row stays 3 columns but more compact */
  .trust-row {
    margin-top: 28px;
  }

  .trust-row div {
    padding: 14px 10px;
    text-align: center;
  }

  .trust-row strong {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .trust-row span {
    font-size: 12px;
  }

  .services-grid,
  .why-grid,
  .steps-grid,
  .payout-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  /* Payout cards: 2 per row on mobile */
  .payout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-chip.wide {
    grid-column: auto;
  }

  .offer-board,
  .service-card,
  .why-card,
  .step-card,
  .contact-form,
  .buyout-band,
  .referral-row,
  .offer-contact-panel {
    padding: 20px;
  }

  /* Stats panel cards comfortable on mobile */
  .stats-panel div {
    padding: 18px;
    gap: 16px;
  }

  .stats-emoji {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .stats-panel strong {
    font-size: 38px;
  }

  /* Steps: horizontal layout on mobile */
  .step-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .step-card > svg,
  .step-card > span:first-child {
    flex-shrink: 0;
  }

  /* Section headings centered */
  .section-heading.centered {
    text-align: center;
  }

  /* FAQ section */
  .faq-grid {
    margin-top: 36px;
  }

  /* Contact form reduced padding */
  .contact-form {
    padding: 20px;
    gap: 14px;
  }

  /* Direct links full width */
  .direct-links {
    gap: 8px;
  }

  /* Footer: 2 columns on medium mobile */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Referral row */
  .referral-row {
    display: grid;
  }

  /* Footer location */
  .footer-location-wrap {
    margin-top: 28px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand span:last-child {
    max-width: 126px;
  }

  .lang-toggle {
    padding: 0 9px;
  }

  /* Footer: 1 column on small phones */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Trust row compact */
  .trust-row strong {
    font-size: 15px;
  }

  .trust-row span {
    font-size: 11px;
  }

  /* Section padding tighter */
  section {
    padding: 52px 0;
  }

  .company-hero {
    padding: 100px 0 48px;
  }

  /* Payout 1 column on very small */
  .payout-grid {
    grid-template-columns: 1fr;
  }

  .company-actions,
  .hero-actions {
    display: grid;
  }

  .company-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  /* Stats panel full width */
  .stats-panel strong {
    font-size: 34px;
  }

  /* Contact form padding */
  .offer-board,
  .service-card,
  .why-card,
  .step-card,
  .contact-form,
  .buyout-band,
  .referral-row,
  .offer-contact-panel {
    padding: 16px;
  }
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--gold));
  box-shadow: 0 0 10px rgba(93, 125, 255, 0.7);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* =============================================
   PARTICLE CANVAS
   ============================================= */

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: 0.55;
}

/* =============================================
   ACTIVE NAV LINKS
   ============================================= */

.desktop-nav a.nav-active {
  color: white;
  background: rgba(93, 125, 255, 0.15);
}

.desktop-nav a {
  transition: color 0.15s ease, background 0.15s ease;
}

/* No translateY on nav — it adds visual noise when moving quickly */

/* =============================================
   HEADER COMPACT STATE ON SCROLL
   ============================================= */

.site-header.is-scrolled .header-inner {
  min-height: 56px;
  background: rgba(7, 10, 18, 0.88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.site-header {
  transition: none;
}

.header-inner {
  transition: min-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease,
              box-shadow 0.35s ease;
}

/* =============================================
   ENHANCED BUTTON EFFECTS
   ============================================= */

.button {
  position: relative;
  overflow: hidden;
}

.button .ripple-wave,
.offer-final-cta .ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-expand 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: none;
}

@keyframes ripple-expand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* =============================================
   STAGGERED CARD REVEALS
   ============================================= */

.services-grid .reveal:nth-child(1),
.why-grid .reveal:nth-child(1),
.steps-grid .reveal:nth-child(1),
.payout-grid .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.services-grid .reveal:nth-child(2),
.why-grid .reveal:nth-child(2),
.steps-grid .reveal:nth-child(2),
.payout-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.services-grid .reveal:nth-child(3),
.why-grid .reveal:nth-child(3),
.steps-grid .reveal:nth-child(3),
.payout-grid .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.why-grid .reveal:nth-child(4),
.steps-grid .reveal:nth-child(4),
.payout-grid .reveal:nth-child(4) {
  transition-delay: 270ms;
}

.why-grid .reveal:nth-child(5) {
  transition-delay: 360ms;
}

.why-grid .reveal:nth-child(6) {
  transition-delay: 450ms;
}

/* =============================================
   GRADIENT ANIMATED BORDER ON CARDS (hover)
   ============================================= */

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-spin {
  to { --border-angle: 360deg; }
}

.service-card,
.why-card,
.step-card {
  isolation: isolate;
}

.service-card::after,
.why-card::after,
.step-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: calc(var(--radius) + 1px);
  background: conic-gradient(
    from var(--border-angle),
    transparent 0deg 300deg,
    rgba(93, 125, 255, 0.7) 315deg,
    rgba(139, 92, 246, 0.9) 330deg,
    rgba(93, 125, 255, 0.7) 345deg,
    transparent 360deg
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: border-spin 4s linear infinite;
  animation-play-state: paused;
}

.service-card:hover::after,
.why-card:hover::after,
.step-card:hover::after {
  opacity: 1;
  animation-play-state: running;
}

/* =============================================
   COUNTER ANIMATION (stats)
   ============================================= */

[data-counter] {
  display: inline-block;
  transition: transform 0.3s ease;
}

.stats-panel div:hover [data-counter],
.trust-row div:hover strong {
  transform: scale(1.05);
}

/* =============================================
   ENHANCED GRADIENT TEXT ANIMATION
   ============================================= */

.gradient-text {
  background-size: 200% 200%;
  background-position: 0% 50%;
  /* background-position animation causes paint-per-frame — replaced with
     a composited brightness pulse that runs on the GPU */
  animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { filter: brightness(1) saturate(1); }
  50%       { filter: brightness(1.14) saturate(1.15); }
}

/* =============================================
   MOBILE MENU SLIDE ANIMATION
   ============================================= */

.mobile-menu {
  display: block !important;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 8px;
  pointer-events: none;
  width: min(1180px, calc(100% - 40px));
  margin: 8px auto 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease,
              padding 0.3s ease;
}

.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
  padding: 8px;
  pointer-events: auto;
}

/* =============================================
   ENHANCED BRAND MARK PULSE
   ============================================= */

.brand-mark {
  position: relative;
  overflow: visible !important;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: opacity 0.3s ease;
}

.brand:hover .brand-mark::after {
  opacity: 0.5;
}

/* =============================================
   FAQ ANIMATION — JS-driven (Web Animations API)
   CSS задає лише початковий стан; анімація висоти
   через scrollHeight щоб не було "стрибків"
   ============================================= */

.faq-answer {
  display: block !important;
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 24px;
  /* Без CSS transition — JS-анімація точніша */
}

/* Відкритий стан встановлюється JS-ом через inline style */

.faq-item {
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(93, 125, 255, 0.3);
  background: rgba(93, 125, 255, 0.04);
}

.faq-item.open {
  border-color: rgba(93, 125, 255, 0.4);
  background: rgba(93, 125, 255, 0.06);
}

/* =============================================
   PAYOUT CARD ACCENT GLOW
   ============================================= */

.payout-card.accent {
  position: relative;
}

.payout-card.accent::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, var(--green), var(--blue));
  opacity: 0.3;
  filter: blur(4px);
  animation: accent-glow 3s ease-in-out infinite;
}

@keyframes accent-glow {
  /* Only opacity — blur animation is extremely expensive (repaint every frame) */
  0%, 100% { opacity: 0.18; }
  50%       { opacity: 0.42; }
}

/* =============================================
   SECTION DIVIDERS (subtle gradient lines)
   ============================================= */

section + section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  pointer-events: none;
}

/* =============================================
   OFFER FINAL CTA ENHANCED
   ============================================= */

.offer-final-cta {
  letter-spacing: 0.08em;
  font-size: 15px;
}

.offer-final-cta:hover {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

/* =============================================
   STATS PANEL COUNT ANIMATION
   ============================================= */

.stats-panel strong {
  display: block;
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.stats-panel div:hover strong {
  transform: scale(1.08) translateY(-2px);
  color: #f0c97a;
}

/* =============================================
   CONTACT FORM ENHANCED FOCUS
   ============================================= */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(93, 125, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(93, 125, 255, 0.15), 0 0 20px rgba(93, 125, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

/* =============================================
   DIRECT LINKS ENHANCED
   ============================================= */

.direct-links a {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.25s ease,
              background 0.25s ease,
              box-shadow 0.25s ease;
}

.direct-links a:hover {
  transform: translate3d(0, -4px, 0) scale(1.02);
  box-shadow: 0 12px 32px rgba(215, 174, 98, 0.18);
  border-color: rgba(215, 174, 98, 0.5);
}

/* =============================================
   EYEBROW PULSE DOT
   ============================================= */

.eyebrow span {
  animation: dot-pulse 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(40, 209, 146, 0.4),
                0 0 0 6px rgba(40, 209, 146, 0.12);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(40, 209, 146, 0.2),
                0 0 0 10px rgba(40, 209, 146, 0.05);
  }
}

/* =============================================
   FOOTER ENHANCED
   ============================================= */

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: radial-gradient(ellipse at 50% 100%, rgba(93, 125, 255, 0.06), transparent 70%);
  pointer-events: none;
}

/* ---- Footer location pill ---- */
.footer-location-wrap {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

.footer-location-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(93, 125, 255, 0.22);
  background: rgba(93, 125, 255, 0.06);
  color: rgba(247, 248, 255, 0.62);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.footer-location-link::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(93, 125, 255, 0.3), rgba(139, 92, 246, 0.2));
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
  z-index: -1;
}

.footer-location-link:hover {
  color: #fff;
  border-color: rgba(93, 125, 255, 0.55);
  background: rgba(93, 125, 255, 0.12);
  box-shadow: 0 0 28px rgba(93, 125, 255, 0.18), 0 2px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.footer-location-link:hover::before {
  opacity: 1;
}

.footer-location-pin {
  display: flex;
  align-items: center;
  color: #5d7dff;
  flex-shrink: 0;
  transition: color 0.22s ease;
}

.footer-location-link:hover .footer-location-pin {
  color: #7e9bff;
}

.footer-location-text {
  line-height: 1.4;
}

.footer-location-arrow {
  display: flex;
  align-items: center;
  opacity: 0.45;
  flex-shrink: 0;
  transform: translateX(0) translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.footer-location-link:hover .footer-location-arrow {
  opacity: 0.9;
  transform: translateX(2px) translateY(-2px);
}

/* =============================================
   SCROLL SNAP FEEL (no forced snap, just smooth)
   ============================================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* =============================================
   TRUST ROW HOVER ENHANCED
   ============================================= */

.trust-row div {
  transition: background 0.25s ease;
  cursor: default;
}

.trust-row div:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* =============================================
   APPLE LOGO DECORATIONS
   ============================================= */

.apple-deco {
  position: absolute;
  pointer-events: none;
  /* z-index: 0 → above aurora/noise (z-index:auto), below text content (z-index:1+) */
  z-index: 0;
}

.apple-deco-inner {
  /* will-change removed — 11 pre-promoted GPU layers is too expensive.
     The browser promotes transform-animated elements automatically. */
  animation: appleFloat var(--apple-dur, 20s) ease-in-out infinite;
  animation-delay: var(--apple-delay, 0s);
  filter: drop-shadow(0 0 32px rgba(93, 125, 255, 0.45));
}

@keyframes appleFloat {
  0%, 100% {
    transform: translateY(0px) scale(1) rotate(0deg);
  }
  33% {
    transform: translateY(-18px) scale(1.025) rotate(1.5deg);
  }
  66% {
    transform: translateY(-8px) scale(0.98) rotate(-1deg);
  }
}

/* Ensure apples show even when animation is disabled (reduce-motion) */
@media (prefers-reduced-motion: reduce) {
  .apple-deco-inner {
    animation: none;
  }
}

/* =============================================
   TAG LIST HOVER
   ============================================= */

.tag-list span {
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: default;
}

.tag-list span:hover {
  border-color: rgba(93, 125, 255, 0.5);
  background: rgba(93, 125, 255, 0.18);
  color: white;
  transform: translateY(-2px);
}
