/* Accurate landing — editorial fintech · 2025+ patterns (bento, mesh, grain, kinetic type) */

:root {
  --blue-950: #0c1018;
  --blue-900: #141c2c;
  --blue-800: #1f2a42;
  --blue-700: #2a3f66;
  --orange-500: #e0782a;
  --orange-400: #ec9248;
  --cream-100: #faf7f2;
  --cream-200: #f0ebe3;
  --cream-300: #e3dcd2;
  --ink: #0a0c10;
  --ink-soft: rgba(10, 12, 16, 0.62);
  --white: #faf7f2;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --text-display: var(--ink);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 4px 24px rgba(12, 16, 24, 0.06);
  --shadow-lift: 0 24px 64px rgba(20, 28, 44, 0.18);
  --nav-h: 4.25rem;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --border-hairline: 1px solid rgba(31, 42, 66, 0.12);

  scroll-padding-top: calc(var(--nav-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-display);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1, "ss01" 1;
  font-size: 0.92em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Film grain */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.055;
  mix-blend-mode: multiply;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 10001;
  background: linear-gradient(90deg, var(--blue-800), var(--orange-500));
  transform-origin: left;
  transition: width 0.05s linear;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 10002;
  padding: 0.5rem 1rem;
  background: var(--orange-500);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: 0.75rem;
}

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  padding: 0.65rem 1.25rem;
  transition: padding 0.35s var(--ease);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}

.nav.is-scrolled {
  background: rgba(250, 247, 242, 0.78);
  border-color: rgba(31, 42, 66, 0.1);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--blue-800);
  text-decoration: none;
  z-index: 2;
}

.nav__burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: var(--border-hairline);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.nav__burger::before,
.nav__burger::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  height: 2px;
  background: var(--blue-800);
  transition: transform 0.25s var(--ease);
}
.nav__burger::before {
  top: 1rem;
}
.nav__burger::after {
  top: 1.45rem;
}
.nav__burger[aria-expanded="true"]::before {
  transform: translateY(0.225rem) rotate(45deg);
}
.nav__burger[aria-expanded="true"]::after {
  transform: translateY(-0.225rem) rotate(-45deg);
}

.nav__panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  flex: 1;
}

.nav__links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 0.2rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 880px) {
  .nav__burger {
    display: block;
  }
  .nav__panel {
    position: fixed;
    inset: 0 0 0 0;
    top: 0;
    padding: 5rem 1.5rem 2rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: rgba(250, 247, 242, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s var(--ease), opacity 0.35s ease, visibility 0.35s;
  }
  .nav__panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__links {
    flex-direction: column;
    gap: 0.25rem;
  }
  .nav__actions {
    flex-direction: column;
    margin-top: 1.5rem;
  }
  .nav__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  will-change: transform;
}
.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange-500) 0%, #c96a24 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(224, 120, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(224, 120, 42, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--blue-800);
  color: var(--blue-800);
}
.btn--outline:hover {
  background: var(--blue-800);
  color: var(--cream-100);
}

.btn--quiet {
  background: transparent;
  border-color: transparent;
  color: var(--blue-800);
  font-weight: 600;
  font-size: 0.875rem;
}
.btn--quiet:hover {
  color: var(--orange-500);
}

.btn--lg {
  padding: 0.8rem 1.6rem;
  font-size: 0.98rem;
}
.btn--xl {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn--table {
  width: 100%;
  border-radius: var(--radius-sm);
  background: rgba(31, 42, 66, 0.04);
  border: 1px solid rgba(31, 42, 66, 0.18);
  color: var(--blue-800);
  font-size: 0.8125rem;
}
.btn--table:hover {
  background: var(--blue-800);
  color: var(--cream-100);
  border-color: var(--blue-800);
}

.btn--table-hot {
  border-color: var(--orange-500);
  color: var(--orange-500);
  background: rgba(224, 120, 42, 0.08);
}
.btn--table-hot:hover {
  background: var(--orange-500);
  color: #fff;
  border-color: var(--orange-500);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  padding: 2rem 1.25rem 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(224, 120, 42, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 30%, rgba(31, 42, 66, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(42, 63, 102, 0.08), transparent 45%);
  animation: mesh-drift 22s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(2%, -1%) scale(1.03);
  }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(31, 42, 66, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 42, 66, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 75%);
  animation: grid-pan 48s linear infinite;
  opacity: 0.7;
}

@keyframes grid-pan {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 56px 56px, 56px 56px;
  }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orb-float 14s ease-in-out infinite;
}

.hero__orb--a {
  width: 340px;
  height: 340px;
  background: var(--orange-400);
  top: 10%;
  right: 5%;
  animation-delay: -2s;
}

