:root {
  color-scheme: dark;
  --bg: #05060b;
  --bg-soft: #090b13;
  --panel: rgba(12, 15, 28, 0.72);
  --panel-strong: rgba(14, 17, 31, 0.92);
  --text: #f7f7fb;
  --muted: #aeb4c8;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.17);
  --cyan: #43e9ff;
  --blue: #5c7cff;
  --violet: #8a5cff;
  --pink: #ff4fa7;
  --orange: #ff8a3d;
  --green: #52f28a;
  --max-width: 1240px;
  --header-h: 72px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(80, 96, 255, 0.16), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

::selection { background: rgba(109, 103, 255, 0.45); color: #fff; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  background: #fff;
  color: #06070b;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 420px;
  height: 420px;
  left: var(--cursor-x, 50vw);
  top: var(--cursor-y, 30vh);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 120, 255, .10), rgba(140, 80, 255, .05) 35%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink), var(--orange));
  box-shadow: 0 0 14px rgba(99, 106, 255, .9);
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 18px;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.site-header.is-hidden { transform: translateY(-120%); opacity: 0; }
.header-shell {
  width: min(100%, var(--max-width));
  height: var(--header-h);
  margin: 0 auto;
  padding: 0 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17, 20, 38, .78), rgba(9, 11, 22, .66));
  box-shadow: 0 18px 65px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}
.brand-mini {
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  position: relative;
  padding: 11px 14px;
  border-radius: 999px;
  color: #c9cde0;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .25s ease, background .25s ease;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  background: rgba(255,255,255,.055);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 4px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 10px rgba(65, 221, 255, .8);
  transition: left .3s var(--ease), right .3s var(--ease);
}
.site-nav a.is-active::after { left: 16px; right: 16px; }

.section-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}
.section-anchor { position: relative; }
.eyebrow {
  margin: 0 0 14px;
  color: #cdd3e6;
  font-size: .78rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 14px rgba(74, 225, 255, .9);
}

/* Hero */
.hero {
  min-height: max(760px, 100svh);
  padding: 150px 24px 80px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(60% 55% at 50% 45%, rgba(28, 34, 68, .36), transparent 70%),
    linear-gradient(180deg, #05060b 0%, #060713 72%, #05060b 100%);
}
.hero-content {
  position: relative;
  z-index: 8;
  width: min(100%, 1420px);
  text-align: center;
}
.hero-eyebrow {
  color: #b7bed6;
  opacity: 0;
  animation: heroUp .85s .12s var(--ease) forwards;
}
.hero-title {
  margin: 0;
  font-size: clamp(4rem, 11.4vw, 10.6rem);
  line-height: .84;
  letter-spacing: -.07em;
  font-weight: 950;
  white-space: nowrap;
  filter: drop-shadow(0 0 36px rgba(111, 110, 255, .14));
}
.hero-title span {
  display: inline-block;
  color: #fff;
  background: linear-gradient(94deg, #ffffff 10%, #e9eaff 37%, #ffffff 58%, #d8ddff 84%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(54px) scale(.985);
  animation: heroTitle 1.15s .22s var(--ease) forwards, titleShine 9s 1.6s ease-in-out infinite;
}
.hero-tagline {
  margin: 34px 0 0;
  font-size: clamp(2rem, 4.3vw, 4.25rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.045em;
  background: linear-gradient(90deg, var(--cyan), #6781ff 27%, #a75cff 52%, #ff4fa7 75%, var(--orange));
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: heroUp .95s .46s var(--ease) forwards, gradientShift 8s 1.8s ease-in-out infinite alternate;
}
.hero-copy {
  margin: 20px auto 0;
  color: #bdc4d8;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 520;
  opacity: 0;
  animation: heroUp .9s .66s var(--ease) forwards;
}
.scroll-cue {
  margin: 68px auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #aab2ca;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  animation: heroUp .9s .86s var(--ease) forwards;
}
.scroll-cue svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 10px rgba(70, 233, 255, .7));
  animation: cueBounce 1.8s ease-in-out infinite;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .68;
  z-index: 1;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.orb-one {
  width: 520px;
  height: 520px;
  left: -160px;
  top: 16%;
  background: radial-gradient(circle at 65% 45%, rgba(56, 117, 255, .72), rgba(105, 58, 255, .22) 52%, transparent 72%);
}
.orb-two {
  width: 560px;
  height: 560px;
  right: -180px;
  bottom: 3%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 65, 148, .62), rgba(255, 118, 42, .18) 52%, transparent 72%);
  animation-delay: -5s;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 60%, transparent 92%);
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 60%, transparent 92%);
}
.hero-ribbon {
  position: absolute;
  z-index: 3;
  left: -12%;
  width: 124%;
  height: 170px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .7;
  pointer-events: none;
}
.ribbon-one {
  bottom: 7%;
  transform: rotate(-4deg);
  background: radial-gradient(ellipse at 35% 50%, rgba(66, 231, 255, .36), transparent 22%), radial-gradient(ellipse at 64% 50%, rgba(156, 72, 255, .34), transparent 25%);
  animation: ribbonFlow 10s ease-in-out infinite alternate;
}
.ribbon-two {
  bottom: 4%;
  transform: rotate(5deg);
  background: radial-gradient(ellipse at 58% 50%, rgba(255, 59, 153, .25), transparent 28%), radial-gradient(ellipse at 82% 55%, rgba(255, 141, 62, .24), transparent 21%);
  animation: ribbonFlow 13s -4s ease-in-out infinite alternate-reverse;
}

