:root {
  --bg: #f6f9ff;
  --paper: #eef5ff;
  --ink: #0d1726;
  --muted: #526173;
  --line: #c8d7ea;
  --soft: #dcecff;
  --deep: #071426;
  --green: #1263ff;
  --green-dark: #0b48c7;
  --amber: #32c3ff;
  --blue: #244bff;
  --cyan: #21c8ff;
  --violet: #5d6bff;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(24, 76, 180, .16);
  --container: min(1240px, calc(100vw - 48px));
  --font: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.58;
  overflow-x: hidden;
}
a { color: inherit; }
p { color: var(--muted); margin: 0; }

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(214, 223, 217, .9);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--deep);
}
.main-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
}
.main-nav a {
  color: #3f4b45;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover { color: var(--green); }
.nav-action,
.footer-action,
.floating-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.nav-action,
.footer-action,
.button.primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 14px 34px rgba(15, 122, 88, .2);
}
.button.secondary { background: #fff; }

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 72px 0;
  background:
    linear-gradient(120deg, rgba(231, 243, 237, .96), rgba(255, 255, 255, .72) 46%, rgba(230, 238, 247, .74)),
    #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 23, 21, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 23, 21, .045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, .78fr);
  gap: 54px;
  align-items: center;
}
h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero-lead {
  max-width: 730px;
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 22px);
  color: #34423c;
  overflow-wrap: anywhere;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-note {
  max-width: 680px;
  margin-top: 16px;
  font-size: 15px;
  overflow-wrap: anywhere;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.hero-proof div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(17, 23, 21, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 28px rgba(20, 30, 25, .06);
}
.hero-proof b {
  display: block;
  font-size: 20px;
}
.hero-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}
.hero-visual {
  border: 1px solid rgba(17, 23, 21, .12);
  border-radius: var(--radius);
  background: #fbfdfb;
  box-shadow: var(--shadow);
}
.hero-visual svg {
  display: block;
  width: 100%;
  height: auto;
}
.svg-card rect {
  fill: #fff;
  stroke: #cfd9d3;
  filter: drop-shadow(0 14px 18px rgba(20, 30, 25, .08));
}
.svg-card.center rect {
  fill: #dff2e8;
  stroke: #83baa6;
}
.svg-card text {
  fill: #111715;
  font-family: var(--font);
  font-weight: 800;
  font-size: 22px;
}
.svg-card text + text {
  fill: #41504a;
  font-weight: 500;
  font-size: 16px;
}