.hero__orb--b {
  width: 280px;
  height: 280px;
  background: var(--blue-700);
  bottom: 15%;
  left: -5%;
  animation-delay: -5s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -18px);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 3.5rem;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin: 0 0 1.25rem;
  min-height: 1.4em;
}

.eyebrow__caret {
  display: inline-block;
  width: 2px;
  height: 1.15em;
  margin-left: 3px;
  background: var(--orange-500);
  animation: caret-blink 1s step-end infinite;
}

@keyframes caret-blink {
  50% {
    opacity: 0;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.8vw, 4.1rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
  color: var(--blue-900);
}

.hero__title-highlight {
  background: linear-gradient(120deg, var(--blue-800) 0%, var(--blue-700) 40%, var(--orange-500) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
}

.hero__lead {
  max-width: 32rem;
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: var(--ink-soft);
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__stage {
  perspective: 1200px;
}

.hero__device {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s linear;
}

.terminal {
  background: linear-gradient(165deg, var(--blue-950) 0%, #121a2a 50%, #0e1522 100%);
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  overflow: hidden;
  transform: rotateX(6deg) rotateY(-10deg);
}

.terminal__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(250, 247, 242, 0.08);
}

.terminal__dots {
  display: flex;
  gap: 6px;
}
.terminal__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.18);
}
.terminal__dots i:first-child {
  background: #ff5f56;
}
.terminal__dots i:nth-child(2) {
  background: #ffbd2e;
}
.terminal__dots i:nth-child(3) {
  background: #27c93f;
}

.terminal__title {
  flex: 1;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(250, 247, 242, 0.45);
}

.terminal__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.terminal__row {
  display: grid;
  grid-template-columns: 1fr minmax(72px, 38%) 2.2ch;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.7rem;
  color: rgba(250, 247, 242, 0.88);
}
.terminal__row > span:first-child {
  opacity: 0.9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.terminal__bar {
  height: 5px;
  background: rgba(250, 247, 242, 0.1);
  border-radius: 99px;
  overflow: hidden;
}
.terminal__bar em {
  display: block;
  height: 100%;
  width: var(--p);
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-700), var(--orange-500));
}

.terminal__row--alert .terminal__bar em {
  background: var(--orange-500);
}

.terminal__row > span:last-child {
  text-align: right;
  color: rgba(250, 247, 242, 0.5);
  font-variant-numeric: tabular-nums;
}

.terminal__row--alert > span:last-child {
  color: var(--orange-500);
}

.terminal__pulse {
  animation: pulse-num 1.6s ease-in-out infinite;
}

@keyframes pulse-num {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.12);
  }
}

.terminal__foot {
  padding: 0.65rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--orange-400);
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.hero__chip {
  position: absolute;
  right: -4%;
  top: 12%;
  padding: 0.55rem 0.85rem;
  background: var(--blue-800);
  color: var(--cream-100);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(250, 247, 242, 0.15);
  box-shadow: var(--shadow-lift);
}

.hero__glow {
  position: absolute;
  inset: 15% -10% -15% -10%;
  background: radial-gradient(ellipse at 50% 0%, rgba(224, 120, 42, 0.2), transparent 65%);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 979px) {
  .terminal {
    transform: none;
  }
  .hero__chip {
    right: 0;
    top: -0.5rem;
  }
}

/* —— Marquee —— */
.marquee {
  border-block: var(--border-hairline);
  background: rgba(31, 42, 66, 0.03);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem 0;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-700);
}

.marquee__dot {
  opacity: 0.35;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* —— Metrics bento —— */
.metrics {
  padding: 4rem 1.25rem 3.5rem;
  background: var(--blue-900);
  color: var(--cream-100);
  position: relative;
}
.metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(224, 120, 42, 0.12), transparent 55%);
  pointer-events: none;
}

.metrics__bento {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .metrics__bento {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
  }
  .metrics__cell--wide {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.metrics__cell {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.1);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.metrics__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224, 120, 42, 0.1), transparent 45%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.metrics__cell:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 120, 42, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.metrics__cell:hover::after {
  opacity: 1;
}

.metrics__cell--wide .metrics__value {
  font-size: clamp(3rem, 12vw, 6.5rem);
}

.metrics__value {
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.metrics__unit {
  font-size: 0.45em;
  margin-left: 0.05em;
  opacity: 0.85;
}

.metrics__plus {
  font-size: 0.55em;
  vertical-align: super;
  margin-right: 0.02em;
  color: var(--orange-400);
}

.metrics__label {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.62);
  max-width: 14rem;
}

.metrics__foot {
  position: relative;
  max-width: var(--max);
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(250, 247, 242, 0.55);
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.25rem;
}

.section--light {
  background: var(--cream-100);
}

.section--muted {
  background: var(--cream-200);
}

.section--dark {
  background: var(--blue-900);
}

.section__head {
  max-width: var(--max);
  margin: 0 auto 2rem;
}

.section__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin: 0 0 0.75rem;
}