/* Shared reveal */
.reveal {
  opacity: 0;
  transform: translateY(64px) scale(.985);
  filter: blur(10px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Apps */
.apps-section {
  padding: 132px 0 110px;
  background:
    radial-gradient(circle at 85% 18%, rgba(114, 65, 255, .12), transparent 28rem),
    radial-gradient(circle at 4% 68%, rgba(25, 190, 255, .08), transparent 26rem),
    #05060b;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 70px;
}
.section-heading h2,
.finance-copy h2,
.about-copy h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.6vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 920;
}
.section-heading h2 span,
.about-copy h2 span {
  background: linear-gradient(90deg, #7adfff, #8a70ff 52%, #ff67b7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-heading > p:last-child,
.finance-copy > p,
.about-copy > p:last-child,
.contact-card p {
  margin: 26px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.75;
}
.product {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(500px, 1.35fr);
  align-items: center;
  gap: 40px;
  padding: 66px 58px;
  margin: 0 0 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015) 38%, rgba(255,255,255,.024)),
    rgba(8, 10, 19, .78);
  box-shadow: 0 34px 100px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
}
.product::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background: linear-gradient(105deg, transparent 0 42%, rgba(255,255,255,.035) 53%, transparent 66%);
  transform: translateX(-120%);
}
.product.is-visible::before { animation: panelSweep 1.4s .3s var(--ease) forwards; }
.product-calc {
  grid-template-columns: minmax(500px, 1.35fr) minmax(300px, .82fr);
}
.product-rgb { box-shadow: 0 34px 100px rgba(0,0,0,.34), 0 0 80px rgba(49, 200, 255, .035), inset 0 1px 0 rgba(255,255,255,.06); }
.product-calc { box-shadow: 0 34px 100px rgba(0,0,0,.34), 0 0 80px rgba(144, 75, 255, .045), inset 0 1px 0 rgba(255,255,255,.06); }
.product-copy { position: relative; z-index: 8; }
.product-index {
  position: absolute;
  top: -32px;
  right: 0;
  color: rgba(255,255,255,.06);
  font-size: 5.6rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.08em;
}
.app-icon {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 34px rgba(91, 102, 255, .18);
}
.product-kicker {
  margin: 24px 0 10px;
  color: #96a0bf;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product h3 {
  margin: 0;
  font-size: clamp(2.7rem, 4.6vw, 4.55rem);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 920;
}
.product-description {
  margin: 24px 0 0;
  max-width: 470px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}
