@charset "UTF-8";

/* public/assets/styles.css */
:root {
  --ink:#0a1f3c;
  --ink-2:#16335c;
  --slate:#5a6b85;
  --slate-2:#7c8aa3;
  --line:#e3e7ef;
  --line-2:#eef1f6;
  --paper:#f6f7f9;
  --paper-2:#fbfcfd;
  --card:#ffffff;
  --accent:#1d6fe0;
  --accent-deep:#0f4fb0;
  --accent-soft:#eaf2fd;
  --sky:#8db8f0;
  --gold:#b9892f;
  --good:#0f9d6e;
  --mint:#e7f4ee;
  --max:1240px;
  --ease:cubic-bezier(.22,.61,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
  --shadow-sm:0 1px 2px rgba(10,31,60,.06),0 2px 8px -4px rgba(10,31,60,.08);
  --shadow-md:0 12px 30px -16px rgba(10,31,60,.28);
  --shadow-lg:0 40px 80px -40px rgba(10,31,60,.4);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    system-ui,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--accent);
  color: #fff;
}
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--slate);
}
.tnum {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.center {
  text-align: center;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.stagger.in > * {
  opacity: 1;
  transform: none;
}
.stagger.in > *:nth-child(1) {
  transition-delay: .04s;
}
.stagger.in > *:nth-child(2) {
  transition-delay: .1s;
}
.stagger.in > *:nth-child(3) {
  transition-delay: .16s;
}
.stagger.in > *:nth-child(4) {
  transition-delay: .22s;
}
.stagger.in > *:nth-child(5) {
  transition-delay: .28s;
}
.stagger.in > *:nth-child(6) {
  transition-delay: .34s;
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--sky));
  z-index: 200;
  will-change: transform;
}
header.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 247, 249, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color .3s,
    background .3s,
    box-shadow .3s;
}
header.nav.scrolled {
  border-color: var(--line);
  background: rgba(246, 247, 249, .86);
  box-shadow: 0 4px 20px -16px rgba(10, 31, 60, .3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family:
    "Inter",
    system-ui,
    sans-serif;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -.022em;
  line-height: 1;
}
.logo svg {
  width: auto;
  height: 27px;
  display: block;
}
.logo .logo-txt .b {
  color: var(--ink);
}
.logo .logo-txt .t {
  color: var(--accent);
}
.logo .mk {
  transition: transform .4s var(--ease-out);
}
.logo:hover .mk {
  transform: translateY(-2px) scale(1.05);
}
.foot-brand .logo .logo-txt .b {
  color: #fff;
}
.foot-brand .logo .logo-txt .t {
  color: var(--sky);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  position: relative;
  transition: color .2s, background .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-links a.active {
  color: var(--accent);
}
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-login {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s;
}
.nav-login:hover {
  color: var(--accent);
}
.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 19px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform .25s var(--ease-out),
    box-shadow .25s,
    background .25s;
  will-change: transform;
}
.nav-cta:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(15, 79, 176, .7);
}
.nav-cta:active {
  transform: translateY(0);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: 0;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 27px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition:
    transform .25s var(--ease-out),
    background .25s,
    border-color .25s,
    box-shadow .25s;
  will-change: transform;
  cursor: pointer;
  border: 0;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px -14px rgba(29, 111, 224, .85);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -14px rgba(15, 79, 176, .8);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-ghost {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.arrow {
  transition: transform .25s var(--ease-out);
}
.btn:hover .arrow,
.go:hover .arrow {
  transform: translateX(4px);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.pill-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.pill svg {
  width: 14px;
  height: 14px;
  color: var(--good);
}
.hero {
  position: relative;
  padding: 72px 0 76px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg .grid {
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(
      90deg,
      var(--line) 1px,
      transparent 1px);
  background-size: 46px 46px;
  mask-image:
    radial-gradient(
      120% 80% at 72% 4%,
      #000 0%,
      transparent 68%);
  -webkit-mask-image:
    radial-gradient(
      120% 80% at 72% 4%,
      #000 0%,
      transparent 68%);
}
.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}
.hero-bg .b1 {
  width: 420px;
  height: 420px;
  background:
    radial-gradient(
      circle,
      #cfe0fb,
      #dce9fc);
  top: -130px;
  right: -70px;
  opacity: .55;
  animation: float1 18s ease-in-out infinite;
}
.hero-bg .b2 {
  width: 320px;
  height: 320px;
  background:
    radial-gradient(
      circle,
      #d8efe4,
      #e8f5ee);
  bottom: -130px;
  left: -90px;
  opacity: .5;
  animation: float2 22s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-26px, 22px);
  }
}
@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(24px, -20px);
  }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}
.hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(43px, 6.6vw, 82px);
  line-height: .97;
  letter-spacing: -.028em;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.hero h1 em svg {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -.16em;
  width: 104%;
  height: .32em;
  overflow: visible;
}
.hero h1 em svg path {
  fill: none;
  stroke: var(--sky);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: underline 1.1s var(--ease-out) forwards 1s;
}
@keyframes underline {
  to {
    stroke-dashoffset: 0;
  }
}
.hero .sub {
  margin-top: 26px;
  max-width: 486px;
  font-size: 18px;
  color: var(--slate);
  line-height: 1.62;
}
.hero .actions {
  margin-top: 32px;
}
.hero .pill-row {
  margin-bottom: 24px;
}
.device-wrap {
  position: relative;
  perspective: 1600px;
}
.device {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  transform: rotateY(-7deg) rotateX(3deg);
  transition: transform .6s var(--ease-out);
}
.device-wrap:hover .device {
  transform: rotateY(-3deg) rotateX(1.5deg);
}
.device .topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
}
.device .topbar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  display: block;
}
.device .topbar i:nth-child(1) {
  background: #ef6f6f;
}
.device .topbar i:nth-child(2) {
  background: #f3c34e;
}
.device .topbar i:nth-child(3) {
  background: #5fc88f;
}
.device .topbar .tag {
  margin-left: auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: var(--slate);
  letter-spacing: .06em;
}
.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6px;
}
.dash-head .lbl {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
}
.dash-head .est {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.dash-head .est .cnt {
  color: var(--accent);
}
.dash-sub {
  font-size: 12px;
  color: var(--good);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}
.dash-sub svg {
  width: 13px;
  height: 13px;
}
.chartbox {
  background:
    linear-gradient(
      180deg,
      #f8fafd,
      #fff);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px 12px 8px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.chart-svg {
  width: 100%;
  height: 100px;
  display: block;
}
.chart-svg .area {
  fill: url(#g);
  opacity: 0;
  transition: opacity 1s ease 1.4s;
}
.chart-svg.go .area {
  opacity: 1;
}
.chart-svg .ln {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
}
.chart-svg.go .ln {
  animation: draw 2.2s var(--ease-out) forwards .3s;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.chart-svg .dot {
  fill: #fff;
  stroke: var(--accent);
  stroke-width: 2.4;
  opacity: 0;
}
.chart-svg.go .dot {
  animation: pop .5s var(--ease-out) forwards 2.1s;
}
@keyframes pop {
  0% {
    opacity: 0;
    r: 0;
  }
  70% {
    r: 6;
  }
  100% {
    opacity: 1;
    r: 4;
  }
}
.chart-svg .pulse {
  fill: var(--accent);
  opacity: 0;
}
.chart-svg.go .pulse {
  animation: pulse 2.2s ease-out infinite 2.4s;
}
@keyframes pulse {
  0% {
    opacity: .5;
    r: 4;
  }
  100% {
    opacity: 0;
    r: 16;
  }
}
.rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.row {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--paper);
  border-radius: 10px;
  padding: 9px 12px;
  transition: background .25s, transform .25s var(--ease-out);
}
.row:hover {
  background: var(--accent-soft);
  transform: translateX(3px);
}
.row .ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.row .ic svg {
  width: 15px;
  height: 15px;
}
.row .nm {
  font-size: 12.5px;
  font-weight: 500;
}
.row .nm small {
  display: block;
  font-weight: 400;
  color: var(--slate);
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
}
.row .amt {
  margin-left: auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  font-weight: 500;
}
.row .amt.pos {
  color: var(--good);
}
.row .amt.neg {
  color: var(--slate);
}
.float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 2;
  will-change: transform;
}
.float-card .badge-ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--good);
  flex-shrink: 0;
}
.float-card .badge-ic svg {
  width: 18px;
  height: 18px;
}
.float-card .ft {
  font-size: 11px;
  color: var(--slate);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: .05em;
}
.float-card .fb {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 14px;
}
.fc-top {
  top: -22px;
  left: -30px;
  animation: bob 5.5s ease-in-out infinite;
}
.fc-bot {
  bottom: -22px;
  right: -26px;
  animation: bob 5.5s ease-in-out infinite 1.6s;
}
@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-hero .hero-bg .grid {
  mask-image:
    radial-gradient(
      120% 90% at 50% 0%,
      #000 0%,
      transparent 70%);
  -webkit-mask-image:
    radial-gradient(
      120% 90% at 50% 0%,
      #000 0%,
      transparent 70%);
}
.page-hero-in {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-hero.center .page-hero-in {
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.0;
  letter-spacing: -.025em;
  margin-top: 16px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.page-hero .sub {
  margin-top: 20px;
  font-size: 18px;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.62;
}
.page-hero.center .sub {
  margin-left: auto;
  margin-right: auto;
}
.page-hero .actions {
  margin-top: 30px;
}
.page-hero.center .actions {
  justify-content: center;
}
.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-2);
}
.crumbs a:hover {
  color: var(--accent);
}
.crumbs .sep {
  opacity: .5;
}
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  flex-wrap: wrap;
}
.strip .t {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
  white-space: nowrap;
}
.strip .marks {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.strip .marks span {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-2);
  opacity: .62;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: opacity .25s, transform .25s var(--ease-out);
}
.strip .marks span:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.strip .marks span svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  text-align: center;
  padding: 34px 18px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  transition:
    transform .3s var(--ease-out),
    box-shadow .3s,
    border-color .3s;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.stat .big {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 46px);
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}
.stat .big .accent {
  color: var(--accent);
}
.stat .cap {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--slate);
}
.section {
  padding: 96px 0;
}
.section.tight {
  padding-top: 0;
}
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.sec-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: -.022em;
  font-size: clamp(31px, 4.4vw, 47px);
  line-height: 1.02;
  max-width: 620px;
}
.sec-head .lede {
  max-width: 368px;
  color: var(--slate);
  font-size: 15.5px;
}
.sec-head.center .lede {
  max-width: 540px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 32px 30px;
  overflow: hidden;
  transition:
    transform .4s var(--ease-out),
    box-shadow .4s,
    border-color .4s;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      var(--ink) 0%,
      var(--ink-2) 100%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: 0;
}
.card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  background:
    radial-gradient(
      circle,
      rgba(141, 184, 240, .18),
      transparent 65%);
  border-radius: 50%;
  left: var(--mx,50%);
  top: var(--my,50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s;
  z-index: 1;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(10, 31, 60, .5);
  border-color: transparent;
}
.card:hover::before {
  opacity: 1;
}
.card:hover::after {
  opacity: 1;
}
.card > * {
  position: relative;
  z-index: 2;
  transition: color .35s;
}
.card .cardic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition:
    background .35s,
    border-color .35s,
    color .35s,
    transform .35s var(--ease-out);
}
.card .cardic svg {
  width: 22px;
  height: 22px;
}
.card:hover .cardic {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}
.card .price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  color: var(--accent);
  margin-top: 18px;
  font-weight: 500;
}
.card h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 24px;
  margin-top: 6px;
  letter-spacing: -.01em;
}
.card p {
  margin-top: 9px;
  color: var(--slate);
  font-size: 14.5px;
  flex: 1;
}
.card .go {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}
.card:hover h3,
.card:hover .go {
  color: #fff;
}
.card:hover p {
  color: #c5d2e6;
}
.card:hover .price {
  color: var(--sky);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 9%;
  right: 9%;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--line),
      var(--accent),
      var(--line));
  z-index: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 1.2s var(--ease-out);
}
.steps.in::before {
  transform: scaleX(1);
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step .num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 22px;
  box-shadow: 0 8px 22px -10px rgba(29, 111, 224, .5);
  transition:
    transform .35s var(--ease-out),
    background .35s,
    color .35s;
}
.step:hover .num {
  transform: scale(1.08) translateY(-2px);
  background: var(--accent);
  color: #fff;
}
.step h4 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.01em;
}
.step p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--slate);
  max-width: 262px;
  margin-left: auto;
  margin-right: auto;
}
.paths {
  background: var(--ink);
  color: #fff;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}
.paths::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 80% 20%,
      rgba(141, 184, 240, .28),
      transparent 45%),
    radial-gradient(
      circle at 10% 90%,
      rgba(15, 157, 110, .2),
      transparent 40%);
}
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}
.path {
  padding: 54px 50px;
  transition: background .35s;
}
.path:hover {
  background: rgba(255, 255, 255, .025);
}
.path:first-child {
  border-right: 1px solid rgba(255, 255, 255, .1);
}
.path .eyebrow {
  color: var(--sky);
}
.path h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 30px;
  margin-top: 14px;
  letter-spacing: -.01em;
  line-height: 1.05;
}
.path p {
  margin-top: 12px;
  color: #aebfd8;
  font-size: 15px;
  max-width: 336px;
}
.path .plinks {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.path .plinks a {
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  transition:
    background .25s,
    color .25s,
    border-color .25s,
    transform .25s var(--ease-out);
}
.path .plinks a:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-2px);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.why {
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.why:hover {
  background: var(--card);
}
.why .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid var(--line);
  transition:
    background .3s,
    color .3s,
    border-color .3s,
    transform .35s var(--ease-out);
}
.why:hover .ic {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px) rotate(-4deg);
}
.why .ic svg {
  width: 22px;
  height: 22px;
}
.why h4 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 18.5px;
  margin-top: 16px;
  letter-spacing: -.01em;
}
.why p {
  margin-top: 7px;
  font-size: 14px;
  color: var(--slate);
}
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.plan.feature {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.02);
}
.plan.feature:hover {
  transform: scale(1.02) translateY(-4px);
}
.plan.feature::after {
  content: "Most popular";
  position: absolute;
  top: 18px;
  right: -32px;
  background: var(--accent);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 36px;
  transform: rotate(40deg);
}
.plan .ptag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
}
.plan.feature .ptag {
  color: var(--sky);
}
.plan h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 23px;
  margin-top: 6px;
}
.plan .cost {
  margin-top: 16px;
  font-family: "Fraunces", serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
}
.plan .cost span {
  font-size: 15px;
  font-family: "Inter";
  color: var(--slate);
  font-weight: 400;
}
.plan.feature .cost span {
  color: var(--sky);
}
.plan .cost-note {
  margin-top: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--slate);
  letter-spacing: .01em;
}
.plan.feature .cost-note {
  color: var(--sky);
}
.scope-select {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.scope-select-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
}
.price-toggle {
  display: inline-flex;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 6px;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}
