@charset "UTF-8";

/* src/styles.scss */
:root {
  --blue: #283891;
  --blue-deep: #1d2a6e;
  --blue-ink: #19204d;
  --red: #ed1c36;
  --red-deep: #c8122a;
  --ink: #14163a;
  --muted: #5d6285;
  --faint: #8b8fac;
  --bg: #ffffff;
  --soft: #f4f5fb;
  --soft-2: #eef0f9;
  --line: #e6e8f4;
  --line-soft: #eef0f7;
  --primary: var(--blue);
  --primary-press: var(--blue-deep);
  --on-primary: #ffffff;
  --accent: var(--red);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --display-weight: 700;
  --display-spacing: -0.02em;
  --hero-bg:
    radial-gradient(
      1100px 520px at 82% -8%,
      #e8ebfb 0%,
      rgba(232, 235, 251, 0) 60%),
    radial-gradient(
      820px 460px at 6% 8%,
      #fdeef0 0%,
      rgba(253, 238, 240, 0) 55%),
    #ffffff;
  --hero-grid: 0;
  --shadow-sm: 0 1px 2px rgba(20, 22, 58, .05), 0 2px 6px rgba(20, 22, 58, .04);
  --shadow-md: 0 6px 20px rgba(20, 22, 58, .07), 0 2px 6px rgba(20, 22, 58, .05);
  --shadow-lg: 0 26px 60px -22px rgba(28, 40, 110, .32);
  --ring: 0 0 0 4px rgba(40, 56, 145, .14);
  --maxw: 1200px;
  --font-display:
    "Bricolage Grotesque",
    system-ui,
    sans-serif;
  --font-body:
    "Plus Jakarta Sans",
    system-ui,
    sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-spacing);
  line-height: 1.06;
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.section {
  padding-block: clamp(64px, 8vw, 112px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 14px 0 14px;
}
.section-head p {
  font-size: 18px;
  color: var(--muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 50px;
  padding-inline: 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  transition:
    transform 0.14s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--primary) 70%, transparent);
}
.btn-primary:hover {
  background: var(--primary-press);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--primary) 75%, transparent);
}
.btn-ghost {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--line));
  transform: translateY(-1px);
}
.btn-soft {
  background: var(--soft-2);
  color: var(--primary);
}
.btn-soft:hover {
  background: color-mix(in srgb, var(--primary) 14%, var(--soft-2));
}
.btn-light {
  background: #fff;
  color: var(--blue-ink);
}
.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-block {
  width: 100%;
}
.btn-sm {
  height: 42px;
  padding-inline: 16px;
  font-size: 14.5px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--primary);
}
.link-arrow svg {
  width: 17px;
  height: 17px;
  transition: transform 0.18s ease;
}
.link-arrow:hover svg {
  transform: translateX(3px);
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 26px;
  width: auto;
  display: block;
}
.brand:hover {
  opacity: 0.9;
}
.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -0.04em;
  color: var(--blue);
}
.brand-text .dot {
  color: var(--red);
}
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(20, 22, 58, 0.02);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.nav-links a {
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover {
  color: var(--ink);
  background: var(--soft);
}
.nav-links a.active {
  color: var(--ink);
  background: var(--soft);
}
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang {
  display: inline-flex;
  background: var(--soft);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}
.lang button {
  font-size: 13px;
  font-weight: 600;
  color: var(--faint);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  transition: color 0.15s ease, background 0.15s ease;
}
.lang button.on {
  color: var(--ink);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.nav-login {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 13px;
  border-radius: 9px;
}
.nav-login:hover {
  background: var(--soft);
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: var(--bg);
}
.burger span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s;
}
.hero {
  position: relative;
  background: var(--hero-bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--hero-grid);
  pointer-events: none;
  background-image:
    linear-gradient(rgba(40, 56, 145, 0.05) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(40, 56, 145, 0.05) 1px,
      transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image:
    radial-gradient(
      70% 60% at 50% 30%,
      #000 0%,
      transparent 75%);
  mask-image:
    radial-gradient(
      70% 60% at 50% 30%,
      #000 0%,
      transparent 75%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 56px;
  align-items: center;
  padding-block: clamp(54px, 7vw, 96px);
}
.hero-copy {
  max-width: 560px;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  margin: 20px 0 22px;
}
.hero h1 .hl {
  color: var(--primary);
  background-image: linear-gradient(color-mix(in srgb, var(--accent) 26%, transparent), color-mix(in srgb, var(--accent) 26%, transparent));
  background-size: 100% 0.28em;
  background-position: 0 96%;
  background-repeat: no-repeat;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 500px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-micro {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}
.hero-micro svg {
  width: 17px;
  height: 17px;
  color: #1f9d55;
  flex: none;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-ink);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.chip .ic {
  width: 15px;
  height: 15px;
  color: var(--accent);
}
.hero-visual {
  position: relative;
}
.mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(0.4deg);
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: #fcfcff;
}
.mock-dots {
  display: flex;
  gap: 6px;
}
.mock-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e1e3ef;
}
.mock-dots i:first-child {
  background: #ffd0d6;
}
.mock-url {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--faint);
  background: var(--soft);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.mock-url svg {
  width: 11px;
  height: 11px;
}
.mock-body {
  display: grid;
  grid-template-columns: 66px 1fr;
  min-height: 380px;
}
.mock-side {
  background:
    linear-gradient(
      180deg,
      var(--blue) 0%,
      var(--blue-deep) 100%);
  padding: 16px 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mock-side .logo {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
}
.mock-side .navi {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-side .navi i {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  place-items: center;
}
.mock-side .navi i svg {
  width: 18px;
  height: 18px;
}
.mock-side .navi i.act {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 16px rgba(10, 16, 60, 0.22);
}
.mock-side .me {
  margin-top: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}
.mock-main {
  padding: 18px 20px;
}
.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}
.mock-top .crumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--faint);
}
.mock-top .crumbs svg {
  width: 13px;
  height: 13px;
}
.mock-top .crumbs b {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
}
.mock-search {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--faint);
  background: var(--soft);
  border: 1px solid var(--line-soft);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.mock-search svg {
  width: 13px;
  height: 13px;
}
.mock-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mock-h .t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.mock-h .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #1f9d55;
  background: #e7f7ee;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.mock-h .badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f9d55;
}
.inv {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.inv-top {
  padding: 14px 16px;
  background: var(--soft);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.inv-top .no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-ink);
}
.inv-top .meta {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}
.inv-top .amt {
  text-align: right;
}
.inv-top .amt b {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
}
.inv-top .amt span {
  display: block;
  font-size: 11px;
  color: var(--faint);
}
.inv-rows {
  padding: 6px 16px;
}
.inv-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 12.5px;
}
.inv-row:last-child {
  border-bottom: none;
}
.inv-row .l {
  color: var(--ink);
}
.inv-row .r {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.inv-foot {
  padding: 13px 16px;
  display: flex;
  gap: 8px;
}
.inv-foot .btn {
  height: 38px;
  font-size: 13px;
  flex: 1;
  padding-inline: 12px;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.stat-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
}
.stat-card .k {
  font-size: 11px;
  color: var(--faint);
  font-weight: 600;
}
.stat-card .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-top: 3px;
}
.stat-card .v small {
  font-size: 11px;
  color: #1f9d55;
  font-weight: 700;
  margin-left: 4px;
}
.float-pay {
  position: absolute;
  right: -14px;
  bottom: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(-1.4deg);
}
.float-pay .ico {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #e7f7ee;
  color: #1f9d55;
  display: grid;
  place-items: center;
}
.float-pay .ico svg {
  width: 17px;
  height: 17px;
}
.float-pay .tx b {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
}
.float-pay .tx span {
  font-size: 11px;
  color: var(--muted);
}
.trust {
  border-block: 1px solid var(--line);
  background: var(--bg);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-block: 26px;
  flex-wrap: wrap;
}
.trust-lead {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  max-width: 190px;
}
.trust-lead b {
  color: var(--ink);
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  flex: 1;
  opacity: 0.7;
}
.tlogo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--faint);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.tlogo .sq {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--faint);
}
.tlogo.r .sq {
  border-radius: 50%;
}
.tlogo.r2 .sq {
  border-radius: 5px;
  transform: rotate(45deg);
}
.features {
  background: var(--bg);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition:
    transform 0.18s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  overflow: hidden;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--primary) 22%, var(--line));
}
.feat-ico {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--soft-2);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feat-ico svg {
  width: 24px;
  height: 24px;
}
.feat-card h3 {
  font-size: 19px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.feat-card p {
  font-size: 15px;
  color: var(--muted);
}
.tag-addon {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.how {
  background: var(--soft);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
}
.step .n {
  counter-increment: step;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--on-primary);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.step .n::before {
  content: counter(step);
}
.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.step p {
  font-size: 15px;
  color: var(--muted);
}
.step .conn {
  position: absolute;
  top: 48px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--line);
  z-index: 2;
}
.how-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pricing {
  background: var(--bg);
}
.bill-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.switch {
  width: 56px;
  height: 30px;
  border-radius: var(--radius-pill);
  background: var(--soft-2);
  position: relative;
  transition: background 0.2s;
  flex: none;
}
.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.switch.on {
  background: var(--primary);
}
.switch.on::after {
  transform: translateX(26px);
}
.bill-toggle .lbl {
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
}
.bill-toggle .lbl.act {
  color: var(--ink);
}
.save-pill {
  font-size: 12px;
  font-weight: 700;
  color: #1f9d55;
  background: #e7f7ee;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.plan:hover {
  box-shadow: var(--shadow-md);
}
.plan.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.plan.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
}
.plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
}
.plan-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  min-height: 40px;
}
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 18px 0 4px;
}
.plan-price .amt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan-price .per {
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 7px;
}
.plan-note {
  font-size: 13px;
  color: var(--faint);
  min-height: 20px;
  margin-bottom: 22px;
}
.plan .btn {
  margin-bottom: 22px;
}
.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.plan-feats li {
  list-style: none;
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}
.plan-feats li svg {
  width: 18px;
  height: 18px;
  color: #1f9d55;
  flex: none;
  margin-top: 2px;
}
.plan-feats li.off {
  color: var(--faint);
}
.plan-feats li.off svg {
  color: var(--faint);
}
.price-foot {
  text-align: center;
  margin-top: 26px;
  font-size: 14px;
  color: var(--muted);
}
.testi {
  background: var(--soft);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.quote p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
  flex: 1;
}
.quote-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--soft-2);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex: none;
}
.quote-by .who b {
  display: block;
  font-size: 14.5px;
}
.quote-by .who span {
  font-size: 13px;
  color: var(--muted);
}
.news {
  background: var(--bg);
}
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.post {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.18s, box-shadow 0.2s;
}
.post:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.post-thumb {
  aspect-ratio: 16/9;
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--soft-2) 0 10px,
      var(--soft) 10px 20px);
  display: grid;
  place-items: center;
}
.post-thumb span {
  font-family:
    ui-monospace,
    "SF Mono",
    monospace;
  font-size: 11px;
  color: var(--faint);
  background: rgba(255, 255, 255, 0.7);
  padding: 4px 10px;
  border-radius: 7px;
}
.post.b1 .post-thumb {
  background:
    repeating-linear-gradient(
      135deg,
      color-mix(in srgb, var(--blue) 16%, var(--soft)) 0 10px,
      var(--soft) 10px 20px);
}
.post.b2 .post-thumb {
  background:
    repeating-linear-gradient(
      135deg,
      color-mix(in srgb, var(--red) 13%, var(--soft)) 0 10px,
      var(--soft) 10px 20px);
}
.post-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  margin-bottom: 11px;
}
.post-cat {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11.5px;
}
.post-date {
  color: var(--faint);
}
.post h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.post p {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}
.post .link-arrow {
  margin-top: 16px;
  font-size: 14px;
}
.faq {
  background: var(--soft);
}
.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item .pm {
  width: 22px;
  height: 22px;
  flex: none;
  position: relative;
}
.faq-item .pm::before,
.faq-item .pm::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.2s;
}
.faq-item .pm::before {
  top: 10px;
  left: 3px;
  right: 3px;
  height: 2px;
}
.faq-item .pm::after {
  left: 10px;
  top: 3px;
  bottom: 3px;
  width: 2px;
}
.faq-item[open] .pm::after {
  transform: scaleY(0);
}
.faq-item .ans {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--muted);
}
.faq-aside {
  position: sticky;
  top: 100px;
}
.faq-aside h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
}
.faq-aside p {
  color: var(--muted);
  margin-bottom: 22px;
}
.faq-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.faq-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft-2);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.faq-card b {
  font-family: var(--font-display);
  font-size: 17px;
}
.faq-card p {
  font-size: 14px;
  margin: 6px 0 16px;
}
.cta-band {
  padding-block: clamp(56px, 7vw, 88px);
}
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
  background:
    linear-gradient(
      135deg,
      var(--blue) 0%,
      var(--blue-deep) 100%);
  color: #fff;
  text-align: center;
}
.cta-box::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(237, 28, 54, 0.4),
      transparent 65%);
  top: -180px;
  right: -120px;
}
.cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image:
    radial-gradient(
      60% 80% at 50% 50%,
      #000,
      transparent 70%);
  mask-image:
    radial-gradient(
      60% 80% at 50% 50%,
      #000,
      transparent 70%);
}
.cta-box > * {
  position: relative;
  z-index: 1;
}
.cta-box h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  margin-bottom: 14px;
}
.cta-box p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 30px;
}
.cta-box .hero-cta {
  justify-content: center;
}
.cta-box .hero-micro {
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}
.cta-box .hero-micro svg {
  color: #5fe0a0;
}
.contact {
  background: var(--bg);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
}
.cinfo-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cinfo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cinfo .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex: none;
}
.cinfo .ic svg {
  width: 20px;
  height: 20px;
}
.cinfo .k {
  font-size: 13px;
  color: var(--faint);
}
.cinfo .v {
  font-weight: 600;
  font-size: 16px;
}
.form-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 15px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--primary);
  box-shadow: var(--ring);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input.invalid,
