:root {
  --ink: #07111f;
  --ink-2: #10243f;
  --muted: #617089;
  --line: #dbe4f0;
  --line-dark: rgba(255, 255, 255, 0.14);
  --blue: #2458ff;
  --cyan: #22d3ee;
  --green: #16a34a;
  --cream: #f7f3ea;
  --paper: #fbfcff;
  --white: #fff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 6.9rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.35rem);
}

h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  letter-spacing: -0.035em;
}

p {
  margin: 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(36, 88, 255, 0.25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #123fe0;
}

.btn--secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.09);
}

.btn--light {
  background: var(--white);
  color: var(--ink);
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.topbar__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 40px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  color: rgba(255, 255, 255, 0.74);
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.topbar__links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 255, 0.92);
  border-bottom: 1px solid rgba(219, 228, 240, 0.85);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(7, 17, 31, 0.08);
}

.site-header__inner {
  width: min(1180px, calc(100% - 40px));
  height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--ink), var(--ink-2));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand__text em {
  color: var(--muted);
  font-size: 0.73rem;
  font-style: normal;
  line-height: 1.1;
}

.primary-nav {
  flex: 1;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-link:hover,
.nav-link[aria-expanded="true"] {
  background: var(--white);
  color: var(--blue);
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.nav-link[aria-expanded="true"] .chevron {
  transform: rotate(225deg) translateY(-1px);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(920px, calc(100vw - 48px));
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item--mega.is-open .mega-menu,
.nav-item--mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mega-menu__panel {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.mega-menu__label {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-link {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 12px;
  padding: 12px;
  border-radius: 14px;
  transition: background 0.16s ease;
}

.mega-link:hover {
  background: #f2f6ff;
}

.mega-link span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf3ff;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.mega-link strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.25;
}

.mega-link em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.4;
}

.mega-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.32), transparent 42%),
    var(--ink);
  color: var(--white);
}

.mega-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(380px, 88vw);
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.26s ease;
  box-shadow: -28px 0 80px rgba(7, 17, 31, 0.18);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.6rem;
}

.mobile-nav {
  display: grid;
  padding: 12px;
}

.mobile-nav a {
  padding: 15px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(7, 17, 31, 0.52);
  border: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 760px;
  border-bottom: 1px solid var(--line);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px max(40px, calc((100vw - 1180px) / 2)) 86px max(40px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(36, 88, 255, 0.07), transparent 34%),
    var(--paper);
}

.hero__lead {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.78;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
}

.hero__metrics span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero__metrics strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.hero__system {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 86px max(40px, calc((100vw - 1180px) / 2)) 86px 54px;
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.22), transparent 34%),
    linear-gradient(145deg, #07111f, #13294b);
  border-left: 1px solid var(--line-dark);
}

.hero__system::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(34, 211, 238, 0.8), transparent);
}

.system-card {
  position: relative;
  z-index: 1;
  margin-left: 34px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.system-card--active {
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.system-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
}

.system-card h2 {
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.system-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.retrieval-map,
.method,
.proof,
.pricing,
.post-listing {
  padding: 110px 0;
}

.section-intro {
  max-width: 790px;
  margin-bottom: 50px;
}

.section-intro--center {
  margin-inline: auto;
  text-align: center;
}

.section-intro--center .eyebrow {
  justify-content: center;
}

.section-intro p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.04rem;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.map-track {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.06);
}

.map-track--dark {
  background: var(--ink);
  border-color: transparent;
}

.track-label {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-track--dark .track-label {
  color: var(--cyan);
}

.map-node {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fbff;
}

.map-track--dark .map-node {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-dark);
}

.map-node strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
}

.map-track--dark .map-node strong {
  color: var(--white);
}

.map-node span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.94rem;
}

.map-track--dark .map-node span {
  color: rgba(255, 255, 255, 0.69);
}

.map-output {
  margin-top: 22px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), #061735);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.map-output span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.map-output strong {
  font-size: 1.3rem;
  line-height: 1.2;
}

.method {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.method-grid article {
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}

.method-grid article span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
}

.method-grid h3 {
  margin-bottom: 12px;
}

.proof__header {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
}

.client-logo {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.client-logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.58;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

.pricing {
  background:
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.17), transparent 34%),
    #f3f6fb;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(7, 17, 31, 0.05);
}

.price-card--featured {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: 0 28px 70px rgba(7, 17, 31, 0.22);
}

.price-card__label {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card--featured .price-card__label {
  color: var(--cyan);
}

.price-card h3,
.price-card--featured h3 {
  color: inherit;
}

.price {
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.price-card--featured .price {
  color: var(--white);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.price-card--featured li {
  color: rgba(255, 255, 255, 0.72);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.price-card .btn {
  margin-top: auto;
}

.audit {
  padding: 90px 0;
  background: var(--ink);
  color: var(--white);
}

.audit__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.audit h2 {
  color: var(--white);
  max-width: 860px;
}

.audit .eyebrow {
  color: var(--cyan);
}

.site-footer {
  background: #050b14;
  color: var(--white);
}

.footer-cta,
.footer-main,
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 70px 0;
  border-bottom: 1px solid var(--line-dark);
}

.footer-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.site-footer .eyebrow {
  color: var(--cyan);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding: 56px 0;
}

.brand--footer .brand__text strong,
.brand--footer .brand__text em {
  color: var(--white);
}

.footer-brand p {
  max-width: 430px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-col h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.page-hero,
.single-hero,
.not-found {
  padding: 100px 0 74px;
  background:
    radial-gradient(circle at 12% 0%, rgba(36, 88, 255, 0.14), transparent 34%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.archive-description,
.single-meta {
  margin-top: 18px;
  font-size: 1.05rem;
}

.content-shell {
  width: min(780px, calc(100% - 40px));
  margin: 70px auto;
}

.content-shell > * + * {
  margin-top: 1.2em;
}

.content-shell h2,
.content-shell h3 {
  margin-top: 1.5em;
}

.content-shell a {
  color: var(--blue);
  font-weight: 800;
}

.single-media {
  margin-top: 42px;
}

.single-media img {
  width: 100%;
  border-radius: 28px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(7, 17, 31, 0.05);
}

.post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-card__body {
  padding: 22px;
}

.post-card__meta {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-card h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.pagination-wrap,
.empty-state {
  margin-top: 40px;
}

.not-found {
  min-height: 62vh;
  display: flex;
  align-items: center;
}

.not-found p {
  max-width: 620px;
  margin-top: 20px;
}

.search-form {
  display: flex;
  gap: 8px;
}

.search-field {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.search-submit {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .primary-nav,
  .header-cta,
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header__inner {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content,
  .hero__system {
    padding: 70px 24px;
  }

  .hero__system {
    border-left: 0;
  }

  .hero__system::before {
    left: 42px;
  }

  .map-grid,
  .pricing-grid,
  .footer-main,
  .proof__header {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-card--featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .container,
  .footer-cta,
  .footer-main,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .brand__text em {
    display: none;
  }

  .hero__content,
  .hero__system,
  .retrieval-map,
  .method,
  .proof,
  .pricing,
  .post-listing {
    padding-block: 64px;
  }

  .system-card {
    margin-left: 20px;
    padding: 20px;
  }

  .method-grid,
  .post-grid,
  .client-strip {
    grid-template-columns: 1fr;
  }

  .map-output,
  .audit__inner,
  .footer-cta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card {
    padding: 22px;
  }

  .hero__metrics {
    display: grid;
  }
}