.pt-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border: 0;
  background: transparent;
  font-family: inherit;
  color: var(--slate);
  padding: 11px 24px;
  border-radius: 13px;
  cursor: pointer;
  transition:
    color .25s,
    background .25s var(--ease-out),
    box-shadow .25s;
}
.pt-main {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: inherit;
}
.pt-sub {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--slate-2);
}
.pt-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(29, 111, 224, .8);
}
.pt-btn.active .pt-sub {
  color: rgba(255, 255, 255, .82);
}
.pt-btn:hover:not(.active) {
  color: var(--ink);
}
.pt-btn:hover:not(.active) .pt-sub {
  color: var(--slate);
}
.scope-panel {
  display: none;
}
.scope-panel.active {
  display: block;
}
@media (max-width: 560px) {
  .price-toggle {
    width: 100%;
  }
  .pt-btn {
    flex: 1;
    padding: 11px 12px;
  }
}
.plan ul {
  list-style: none;
  margin: 22px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan li {
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-2);
}
.plan.feature li {
  color: #c5d2e6;
}
.plan li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--good);
}
.plan .pbtn {
  text-align: center;
  padding: 13px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  background: var(--accent);
  color: #fff;
  transition:
    background .25s,
    transform .25s var(--ease-out),
    box-shadow .25s;
}
.plan.feature .pbtn {
  background: #fff;
  color: var(--ink);
}
.plan .pbtn:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
  box-shadow: 0 12px 26px -14px rgba(15, 79, 176, .8);
}
.plan.feature .pbtn:hover {
  background: #eef3fb;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.compare th,
.compare td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line-2);
}
.compare thead th {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 16px;
  background: var(--paper-2);
}
.compare thead th:not(:first-child) {
  text-align: center;
}
.compare tbody td:not(:first-child) {
  text-align: center;
}
.compare tbody tr:last-child td {
  border-bottom: 0;
}
.compare tbody tr:hover {
  background: var(--paper-2);
}
.compare td .yes {
  color: var(--good);
  display: inline-flex;
}
.compare td .yes svg {
  width: 18px;
  height: 18px;
}
.compare td .no {
  color: var(--slate-2);
}
.compare .feat-col {
  font-weight: 500;
  color: var(--ink-2);
}
.compare .hl {
  background: var(--accent-soft);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.flip .split-media {
  order: 2;
}
.split-media {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.split h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -.015em;
  line-height: 1.08;
}
.split p {
  margin-top: 14px;
  color: var(--slate);
  font-size: 15.5px;
  max-width: 460px;
}
.checklist {
  list-style: none;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-2);
}
.checklist li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--good);
}
.testi {
  overflow: hidden;
  padding: 96px 0;
}
.testi .sec-head {
  padding: 0 28px;
  max-width: var(--max);
  margin: 0 auto 46px;
}
.marquee-mask {
  position: relative;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 6%,
      #000 94%,
      transparent);
  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 6%,
      #000 94%,
      transparent);
}
.marquee {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scroll 56s linear infinite;
}
.testi:hover .marquee {
  animation-play-state: paused;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}