.field textarea.invalid,
.field select.invalid {
  border-color: var(--red);
}
.field-err {
  color: var(--red-deep);
  font-size: 12.5px;
  margin-top: 6px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-consent {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 18px;
}
.form-consent input {
  margin-top: 3px;
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  flex: none;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-ok {
  display: none;
  align-items: center;
  gap: 9px;
  background: #e7f7ee;
  color: #157a45;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-ok.show {
  display: flex;
}
.form-ok svg {
  width: 18px;
  height: 18px;
}
.form-err {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fdeaec;
  color: var(--red-deep);
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer {
  background: var(--blue-ink);
  color: rgba(255, 255, 255, 0.7);
  padding-block: 60px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .brand-text {
  color: #fff;
  font-size: 26px;
}
.footer-brand .brand-text .dot {
  color: var(--red);
}
.footer-brand p {
  font-size: 14px;
  margin: 16px 0 18px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.15s;
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0;
}
.footer-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.15s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  font-size: 13px;
  flex-wrap: wrap;
}
.footer-bot .made {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-bot .made .pl-flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
  display: inline-grid;
  grid-template-rows: 1fr 1fr;
}
.footer-bot .made .pl-flag i:first-child {
  background: #fff;
}
.footer-bot .made .pl-flag i:last-child {
  background: var(--red);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--bg);
  z-index: 55;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 15px 12px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-display);
}
.mobile-menu a:active {
  background: var(--soft);
}
.mobile-menu .mm-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
}
.nav--min .nav-inner {
  justify-content: space-between;
}
.nav--min .nav-right {
  gap: 14px;
}
.page-hero {
  position: relative;
  background:
    radial-gradient(
      900px 420px at 84% -20%,
      #e8ebfb 0%,
      rgba(232, 235, 251, 0) 62%),
    radial-gradient(
      700px 380px at 4% -10%,
      #fdeef0 0%,
      rgba(253, 238, 240, 0) 58%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  padding-block: clamp(48px, 6vw, 84px);
  max-width: 760px;
}
.page-hero.center .page-hero-inner {
  margin-inline: auto;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 16px 0 18px;
}
.page-hero .lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 620px;
}
.page-hero.center .lead {
  margin-inline: auto;
}
.page-hero .hero-cta {
  margin-top: 28px;
}
.page-hero.center .hero-cta {
  justify-content: center;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--faint);
  margin-bottom: 4px;
}
.breadcrumb a {
  color: var(--muted);
  font-weight: 500;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb span {
  opacity: 0.5;
}
.img-ph {
  background:
    repeating-linear-gradient(
      135deg,
      var(--soft-2) 0 10px,
      var(--soft) 10px 20px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}
.img-ph span {
  font-family:
    ui-monospace,
    "SF Mono",
    monospace;
  font-size: 12px;
  color: var(--faint);
  background: rgba(255, 255, 255, 0.75);
  padding: 5px 12px;
  border-radius: 8px;
}
.img-ph.blue {
  background:
    repeating-linear-gradient(
      135deg,
      color-mix(in srgb, var(--blue) 14%, var(--soft)) 0 10px,
      var(--soft) 10px 20px);
}
.img-ph.red {
  background:
    repeating-linear-gradient(
      135deg,
      color-mix(in srgb, var(--red) 12%, var(--soft)) 0 10px,
      var(--soft) 10px 20px);
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-block: clamp(40px, 5vw, 72px);
}
.feature-row + .feature-row {
  border-top: 1px solid var(--line-soft);
}
.feature-row.flip .feature-row-media {
  order: -1;
}
.feature-row-copy .eyebrow {
  margin-bottom: 14px;
}
.feature-row-copy h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 16px;
}
.feature-row-copy > p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 22px;
}
.feature-row-media {
  position: relative;
}
.feature-row-media .img-ph {
  aspect-ratio: 4/3;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.feature-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 15.5px;
}
.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex: none;
  margin-top: 2px;
}
.feature-list li b {
  font-weight: 600;
}
.spec-band {
  background: var(--soft);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spec {
  text-align: left;
}
.spec .ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.spec .ico svg {
  width: 22px;
  height: 22px;
}
.spec h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.spec p {
  font-size: 14px;
  color: var(--muted);
}
.compare-wrap {
  overflow-x: auto;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.compare th,
.compare td {
  text-align: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.compare thead th {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  vertical-align: bottom;
}
.compare thead th .p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  font-family: var(--font-body);
  display: block;
  margin-top: 2px;
}
.compare thead th.feat-col {
  text-align: left;
}
.compare tbody th {
  text-align: left;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.compare .grp td,
.compare .grp th {
  background: var(--soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: left;
  padding-block: 11px;
}
.compare td .yes {
  color: #1f9d55;
}
.compare td .no {
  color: var(--line);
}
.compare td svg {
  width: 19px;
  height: 19px;
}
.compare .col-pro {
  background: color-mix(in srgb, var(--primary) 4%, var(--bg));
}
.compare thead .col-pro {
  border-top: 2px solid var(--primary);
}
.billing-faq {
  background: var(--soft);
}
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.cat-filter button,
.cat-filter a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  transition: all 0.15s;
}
.cat-filter .on,
.cat-filter button:hover,
.cat-filter a:hover {
  color: var(--on-primary);
  background: var(--primary);
  border-color: var(--primary);
}
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.blog-featured .img-ph {
  aspect-ratio: 16/10;
}
.blog-featured .ft-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 12px;
}
.blog-featured h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  margin-bottom: 14px;
}
.blog-featured p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 18px;
}
.blog-featured .post-meta {
  margin-bottom: 16px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  transition: all 0.15s;
}
.pagination a.on {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}
.pagination a:hover:not(.on) {
  border-color: var(--primary);
  color: var(--primary);
}
.article {
  max-width: 760px;
  margin-inline: auto;
}
.article-cover {
  aspect-ratio: 16/8;
  margin-bottom: 40px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}