.section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}
.section.soft { background: var(--paper); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .5fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}
h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: 0;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .55fr);
  gap: 40px;
  align-items: start;
}
.two-col p + p { margin-top: 16px; }
.note-panel,
.compare-box,
.risk-list,
.service-card,
.feature-row article,
.steps article,
.term-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 30, 25, .05);
}
.note-panel,
.compare-box,
.risk-list { padding: 26px; }
.note-panel h3,
.compare-box h3,
.risk-list h3 { margin-bottom: 12px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  min-height: 220px;
  padding: 24px;
}
.service-card p,
.feature-row p,
.steps p,
.term-grid p { margin-top: 12px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.steps article {
  min-height: 230px;
  padding: 24px;
}
.steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--deep);
  font-weight: 900;
}
.compare-box ul,
.risk-list ol,
.checklist ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: #40504a;
}
.compare-box li + li,
.risk-list li + li,
.checklist li + li { margin-top: 10px; }
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature-row article { padding: 24px; min-height: 210px; }
.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  background: #f8faf8;
  color: #26332e;
  font-size: 14px;
}
td { color: var(--muted); }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.metric-grid div {
  min-height: 150px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--deep);
}
.metric-grid div:nth-child(2) { background: #173f34; }
.metric-grid div:nth-child(3) { background: #314a63; }
.metric-grid div:nth-child(4) { background: #684619; }
.metric-grid b {
  display: block;
  font-size: 26px;
}
.metric-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
}
.checklist {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--deep);
  color: #fff;
}
.checklist li { color: #e1eee7; }
.qa-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 20px;
}
summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--green);
  font-size: 24px;
}
details[open] summary::after { content: "-"; }
details p { margin: 0 0 20px; }
.term-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.term-grid article {
  min-height: 180px;
  padding: 22px;
}
.site-footer {
  padding: 54px 0 96px;
  color: #eef7f1;
  background: var(--deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: center;
}
.site-footer p { margin-top: 8px; color: #aebbb5; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.site-footer nav a {
  color: #dce8e2;
  font-size: 14px;
  text-decoration: none;
}
.floating-action {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
  box-shadow: 0 18px 44px rgba(0,0,0,.2);
}

@media (prefers-reduced-motion: no-preference) {
  .button, .nav-action, .floating-action, .service-card, details {
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  }
  .button:hover, .nav-action:hover, .floating-action:hover, .service-card:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .hero-grid,
  .two-col,
  .section-head {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .steps,
  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metric-grid,
  .term-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  :root { --container: min(100vw - 56px, 640px); }
  .site-header {
    min-height: auto;
    padding: 12px 14px;
    gap: 10px;
    justify-content: space-between;
  }
  .brand span:last-child { display: none; }
  .nav-action {
    min-height: 40px;
    margin-left: auto;
    padding: 0 14px;
  }
  .hero { padding: 48px 0 64px; }
  h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.08;
    text-wrap: auto;
  }
  .hero-lead {
    font-size: 17px;
    line-height: 1.58;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-proof,
  .card-grid,
  .steps,
  .feature-row,
  .metric-grid,
  .qa-list,
  .term-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 64px 0; }
  th, td { padding: 14px; }
  .table-wrap { overflow-x: auto; }
  .floating-action {
    left: 14px;
    right: 14px;
  }
}

/* Studio blue redesign layer: locked copy, visual-only changes. */
body {
  background:
    radial-gradient(circle at 12% 4%, rgba(33, 200, 255, .16), transparent 34rem),
    radial-gradient(circle at 92% 12%, rgba(36, 75, 255, .12), transparent 38rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 44%, #f9fbff 100%);
}

.site-header {
  border-bottom-color: rgba(148, 172, 205, .34);
  background: rgba(248, 251, 255, .78);
  box-shadow: 0 16px 38px rgba(8, 30, 70, .06);
}

.site-header.is-scrolled {
  background: rgba(248, 251, 255, .94);
  box-shadow: 0 18px 48px rgba(8, 30, 70, .12);
}

.brand-mark {
  background: linear-gradient(135deg, #0b48c7, #21c8ff);
  box-shadow: 0 14px 34px rgba(18, 99, 255, .25);
}

.main-nav a {
  color: #38506d;
}

.main-nav a:hover {
  color: var(--blue);
}

.nav-action,
.footer-action,
.button.primary {
  background: linear-gradient(135deg, #0b48c7, #1263ff 56%, #21a8ff);
  border-color: rgba(33, 130, 255, .72);
  box-shadow: 0 16px 38px rgba(18, 99, 255, .26);
}

.button.secondary {
  background: rgba(255,255,255,.82);
  border-color: rgba(85, 122, 174, .28);
  color: #12325d;
  box-shadow: 0 12px 28px rgba(24, 76, 180, .08);
}

.hero {
  background:
    linear-gradient(115deg, rgba(239, 246, 255, .98), rgba(255, 255, 255, .78) 42%, rgba(224, 239, 255, .92)),
    #f8fbff;
}

.hero::before {
  background-image:
    linear-gradient(rgba(18, 99, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 99, 255, .08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.08) 86%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background:
    linear-gradient(180deg, transparent, rgba(18, 99, 255, .05)),
    repeating-linear-gradient(115deg, transparent 0 16px, rgba(33, 200, 255, .06) 16px 17px, transparent 17px 34px);
  pointer-events: none;
}

h1 {
  color: #071426;
  text-wrap: balance;
}

h2 {
  color: #0d1d36;
  text-wrap: balance;
}

h3 {
  color: #102340;
}

.hero-lead,
.hero-note,
.section-head p,
p {
  color: #526173;
}

.hero-proof div {
  border-color: rgba(75, 119, 185, .24);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(237,246,255,.82));
  box-shadow: 0 18px 44px rgba(24, 76, 180, .10);
}

.hero-proof b {
  color: #0b48c7;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-color: rgba(56, 103, 176, .24);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(233,244,255,.9));
  box-shadow:
    0 28px 90px rgba(18, 63, 140, .18),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(33, 200, 255, .18), transparent 17rem),
    linear-gradient(rgba(18, 99, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 99, 255, .055) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 41%;
  width: 54px;
  height: 38px;
  border: 1px solid rgba(97, 150, 225, .72);
  border-radius: 14px 14px 12px 12px;
  background:
    radial-gradient(circle at 34% 48%, #21c8ff 0 4px, transparent 5px),
    radial-gradient(circle at 66% 48%, #21c8ff 0 4px, transparent 5px),
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(212,234,255,.94));
  box-shadow:
    0 18px 46px rgba(18, 99, 255, .28),
    0 0 0 8px rgba(33, 200, 255, .08);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-visual svg {
  position: relative;
  z-index: 1;
}

.hero-visual svg > path {
  stroke-dashoffset: 0;
}

.svg-card rect {
  fill: rgba(255,255,255,.92);
  stroke: rgba(86, 130, 194, .38);
  filter: drop-shadow(0 18px 22px rgba(31, 80, 160, .13));
}

.svg-card.center rect {
  fill: #dbeeff;
  stroke: rgba(18, 99, 255, .45);
}

.svg-card text {
  fill: #09224c;
}

.svg-card text + text {
  fill: #4d6078;
}

.section {
  position: relative;
  background: rgba(255,255,255,.78);
}

.section:nth-of-type(3n + 2)::before,
.section.soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 99, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 99, 255, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.42), transparent 82%);
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section.soft {
  background:
    linear-gradient(180deg, rgba(237,246,255,.96), rgba(248,251,255,.96));
}

.note-panel,
.compare-box,
.risk-list,
.service-card,
.feature-row article,
.steps article,
.term-grid article,
details,
.table-wrap {
  border-color: rgba(102, 140, 194, .24);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,251,255,.92));
  box-shadow:
    0 18px 46px rgba(31, 80, 160, .08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.service-card,
.feature-row article,
.steps article,
.term-grid article,
details {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.feature-row article::before,
.steps article::before,
.term-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #1263ff, #21c8ff, transparent);
  opacity: .72;
}

.steps span {
  background: linear-gradient(135deg, #0b48c7, #21c8ff);
  box-shadow: 0 14px 30px rgba(18, 99, 255, .22);
}

.checklist,
.metric-grid div,
.site-footer,
.floating-action {
  background:
    radial-gradient(circle at 10% 0%, rgba(33, 200, 255, .18), transparent 18rem),
    linear-gradient(145deg, #071426, #0b2549 64%, #0a1730);
}

.metric-grid div:nth-child(2) {
  background: linear-gradient(145deg, #0b48c7, #0e6bd8);
}

.metric-grid div:nth-child(3) {
  background: linear-gradient(145deg, #123a7c, #315f9d);
}

.metric-grid div:nth-child(4) {
  background: linear-gradient(145deg, #0b2549, #1676a8);
}

th {
  background: #edf5ff;
  color: #112a50;
}

td,
.compare-box li,
.risk-list li,
.checklist li {
  color: #4c5f76;
}

.checklist li,
.metric-grid span {
  color: rgba(238, 247, 255, .82);
}

summary::after {
  color: var(--blue);
}

details[open] {
  border-color: rgba(18, 99, 255, .34);
  box-shadow: 0 22px 56px rgba(18, 99, 255, .10);
}

.site-footer {
  border-top: 1px solid rgba(150, 184, 235, .22);
}

.site-footer p {
  color: #b8c7db;
}

.site-footer nav a {
  color: #dceaff;
}

.floating-action {
  border-color: rgba(33, 200, 255, .32);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-visual svg > path {
    animation: data-flow 7s linear infinite;
  }

  .hero-visual svg > path:nth-of-type(2) {
    animation-duration: 9s;
    animation-direction: reverse;
  }

  .hero-visual::after {
    animation: bot-scan 5.8s ease-in-out infinite;
  }

  .svg-card.center rect {
    animation: center-pulse 4.2s ease-in-out infinite;
  }

  .svg-card {
    animation: card-float 6.8s ease-in-out infinite;
  }

  .svg-card:nth-of-type(2),
  .svg-card:nth-of-type(5) {
    animation-delay: -2.4s;
  }

  .service-card:hover,
  .feature-row article:hover,
  .steps article:hover,
  details:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 99, 255, .38);
    box-shadow: 0 26px 66px rgba(31, 80, 160, .13);
  }

  @keyframes data-flow {
    to { stroke-dashoffset: -180; }
  }

  @keyframes bot-scan {
    0%, 100% { transform: translate(-50%, -50%) translate(0, 0); }
    35% { transform: translate(-50%, -50%) translate(42px, -18px); }
    70% { transform: translate(-50%, -50%) translate(-34px, 20px); }
  }

  @keyframes center-pulse {
    0%, 100% { filter: drop-shadow(0 18px 22px rgba(31, 80, 160, .12)); }
    50% { filter: drop-shadow(0 22px 34px rgba(18, 99, 255, .28)); }
  }

  @keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
}

@media (max-width: 700px) {
  .hero {
    background:
      linear-gradient(145deg, rgba(239,246,255,.98), rgba(255,255,255,.92)),
      #f8fbff;
  }

  .hero-visual::after {
    width: 42px;
    height: 30px;
  }

  .site-header {
    background: rgba(248,251,255,.94);
  }
}

/* Pricing block: commercial layer with the existing blue studio direction. */
.pricing-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(33, 168, 255, .16), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(11, 72, 199, .12), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
}

.pricing-section .container {
  position: relative;
}

.pricing-section .container::before {
  content: "";
  position: absolute;
  inset: -24px 0 auto;
  height: 220px;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(18, 99, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 99, 255, .12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent);
}

.pricing-ladder {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(102, 140, 194, .28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,250,255,.92));
  box-shadow:
    0 22px 58px rgba(31, 80, 160, .11),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0b48c7, #21a8ff);
}

.pricing-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  border: 1px solid rgba(33, 168, 255, .22);
  box-shadow: inset 0 0 34px rgba(33, 168, 255, .12);
}

.pricing-card.featured {
  color: #fff;
  border-color: rgba(33, 168, 255, .42);
  background:
    radial-gradient(circle at 84% 10%, rgba(33,168,255,.34), transparent 34%),
    linear-gradient(145deg, #082b68, #0b48c7 58%, #1263ff);
  box-shadow: 0 30px 78px rgba(18, 99, 255, .28);
}

.pricing-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(18, 99, 255, .18);
  border-radius: 999px;
  color: #0b48c7;
  background: rgba(232, 243, 255, .78);
  font-size: 13px;
  font-weight: 800;
}

.pricing-card.featured span {
  color: #fff;
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.14);
}

.pricing-card h3 {
  max-width: 250px;
  margin-top: 22px;
}

.pricing-card strong {
  display: block;
  margin-top: 16px;
  color: #0b48c7;
  font-size: 34px;
  line-height: 1.1;
}

.pricing-card.featured strong,
.pricing-card.featured p {
  color: #fff;
}

.pricing-card p {
  margin-top: 18px;
}

.price-explainer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.price-explainer article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(102, 140, 194, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,251,255,.92));
  box-shadow: 0 18px 46px rgba(31, 80, 160, .08);
}

.price-explainer article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #0b48c7, #21a8ff);
}

.price-explainer p {
  margin-top: 12px;
}

.price-table {
  margin-top: 18px;
}

.price-table td:last-child,
.price-table th:last-child {
  color: #0b48c7;
  font-weight: 800;
  white-space: nowrap;
}

.price-note {
  max-width: 900px;
  margin-top: 18px;
  color: #49637f;
}

@media (prefers-reduced-motion: no-preference) {
  .pricing-card,
  .price-explainer article {
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  }

  .pricing-card:hover,
  .price-explainer article:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 99, 255, .38);
    box-shadow: 0 28px 70px rgba(31, 80, 160, .15);
  }
}

@media (max-width: 1100px) {
  .pricing-ladder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card.featured {
    grid-row: 1;
  }
}

@media (max-width: 720px) {
  .pricing-ladder,
  .price-explainer {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
    padding: 24px;
  }

  .pricing-card strong {
    font-size: 28px;
  }
}