.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  width: 344px;
  flex-shrink: 0;
  transition:
    transform .3s var(--ease-out),
    box-shadow .3s,
    border-color .3s;
}
.quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.quote .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.quote h5 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 16.5px;
  margin-top: 10px;
}
.quote p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--slate);
}
.quote .who {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote .who .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  font-family: "Fraunces", serif;
}
.quote .who .wt {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 36px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background:
    linear-gradient(
      180deg,
      var(--accent),
      var(--line));
}
.tl-item {
  position: relative;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--card);
  border: 3px solid var(--accent);
}
.tl-item .yr {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--accent);
  font-weight: 500;
}
.tl-item h4 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 19px;
  margin-top: 4px;
  letter-spacing: -.01em;
}
.tl-item p {
  margin-top: 6px;
  color: var(--slate);
  font-size: 14.5px;
  max-width: 520px;
}
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cmethod {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  transition:
    transform .3s var(--ease-out),
    box-shadow .3s,
    border-color .3s;
}
.cmethod:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.cmethod .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cmethod .ic svg {
  width: 21px;
  height: 21px;
}
.cmethod h4 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.01em;
}
.cmethod p {
  font-size: 13.5px;
  color: var(--slate);
  margin-top: 3px;
}
.cmethod .val {
  display: block;
  margin-top: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}