.article-meta .post-cat {
  color: var(--primary);
}
.prose {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
}
.prose > * + * {
  margin-top: 22px;
}
.prose h2 {
  font-size: 28px;
  margin-top: 44px;
  margin-bottom: 4px;
}
.prose h3 {
  font-size: 21px;
  margin-top: 32px;
}
.prose p {
  color: #2b2f52;
}
.prose ul,
.prose ol {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prose li {
  padding-left: 4px;
}
.prose blockquote {
  border-left: 3px solid var(--primary);
  padding: 6px 0 6px 22px;
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--blue-ink);
  margin-block: 32px;
}
.prose a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose .callout {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 16px;
}
.prose .callout b {
  color: var(--blue-ink);
}
.author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.author-card .avatar {
  width: 52px;
  height: 52px;
  font-size: 18px;
}
.author-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
}
.author-card span {
  font-size: 14px;
  color: var(--muted);
}
.article-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.stats-band {
  background:
    linear-gradient(
      135deg,
      var(--blue) 0%,
      var(--blue-deep) 100%);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-big .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
}
.stat-big .k {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}
.stat-big + .stat-big {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.value-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--soft-2);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.value-card .ico svg {
  width: 24px;
  height: 24px;
}
.value-card h3 {
  font-size: 19px;
  margin-bottom: 9px;
}
.value-card p {
  font-size: 15px;
  color: var(--muted);
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-split .img-ph {
  aspect-ratio: 4/3;
}
.about-split h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 16px;
}
.about-split p {
  font-size: 17px;
  color: var(--muted);
}
.about-split p + p {
  margin-top: 14px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  text-align: center;
}
.team-card .ph {
  aspect-ratio: 1;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.team-card b {
  font-family: var(--font-display);
  font-size: 16px;
}
.team-card span {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 2px;
}
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}
.channel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.channel .ico {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--soft-2);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.channel .ico svg {
  width: 23px;
  height: 23px;
}
.channel h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.channel p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}
.channel a {
  font-weight: 600;
  color: var(--primary);
  font-size: 15px;
}
.map-ph {
  aspect-ratio: 21/8;
  margin-top: 8px;
}
.help-search {
  max-width: 560px;
  margin: 26px auto 0;
  position: relative;
}
.help-search input {
  width: 100%;
  height: 56px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 0 22px 0 52px;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}