.section__kicker--on-dark {
  color: var(--orange-400);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--blue-900);
}

.section__title--on-dark {
  color: var(--cream-100);
}

.section__lead {
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.section__close {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  font-size: 1.15rem;
}

/* Symptom bento */
.symptom-bento {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .symptom-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .symptom-card--span {
    grid-column: 1 / -1;
  }
}

.symptom-card {
  position: relative;
  padding: 1.25rem 1.35rem 1.25rem 2.75rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 42, 66, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.symptom-card::before {
  content: "×";
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  font-weight: 700;
  color: var(--orange-500);
  font-size: 1.25rem;
  line-height: 1;
}
.symptom-card:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 120, 42, 0.35);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

[data-stagger="1"] {
  transition-delay: 0.06s;
}
[data-stagger="2"] {
  transition-delay: 0.12s;
}
[data-stagger="3"] {
  transition-delay: 0.18s;
}
[data-stagger="4"] {
  transition-delay: 0.24s;
}
[data-stagger="5"] {
  transition-delay: 0.3s;
}

/* Tabs pro */
.tabs-pro {
  max-width: var(--max);
  margin: 0 auto;
}

.tabs-pro__list-wrap {
  overflow-x: auto;
  margin-bottom: 1.75rem;
  -webkit-overflow-scrolling: touch;
}

.tabs-pro__list {
  position: relative;
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.35rem;
  background: rgba(31, 42, 66, 0.06);
  border-radius: 999px;
  border: 1px solid rgba(31, 42, 66, 0.08);
}

.tabs-pro__ink {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  height: calc(100% - 0.7rem);
  width: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(31, 42, 66, 0.12);
  transition: transform 0.45s var(--ease), width 0.45s var(--ease);
  z-index: 0;
  pointer-events: none;
}

.tabs-pro__btn {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
  transition: color 0.3s;
  white-space: nowrap;
}

.tabs-pro__btn.is-active {
  color: var(--blue-800);
}

.tabs-pro__panel {
  display: none;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: var(--border-hairline);
  font-size: 1.1rem;
  line-height: 1.65;
  box-shadow: var(--shadow-soft);
}
.tabs-pro__panel.is-active {
  display: block;
  animation: panel-in 0.55s var(--ease) both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* IA section */
.section--ia {
  position: relative;
  overflow: hidden;
}
.section--ia::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: -120px;
  border: 1px solid rgba(250, 247, 242, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.section--ia::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: 8%;
  bottom: -80px;
  border: 1px solid rgba(224, 120, 42, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.ia__layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .ia__layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .ia__intro {
    grid-column: 1 / -1;
  }
}

.ia__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ia__list li {
  padding: 0.75rem 0 0.75rem 1.35rem;
  border-left: 3px solid var(--orange-500);
  margin-bottom: 0.5rem;
  color: rgba(250, 247, 242, 0.82);
  font-size: 1.02rem;
}

.flow {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: var(--radius-md);
}

@media (min-width: 640px) {
  .flow {
    grid-template-columns: auto 1fr;
  }
}

.flow__node {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(250, 247, 242, 0.2);
  color: var(--cream-100);
  border-radius: var(--radius-sm);
}

.flow__node--soft {
  opacity: 0.85;
}

.flow__node--ring {
  border-color: var(--orange-400);
  color: var(--orange-400);
}

.flow__node--solid {
  background: var(--blue-800);
  border-color: var(--blue-700);
}

.flow__line {
  width: 2px;
  height: 1.25rem;
  background: rgba(250, 247, 242, 0.25);
  margin: 0.25rem 0 0.25rem 0.75rem;
}

.flow__split {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.65rem 0;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(250, 247, 242, 0.12);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.55);
}

.flow__hot {
  color: var(--orange-400);
}

/* Pricing */
.pricing-shell {
  max-width: var(--max);
  margin: 0 auto;
}

.pricing-glass {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(240, 235, 227, 0.5));
  border: 1px solid rgba(31, 42, 66, 0.1);
  box-shadow: 0 8px 40px rgba(20, 28, 44, 0.08);
  padding: 0.35rem;
  overflow: hidden;
}

.pricing {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 520px;
}

.pricing thead th {
  padding: 1.1rem 1rem;
  text-align: left;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-800);
  border-bottom: 2px solid var(--blue-800);
  background: rgba(255, 255, 255, 0.35);
}

.pricing__head-hot {
  color: var(--orange-500);
  border-bottom-color: var(--orange-500);
}