.cform {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.field {
  margin-bottom: 18px;
}
.field.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 7px;
}
.field label .req {
  color: var(--accent);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 14px;
  transition:
    border-color .2s,
    box-shadow .2s,
    background .2s;
  min-height: 46px;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field .hint {
  font-size: 12px;
  color: var(--slate-2);
  margin-top: 6px;
}
.cform .formnote {
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 6px;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.cform .formnote svg {
  width: 15px;
  height: 15px;
  color: var(--good);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-ok {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--mint);
  border: 1px solid #b8e2cf;
  color: #0b7a55;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}
.form-ok.show {
  display: flex;
}
.form-ok svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.auth {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: calc(100svh - 72px);
}
.auth-brand {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      150deg,
      var(--ink) 0%,
      var(--accent-deep) 130%);
  color: #fff;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.auth-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .06) 1px,
      transparent 1px);
  background-size: 40px 40px;
  mask-image:
    radial-gradient(
      90% 70% at 30% 0%,
      #000,
      transparent 72%);
  -webkit-mask-image:
    radial-gradient(
      90% 70% at 30% 0%,
      #000,
      transparent 72%);
}
.auth-brand > * {
  position: relative;
  z-index: 1;
}
.auth-brand .logo {
  color: #fff;
}
.auth-brand h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -.02em;
  line-height: 1.08;
  margin-top: 40px;
}
.auth-brand .bsub {
  color: #c5d2e6;
  margin-top: 14px;
  max-width: 380px;
  font-size: 15px;
}
.auth-points {
  list-style: none;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #d6e0f0;
}
.auth-points li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--sky);
  margin-top: 1px;
}
.auth-quote {
  margin-top: 36px;
  font-size: 13.5px;
  color: #aebfd8;
  border-left: 2px solid rgba(255, 255, 255, .2);
  padding-left: 14px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: .04em;
}
.auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 28px;
  background: var(--paper);
}
.auth-card {
  width: 100%;
  max-width: 430px;
}
.auth-card h1 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: -.02em;
  margin-top: 12px;
  line-height: 1.05;
}
.auth-card .lead {
  color: var(--slate);
  margin-top: 10px;
  margin-bottom: 28px;
  font-size: 15px;
}
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-2);
  cursor: pointer;
  line-height: 1.4;
}
.checkbox input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}
.checkbox a {
  color: var(--accent);
  font-weight: 500;
}
.auth-link {
  font-size: 13.5px;
  color: var(--accent);
  font-weight: 500;
}
.auth-link:hover {
  text-decoration: underline;
}
.pw-wrap {
  position: relative;
}
.pw-toggle {
  position: absolute;
  right: 8px;
  top: 8px;
  background: none;
  border: 0;
  color: var(--slate);
  cursor: pointer;
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 9px;
  border-radius: 8px;
}
.pw-toggle:hover {
  color: var(--accent);
  background: var(--accent-soft);
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  color: var(--slate-2);
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: .08em;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.auth-alt {
  text-align: center;
  font-size: 14px;
  color: var(--slate);
  margin-top: 24px;
}
.auth-alt a {
  color: var(--accent);
  font-weight: 500;
}
.auth-alt a:hover {
  text-decoration: underline;
}
.auth-note {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  border: 1px solid #cfe0fb;
  color: var(--accent-deep);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 13.5px;
  margin-bottom: 20px;
}
.auth-note.show {
  display: flex;
}
.auth-note svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .auth {
    grid-template-columns: 1fr;
  }
  .auth-brand {
    display: none;
  }
}
.legal-doc {
  max-width: 760px;
  margin: 0 auto;
}
.legal-doc .updated {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--slate-2);
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.legal-doc h2 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -.01em;
  margin: 36px 0 10px;
}
.legal-doc h3 {
  font-weight: 600;
  font-size: 16px;
  margin: 22px 0 6px;
  color: var(--ink);
}
.legal-doc p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-doc ul {
  margin: 10px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.legal-doc li {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}
.legal-doc a {
  color: var(--accent);
  font-weight: 500;
}
.legal-doc a:hover {
  text-decoration: underline;
}
.legal-doc .note {
  background: var(--accent-soft);
  border: 1px solid #cfe0fb;
  border-radius: 12px;
  padding: 15px 17px;
  font-size: 13.5px;
  color: var(--accent-deep);
  margin: 24px 0;
}
.reassure {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 22px;
  font-size: 13.5px;
  color: #c5d2e6;
}
.reassure span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.reassure svg {
  width: 15px;
  height: 15px;
  color: var(--sky);
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.rating-row .rstars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.rating-row .rscore {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.rating-row .rmeta {
  font-size: 13px;
  color: var(--slate);
}
.cred {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.cred .item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.cred .item .k {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 5px;
}
.cred .item .v {
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
}
@media (max-width: 680px) {
  .cred {
    grid-template-columns: 1fr;
  }
}
.browser {
  max-width: 940px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.browser .bbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.browser .bbar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  display: block;
}
.browser .bbar i:nth-child(1) {
  background: #ef6f6f;
}
.browser .bbar i:nth-child(2) {
  background: #f3c34e;
}
.browser .bbar i:nth-child(3) {
  background: #5fc88f;
}
.browser .bbar .u {
  margin-left: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 12px;
}
.peek-frame {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  background: var(--paper);
}
.peek-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1320px;
  height: 880px;
  border: 0;
  transform: scale(.712);
  transform-origin: top left;
  pointer-events: none;
}
.reassure.light {
  margin-top: 26px;
  color: var(--slate);
}
.reassure.light svg {
  color: var(--good);
}
@media (max-width: 980px) {
  .peek-frame {
    height: 380px;
  }
  .peek-frame iframe {
    transform: scale(.5);
  }
}
.leadmag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background:
    linear-gradient(
      120deg,
      var(--accent-soft),
      #eef5ff);
  border: 1px solid #cfe0fb;
  border-radius: 22px;
  padding: 36px 40px;
}
.leadmag .eyebrow {
  color: var(--accent);
}
.leadmag h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -.02em;
  margin-top: 10px;
  line-height: 1.05;
}
.leadmag p {
  color: var(--slate);
  margin-top: 10px;
  font-size: 15px;
  max-width: 380px;
}
.lead-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lead-row input {
  flex: 1;
  min-width: 190px;
  font: inherit;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  background: #fff;
  color: var(--ink);
}
.lead-row input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 111, 224, .15);
}
.lead-row .btn {
  white-space: nowrap;
}
.lead-note {
  font-size: 12px;
  color: var(--slate-2);
  margin-top: 10px;
}
.lead-ok {
  display: none;
  color: var(--good);
  font-weight: 500;
  font-size: 14px;
  margin-top: 10px;
}
@media (max-width: 760px) {
  .leadmag {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
}
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.post {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform .35s var(--ease-out),
    box-shadow .35s,
    border-color .35s;
}
.post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.post .pthumb {
  height: 130px;
  background:
    linear-gradient(
      135deg,
      var(--ink),
      var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.post .pthumb::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .07) 1px,
      transparent 1px);
  background-size: 26px 26px;
  mask-image:
    radial-gradient(
      80% 100% at 70% 0%,
      #000,
      transparent 70%);
  -webkit-mask-image:
    radial-gradient(
      80% 100% at 70% 0%,
      #000,
      transparent 70%);
}
.post .pthumb svg {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
  opacity: .92;
}
.post .pbody {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post .pcat {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.post h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.01em;
  margin-top: 8px;
  line-height: 1.15;
}
.post p {
  color: var(--slate);
  font-size: 14px;
  margin-top: 9px;
  flex: 1;
}
.post .go {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}
.post:hover .go .arrow {
  transform: translateX(4px);
}
.post.hide {
  display: none;
}
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 34px;
}
.cat-btn {
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition:
    background .2s,
    color .2s,
    border-color .2s;
}
.cat-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cat-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.article-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--slate);
  letter-spacing: .04em;
}
.legal-doc .lead-p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 8px;
}
.article-cta {
  background:
    linear-gradient(
      120deg,
      var(--ink),
      var(--accent-deep));
  border-radius: 18px;
  padding: 30px 32px;
  color: #fff;
  margin: 36px 0 8px;
  position: relative;
  overflow: hidden;
}
.article-cta h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
  color: #fff;
}
.article-cta p {
  color: #c5d2e6;
  margin-top: 8px;
  font-size: 14.5px;
}
.article-cta .actions {
  margin-top: 18px;
}
.article-cta .btn-primary {
  background: #fff;
  color: var(--ink);
}
@media (max-width: 880px) {
  .posts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .posts {
    grid-template-columns: 1fr;
  }
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
  padding: 18px 0;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary:hover {
  color: var(--accent);
}
details summary .pm {
  font-family: "IBM Plex Mono", monospace;
  font-size: 22px;
  color: var(--accent);
  transition: transform .3s var(--ease-out);
  flex-shrink: 0;
}
details[open] summary .pm {
  transform: rotate(45deg);
}
details .ans {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease-out);
}
details[open] .ans {
  grid-template-rows: 1fr;
}
details .ans > div {
  overflow: hidden;
}
details .ans p {
  color: var(--slate);
  font-size: 14.5px;
  max-width: 560px;
  padding-bottom: 18px;
}
.band {
  background:
    linear-gradient(
      120deg,
      var(--ink) 0%,
      var(--accent-deep) 130%);
  border-radius: 26px;
  padding: 68px 56px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .06) 1px,
      transparent 1px);
  background-size: 40px 40px;
  mask-image:
    radial-gradient(
      80% 120% at 50% 0%,
      #000,
      transparent 70%);
  -webkit-mask-image:
    radial-gradient(
      80% 120% at 50% 0%,
      #000,
      transparent 70%);
}
.band .glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(141, 184, 240, .4),
      transparent 65%);
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
  animation: glow 8s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% {
    opacity: .5;
  }
  50% {
    opacity: .85;
  }
}
.band > * {
  position: relative;
  z-index: 1;
}
.band h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(31px, 4.6vw, 49px);
  letter-spacing: -.022em;
  line-height: 1.04;
}
.band p {
  margin: 18px auto 0;
  max-width: 446px;
  color: #c5d2e6;
  font-size: 16px;
}
.band .actions {
  justify-content: center;
  margin-top: 34px;
}
.band .btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, .5);
}
.band .btn-primary:hover {
  background: #eef3fb;
}
.band .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}
.band .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .05);
}
footer {
  background: var(--ink);
  color: #aebfd8;
  padding: 76px 0 38px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.foot-brand .logo {
  color: #fff;
  font-size: 26px;
  margin-bottom: 16px;
}
.foot-brand p {
  font-size: 14px;
  max-width: 300px;
  line-height: 1.65;
}
.foot-col h6 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6f86a8;
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: #c5d2e6;
  transition: color .2s, transform .2s var(--ease-out);
}
.foot-col a:hover {
  color: #fff;
  transform: translateX(3px);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.foot-bottom .legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.foot-bottom a:hover {
  color: #fff;
}
.seal {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: #6f86a8;
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 6px 12px;
  border-radius: 999px;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .device {
    transform: none;
    max-width: 480px;
    margin: 0 auto;
  }
  .device-wrap:hover .device {
    transform: none;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .paths-grid {
    grid-template-columns: 1fr;
  }
  .path:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .cards.three {
    grid-template-columns: 1fr;
  }
  .plan.feature {
    transform: none;
  }
  .plan.feature:hover {
    transform: translateY(-4px);
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .steps::before {
    display: none;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split.flip .split-media {
    order: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .compare {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media (max-width: 680px) {
  .wrap {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-login {
    display: none;
  }
  .burger {
    display: flex;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .foot-top {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .band {
    padding: 48px 26px;
  }
  .path {
    padding: 40px 28px;
  }
  .field.row2 {
    grid-template-columns: 1fr;
  }
  .fc-top {
    left: -8px;
  }
  .fc-bot {
    right: -6px;
  }
  .hero {
    padding: 48px 0 60px;
  }
  .page-hero {
    padding: 56px 0 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .stagger > * {
    opacity: 1;
    transform: none;
  }
  .chart-svg .ln {
    stroke-dashoffset: 0;
  }
  .chart-svg .area,
  .chart-svg .dot {
    opacity: 1;
  }
  .steps::before {
    transform: scaleX(1);
  }
}

/* src/styles.scss */
html,
body {
  min-height: 100%;
}
app-root {
  display: block;
}
@media (max-width: 680px) {
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px 28px;
    background: rgba(246, 247, 249, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