.feature-chips,
.finance-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}
.feature-chips span,
.finance-pills span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #d8dcef;
  font-size: .78rem;
  font-weight: 720;
}
.product-actions { margin-top: 32px; }
.play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 168px;
  padding: 10px 16px 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 30px rgba(0,0,0,.2);
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.05;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}
.play-button:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.09); }
.play-button small { display: block; color: #aeb5c9; font-size: .61rem; font-weight: 700; margin-bottom: 2px; }
.play-mark {
  width: 25px;
  height: 29px;
  flex: 0 0 auto;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(145deg, #46e7ff 0 35%, #6af173 35% 53%, #ffe05e 53% 72%, #ff5d6f 72%);
  filter: drop-shadow(0 0 8px rgba(99, 115, 255, .35));
}
.legal-links {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}
.legal-links a {
  color: #89dfff;
  font-size: .82rem;
  font-weight: 760;
  text-decoration: none;
}
.legal-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

/* Phone stage */
.phones-stage {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  perspective: 1600px;
  isolation: isolate;
}
.phones-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 4%;
  height: 26px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(70, 110, 255, .28);
  filter: blur(22px);
}
.stage-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(42px);
  opacity: .32;
  z-index: -2;
}
.glow-cyan { left: 14%; top: 34%; background: #17ddff; }
.glow-pink { right: 8%; bottom: 13%; background: #ff3f9d; }
.glow-violet { right: 12%; top: 12%; background: #8049ff; }
.glow-blue { left: 7%; bottom: 9%; background: #3d7cff; }
.phone {
  --parallax-y: 0px;
  --base-transform: translate3d(0,0,0);
  position: absolute;
  width: clamp(190px, 18vw, 245px);
  aspect-ratio: .485;
  padding: 7px;
  border-radius: 38px;
  background:
    linear-gradient(150deg, #eef2f5 0%, #6d747f 9%, #181a1f 18%, #a8adb5 43%, #272a30 62%, #eceff1 85%, #6f7680 100%);
  box-shadow:
    0 36px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.20),
    inset 0 0 0 1px rgba(0,0,0,.35);
  transform: var(--base-transform) translateY(var(--parallax-y));
  transition: transform .2s linear;
  will-change: transform;
}
.phone::before,
.phone::after {
  content: "";
  position: absolute;
  right: -4px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: #8e949e;
  box-shadow: inset 0 0 1px #fff;
}
.phone::before { top: 24%; height: 11%; }
.phone::after { top: 39%; height: 17%; }
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: #030408;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.9);
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-hardware {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 8;
  transform: translateX(-50%);
  width: 45px;
  height: 14px;
  pointer-events: none;
}
.phone .camera {
  position: absolute;
  left: 50%;
  top: -1px;
  width: 11px;
  height: 11px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 37% 32%, #323a52 0 9%, #10141e 20%, #010203 70%);
  box-shadow: 0 0 0 2px rgba(0,0,0,.8);
}
.phone .speaker { display: none; }
.phone-main {
  z-index: 5;
  --base-transform: translate3d(0, -2%, 36px) rotateY(0deg) rotateZ(0deg);
}
.phone-left {
  left: 7%;
  z-index: 3;
  --base-transform: translate3d(0, 6%, 0) rotateY(16deg) rotateZ(-5deg) scale(.92);
}
.phone-right {
  right: 5%;
  z-index: 4;
  --base-transform: translate3d(0, 8%, 6px) rotateY(-16deg) rotateZ(5deg) scale(.92);
}
.calc-stage .phone-left { left: 3%; --base-transform: translate3d(0, 8%, 0) rotateY(15deg) rotateZ(-4deg) scale(.9); }
.calc-stage .phone-right { right: 1%; --base-transform: translate3d(0, 10%, 5px) rotateY(-16deg) rotateZ(5deg) scale(.9); }
.calc-stage .phone-main { --base-transform: translate3d(0, -1%, 38px) rotateY(0deg); }
.product.is-visible .phone-main { animation: phoneEnterMain 1.05s .2s var(--ease) both; }
.product.is-visible .phone-left { animation: phoneEnterLeft 1.05s .34s var(--ease) both; }
.product.is-visible .phone-right { animation: phoneEnterRight 1.05s .44s var(--ease) both; }

/* Finance */
.finance-section {
  position: relative;
  padding: 150px 0 155px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(circle at 76% 45%, rgba(23, 215, 255, .11), transparent 28rem),
    radial-gradient(circle at 24% 58%, rgba(88, 64, 255, .13), transparent 30rem),
    linear-gradient(180deg, #05070c, #061019 58%, #05070c);
}
.finance-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(72, 229, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 229, 255, .08) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 70% 50%, #000 0 30%, transparent 72%);
  mask-image: radial-gradient(circle at 70% 50%, #000 0 30%, transparent 72%);
}
.finance-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 52px;
}
.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 9px 13px;
  border: 1px solid rgba(59, 236, 206, .25);
  border-radius: 999px;
  background: rgba(35, 213, 192, .06);
  color: #65f1dc;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.coming-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5bf4d9;
  box-shadow: 0 0 13px rgba(91, 244, 217, .9);
  animation: badgePulse 1.8s ease-in-out infinite;
}
.finance-copy h2 span {
  background: linear-gradient(90deg, #6bf8ff, #8c8fff 55%, #c46bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.finance-copy > p { max-width: 580px; }
.finance-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(83, 230, 255, .12);
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(14, 32, 44, .74), rgba(7, 10, 20, .62));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 30px 85px rgba(0,0,0,.25), 0 0 80px rgba(34, 210, 255, .04);
  overflow: hidden;
}
.finance-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 44%, rgba(255,255,255,.05) 52%, transparent 60%);
  transform: translateX(-120%);
}
.finance-visual.is-visible::after { animation: panelSweep 1.6s .35s var(--ease) forwards; }
.finance-chart {
  position: absolute;
  inset: 8% 4% 4%;
  width: 92%;
  height: 88%;
  overflow: visible;
}
.chart-grid-lines path {
  fill: none;
  stroke: rgba(93, 225, 255, .11);
  stroke-width: 1;
}
.chart-bars rect {
  fill: url(#barGradient);
  opacity: .78;
  transform-origin: center bottom;
  transform-box: fill-box;
  transform: scaleY(.02);
}
.finance-visual.is-visible .chart-bars rect { animation: barRise .9s var(--ease) forwards; }
.finance-visual.is-visible .chart-bars rect:nth-child(2) { animation-delay: .07s; }
.finance-visual.is-visible .chart-bars rect:nth-child(3) { animation-delay: .14s; }
.finance-visual.is-visible .chart-bars rect:nth-child(4) { animation-delay: .21s; }
.finance-visual.is-visible .chart-bars rect:nth-child(5) { animation-delay: .28s; }
.finance-visual.is-visible .chart-bars rect:nth-child(6) { animation-delay: .35s; }
.finance-visual.is-visible .chart-bars rect:nth-child(7) { animation-delay: .42s; }
.finance-visual.is-visible .chart-bars rect:nth-child(8) { animation-delay: .49s; }
.finance-visual.is-visible .chart-bars rect:nth-child(9) { animation-delay: .56s; }
.finance-visual.is-visible .chart-bars rect:nth-child(10) { animation-delay: .63s; }
.finance-visual.is-visible .chart-bars rect:nth-child(11) { animation-delay: .70s; }
.chart-line {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 5;
  stroke-linecap: round;
  filter: url(#glow);
  stroke-dasharray: 920;
  stroke-dashoffset: 920;
}
.chart-line-shadow { stroke-width: 14; opacity: .16; filter: blur(9px); }
.finance-visual.is-visible .chart-line { animation: lineDraw 1.65s .25s var(--ease) forwards; }
.chart-points circle {
  fill: #84f9ff;
  opacity: 0;
  filter: drop-shadow(0 0 10px #4be8ff);
}
.finance-visual.is-visible .chart-points circle { animation: pointPop .45s 1.25s var(--ease) forwards; }
.chart-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -70px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 222, 255, .19), transparent 66%);
  filter: blur(12px);
}
.floating-metric {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 13px;
  background: rgba(9, 15, 26, .72);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 35px rgba(0,0,0,.27);
  color: #e9edf9;
  font-size: .73rem;
  animation: metricFloat 4.5s ease-in-out infinite;
}
.floating-metric span { color: var(--cyan); font-size: 1rem; font-weight: 900; }
.metric-one { top: 16%; left: 8%; }
.metric-two { top: 38%; right: 7%; animation-delay: -1.5s; }
.metric-three { bottom: 12%; left: 19%; animation-delay: -2.7s; }

/* About */
.about-section {
  padding: 145px 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(117, 55, 255, .10), transparent 28rem),
    #05060b;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 70px;
}
.about-copy > p:last-child { max-width: 680px; }
.intent-mark {
  position: relative;
  width: min(460px, 80vw);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.intent-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 0 50px rgba(110, 93, 255, .05);
}
.ring-one { inset: 6%; animation: ringSpin 18s linear infinite; border-color: rgba(79, 214, 255, .18); }
.ring-two { inset: 20%; animation: ringSpin 13s linear infinite reverse; border-color: rgba(255, 91, 175, .18); }
.ring-three { inset: 34%; animation: pulseRing 4s ease-in-out infinite; border-color: rgba(159, 102, 255, .28); }
.intent-ring::before,
.intent-ring::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}
.ring-one::before { top: -5px; left: 50%; color: #5aeaff; }
.ring-one::after { bottom: 11%; right: 4%; color: #8b6cff; }
.ring-two::before { top: 14%; right: 0; color: #ff5ab3; }
.ring-two::after { bottom: -4px; left: 44%; color: #ff9354; }
.intent-core {
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
  box-shadow: 0 24px 65px rgba(0,0,0,.35), 0 0 60px rgba(111, 78, 255, .12), inset 0 1px 0 rgba(255,255,255,.08);
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.08em;
  background-clip: padding-box;
}
.spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px 5px rgba(101, 202, 255, .48);
  animation: sparkPulse 2.3s ease-in-out infinite;
}
.spark-one { top: 16%; left: 23%; }
.spark-two { top: 30%; right: 12%; animation-delay: -.8s; }
.spark-three { bottom: 17%; right: 30%; animation-delay: -1.45s; }

/* Contact / footer */
.contact-section { padding: 0 0 100px; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 46px 50px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 40%, rgba(46, 230, 255, .10), transparent 23rem),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 25px 80px rgba(0,0,0,.27), inset 0 1px 0 rgba(255,255,255,.05);
}
.contact-card h2 { font-size: clamp(2.7rem, 4.8vw, 4.4rem); }
.contact-card p { margin-top: 14px; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(75, 227, 255, .18);
  border-radius: 15px;
  background: rgba(67, 215, 255, .055);
  color: #6ceaff;
  font-weight: 850;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease;
}
.contact-email:hover { transform: translateY(-3px); background: rgba(67, 215, 255, .09); border-color: rgba(75, 227, 255, .32); }
.contact-email span { transition: transform .25s var(--ease); }
.contact-email:hover span { transform: translate(3px, -3px); }
.site-footer {
  padding: 30px 0 38px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: #04050a;
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: #858da4;
  font-size: .78rem;
}
.footer-row p { margin: 0; text-align: center; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { color: #fff; letter-spacing: .09em; }
.footer-brand span { color: #7f879b; }
.domain-links { justify-self: end; display: flex; align-items: center; gap: 10px; }
.domain-links a { color: #aeb5c9; text-decoration: none; }
.domain-links a:hover { color: #fff; }

/* Keyframes */
@keyframes heroTitle {
  from { opacity: 0; transform: translateY(54px) scale(.985); filter: blur(12px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes titleShine { 0%,100% { background-position: 0 50%; } 50% { background-position: 100% 50%; } }
@keyframes gradientShift { from { background-position: 0 50%; } to { background-position: 100% 50%; } }
@keyframes cueBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@keyframes orbFloat { from { transform: translate3d(-2%, -2%, 0) scale(.95); } to { transform: translate3d(4%, 4%, 0) scale(1.08); } }
@keyframes ribbonFlow { from { transform: translateX(-3%) rotate(-4deg) scaleY(.92); } to { transform: translateX(4%) rotate(2deg) scaleY(1.08); } }
@keyframes panelSweep { to { transform: translateX(120%); } }
@keyframes phoneEnterMain { from { opacity: 0; transform: translate3d(0, 12%, -50px) rotateY(0deg) scale(.92); } to { opacity: 1; transform: var(--base-transform) translateY(var(--parallax-y)); } }
@keyframes phoneEnterLeft { from { opacity: 0; transform: translate3d(-22%, 14%, -120px) rotateY(25deg) rotateZ(-10deg) scale(.82); } to { opacity: 1; transform: var(--base-transform) translateY(var(--parallax-y)); } }
@keyframes phoneEnterRight { from { opacity: 0; transform: translate3d(22%, 14%, -120px) rotateY(-25deg) rotateZ(10deg) scale(.82); } to { opacity: 1; transform: var(--base-transform) translateY(var(--parallax-y)); } }
@keyframes badgePulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.65); opacity: .55; } }
@keyframes barRise { to { transform: scaleY(1); } }
@keyframes lineDraw { to { stroke-dashoffset: 0; } }
@keyframes pointPop { from { opacity: 0; transform: scale(.25); transform-origin: center; } to { opacity: 1; transform: scale(1); } }
@keyframes metricFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes pulseRing { 0%,100% { transform: scale(.96); opacity: .75; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes sparkPulse { 0%,100% { opacity: .25; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.35); } }

/* Responsive */
@media (max-width: 1050px) {
  .product,
  .product-calc {
    grid-template-columns: 1fr;
    padding: 52px 42px 46px;
  }
  .product-calc .phones-stage { order: 2; }
  .product-calc .product-copy { order: 1; }
  .product-copy { max-width: 680px; }
  .phones-stage { min-height: 610px; }
  .finance-shell { grid-template-columns: 1fr; }
  .finance-visual { min-height: 520px; }
  .about-grid { grid-template-columns: 1fr; }
  .intent-mark { width: min(420px, 78vw); }
  .contact-card { grid-template-columns: 1fr; }
  .contact-email { justify-self: start; }
}

@media (max-width: 760px) {
  :root { --header-h: 62px; }
  html { scroll-padding-top: 82px; }
  .site-header { top: 10px; padding: 0 10px; }
  .header-shell { padding: 0 10px 0 15px; gap: 10px; border-radius: 18px; }
  .brand-mini { font-size: .68rem; letter-spacing: .08em; }
  .site-nav { gap: 0; overflow-x: auto; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { padding: 9px 8px; font-size: .71rem; }
  .site-nav a::after { display: none; }
  .section-shell { width: min(calc(100% - 28px), var(--max-width)); }
  .hero { min-height: 760px; padding: 132px 16px 78px; }
  .hero-eyebrow { font-size: .68rem; }
  .hero-title { font-size: clamp(3.15rem, 16vw, 6rem); letter-spacing: -.065em; white-space: normal; }
  .hero-tagline { margin-top: 26px; font-size: clamp(2rem, 10vw, 3.2rem); }
  .hero-copy { max-width: 280px; line-height: 1.5; }
  .scroll-cue { margin-top: 54px; }
  .orb-one { width: 330px; height: 330px; left: -180px; }
  .orb-two { width: 360px; height: 360px; right: -190px; bottom: 8%; }
  .hero-grid { background-size: 44px 44px; }
  .apps-section { padding: 96px 0 74px; }
  .section-heading { margin-bottom: 46px; }
  .section-heading h2,
  .finance-copy h2,
  .about-copy h2 { font-size: clamp(2.55rem, 13vw, 4.3rem); }
  .product,
  .product-calc {
    min-height: 0;
    gap: 16px;
    padding: 34px 20px 30px;
    margin-bottom: 34px;
    border-radius: 27px;
  }
  .product-index { top: -18px; font-size: 4.4rem; }
  .app-icon { width: 76px; height: 76px; border-radius: 20px; }
  .product h3 { font-size: clamp(2.5rem, 12vw, 3.7rem); }
  .product-description { font-size: .98rem; }
  .phones-stage { min-height: 430px; margin: 4px -12px 0; transform: scale(.98); }
  .phone { width: clamp(145px, 42vw, 190px); border-radius: 29px; padding: 5px; }
  .phone-screen { border-radius: 24px; }
  .phone-hardware { top: 9px; }
  .phone-left { left: 0%; --base-transform: translate3d(0, 8%, 0) rotateY(14deg) rotateZ(-5deg) scale(.84); }
  .phone-right { right: 0%; --base-transform: translate3d(0, 9%, 4px) rotateY(-14deg) rotateZ(5deg) scale(.84); }
  .phone-main { --base-transform: translate3d(0, -1%, 26px) scale(.96); }
  .calc-stage .phone-left { left: -2%; --base-transform: translate3d(0, 9%, 0) rotateY(14deg) rotateZ(-4deg) scale(.82); }
  .calc-stage .phone-right { right: -2%; --base-transform: translate3d(0, 10%, 4px) rotateY(-14deg) rotateZ(4deg) scale(.82); }
  .finance-section { padding: 100px 0; }
  .finance-visual { min-height: 390px; border-radius: 26px; }
  .floating-metric { font-size: .64rem; padding: 8px 9px; }
  .metric-one { top: 12%; left: 5%; }
  .metric-two { top: 42%; right: 4%; }
  .metric-three { left: 10%; bottom: 7%; }
  .about-section { padding: 100px 0; }
  .about-grid { gap: 45px; }
  .intent-mark { width: min(340px, 88vw); }
  .intent-core { width: 98px; height: 98px; border-radius: 27px; font-size: 3.5rem; }
  .contact-section { padding-bottom: 70px; }
  .contact-card { padding: 34px 24px; border-radius: 24px; }
  .contact-card h2 { font-size: 2.8rem; }
  .contact-email { width: 100%; justify-content: space-between; white-space: normal; word-break: break-word; font-size: .98rem; }
  .footer-row { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-brand { align-items: center; }
  .domain-links { justify-self: center; }
}

@media (max-width: 430px) {
  .brand-mini { display: none; }
  .header-shell { justify-content: center; padding-inline: 8px; }
  .site-nav { width: 100%; justify-content: space-around; }
  .site-nav a { padding-inline: 6px; }
  .hero { min-height: 700px; }
  .hero-title { font-size: clamp(3rem, 15.4vw, 4rem); }
  .phones-stage { min-height: 390px; }
  .phone { width: 44vw; }
  .phone-left { left: -4%; }
  .phone-right { right: -4%; }
  .feature-chips { gap: 7px; }
  .feature-chips span { font-size: .72rem; padding: 8px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .phone { --parallax-y: 0px !important; }
  .cursor-glow { display: none; }
}

/* ---- August 2026 colorful refresh overrides ---- */
.brand-mini {
  background: linear-gradient(90deg, #57e7ff 0%, #4fa6ff 20%, #8c6bff 45%, #ff59ad 70%, #ffd65e 88%, #57e7ff 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleShine 10s ease-in-out infinite;
}

.hero-title span {
  position: relative;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(120, 255, 232, 1) 0 13%, rgba(120, 255, 232, 0) 22%),
    radial-gradient(circle at 32% 78%, rgba(76, 177, 255, 1) 0 14%, rgba(76, 177, 255, 0) 24%),
    radial-gradient(circle at 57% 24%, rgba(149, 100, 255, 1) 0 12%, rgba(149, 100, 255, 0) 21%),
    radial-gradient(circle at 76% 76%, rgba(255, 84, 180, 1) 0 12%, rgba(255, 84, 180, 0) 22%),
    radial-gradient(circle at 92% 34%, rgba(255, 180, 84, 1) 0 12%, rgba(255, 180, 84, 0) 22%),
    linear-gradient(90deg, #65f4ff 0%, #32b7ff 18%, #6f6fff 35%, #a259ff 52%, #ff4ca3 72%, #ff9f43 88%, #ffe464 100%);
  background-size: 150% 150%, 170% 170%, 160% 160%, 160% 160%, 150% 150%, 200% 100%;
  background-position: 0% 0%, 100% 100%, 50% 0%, 85% 100%, 100% 20%, 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(87, 231, 255, .12)) drop-shadow(0 0 30px rgba(255, 73, 176, .12));
  animation:
    heroTitle 1.15s .22s var(--ease) forwards,
    liquidShift 16s 1.4s linear infinite,
    liquidPulse 8s 1.4s ease-in-out infinite;
}

.hero-tagline {
  background: linear-gradient(90deg, #6ef5ff 0%, #70a5ff 24%, #bc68ff 50%, #ff68b7 74%, #ffb750 100%);
  background-size: 220% 100%;
  text-shadow: 0 0 22px rgba(120, 104, 255, .14);
}

.section-heading h2,
.finance-copy h2,
.about-copy h2,
.contact-card h2,
.product h3 {
  display: inline-block;
  background: linear-gradient(90deg, #7efaff 0%, #64b7ff 18%, #9181ff 42%, #ff67be 68%, #ffc14d 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 10s ease-in-out infinite alternate;
  text-shadow: 0 0 24px rgba(112, 105, 255, .10);
}

.section-heading h2 span,
.about-copy h2 span,
.finance-copy h2 span {
  background: linear-gradient(90deg, #7dfff0 0%, #52d1ff 20%, #7d7dff 45%, #d266ff 70%, #ff8ec1 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading > p:last-child,
.finance-copy > p,
.about-copy > p:last-child,
.contact-card p,
.product-description,
.hero-copy {
  color: #cad6ff;
}

.product-kicker,
.eyebrow,
.hero-eyebrow,
.contact-email,
.footer-brand strong,
.site-nav a.is-active,
.site-nav a:hover {
  text-shadow: 0 0 12px rgba(96, 178, 255, .12);
}

.product-rgb .product-kicker,
.product-rgb .legal-links a,
.product-rgb .feature-chips span {
  color: #8ee8ff;
}
.product-calc .product-kicker,
.product-calc .legal-links a,
.product-calc .feature-chips span {
  color: #ff9ed5;
}
.finance-pills span,
.finance-copy .coming-badge,
.finance-copy .coming-badge span {
  color: #90fff3;
}

.feature-chips span,
.finance-pills span {
  background: linear-gradient(180deg, rgba(115, 153, 255, .10), rgba(255,255,255,.035));
  border-color: rgba(133, 179, 255, .18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 0 1px rgba(255,255,255,.01);
}
.product-rgb .feature-chips span:nth-child(1) { color: #7dedff; }
.product-rgb .feature-chips span:nth-child(2) { color: #88b4ff; }
.product-rgb .feature-chips span:nth-child(3) { color: #ff92cf; }
.product-calc .feature-chips span:nth-child(1) { color: #9ff5ff; }
.product-calc .feature-chips span:nth-child(2) { color: #98ffa0; }
.product-calc .feature-chips span:nth-child(3) { color: #ffb476; }
.finance-pills span:nth-child(1) { color: #70ebff; }
.finance-pills span:nth-child(2) { color: #9c9eff; }
.finance-pills span:nth-child(3) { color: #ff92d8; }
.finance-pills span:nth-child(4) { color: #ffe07b; }

.site-nav a {
  color: #b6c7ff;
}

.site-nav a.is-active {
  color: #d9fdff;
  background: linear-gradient(180deg, rgba(103, 179, 255, .16), rgba(183, 86, 255, .10));
}

.product-rgb h3 {
  background: linear-gradient(90deg, #79f7ff 0%, #53bcff 25%, #8e7bff 52%, #ff6eb1 78%, #ffd256 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-calc h3 {
  background: linear-gradient(90deg, #67ffda 0%, #76c0ff 26%, #bb6fff 56%, #ff86d1 82%, #ffcb6d 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-email {
  background: linear-gradient(180deg, rgba(78, 238, 255, .08), rgba(150, 88, 255, .08));
  border-color: rgba(113, 228, 255, .22);
}

.footer-brand strong,
.domain-links a,
.legal-links a {
  background: linear-gradient(90deg, #86f8ff, #89a9ff, #ff84c5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes liquidShift {
  0% {
    background-position: 0% 10%, 100% 100%, 55% 0%, 82% 100%, 100% 22%, 0% 50%;
  }
  25% {
    background-position: 20% 35%, 82% 76%, 42% 14%, 90% 82%, 80% 5%, 40% 50%;
  }
  50% {
    background-position: 48% 72%, 52% 28%, 64% 30%, 70% 60%, 42% 34%, 100% 50%;
  }
  75% {
    background-position: 78% 42%, 26% 8%, 86% 56%, 40% 86%, 18% 70%, 55% 50%;
  }
  100% {
    background-position: 100% 22%, 0% 100%, 10% 12%, 0% 72%, 100% 10%, 0% 50%;
  }
}

@keyframes liquidPulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(87, 231, 255, .12)) drop-shadow(0 0 30px rgba(255, 73, 176, .12)); }
  50% { filter: drop-shadow(0 0 26px rgba(87, 231, 255, .18)) drop-shadow(0 0 40px rgba(255, 170, 84, .14)); }
}

@media (max-width: 760px) {
  .hero-title span {
    background-size: 160% 160%, 180% 180%, 170% 170%, 170% 170%, 160% 160%, 230% 100%;
  }
}

/* ---- Final hero refinement: keep title fluid, tagline calm ---- */
.hero-ribbon {
  display: none !important;
}

.hero-tagline {
  background: none !important;
  background-image: none !important;
  color: #e85bc5 !important;
  -webkit-text-fill-color: #e85bc5 !important;
  text-shadow: 0 0 24px rgba(232, 91, 197, .16);
  animation: heroUp .95s .46s var(--ease) forwards !important;
}


/* ---- Mobile-only refinement: preserve tablet/desktop design ---- */
@media (max-width: 600px) {
  .site-header {
    padding-inline: 10px;
  }

  .header-shell {
    width: 100%;
    padding-inline: 8px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-around;
  }

  .site-nav a {
    flex: 0 1 auto;
    padding: 9px 7px;
    font-size: clamp(.66rem, 3.05vw, .76rem);
  }

  .hero {
    min-height: min(760px, 100svh);
    padding: 118px 16px 64px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: .64rem;
    letter-spacing: .13em;
  }

  .hero-title {
    width: 100%;
    font-size: clamp(2.55rem, 12.2vw, 3.45rem);
    line-height: .9;
    letter-spacing: -.065em;
    white-space: nowrap;
  }

  .hero-title span {
    max-width: 100%;
  }

  .hero-tagline {
    margin-top: 24px;
    font-size: clamp(2rem, 9.1vw, 2.8rem);
    line-height: 1;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 20px;
    font-size: .98rem;
    line-height: 1.55;
  }

  .scroll-cue {
    margin-top: 48px;
  }

  .apps-section {
    padding-top: 84px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .finance-copy h2,
  .about-copy h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.7rem);
    line-height: 1;
  }

  .section-heading > p:last-child,
  .finance-copy > p,
  .about-copy > p:last-child {
    margin-top: 22px;
    font-size: .98rem;
    line-height: 1.65;
  }

  .product,
  .product-calc {
    padding: 30px 18px 28px;
    gap: 12px;
  }

  .app-icon {
    width: 72px;
    height: 72px;
    border-radius: 19px;
  }

  .product-kicker {
    margin-top: 20px;
  }

  .product h3 {
    font-size: clamp(2.35rem, 10.9vw, 3.25rem);
    line-height: .98;
  }

  .product-description {
    margin-top: 20px;
    font-size: .95rem;
    line-height: 1.62;
  }

  .feature-chips {
    margin-top: 22px;
  }

  .product-actions {
    margin-top: 28px;
    position: relative;
    z-index: 12;
  }

  .legal-links {
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .phones-stage {
    min-height: 340px;
    margin: 24px -10px 0;
  }

  .phone {
    width: clamp(132px, 38.5vw, 166px);
    border-radius: 27px;
    padding: 5px;
  }

  .phone-screen {
    border-radius: 22px;
  }

  .phone-left {
    left: -1%;
    --base-transform: translate3d(0, 8%, 0) rotateY(12deg) rotateZ(-4deg) scale(.78);
  }

  .phone-right {
    right: -1%;
    --base-transform: translate3d(0, 9%, 4px) rotateY(-12deg) rotateZ(4deg) scale(.78);
  }

  .phone-main {
    --base-transform: translate3d(0, -1%, 24px) scale(.88);
  }

  .calc-stage .phone-left {
    left: -2%;
    --base-transform: translate3d(0, 9%, 0) rotateY(12deg) rotateZ(-4deg) scale(.76);
  }

  .calc-stage .phone-right {
    right: -2%;
    --base-transform: translate3d(0, 10%, 4px) rotateY(-12deg) rotateZ(4deg) scale(.76);
  }

  .calc-stage .phone-main {
    --base-transform: translate3d(0, -1%, 24px) scale(.88);
  }

  .finance-section {
    padding: 88px 0;
  }

  .finance-shell {
    gap: 36px;
  }

  .finance-visual {
    min-height: 350px;
  }

  .about-section {
    padding: 88px 0;
  }

  .about-grid {
    gap: 34px;
  }

  .intent-mark {
    width: min(310px, 82vw);
  }

  .contact-card {
    padding: 30px 22px;
  }

  .contact-card h2 {
    font-size: clamp(2.35rem, 10.7vw, 3rem);
  }

  .contact-email {
    padding: 15px 16px;
    font-size: .94rem;
  }

  .site-footer {
    padding-bottom: max(42px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 390px) {
  .site-nav a {
    padding-inline: 5px;
    font-size: .66rem;
  }

  .hero-title {
    font-size: 11.6vw;
  }

  .hero-tagline {
    font-size: 8.8vw;
  }

  .phones-stage {
    min-height: 320px;
  }

  .phone {
    width: 37vw;
  }
}

/* ---- Naladimarth privacy consent controls ---- */

.privacy-settings-button {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #aeb5c9;
  font: inherit;
  cursor: pointer;
}

.privacy-settings-button:hover,
.privacy-settings-button:focus-visible {
  color: #fff;
}

.privacy-settings-button:focus-visible,
.consent-button:focus-visible,
.consent-policy-link:focus-visible {
  outline: 2px solid #69eaff;
  outline-offset: 4px;
}

.consent-banner[hidden] {
  display: none !important;
}

.consent-banner {
  position: fixed;
  z-index: 5000;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: min(calc(100% - 32px), 720px);
  transform: translateX(-50%);
}

.consent-dialog {
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(127, 174, 255, .24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(78, 227, 255, .13), transparent 18rem),
    radial-gradient(circle at 94% 100%, rgba(255, 83, 175, .12), transparent 20rem),
    linear-gradient(145deg, rgba(15, 21, 37, .985), rgba(8, 10, 18, .985));
  box-shadow:
    0 26px 90px rgba(0, 0, 0, .58),
    inset 0 1px 0 rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.consent-copy {
  min-width: 0;
}

.consent-kicker {
  margin: 0 0 8px;
  color: #79edff;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.consent-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.22rem, 3vw, 1.55rem);
  line-height: 1.12;
}

.consent-text {
  margin: 10px 0 0;
  color: #c7d1ec;
  font-size: .91rem;
  line-height: 1.58;
}

.consent-policy-link {
  display: inline-flex;
  margin-top: 11px;
  color: #84eaff;
  font-size: .8rem;
  font-weight: 760;
  text-decoration: none;
}

.consent-policy-link:hover {
  color: #fff;
}

.consent-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.consent-button {
  flex: 1 1 0;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid rgba(129, 173, 255, .22);
  border-radius: 14px;
  font: inherit;
  font-size: .82rem;
  font-weight: 820;
  cursor: pointer;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.consent-button:hover {
  transform: translateY(-1px);
}

.consent-reject {
  background: rgba(255,255,255,.045);
  color: #d9def0;
}

.consent-reject:hover {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.075);
}

.consent-accept {
  border-color: rgba(91, 222, 255, .30);
  background:
    linear-gradient(100deg, rgba(70, 210, 255, .16), rgba(130, 98, 255, .15), rgba(255, 88, 176, .13));
  color: #f8fbff;
}

.consent-accept:hover {
  border-color: rgba(104, 234, 255, .48);
  background:
    linear-gradient(100deg, rgba(70, 210, 255, .22), rgba(130, 98, 255, .20), rgba(255, 88, 176, .18));
}

@media (max-width: 760px) {
  .domain-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .consent-banner {
    width: min(calc(100% - 20px), 720px);
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .consent-dialog {
    padding: 18px;
    border-radius: 20px;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .consent-dialog {
    padding: 16px;
  }

  .consent-text {
    font-size: .86rem;
  }
}