.pricing tbody th,
.pricing tbody td {
  padding: 1rem;
  border-bottom: 1px solid rgba(31, 42, 66, 0.08);
  vertical-align: middle;
}

.pricing tbody th {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ink-soft);
  width: 10.5rem;
}

.pricing tbody tr:not(.pricing__actions) td {
  transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.pricing tbody tr:not(.pricing__actions) td:hover {
  background: rgba(31, 42, 66, 0.03);
  transform: translateY(-1px);
}

.pricing__col-featured {
  background: linear-gradient(180deg, rgba(224, 120, 42, 0.07), rgba(224, 120, 42, 0.02));
  box-shadow: inset 1px 0 0 rgba(224, 120, 42, 0.18);
}

.pricing__price {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--blue-800);
}

.pricing__price--hot {
  color: var(--orange-500);
}

.pricing__per {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.8;
}

.pricing__yes {
  font-weight: 700;
  color: var(--orange-500);
}

.pricing__actions td {
  border-bottom: none;
  padding-top: 1.5rem;
}

.pricing__note {
  max-width: 40rem;
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* Quotes */
.quotes {
  max-width: var(--max);
  margin: 0 auto;
}

.quotes__viewport {
  position: relative;
  min-height: 12rem;
}

.quote {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: perspective(800px) rotateX(6deg) translateY(16px);
  pointer-events: none;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.quote.is-active {
  position: relative;
  opacity: 1;
  transform: perspective(800px) rotateX(0) translateY(0);
  pointer-events: auto;
}

.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-style: italic;
  line-height: 1.35;
  margin: 0 0 1rem;
  color: var(--blue-900);
}

.quote__by {
  margin: 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.quotes__nav {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.quotes__dot {
  width: 2.5rem;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 99px;
  background: rgba(31, 42, 66, 0.15);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.quotes__dot.is-active {
  background: var(--orange-500);
  transform: scaleX(1.15);
}

/* Founders */
.founders {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 820px) {
  .founders {
    grid-template-columns: 1.25fr 1fr;
    align-items: end;
  }
}

.founders__lead {
  font-size: 1.28rem;
  line-height: 1.45;
  margin: 0;
}

.founders__team {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.founder__photo {
  aspect-ratio: 1;
  max-width: 9.5rem;
  border-radius: var(--radius-md);
  background: repeating-linear-gradient(135deg, var(--cream-300), var(--cream-300) 10px, rgba(31, 42, 66, 0.06) 10px, rgba(31, 42, 66, 0.06) 11px);
  border: var(--border-hairline);
}

.founder__name {
  margin: 0.75rem 0 0.15rem;
  font-size: 0.88rem;
}
.founder__role {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.875rem;
}

/* Video */
.video-frame {
  max-width: var(--max);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(31, 42, 66, 0.18);
  padding: clamp(3rem, 10vw, 5rem);
  text-align: center;
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink-soft);
}

/* FAQ */
.faq {
  max-width: 40rem;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(31, 42, 66, 0.12);
}

.faq__q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 2.5rem 1.1rem 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--blue-800);
  position: relative;
}

.faq__q::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--orange-500);
  border-bottom: 2px solid var(--orange-500);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.35s var(--ease);
}

.faq__q[aria-expanded="true"]::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq__a.is-open {
  grid-template-rows: 1fr;
}

.faq__a-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.faq__a.is-open .faq__a-inner {
  padding-bottom: 1rem;
}
.faq__a-inner p {
  margin: 0;
}

/* CTA final */
.cta-final {
  padding: clamp(4rem, 10vw, 6rem) 1.25rem;
  background: radial-gradient(ellipse 90% 120% at 50% 0%, #1a2438 0%, var(--blue-950) 55%, #07090e 100%);
  color: var(--cream-100);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 80%, rgba(224, 120, 42, 0.15), transparent 45%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 1.75rem;
}

.cta-final__sub {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.55);
}

.cta-final__platform {
  margin: 2rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.cta-final__platform a {
  color: var(--orange-400);
  text-decoration: none;
  border-bottom: 1px solid rgba(236, 146, 72, 0.45);
}
.cta-final__platform a:hover {
  color: var(--cream-100);
  border-bottom-color: var(--cream-100);
}

/* Footer */
.footer {
  padding: 3rem 1.25rem;
  background: var(--blue-950);
  color: rgba(250, 247, 242, 0.5);
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__brand {
  color: var(--cream-100);
}

.footer__tag {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__links a {
  color: rgba(250, 247, 242, 0.78);
  text-decoration: none;
  font-size: 0.875rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}

.footer__links a:hover {
  color: var(--cream-100);
  border-bottom-color: var(--orange-500);
}