.help-search input:focus {
  border-color: var(--primary);
  box-shadow: var(--ring);
}
.help-search .si {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--faint);
}
.help-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.help-cat {
  display: block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition:
    transform 0.18s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.help-cat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--primary) 22%, var(--line));
}
.help-cat .ico {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--soft-2);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.help-cat .ico svg {
  width: 24px;
  height: 24px;
}
.help-cat h3 {
  font-size: 18px;
  margin-bottom: 7px;
}
.help-cat p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}
.help-cat .count {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 96px;
}
.legal-toc h4 {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 12px;
}
.legal-toc a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 7px 0;
  border-left: 2px solid var(--line);
  padding-left: 14px;
  transition: color 0.15s, border-color 0.15s;
}
.legal-toc a:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.legal-body {
  max-width: 720px;
}
.legal-body .updated {
  font-size: 14px;
  color: var(--faint);
  margin-bottom: 28px;
}
.legal-body h2 {
  font-size: 24px;
  margin: 40px 0 12px;
  scroll-margin-top: 96px;
}
.legal-body h2:first-of-type {
  margin-top: 0;
}
.legal-body p,
.legal-body li {
  font-size: 16px;
  line-height: 1.7;
  color: #2b2f52;
}
.legal-body p + p {
  margin-top: 14px;
}
.legal-body ul {
  padding-left: 20px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    max-width: 520px;
  }
  .feat-grid,
  .steps,
  .plans,
  .testi-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-aside {
    position: static;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .plan.featured {
    transform: none;
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-row.flip .feature-row-media {
    order: 0;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid,
  .help-cats,
  .contact-channels {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-featured,
  .about-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat-big:nth-child(odd) {
    border-left: none;
  }
  .legal-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .legal-toc {
    position: static;
    display: none;
  }
}
@media (max-width: 980px) {
  .nav-links,
  .nav-login {
    display: none;
  }
  .burger {
    display: flex;
  }
}
@media (max-width: 720px) {
  body {
    font-size: 16px;
  }
  .nav-right .btn-primary {
    display: none;
  }
  .feat-grid,
  .steps,
  .plans,
  .testi-grid,
  .news-grid,
  .field-row {
    grid-template-columns: 1fr;
  }
  .step .conn {
    display: none;
  }
  .news-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-inner {
    gap: 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .float-pay {
    right: 8px;
    bottom: 12px;
  }
  .spec-grid,
  .values-grid,
  .help-cats,
  .contact-channels,
  .team-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-big + .stat-big {
    border-left: none;
    padding-top: 8px;
  }
}

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