:root {
  --primary: #1f64d4;
  --primary-600: #174aa1;
  --accent: #0fa3b1;
  --ink: #0f172a;
  --text: #3f4a5f;
  --muted: #6b7a92;
  --bg: #f5f8ff;
  --card: #ffffff;
  --border: #e2e9f6;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 14px 36px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow: var(--shadow-md);
  --radius-lg: 16px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1140px;
  --section-y-desktop: 96px;
  --section-y-mobile: 56px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

.deals-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #d3ff00;
  border-bottom: 1px solid rgba(15, 23, 42, 0.18);
}

.deals-strip__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 700;
}

.deals-strip__timer {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.deals-strip__link {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

body.has-deals-strip {
  padding-top: 40px;
}

body.has-deals-strip .site-header {
  top: 40px;
}

img {
  max-width: 100%;
  display: block;
}

svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

button,
.button,
.btn {
  min-height: 44px;
  padding: 12px 16px;
}

.hide-mobile {
  display: block;
}

.hide-desktop {
  display: none;
}

@media (max-width: 768px) {
  .deals-strip__inner {
    min-height: 36px;
    gap: 10px;
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
  }

  .deals-strip__title {
    display: none;
  }

  body.has-deals-strip {
    padding-top: 36px;
  }

  body.has-deals-strip .site-header {
    top: 36px;
  }

  body.has-deals-strip .mobile-nav__panel {
    top: 36px;
    max-height: calc(100vh - 36px);
  }

  body.has-deals-strip .mobile-nav__backdrop {
    top: 36px;
  }

  .hide-mobile {
    display: none;
  }

  .hide-desktop {
    display: block;
  }
}

.section {
  padding: var(--section-y-desktop) 0;
}

.section+.section {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.section-alt {
  background: #ffffff;
}

/* Homepage section rhythm: grey -> white -> grey -> white (wrapper backgrounds only). */
.home-page main > section.section:nth-of-type(even):not(.home-mc-cta):not(.migration-cta) {
  background: #f6f8ff !important;
}

.home-page main > section.section:nth-of-type(odd):not(.home-mc-cta):not(.migration-cta) {
  background: #ffffff !important;
}

.home-page {
  --home-section-spacing: 56px;
}

.home-page main > section {
  padding-top: var(--home-section-spacing) !important;
  padding-bottom: var(--home-section-spacing) !important;
}

.home-page main > section.migration-cta {
  background: radial-gradient(circle at top left, rgba(31, 100, 212, 0.35), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(15, 163, 177, 0.2), transparent 50%),
    #0b1220 !important;
}

.home-page main > section#netigo-migration-cta.migration-cta {
  background: radial-gradient(circle at top left, rgba(31, 100, 212, 0.35), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(15, 163, 177, 0.2), transparent 50%),
    #0b1220 !important;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: "Syne", "Inter", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--text);
}

.lead {
  font-size: 1.05rem;
  color: var(--text);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 100, 212, 0.12);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(31, 100, 212, 0.25);
}

.button-secondary {
  background: #ffffff;
  color: var(--primary);
  border-color: var(--border);
}

.button:hover {
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--light {
  background: #fff;
  color: #0b4fd8;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.72);
}

.btn--primary {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid rgba(31, 100, 212, 0.35);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(31, 100, 212, 0.25);
}

.btn--secondary {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .section {
    padding: var(--section-y-mobile) 0;
  }
}

.card {
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-card .price-note {
  font-size: 0.9rem;
}

.plan-card .button {
  margin-top: auto;
}

.card-featured {
  border-color: rgba(31, 100, 212, 0.4);
  box-shadow: var(--shadow-lg);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card .button {
  margin-top: auto;
}

.card-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: -4px;
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.card-grid>* {
  height: 100%;
}

.benefit-card,
.product-card,
.plan-card,
.tile,
.promo-card,
.email-visual-card {
  border-radius: var(--radius-md);
}

.email-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.email-hero__visual {
  display: flex;
  justify-content: center;
}

.email-visual-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  position: relative;
}

.email-visual-top {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.email-visual-top .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
}

.email-visual-body {
  display: grid;
  gap: 10px;
}

.email-visual-row {
  height: 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
}

.email-visual-row.short {
  width: 60%;
}

.email-visual-pill {
  position: absolute;
  right: 18px;
  bottom: 16px;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.email-access {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  margin: 0 0 8px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.product-collage {
  padding-top: 60px;
  overflow-x: hidden;
}

.product-collage,
.product-collage * {
  box-sizing: border-box;
}

.product-collage__head h2 {
  margin: 0 0 8px;
  font-size: 38px;
  letter-spacing: -.02em;
  color: #0f172a;
}

.product-collage__head p {
  margin: 0 0 22px;
  color: #475569;
  font-weight: 600;
  max-width: 72ch;
}

.product-collage__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 14px 40px rgba(2, 8, 23, .06);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-width: 0;
  min-height: 220px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(2, 8, 23, .10);
}

.tile[data-bg] {
  background-image: var(--tile-bg);
}

.tile[data-bg]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: var(--tile-overlay);
  opacity: .75;
}

.tile[data-bg]::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(700px 380px at 15% 20%, rgba(255, 255, 255, .14), transparent 55%);
  mix-blend-mode: overlay;
  opacity: .7;
}

.tile>* {
  position: relative;
  z-index: 1;
}

.tile__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  padding: 8px 10px;
  border: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .85);
  color: #1d4ed8;
}

.tile__badge--light {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .92);
}

.tile__title {
  margin: 14px 0 8px;
  font-size: 22px;
  letter-spacing: -.01em;
  color: #0f172a;
}

.tile__text {
  margin: 0 0 14px;
  color: #475569;
  font-weight: 600;
  max-width: 46ch;
}

.tile__title--light {
  color: #fff;
}

.tile__text--light {
  color: rgba(255, 255, 255, .86);
}

.tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: #1d4ed8;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
}

.tile__cta--light {
  color: #0b4fd8;
  border-color: rgba(255, 255, 255, .20);
  background: #fff;
}

.tile__ctaGhost {
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  margin-left: 12px;
}

.tile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tile__price {
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
}

.tile--accent {
  grid-column: 1 / span 2;
  grid-row: 1;
  min-height: 320px;
  --tile-bg: url("/assets/img/bg/hosting-bg.png");
  --tile-overlay: linear-gradient(135deg, rgba(11, 79, 216, .86), rgba(10, 70, 198, .88));
  border-color: rgba(255, 255, 255, .10);
  background-position: right bottom;
}

/* tile overlay handled by data-bg + ::before */

.tile__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.tile--light {
  --tile-bg: url("/assets/img/bg/domains-bg.png");
  --tile-overlay: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(248, 251, 255, .84));
}

.tile--wordpress {
  --tile-bg: url("/assets/img/bg/wordpress-bg.png");
  --tile-overlay: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(248, 251, 255, .90));
}

.tile--email {
  --tile-bg: url("/assets/img/bg/email-bg.png");
  --tile-overlay: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(248, 251, 255, .90));
}

.tile--dark {
  --tile-bg: url("/assets/img/bg/vps-bg.png");
  --tile-overlay: linear-gradient(135deg, rgba(11, 27, 63, .80), rgba(10, 42, 102, .82));
  border-color: rgba(255, 255, 255, .10);
}

.tile--muted {
  --tile-bg: url("/assets/img/bg/game-bg.png");
  --tile-overlay: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(243, 246, 255, .88));
}

.tile--muted::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, .18);
  pointer-events: none;
}

.tile__art {
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 60%;
  max-width: 420px;
  opacity: .95;
}

.art-svg {
  width: 100%;
  height: auto;
}

.tile__miniart {
  position: absolute;
  right: 18px;
  bottom: 18px;
  opacity: .95;
}

.mini-svg {
  width: 54px;
  height: auto;
}

@media (max-width: 1100px) {
  .product-collage__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .tile--accent {
    grid-column: auto;
    min-height: 280px;
  }

  .tile {
    min-height: 200px;
  }

  .tile__art {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 980px) {
  .product-proof__grid {
    grid-template-columns: 1fr;
  }

  .product-proof__signature {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .product-collage__head h2 {
    font-size: 30px;
  }

  .tile {
    padding: 18px;
    border-radius: 22px;
  }
}

.section-head.center {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: rgba(219, 234, 254, 0.6);
  color: #1d4ed8;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section--benefits {
  position: relative;
  background:
    radial-gradient(700px 260px at 8% -5%, rgba(37, 99, 235, 0.11), transparent 62%),
    radial-gradient(760px 320px at 100% 105%, rgba(14, 116, 144, 0.09), transparent 68%),
    linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
}

.section--benefits .section-head.center {
  margin-bottom: 30px;
}

.section--benefits .section-head.center h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #081226;
}

.section--benefits .section-head.center p {
  max-width: 660px;
  color: #334155;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.benefit-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.benefit-grid>* {
  height: 100%;
}

@media (min-width: 1100px) {
  .benefit-grid {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
  }

  .benefit-grid .benefit-card:nth-last-child(2) {
    grid-column: 2;
  }

  .benefit-grid .benefit-card:nth-last-child(1) {
    grid-column: 3;
  }
}

.benefit-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.section--benefits .benefit-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(2, 8, 23, 0.08);
  gap: 10px;
}

.section--benefits .benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 100, 212, 0.3);
  box-shadow: var(--shadow-md);
}

.section--benefits .benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: 0 24px 40px rgba(2, 8, 23, 0.14);
}

.section--benefits .benefit-card h3 {
  margin-top: 2px;
  font-size: clamp(1.2rem, 1.9vw, 1.38rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: #0b1324;
}

.section--benefits .benefit-card p {
  margin: 0;
  color: #465569;
  font-size: 1rem;
  line-height: 1.65;
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef3ff;
  color: var(--primary);
}

.section--benefits .icon-badge {
  width: 54px;
  height: 54px;
  border: 0;
  box-shadow: 0 8px 20px rgba(2, 8, 23, 0.14);
  color: #fff;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

.section--benefits .benefit-card:nth-child(1) .icon-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.section--benefits .benefit-card:nth-child(2) .icon-badge {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.section--benefits .benefit-card:nth-child(3) .icon-badge {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.section--benefits .benefit-card:nth-child(4) .icon-badge {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.section--benefits .benefit-card:nth-child(5) .icon-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.section--benefits .benefit-card:nth-child(6) .icon-badge {
  background: linear-gradient(135deg, #eab308, #ca8a04);
}

.section-cta {
  margin-top: 24px;
  text-align: center;
}

.section--benefits .section-cta {
  margin-top: 30px;
}

@media (min-width: 1100px) {
  .section--benefits .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .section--benefits .benefit-grid .benefit-card:nth-last-child(2),
  .section--benefits .benefit-grid .benefit-card:nth-last-child(1) {
    grid-column: auto;
  }
}

.migration-cta {
  background: radial-gradient(circle at top left, rgba(31, 100, 212, 0.35), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(15, 163, 177, 0.2), transparent 50%),
    #0b1220;
  color: #ffffff;
}

.migration-cta__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.migration-cta h2 {
  color: #ffffff;
}

.migration-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(31, 100, 212, 0.9);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.migration-cta .text-link {
  display: inline-flex;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.migration-media {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.migration-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.media-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.media-chip--bottom {
  top: auto;
  bottom: 18px;
  left: auto;
  right: 18px;
}

.values {
  display: grid;
  gap: 28px;
}

.values-block {
  text-align: center;
}

.rotator {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Syne", "Inter", system-ui, sans-serif;
}

.rotator__intro {
  color: var(--ink);
}

.rotator__line {
  color: var(--primary);
  display: inline-block;
  min-height: 1.2em;
}

.rotator__line.is-active {
  animation: glowPulse 2.2s ease;
}

.rotator__list {
  display: inline-block;
  margin-top: 14px;
  gap: 8px;
  list-style: none;
  padding: 0;
  color: var(--text);
  font-weight: 600;
}

.stats-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}

.stats-grid--full {
  width: 100%;
}

.stat-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #eef3ff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-value {
  font-weight: 700;
  color: var(--ink);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* CTA band spacing */
.cta-band {
  padding: 56px 0;
}

@media (max-width:720px) {
  .cta-band {
    padding: 40px 0;
  }
}

/* CTA card base */
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 56px;
  width: 100%;
  background: linear-gradient(135deg, #1a73ff 0%, #0b4fd8 55%, #0a46c6 100%);
  box-shadow: 0 14px 40px rgba(2, 8, 23, .14);
  color: #fff;
}

/* premium glow */
.cta-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 520px at 18% 28%, rgba(255, 255, 255, .18), transparent 55%),
    radial-gradient(700px 420px at 30% 85%, rgba(255, 255, 255, .10), transparent 60%);
}

/* stripes only on right, with fade */
.cta-card:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  z-index: 2;
  background: repeating-linear-gradient(135deg,
      rgba(255, 255, 255, .10) 0 14px,
      rgba(255, 255, 255, 0) 14px 28px);
  opacity: .22;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0) 100%);
}

/* content spacing (tight + premium) */
.cta-card__content {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

.cta-card__eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.cta-card__title {
  margin: 0 0 14px;
  font-size: 52px;
  line-height: 1.03;
  letter-spacing: -.02em;
  color: #fff;
}

.cta-card__subtext {
  margin: 0 0 28px;
  font-size: 18px;
  color: rgba(255, 255, 255, .92);
  max-width: 52ch;
}

.cta-card__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.cta-card__fineprint {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .80);
}

/* button styles (ensure visible) */
.btn--light {
  background: #fff;
  color: #0b4fd8;
  border: 1px solid rgba(255, 255, 255, .40);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
}

.btn--ghost-light:hover {
  border-color: rgba(255, 255, 255, .75);
}

/* BIG LOGO BADGE (white background logo) */
.cta-card__logoBadge {
  position: absolute;
  right: 44px;
  top: 34px;
  z-index: 4;
  pointer-events: none;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow:
    0 18px 45px rgba(2, 8, 23, .22),
    0 1px 0 rgba(255, 255, 255, .35) inset;
  backdrop-filter: blur(6px);
  opacity: .78;
}

.cta-card__logoBadgeImg {
  display: block;
  height: 56px;
  width: auto;
  border-radius: 14px;
}

/* Responsive */
@media (max-width:720px) {
  .cta-card {
    padding: 30px;
    border-radius: 22px;
  }

  .cta-card__title {
    font-size: 34px;
  }

  .cta-card__subtext {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .cta-card:after {
    width: 75%;
    opacity: .18;
  }

  .cta-card__logoBadge {
    right: 18px;
    top: 16px;
    padding: 12px 14px;
    border-radius: 18px;
    opacity: .70;
  }

  .cta-card__logoBadgeImg {
    height: 42px;
    border-radius: 12px;
  }
}

.reduced-motion .rotator__line {
  display: inline-block;
}

.reduced-motion .rotator__list {
  display: grid;
}

@keyframes glowPulse {
  0% {
    opacity: 0;
    transform: translateY(8px);
    text-shadow: 0 0 0 rgba(31, 100, 212, 0);
  }

  30% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 18px rgba(31, 100, 212, 0.5);
  }

  100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(31, 100, 212, 0);
  }
}

.icon {
  width: 52px;
  height: 52px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f2f6ff;
  margin-bottom: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.22s ease;
}

.site-header .container.nav {
  width: min(1320px, calc(100% - 32px));
}

.nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  position: relative;
  gap: 18px;
  min-height: 74px;
  padding: 22px 0;
  transition: min-height 0.22s ease, padding 0.22s ease;
}

.logo {
  font-family: "Syne", "Inter", system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  justify-self: start;
}

.brand__logoWrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  order: 0;
  flex: 0 0 auto;
}

.brand__logo {
  height: 32px;
  width: auto;
  display: block;
}

.brand__text {
  font-weight: 900;
  letter-spacing: 0.03em;
  font-size: 15px;
  line-height: 1;
  color: #0b1324;
  display: inline-block;
  order: 1;
}

.brand--fallback .brand__text {
  display: inline-block;
}

.brand--fallback .brand__logoWrap {
  display: inline-block;
}

.brand--footer .brand__logo {
  height: 22px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text);
}

.nav-toggle__icon {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
}

.mobile-nav__toggle {
  display: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(2, 8, 23, 0.08);
}

.mobile-nav__icon {
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
  position: relative;
  display: inline-block;
}

.mobile-nav__icon::before,
.mobile-nav__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
}

.mobile-nav__icon::before {
  top: -6px;
}

.mobile-nav__icon::after {
  top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  list-style: none;
  color: var(--text);
  min-width: 0;
}

.nav-list > li > a,
.nav-list > li > .nav-dropdown > summary,
.nav-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 10px 6px;
  font-size: 0.92rem;
  font-weight: 580;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-list > li > a::after,
.nav-list > li > .nav-dropdown > summary::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-list > li > a:hover::after,
.nav-list > li > .nav-dropdown > summary:hover::after,
.nav-link:hover::after {
  opacity: 0.42;
  transform: scaleX(1);
}

.nav-link--dropdown.is-active {
  font-weight: 700;
  color: var(--primary);
}

.nav-item--hosting>.nav-link--dropdown {
  font-weight: 700;
  color: #1d2f52;
}

.nav-list > li > a:hover,
.nav-list > li > .nav-dropdown > summary:hover,
.nav-link:hover {
  color: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .nav-list > li > a:hover,
  .nav-list > li > .nav-dropdown > summary:hover {
    transform: none;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
  justify-self: end;
}

.site-header .mobile-nav__cta.button-primary {
  background: #ffffff;
  color: #23262f;
  border: 2px solid #23262f;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  letter-spacing: 0.01em;
}

.site-header .mobile-nav__cta.button-primary {
  min-height: 52px;
  padding: 12px 24px;
}

.site-header .nav-actions .nav-action-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 999px;
  background: #f5f9ff;
  border: 1px solid rgba(31, 100, 212, 0.16);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.site-header .mobile-nav__cta.button-primary:hover {
  background: #fcfcfd;
  border-color: #111827;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.nav-link {
  font-size: 0.92rem;
}

.nav-link--pricing-inline {
  color: #1f5ac2;
  font-weight: 660;
}

@media (min-width: 1025px) {
  .nav {
    min-height: 82px;
    padding: 16px 0;
  }

  .site-header .brand__logo {
    height: 39px;
  }

  .site-header .brand__text {
    font-family: "Syne", "Inter", system-ui, sans-serif;
    font-size: 1.94rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1;
  }

  .nav-list {
    gap: 10px;
    justify-content: center;
  }

  .nav-list>li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .nav-list > li > a,
  .nav-list > li > .nav-dropdown > summary,
  .nav-links .nav-link {
    font-size: 1rem;
    font-weight: 600;
  }

  .nav-link--pricing-inline {
    font-size: 1rem;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .site-header .container.nav {
    width: min(1200px, calc(100% - 24px));
  }

  .nav {
    gap: 12px;
    min-height: 78px;
    padding: 14px 0;
  }

  .site-header .brand__logo {
    height: 34px;
  }

  .site-header .brand__text {
    font-size: 1.64rem;
  }

  .nav-list {
    gap: 8px;
  }

  .nav-list > li > a,
  .nav-list > li > .nav-dropdown > summary,
  .nav-links .nav-link {
    font-size: 0.95rem;
  }
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-dropdown--game-hosting > summary.nav-link--gamehosting {
  /* Keep top-level label consistent; mega panel provides the gaming vibe. */
  gap: 6px;
}

.nav-dropdown--game-hosting > summary.nav-link--gamehosting .gh-label {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown--game-hosting {
  position: static;
}

/* Game Hosting mega dropdown (only this dropdown). */
.nav-dropdown--game-hosting > .dropdown.gh-mega {
  top: calc(100% + 10px);
  left: 50%;
  width: min(1120px, calc(100vw - 48px));
  max-width: 1100px;
  min-width: 0;
  padding: 28px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 64px rgba(2, 8, 23, 0.14);
  backdrop-filter: none;
  display: block;
  transform: translate(-50%, 10px);
}

.nav-dropdown--game-hosting[open] > .dropdown.gh-mega {
  display: block;
  transform: translate(-50%, 2px);
}

@media (min-width: 921px) {
  .nav-dropdown--game-hosting > .dropdown.gh-mega {
    display: block;
  }

  .nav-dropdown--game-hosting:hover > .dropdown.gh-mega,
  .nav-dropdown--game-hosting:focus-within > .dropdown.gh-mega {
    transform: translate(-50%, 2px);
  }
}

.nav-dropdown--game-hosting > .dropdown.gh-mega::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translateX(-50%) rotate(45deg);
  background: #ffffff;
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 3px 0 0 0;
}

.nav-dropdown--game-hosting .gh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 22px;
}

.nav-dropdown--game-hosting .gh-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(37, 99, 235, 0.02);
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.nav-dropdown--game-hosting .gh-tile:hover,
.nav-dropdown--game-hosting .gh-tile:focus-visible {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.nav-dropdown--game-hosting .gh-cover {
  width: 66px;
  height: 66px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 66px;
  position: relative;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.04));
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.nav-dropdown--game-hosting .gh-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.nav-dropdown--game-hosting .gh-cover--minecraft {
  background-image:
    url("/assets/game_icons/minecraft.png"),
    linear-gradient(140deg, rgba(109, 255, 138, 0.12), rgba(77, 232, 255, 0.06));
  background-size: 72% auto, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
}

.nav-dropdown--game-hosting .gh-cover--palworld {
  background-image:
    url("/assets/game_icons/palworld.png"),
    linear-gradient(140deg, rgba(255, 91, 214, 0.08), rgba(168, 85, 247, 0.06));
  background-size: 72% auto, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
}

.nav-dropdown--game-hosting .gh-cover--hytale {
  background-image:
    url("/assets/game_icons/hytale.jpg"),
    radial-gradient(120% 90% at 20% 20%, rgba(77, 232, 255, 0.16), rgba(77, 232, 255, 0) 55%),
    radial-gradient(120% 90% at 70% 70%, rgba(168, 85, 247, 0.14), rgba(168, 85, 247, 0) 60%),
    linear-gradient(140deg, rgba(31, 100, 212, 0.14), rgba(10, 14, 30, 0.16));
  background-size: 72% auto, cover, cover, cover;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: center, center, center, center;
}

.nav-dropdown--game-hosting .gh-cover--rust {
  background-image:
    url("/assets/game_icons/rust.png"),
    linear-gradient(140deg, rgba(255, 91, 91, 0.12), rgba(10, 14, 30, 0.16));
  background-size: 72% auto, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
}

.nav-dropdown--game-hosting .gh-cover--valheim {
  background-image:
    url("/assets/game_icons/valheim.png"),
    linear-gradient(140deg, rgba(77, 232, 255, 0.08), rgba(31, 100, 212, 0.08));
  background-size: 72% auto, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
}

.nav-dropdown--game-hosting .gh-cover--terraria {
  background-image:
    linear-gradient(140deg, rgba(109, 255, 138, 0.08), rgba(31, 100, 212, 0.08)),
    url("/assets/img/game-covers/terraria.jpg");
}

.nav-dropdown--game-hosting .gh-cover--zomboid {
  background-image:
    linear-gradient(140deg, rgba(168, 85, 247, 0.08), rgba(10, 14, 30, 0.14)),
    url("/assets/img/game-covers/project-zomboid.jpg");
}

.nav-dropdown--game-hosting .gh-cover--other {
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.04));
}

.nav-dropdown--game-hosting .gh-cover--other svg {
  width: 28px;
  height: 28px;
  stroke: none;
  fill: rgba(15, 23, 42, 0.82);
}

.nav-dropdown--game-hosting .gh-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-dropdown--game-hosting .gh-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: #0f172a;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-dropdown--game-hosting .gh-sub {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.2;
}

.nav-dropdown--game-hosting .gh-sub strong {
  color: #0f172a;
  font-weight: 800;
}

body.theme-hotpink .nav-dropdown--game-hosting > .dropdown.gh-mega {
  background: linear-gradient(180deg, rgba(10, 14, 30, 0.98), rgba(7, 9, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 22px 54px rgba(2, 8, 23, 0.4);
}

body.theme-hotpink .nav-dropdown--game-hosting > .dropdown.gh-mega::before {
  background: rgba(10, 14, 30, 0.98);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.theme-hotpink .nav-dropdown--game-hosting .gh-tile {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

body.theme-hotpink .nav-dropdown--game-hosting .gh-tile:hover,
body.theme-hotpink .nav-dropdown--game-hosting .gh-tile:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(77, 232, 255, 0.22);
}

body.theme-hotpink .nav-dropdown--game-hosting .gh-cover {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.theme-hotpink .nav-dropdown--game-hosting .gh-cover--other {
  background-image: linear-gradient(140deg, rgba(77, 232, 255, 0.08), rgba(10, 14, 30, 0.24));
}

body.theme-hotpink .nav-dropdown--game-hosting .gh-cover--other svg {
  fill: rgba(238, 246, 255, 0.86);
}

body.theme-hotpink .nav-dropdown--game-hosting .gh-title {
  color: rgba(238, 246, 255, 0.98);
}

body.theme-hotpink .nav-dropdown--game-hosting .gh-sub {
  color: rgba(187, 203, 225, 0.82);
}

body.theme-hotpink .nav-dropdown--game-hosting .gh-sub strong {
  color: rgba(238, 246, 255, 0.98);
}

body.theme-hotpink .deals-strip {
  background: linear-gradient(90deg, #ff2daa 0%, #b100ff 100%);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

body.theme-hotpink .deals-strip__inner,
body.theme-hotpink .deals-strip__link {
  color: #fff;
}

body.theme-hotpink .site-header {
  background:
    radial-gradient(110% 160% at 10% 0%, rgba(255, 45, 170, 0.2), transparent 60%),
    radial-gradient(120% 180% at 90% 0%, rgba(177, 0, 255, 0.24), transparent 64%),
    linear-gradient(180deg, rgba(10, 14, 30, 0.96), rgba(7, 9, 18, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(5, 7, 18, 0.35);
}

body.theme-hotpink .nav-list > li > a,
body.theme-hotpink .nav-list > li > .nav-dropdown > summary,
body.theme-hotpink .nav-link,
body.theme-hotpink .nav-item--hosting > .nav-link--dropdown,
body.theme-hotpink .nav-link--pricing-inline {
  color: rgba(238, 246, 255, 0.92);
}

body.theme-hotpink .nav-list > li > a:hover,
body.theme-hotpink .nav-list > li > .nav-dropdown > summary:hover,
body.theme-hotpink .nav-link:hover,
body.theme-hotpink .nav-link--dropdown.is-active {
  color: #ff6dd3;
}

body.theme-hotpink .site-header .nav-actions .nav-action-group {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 26px rgba(2, 8, 23, 0.25);
}

body.theme-hotpink .site-header .nav-action-group .cart-link,
body.theme-hotpink .site-header .nav-action-group .client-link {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

body.theme-hotpink .site-header .nav-action-group .cart-link__icon,
body.theme-hotpink .site-header .nav-action-group .client-link__icon {
  color: #ffd5f1;
}

body.theme-hotpink .site-header .brand__text {
  color: rgba(243, 248, 255, 0.98);
}

.nav-dropdown--game-hosting .gh-tile--soon {
  opacity: 0.66;
}

.nav-dropdown--game-hosting .gh-tile--soon[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}

@media (max-width: 1240px) {
  .nav-dropdown--game-hosting .gh-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-dropdown--game-hosting > .dropdown.gh-mega {
    width: calc(100vw - 32px);
    padding: 20px;
  }

  .nav-dropdown--game-hosting .gh-grid {
    grid-template-columns: 1fr;
  }

  .nav-dropdown--game-hosting .gh-cover {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown--game-hosting .gh-tile {
    transition: none;
  }
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::marker {
  content: "";
}

.nav-chevron {
  width: 14px;
  height: 14px;
  color: var(--muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-dropdown--docs > summary .nav-chevron {
  width: 12px;
  height: 12px;
  margin-top: -1px;
}

.nav-dropdown[open] .nav-chevron,
.nav-link--dropdown[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.nav-list > li > a.is-current,
.nav-list > li > .nav-dropdown > summary.is-current,
.nav-link.is-current {
  color: var(--primary);
  font-weight: 760;
}

.nav-list > li > a.is-current::after,
.nav-list > li > .nav-dropdown > summary.is-current::after,
.nav-link.is-current::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08), 0 12px 30px rgba(15, 23, 42, 0.14);
}

.site-header.is-scrolled .nav {
  min-height: 70px;
  padding: 10px 0;
}

.site-header.is-scrolled .brand__logo {
  height: 32px;
}

.site-header.is-scrolled .brand__text {
  font-size: 1.78rem;
}

.dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  min-width: 200px;
  display: inline-block;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transform-origin: top left;
  transition:
    opacity 170ms ease,
    transform 190ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 190ms;
  z-index: 20;
}

.dropdown li {
  list-style: none;
}

.dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
}

.dropdown a:hover {
  background: #f2f6ff;
}

.dropdown--rich {
  min-width: 310px;
  padding: 8px;
  gap: 4px;
}

.dropdown--rich .dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
}

.dropdown--rich .dropdown-link:hover {
  background: #f4f8ff;
  transform: none;
}

.dropdown-link__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2b63c8;
  margin-top: 1px;
}

.dropdown-link__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropdown-link__icon--image img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.dropdown-link__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-link__title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.dropdown-link__desc {
  font-size: 0.76rem;
  line-height: 1.35;
  color: #64748b;
}

.nav-dropdown[open] .dropdown {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s;
}

.mega-menu {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translate(-50%, 8px);
  width: clamp(860px, 78vw, 1120px);
  font-size: 0.92rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  z-index: 30;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: auto;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu__panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(2, 8, 23, 0.12);
  padding: 22px 24px;
}

.mega-menu__mobile-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 700;
}

.mega-menu__close {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.mega-menu__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 1200px) {
  .mega-menu__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 920px) and (max-width: 1199px) {
  .mega-menu__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  text-decoration: none;
  color: var(--text);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  min-height: 88px;
}

.mega-item:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.mega-item:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
}

.mega-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eff4ff;
  color: #2563eb;
}

.mega-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-icon--image img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.mega-title {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.mega-desc {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.mega-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 2px 8px;
  border-radius: 999px;
  align-self: flex-start;
}

.mega-menu__links {
  border-left: 1px solid rgba(15, 23, 42, 0.06);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu__heading {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}

.mega-menu__links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 160ms ease;
}

.mega-menu__links a:hover {
  color: var(--primary);
}

.mega-menu__trust {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: #1f2937;
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, visibility 160ms ease;
  z-index: 15;
}

.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms cubic-bezier(.2, .8, .2, 1);
  z-index: 55;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.14);
  padding: 20px 20px 24px;
  transform: translateY(-12px);
  opacity: 0;
  max-height: 90vh;
  overflow-y: auto;
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1), opacity 240ms cubic-bezier(.2, .8, .2, 1);
  pointer-events: auto;
}

body.has-deals-strip .mobile-nav__panel {
  top: 40px;
  max-height: calc(100vh - 40px);
}

body.has-deals-strip .mobile-nav__backdrop {
  top: 40px;
}

.mobile-nav[aria-hidden="true"] .mobile-nav__panel {
  display: none;
}

.mobile-nav[aria-hidden="true"]~.mobile-nav__backdrop {
  display: none;
}

.mobile-menu-open .mobile-nav {
  pointer-events: auto;
}

.mobile-menu-open .mobile-nav__panel {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-open .mobile-nav__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #0f172a;
}

.mobile-nav__brand img {
  height: 28px;
  width: auto;
}

.mobile-nav__close {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  gap: 6px;
}

.mobile-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  min-height: 48px;
  transition: background 160ms ease, color 160ms ease;
}

.mobile-nav__item:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.mobile-nav__item--accordion {
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
}

.mobile-nav__chevron {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.mobile-nav__item--accordion[aria-expanded="true"] .mobile-nav__chevron {
  transform: rotate(180deg);
}

.mobile-nav__accordion {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 10px 10px 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms cubic-bezier(.2, .8, .2, 1);
}

.mobile-nav__accordion a {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: #334155;
  text-decoration: none;
}

.mobile-nav__accordion a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.mobile-nav__cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {

  .mobile-nav__panel,
  .mobile-nav__backdrop,
  .mobile-nav__accordion {
    transition: none;
  }
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-v2 {
  padding: 40px 0 70px;
  background: #f6f8ff;
}

.hero-v2__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.domainbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 14px 14px 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(2, 8, 23, .06);
}

.domainbar {
  border: 2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(120deg, #ff3a6a, #ff9f1a, #ffe45e, #4ade80, #22d3ee, #7c3aed, #ff3a6a) border-box;
  background-size: 100% 100%, 280% 280%;
  animation: rgb-outline-flow 7s linear infinite;
  box-shadow: 0 16px 34px rgba(16, 35, 71, 0.14);
}

.domainbar.is-india-active {
  box-shadow: 0 18px 38px rgba(19, 136, 8, 0.16), 0 16px 34px rgba(255, 153, 51, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .domainbar {
    animation: none;
  }
}

.domainbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 420px;
  min-width: 0;
}

.domainbar__icon {
  color: #64748b;
  display: flex;
}

.domainbar__input {
  border: none;
  outline: none;
  font-size: 16px;
  width: 100%;
  min-width: 140px;
  color: #0f172a;
}

.domainbar__input::placeholder {
  color: #94a3b8;
}

.domainbar__tlds {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: visible;
  white-space: nowrap;
}

.tld-pill {
  border: 1px solid rgba(15, 23, 42, .10);
  background: #f8fafc;
  color: #334155;
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}

.tld-pill:hover {
  background: #eef2ff;
}

.domainbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 1 auto;
  max-width: 100%;
  margin-left: auto;
}

.domainbar__btn {
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
}

.domainbar__note {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 12px;
  border-left: 1px solid rgba(15, 23, 42, .08);
}

.domainbar__noteLabel {
  font-size: 12px;
  color: #334155;
  font-weight: 700;
}

.domainbar__noteText {
  font-size: 12px;
  color: #64748b;
}

.hero-v2__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.hero-v2__eyebrow {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0ea5b7;
  font-weight: 800;
  margin: 0 0 10px;
}

.hero-v2__title {
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 14px;
  color: #0f172a;
}

.hero-v2__titleLight {
  color: #1d4ed8;
}

.hero-v2__subtitle {
  margin: 0 0 18px;
  font-size: 18px;
  color: #475569;
  max-width: 58ch;
}

.hero-v2__bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #334155;
}

.hero-v2__bullets .check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(29, 78, 216, .10);
  color: #1d4ed8;
  font-weight: 900;
  margin-right: 10px;
}

.hero-v2__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-v2__ctaButtons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-v2__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.hero-v2__price-prefix {
  display: block;
  width: 100%;
  margin-bottom: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #5a6881;
}

.hero-v2__price-amount {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
}

.hero-v2__price-period {
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
}

.hero-made-in-bar {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
  padding: 18px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #f6f9ff, #eef4ff);
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .2px;
  color: #1f2937;
}

.hero-made-in-bar img {
  height: 18px;
  width: auto;
}

.hero-made-in-strong {
  font-weight: 600;
}

.hero-made-in-soft {
  font-weight: 400;
}

.hero-made-in-bar .heart-icon {
  opacity: 0.9;
}

.hero-v2__trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-chip {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 999px;
  padding: 8px 10px;
}

.promo-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 16px 50px rgba(2, 8, 23, .10);
  overflow: hidden;
}

.promo-card__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #1d4ed8;
  backdrop-filter: blur(8px);
}

.promo-card__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.promo-float {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: 0 10px 30px rgba(2, 8, 23, .12);
  backdrop-filter: blur(10px);
  max-width: 240px;
}

.promo-float__title {
  font-weight: 900;
  color: #0f172a;
  font-size: 13px;
  margin-bottom: 3px;
}

.promo-float__sub {
  font-weight: 700;
  color: #64748b;
  font-size: 12px;
}

.promo-float--top {
  top: 22%;
  left: 14px;
}

.promo-float--bottom {
  bottom: 16px;
  right: 14px;
}

.domain-result {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 10px 30px rgba(2, 8, 23, .06);
}

.domain-result.is-visible {
  display: block;
}

.domain-result__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(15, 23, 42, .06);
}

.domain-result__row:first-child {
  border-top: none;
}

.domain-pill {
  font-weight: 900;
  color: #0f172a;
}

.domain-status {
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .10);
}

.domain-status--ok {
  background: rgba(16, 185, 129, .10);
  color: #047857;
  border-color: rgba(16, 185, 129, .25);
}

.domain-status--bad {
  background: rgba(239, 68, 68, .10);
  color: #b91c1c;
  border-color: rgba(239, 68, 68, .25);
}

@media (max-width: 980px) {
  .hero-v2__grid {
    grid-template-columns: 1fr;
  }

  .promo-float--top {
    top: 14px;
    left: 14px;
  }
}

@media (max-width: 720px) {
  .hero-v2 {
    padding: 28px 0 54px;
  }

  .domainbar {
    flex-direction: column;
    align-items: stretch;
  }

  .domainbar__left {
    display: grid;
    grid-template-columns: auto 1fr;
    flex: 0 1 auto;
    width: 100%;
    align-items: center;
    row-gap: 10px;
    gap: 10px;
  }

  .domainbar__icon {
    grid-column: 1;
    grid-row: 1;
  }

  .domainbar__input {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }

  .domainbar__tlds {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .domainbar__right {
    flex: 0 1 auto;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .domainbar__btn {
    width: 100%;
  }

  .domainbar__note {
    display: none;
  }

  .hero-v2__title {
    font-size: 40px;
  }

  .promo-float {
    max-width: 200px;
  }

  .hero-v2__price-amount {
    font-size: 2.2rem;
  }

  .hero-made-in-bar {
    font-size: 15px;
    font-weight: 500;
    padding: 14px 14px;
    margin-top: 26px;
  }

  .hero-made-in-bar img {
    height: 16px;
  }
}

.domain-search {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: grid;
  gap: 10px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.domain-search__form {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.domain-search__form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
}

.domain-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f3f6ff;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 600;
}

.feature-split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 16px;
}

.screenshot-frame {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.screenshot-frame img {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f6f9ff;
  width: 100%;
  height: auto;
}

.app-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-tile {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.app-tile img {
  width: 34px;
  height: 34px;
}

.app-tile span {
  font-weight: 600;
  color: var(--text);
  font-size: 0.88rem;
  text-align: center;
}

.app-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 100, 212, 0.35);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

@media (min-width: 720px) {
  .app-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .app-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.domain-results {
  display: grid;
  gap: 10px;
}

.domain-results .domain-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f8faff;
  font-size: 0.88rem;
}

.domain-results .domain-result.is-available {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.08);
}

.domain-results .domain-result.is-taken {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.06);
}

.domain-results .domain-result__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef3ff;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 600;
}

.hero-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary);
}

/* Payments trust row */
.trust-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 13px;
  color: #5b6677;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 18px;
  width: auto;
  opacity: 0.9;
  filter: grayscale(100%);
}

.payments-trust {
  background: #ffffff;
}

.payments-trust__card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  padding: 30px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 14px 40px rgba(2, 8, 23, .06);
}

.payments-trust__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #1d4ed8;
  font-weight: 900;
  margin-bottom: 8px;
}

.payments-trust__icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(29, 78, 216, .10);
  color: #1d4ed8;
}

.payments-trust__title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #0f172a;
}

.payments-trust__subtitle {
  margin: 0 0 16px;
  font-size: 16px;
  color: #475569;
  max-width: 60ch;
}

.payments-trust__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payments-trust__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
  border-left: 1px solid rgba(15, 23, 42, .08);
}

.payments-trust__logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  grid-auto-flow: row;
  align-items: stretch;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 8px 10px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 10px 22px rgba(2, 8, 23, .06);
}

.logo-badge img {
  height: 30px;
  width: auto;
  max-width: 100%;
  opacity: 1;
  filter: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.logo-badge--upi img {
  height: 36px;
}

.logo-badge--phonepe img {
  height: 32px;
}

.logo-badge--visa img {
  height: 32px;
}

.logo-badge--mastercard img {
  height: 34px;
}

.logo-badge--rupay img {
  height: 34px;
}

.logo-badge--paypal img {
  height: 31px;
}

.logo-badge--amex img {
  height: auto;
  width: 100%;
  max-width: 166px;
  max-height: 36px;
  object-fit: contain;
}

.logo-badge--gpay img {
  height: 36px;
}

.logo-badge--razorpay img {
  height: 30px;
}

.logo-badge--bhim img {
  height: 31px;
}

.logo-badge:hover img {
  transform: translateY(-1px);
}

.logo-badge:hover {
  border-color: rgba(31, 100, 212, 0.35);
  box-shadow: 0 12px 26px rgba(31, 100, 212, 0.18);
}

.payments-trust__note {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
}

.product-proof {
  background: #ffffff;
}

.product-proof__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.product-proof__copy h2 {
  margin: 0 0 10px;
  font-size: 36px;
  letter-spacing: -.02em;
  color: #0f172a;
}

.product-proof__subline {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 600;
  color: #475569;
}

.product-proof__proofs {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.proof-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(29, 78, 216, .10);
  color: #1d4ed8;
}

.product-proof__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(29, 78, 216, .18);
  background: #f1f5ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
}

.product-proof__slider {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-proof__frame {
  position: relative;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 50px rgba(2, 8, 23, .08);
}

.product-proof__viewport {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #ffffff;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform .55s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .6s ease, transform .6s ease;
}

.slide.is-active img {
  opacity: 1;
  transform: translateY(0);
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .16));
  z-index: 2;
  pointer-events: none;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(420px 220px at 15% 20%, rgba(255, 255, 255, .20), transparent 60%);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.slide.is-active::after {
  opacity: 1;
  animation: slidePulse 1.4s ease;
}

.slide-tag {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #1d4ed8;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(29, 78, 216, .30);
  box-shadow: 0 10px 24px rgba(29, 78, 216, .18);
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s ease, transform .5s ease;
}

.slide.is-active .slide-tag {
  opacity: 1;
  transform: translateY(0);
  animation: tagGlow 1.2s ease;
}

@keyframes slidePulse {
  0% {
    opacity: 0
  }

  45% {
    opacity: .6
  }

  100% {
    opacity: .25
  }
}

@keyframes tagGlow {
  0% {
    box-shadow: 0 0 0 rgba(29, 78, 216, 0)
  }

  55% {
    box-shadow: 0 0 18px rgba(29, 78, 216, .28)
  }

  100% {
    box-shadow: 0 10px 24px rgba(29, 78, 216, .18)
  }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  min-height: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .84);
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(2, 8, 23, .09);
  backdrop-filter: blur(2px);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.slider-arrow--prev {
  left: -8px;
}

.slider-arrow--next {
  right: -8px;
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.03);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .14);
}

.slider-arrow:focus-visible {
  outline: 2px solid rgba(29, 78, 216, .6);
  outline-offset: 2px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 4px 10px rgba(2, 8, 23, .08);
  backdrop-filter: blur(4px);
  z-index: 4;
}

.dot {
  width: 6px;
  height: 6px;
  min-height: 0;
  min-width: 0;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, .62);
  cursor: pointer;
  transition: width .2s ease, background .2s ease, transform .2s ease, opacity .2s ease;
}

.dot.is-active {
  width: 14px;
  height: 6px;
  border-radius: 999px;
  background: #1d4ed8;
  border: none;
  opacity: 1;
  transform: translateY(-0.5px);
}

.dot:not(.is-active) {
  opacity: .72;
}

.dot:focus-visible {
  outline: 2px solid rgba(29, 78, 216, .6);
  outline-offset: 2px;
}

.product-proof__footer {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
  color: #94a3b8;
  text-align: right;
}

.powered-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #f6f9ff, #eef4ff);
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 18px;
}

.powered-kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
  color: #111827;
}

.powered-note {
  margin: 6px 0 0 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.35;
}

.powered-logos {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.powered-logos img {
  height: 30px;
  width: auto;
  opacity: .9;
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .product-proof__grid {
    grid-template-columns: 1fr;
  }

  .product-proof__copy h2 {
    font-size: 30px;
  }

  .slider-arrow--prev {
    left: 6px;
  }

  .slider-arrow--next {
    right: 6px;
  }

  .product-proof__footer {
    text-align: left;
  }

  .powered-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .powered-logos img {
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slider-track {
    transition: none;
  }

  .slide img,
  .slide-tag {
    transition: none;
    animation: none;
  }

  .slide::after {
    animation: none;
  }
}

.hero-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
}

.media-section {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.media-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.media-card img {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  width: 100%;
  height: auto;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.step span {
  font-weight: 700;
  color: var(--primary);
}

.support-block {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.included-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.included-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f3f6ff;
}

.section-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf1ff;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-toggle {
  display: inline-flex;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 999px;
}

.pricing-toggle button {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}

.pricing-toggle button.is-active {
  background: var(--primary);
  color: #ffffff;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 600;
}

.price-value {
  font-size: 2rem;
  color: var(--primary);
}

.price-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-wrap table {
  min-width: 640px;
}

@media (max-width: 768px) {

  input,
  select,
  textarea,
  .input,
  .form-input {
    width: 100%;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer {
    padding: 32px 0 24px;
  }

  .footer-payments {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-payments__logos {
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-grid,
  .benefit-grid,
  .blog-grid,
  .grid-2,
  .pricing-preview-grid {
    grid-template-columns: 1fr;
  }

  .status-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }
}

.table th,
.table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.table th {
  color: var(--ink);
}


.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  background: #ffffff;
}

.plan-accordion {
  margin-top: 8px;
}

.accordion+.accordion {
  margin-top: 12px;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-panel {
  margin-top: 10px;
  color: var(--text);
}

.form {
  display: grid;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
}

.form input,
.form textarea,
.form select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.88rem;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid rgba(31, 100, 212, 0.2);
  border-color: var(--primary);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  background: #0f172a;
  color: #e6ebf5;
  padding: 40px 0 32px;
}

/* Newsletter bar at top of footer */
.footer-newsletter-bar {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) 1px minmax(260px, 1fr) 1px minmax(340px, 1.2fr);
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 0;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  color: #1e293b;
}

.footer-newsletter-bar__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.footer-newsletter-bar__brand .brand__logo {
  height: 56px;
  width: auto;
}

.footer-newsletter-bar__brand .brand__text {
  font-size: 1.1rem;
  color: #0f172a;
}

.footer-newsletter-bar__divider {
  width: 1px;
  align-self: stretch;
  background: #e2e8f0;
}

.footer-newsletter-bar__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 36px;
}

.footer-newsletter-bar__info strong {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.footer-newsletter-bar__info span {
  color: #475569;
  font-size: 0.84rem;
}

.footer-newsletter-bar__form {
  padding: 0 36px;
  min-width: 0;
  width: 100%;
}

.footer-newsletter-bar__form strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-newsletter-form {
  display: flex;
  align-items: stretch;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.footer-newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  padding: 11px 14px;
  font-size: 0.88rem;
  color: #1e293b;
  outline: none;
  min-width: 0;
  font-family: inherit;
  background: transparent;
}

.footer-newsletter-form input[type="email"]::placeholder {
  color: #94a3b8;
}

.footer-newsletter-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: none;
  border-left: 1px solid #cbd5e1;
  min-width: 60px;
  padding: 11px 14px;
  cursor: pointer;
  color: #475569;
  transition: color 0.15s;
}

.footer-newsletter-form button:hover {
  color: var(--primary, #2563eb);
}

.footer-newsletter-msg {
  font-size: 0.8rem;
  margin-top: 6px;
  min-height: 1.2em;
  color: #64748b;
}

.footer-newsletter-msg--ok {
  color: #16a34a;
}

.footer-newsletter-msg--err {
  color: #dc2626;
}

@media (max-width: 900px) {
  .footer-newsletter-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 24px;
  }

  .footer-newsletter-bar__divider {
    display: none;
  }

  .footer-newsletter-bar__brand,
  .footer-newsletter-bar__info,
  .footer-newsletter-bar__form {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .footer-newsletter-bar {
    padding: 20px 18px;
    gap: 16px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.footer-grid h4 {
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-grid a {
  display: block;
  color: rgba(230, 235, 245, 0.75);
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.footer-grid a:hover {
  color: #ffffff;
}

/* Footer payments strip */
.footer-payments {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-payments__left h3 {
  font-size: 14px;
  margin: 0 0 4px 0;
}

.footer-payments__left p {
  margin: 0;
  font-size: 13px;
  color: #5b6677;
}

.footer-payments__logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-payments__logos img {
  height: 22px;
  width: auto;
  opacity: 0.95;
  filter: grayscale(100%);
}

.site-footer .footer-payments {
  border-top-color: rgba(230, 235, 245, 0.12);
  border-bottom-color: rgba(230, 235, 245, 0.12);
}

.site-footer .footer-payments__left p {
  color: rgba(230, 235, 245, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(230, 235, 245, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-note {
  color: rgba(230, 235, 245, 0.6);
}

.link-list {
  display: grid;
  gap: 10px;
}

.hero-split {
  display: grid;
  gap: 24px;
}

.kb-search {
  display: flex;
  gap: 12px;
  margin: 24px 0 32px;
}

.kb-search input {
  flex: 1;
}

.kb-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: grid;
  gap: 8px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
}

.policy-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(180px, 240px) 1fr;
}

.policy-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.policy-sidebar a {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.policy-content h3 {
  margin-top: 24px;
}

.blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  background: #ffffff;
  display: grid;
  gap: 12px;
}

.toc {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 24px 0;
}

.status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  margin-bottom: 12px;
}

.status-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 163, 177, 0.15);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.list-check {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.list-check li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 8px;
}

@media (max-width: 1024px) {
  .site-header .container.nav,
  .site-header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav__toggle {
    display: inline-flex;
    margin-left: auto;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
  }

  .nav-links {
    display: none;
  }

  .site-header .nav > .nav-actions {
    display: none;
  }

  .nav-list {
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-actions .button {
    width: 100%;
    justify-content: center;
  }

  body.nav-open .nav-links {
    display: none;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 8px 0 0;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    filter: none;
  }

  .dropdown li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-dropdown[open] .dropdown {
    display: flex;
  }

  .mega-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    margin: 0;
    background: rgba(15, 23, 42, 0.24);
    backdrop-filter: blur(4px);
    z-index: 40;
  }

  .mega-menu__panel {
    box-shadow: none;
    border-radius: 0;
    padding: 18px;
    height: 100%;
    overflow-y: auto;
  }

  .mega-menu__mobile-head {
    display: flex;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
  }

  .mega-menu__products {
    grid-template-columns: 1fr;
  }

  .mega-menu__links {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 12px;
  }

  .mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-overlay {
    display: none;
  }

  body.nav-open .nav-overlay {
    display: block;
  }
}

@media (max-width: 768px) {

  .nav-list > li > a,
  .nav-list > li > .nav-dropdown > summary,
  .nav-link {
    padding: 10px 8px;
    width: 100%;
  }

  .nav-list {
    gap: 6px;
  }
}

@media (min-width: 921px) {
  .dropdown {
    display: flex;
  }

  .nav-dropdown:hover .dropdown,
  .nav-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s, 0s, 0s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dropdown,
  .dropdown li,
  .nav-chevron {
    transition: none !important;
  }

  .dropdown {
    transform: none !important;
  }
}

@media (max-width: 720px) {
  .brand__logo {
    height: 22px;
  }

  .brand--footer .brand__logo {
    height: 20px;
  }

  .domain-search__form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--section-y-mobile) 0;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .footer-payments {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-payments__logos img {
    height: 20px;
  }

  .trust-logos img {
    height: 16px;
  }

  .payments-trust__card {
    grid-template-columns: 1fr;
  }

  .payments-trust__right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, .08);
    padding-top: 16px;
  }

  .payments-trust__title {
    font-size: 28px;
  }

  .cta-band {
    padding: 40px 0;
  }

  .cta-card {
    padding: 32px;
    border-radius: 22px;
  }

  .cta-card__title {
    font-size: 34px;
  }

  .cta-card:after {
    width: 75%;
    opacity: .22;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
}


.benefit-grid .benefit-card:nth-last-child(-n+2) {
  justify-self: center;
  text-align: center;
}

.benefit-grid .benefit-card:nth-last-child(-n+2) .icon-badge {
  margin-left: auto;
  margin-right: auto;
}


.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.plan-sub {
  margin: 4px 0 8px;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.plan-billing {
  margin: 6px 0 12px;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}

.plan-more {
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 12px;
  background: #f8fbff;
  font-size: 12px;
}

.plan-more strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}

.plan-more ul {
  margin: 0;
  padding-left: 16px;
  color: #475569;
}

@media (max-width: 1400px) {
  .pricing-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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


.pricing-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin: 12px 0 18px;
  font-size: 13px;
  color: #475569;
  font-weight: 600;
}

.pricing-trust span {
  position: relative;
  padding-left: 14px;
}

.pricing-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1d4ed8;
  transform: translateY(-50%);
}

.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card--muted {
  background: #f8fbff;
  border-color: rgba(15, 23, 42, .06);
}

.plan-card--popular {
  border: 1px solid rgba(31, 100, 212, .45);
  box-shadow: 0 18px 45px rgba(31, 100, 212, .18);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 2px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 100, 212, .10);
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
}

.plan-sub {
  margin: 4px 0 8px;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.plan-billing {
  margin: 4px 0 2px;
  font-size: 12px;
  color: #475569;
  font-weight: 700;
}

.plan-renewal {
  margin: 0 0 8px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}

.plan-groups {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: #475569;
}

.plan-group h4 {
  margin: 0 0 6px;
  font-size: 12px;
  color: #0f172a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.plan-group ul {
  margin: 0;
  padding-left: 16px;
}

.plan-group strong {
  color: #0f172a;
}

.plan-perf-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
  font-size: 11px;
  font-weight: 700;
  color: #1d4ed8;
}

.plan-perf-strip span {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(29, 78, 216, .08);
  border: 1px solid rgba(29, 78, 216, .16);
}

.plan-actions {
  margin-top: auto;
}

.plan-helper {
  margin: 8px 0 0;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 1400px) {
  .pricing-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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


.pricing-include {
  margin: 0 0 18px;
  font-size: 13px;
  color: #475569;
  font-weight: 600;
}

.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card--muted {
  background: #f8fbff;
  border-color: rgba(15, 23, 42, .06);
}

.plan-card--popular {
  border: 2px solid rgba(31, 100, 212, .55);
  box-shadow: 0 20px 55px rgba(31, 100, 212, .18);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 100, 212, .12);
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.plan-sub {
  margin: 4px 0 8px;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.plan-billing {
  margin: 4px 0 2px;
  font-size: 12px;
  color: #475569;
  font-weight: 700;
}

.plan-renewal {
  margin: 0 0 8px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}

.plan-rows {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 12px;
  color: #475569;
}

.plan-rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-rows strong {
  color: #0f172a;
}

.plan-toggle {
  background: none;
  border: none;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 0;
  text-align: left;
  cursor: pointer;
}

.plan-more {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .3s ease, opacity .3s ease;
  font-size: 12px;
  color: #475569;
}

.plan-more.is-open {
  max-height: 240px;
  opacity: 1;
}

.plan-more ul {
  margin: 6px 0 0;
  padding-left: 16px;
}

.plan-actions {
  margin-top: auto;
}

.plan-helper {
  margin: 8px 0 0;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.pricing-notes {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.pricing-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1400px) {
  .pricing-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .plan-card--popular {
    order: -1;
  }
}

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


.pricing-trust-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 8px 0 8px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f5ff;
  border: 1px solid rgba(29, 78, 216, .18);
  font-size: 12px;
  font-weight: 700;
  color: #1d4ed8;
  position: relative;
}

.trust-icon {
  font-size: 14px;
}

.ping-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1d4ed8;
  box-shadow: 0 0 0 rgba(29, 78, 216, .4);
  animation: ping 2s infinite;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 78, 216, .4);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(29, 78, 216, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(29, 78, 216, 0);
  }
}

.pricing-include-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #475569;
  font-weight: 700;
}

.include-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .08);
}

.include-icon {
  font-size: 13px;
}

.pricing-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pricing-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pricing-toggle button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: #fff;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

.pricing-toggle button.is-active {
  background: #1d4ed8;
  color: #fff;
  border-color: #1d4ed8;
}

.save-badge {
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(29, 78, 216, .12);
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 800;
}

.plan-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-picker__label {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
}

.plan-picker__options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-picker__options button {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.plan-picker__options button.is-active {
  background: #1d4ed8;
  color: #fff;
  border-color: #1d4ed8;
}

.plan-bestfor {
  margin: 4px 0 6px;
  font-size: 12px;
  color: #1d4ed8;
  font-weight: 700;
}

.renewal-badge {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(16, 185, 129, .10);
  border: 1px solid rgba(16, 185, 129, .18);
  font-size: 12px;
  color: #0f3d2e;
  margin-bottom: 8px;
}

.renewal-badge strong {
  display: block;
  font-weight: 800;
}

.renewal-badge span {
  display: block;
  color: #1f6b52;
}

.plan-includes {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: #475569;
}

.plan-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-includes li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, .12);
  color: #059669;
  font-weight: 900;
  font-size: 11px;
}

.plan-includes li.is-no::before {
  content: "✕";
  background: rgba(239, 68, 68, .12);
  color: #dc2626;
}

.plan-card--popular {
  transform: translateY(-6px);
}

.plan-card.is-recommended {
  border-color: #1d4ed8;
  box-shadow: 0 18px 45px rgba(31, 100, 212, .18);
}

.plan-card.is-recommended .plan-reco {
  display: inline-flex;
}

.plan-reco {
  display: none;
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  color: #1d4ed8;
}

@media (max-width: 980px) {
  .pricing-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-card--popular {
    transform: none;
  }
}


.plan-scroll {
  max-height: 720px;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.plan-card {
  padding: 0;
}

.plan-sticky {
  position: sticky;
  top: 0;
  z-index: 3;
  background: inherit;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.plan-body {
  padding: 12px 16px 16px;
}

.button-compact {
  margin-top: 8px;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .plan-scroll {
    max-height: none;
    overflow: visible;
  }

  .plan-sticky {
    position: static;
    border-bottom: none;
  }
}

.pricing-sticky-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(2, 8, 23, .18);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  z-index: 999;
}

.pricing-sticky-bar.is-active {
  transform: translateY(0);
  opacity: 1;
}

.pricing-sticky__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-sticky__plan {
  font-weight: 800;
  color: #0f172a;
  font-size: 13px;
}

.pricing-sticky__price {
  color: #1d4ed8;
  font-weight: 800;
  font-size: 13px;
}

@media (min-width: 981px) {
  .pricing-sticky-bar {
    display: none;
  }
}


/* Pricing preview adjustments (no sticky headers / no scroll) */
.plan-scroll {
  max-height: none;
  overflow: visible;
}

.plan-sticky {
  position: static;
  border-bottom: none;
  padding: 0;
  background: transparent;
}

.pricing-sticky-bar {
  display: none !important;
}

.pricing-controls--center {
  justify-content: center;
  text-align: center;
}

.pricing-controls--center .plan-picker {
  align-items: center;
}

.pricing-controls--center .plan-picker__options {
  justify-content: center;
}

.trust-flag {
  height: 14px;
  width: auto;
}

.trust-chip {
  padding: 7px 12px;
}

.pricing-include-row {
  justify-content: center;
}

.pricing-trust-chips {
  justify-content: center;
}

.plan-head {
  justify-content: flex-start;
  gap: 10px;
}

.plan-includes {
  margin-top: 10px;
}

.plan-card--popular {
  transform: none;
}


.pricing-trust-inline {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: #1d4ed8;
}

.pricing-trust-inline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-flag {
  height: 14px;
  width: auto;
}

.pricing-controls--center {
  justify-content: center;
  text-align: center;
  margin-bottom: 16px;
}

.pricing-sync-status {
  display: none;
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  min-height: 18px;
}

.pricing-sync-status[data-tone="loading"] {
  color: #1d4ed8;
}

.pricing-sync-status[data-tone="success"] {
  color: #0f766e;
}

.pricing-sync-status[data-tone="warning"] {
  color: #92400e;
}

.renewal-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, .12);
  border: 1px solid rgba(16, 185, 129, .2);
  color: #0f5132;
  font-size: 11px;
  font-weight: 800;
  margin: 6px 0 10px;
}

.plan-card .price {
  margin-top: 4px;
}

.plan-card .plan-billing {
  margin-top: 6px;
}

.plan-card h3 {
  margin: 6px 0 4px;
}

.plan-includes {
  margin-top: 8px;
}

@media (max-width: 720px) {
  .pricing-trust-inline {
    font-size: 12px;
    gap: 10px;
  }
}


/* Pricing card alignment fixes */
.plan-card {
  padding: 18px;
}

.plan-card h3 {
  min-height: 44px;
}

.plan-bestfor {
  min-height: 22px;
}

.plan-rows {
  min-height: 150px;
}

.plan-includes {
  min-height: 58px;
}

.plan-toggle {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 4px;
}

.renewal-pill {
  align-self: flex-start;
}

.plan-actions {
  margin-top: auto;
  padding-top: 10px;
}

.plan-actions .button {
  align-self: flex-start;
}

.pricing-preview-grid {
  align-items: stretch;
}














@media (max-width: 980px) {}

@media (max-width: 640px) {}


.footer-badges-center {
  --badge-h: 52px;
  margin: 24px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-badges-center .badge img {
  height: var(--badge-h);
  width: auto;
  object-fit: contain;
  display: block;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-badges-center .badge:hover img {
  opacity: 1;
  transform: translateY(-1px) scale(1.02);
}

.footer-badges-center .badge-divider {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 980px) {
  .footer-badges-center {
    --badge-h: 44px;
  }
}

@media (max-width: 640px) {
  .footer-badges-center {
    --badge-h: 40px;
    flex-direction: column;
  }

  .footer-badges-center .badge-divider {
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
  }
}


.footer-badges-center .badge--whtop img {
  height: var(--badge-h);
  width: auto;
  object-fit: contain;
  display: block;
}

/* Global polish: consistent cards, pills, shadows */
.card,
.benefit-card,
.product-card,
.plan-card,
.tile,
.promo-card,
.email-visual-card {
  border-radius: var(--radius-md) !important;
}

.card,
.benefit-card,
.product-card,
.plan-card {
  box-shadow: var(--shadow-sm);
}

.badge,
.pill,
.plan-badge,
.trust-pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1.2;
}

/* Netigo rolling headline */
.netigo-rolling-headline {
  background: #f6faff;
  padding: 40px 0;
}

.nrh-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.nrh-headline {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.34em;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-align: center;
}

.nrh-brand {
  color: #111827;
  display: inline-block;
}

.nrh-stack {
  --nrh-max-width: 18ch;
  --nrh-shift: 1.12em;
  --nrh-duration: 560ms;
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-items: start;
  row-gap: 0.14em;
  width: min(100%, var(--nrh-max-width));
  line-height: 1.06;
  align-self: baseline;
}

.nrh-main-line,
.nrh-ghost-line {
  display: block;
  width: 100%;
}

.nrh-main-line {
  text-align: left;
}

.nrh-ghost-line {
  text-align: center;
}

.nrh-main,
.nrh-ghost {
  display: inline-block;
  white-space: nowrap;
  background-color: transparent;
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transition:
    transform var(--nrh-duration) cubic-bezier(0.2, 0.84, 0.24, 1),
    opacity var(--nrh-duration) cubic-bezier(0.2, 0.84, 0.24, 1),
    color var(--nrh-duration) cubic-bezier(0.2, 0.84, 0.24, 1),
    font-size var(--nrh-duration) cubic-bezier(0.2, 0.84, 0.24, 1),
    font-weight var(--nrh-duration) cubic-bezier(0.2, 0.84, 0.24, 1),
    letter-spacing var(--nrh-duration) cubic-bezier(0.2, 0.84, 0.24, 1),
    filter var(--nrh-duration) cubic-bezier(0.2, 0.84, 0.24, 1);
}

.nrh-main {
  opacity: 1;
  transform: translateY(0);
  font-size: 1em;
  font-weight: 800;
  letter-spacing: 0;
  background-image: linear-gradient(90deg, #ff4d2d 0%, #a855f7 58%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}

.nrh-ghost {
  opacity: 0.86;
  transform: translateY(0);
  font-size: 0.66em;
  font-weight: 550;
  letter-spacing: 0.012em;
  color: rgba(11, 18, 32, 0.45);
  filter: none;
}

.nrh-stack.is-animating .nrh-main {
  opacity: 0;
  transform: translateY(calc(-0.42 * var(--nrh-shift)));
}

.nrh-stack.is-animating .nrh-ghost {
  opacity: 1;
  transform: translateY(calc(-1 * var(--nrh-shift)));
  font-size: 1em;
  font-weight: 800;
  letter-spacing: 0;
  filter: blur(0);
  background-image: linear-gradient(90deg, #ff4d2d 0%, #a855f7 58%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nrh-stack.is-resetting .nrh-main,
.nrh-stack.is-resetting .nrh-ghost {
  transition: none !important;
}

@media (max-width: 720px) {
  .netigo-rolling-headline {
    padding: 28px 0;
  }

  .nrh-headline {
    gap: 0.28em;
    font-size: clamp(22px, 8vw, 34px);
  }

  .nrh-stack {
    width: min(100%, var(--nrh-max-width));
  }

  .nrh-main-line {
    text-align: center;
  }

  .nrh-main,
  .nrh-ghost {
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 768px) {
  .hero-v2 {
    padding: 24px 0 36px;
  }

  .hero-v2__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-v2__title {
    font-size: clamp(30px, 8.6vw, 38px);
  }

  .hero-v2__subtitle {
    font-size: 15px;
  }

  .hero-v2__bullets {
    gap: 8px;
  }

  .hero-v2__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-v2__price-amount {
    font-size: 2rem;
  }

  .hero-v2__ctaButtons {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .hero-v2__ctaButtons .btn {
    width: 100%;
  }

  .hero-v2__visual {
    order: 2;
  }

  .promo-card {
    padding: 10px;
  }

  .hero-made-in-bar {
    margin-top: 18px;
    font-size: 14px;
  }

  .domainbar {
    padding: 12px;
  }

  .domainbar__tlds {
    gap: 6px;
  }

  .payments-trust__card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .payments-trust__right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 14px;
  }

  .payments-trust__logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .logo-badge {
    min-height: 44px;
    padding: 6px 6px;
    border-radius: 12px;
  }

  .payments-trust__logos img {
    height: 23px;
    margin: 0 auto;
  }

  .logo-badge--upi img {
    height: 27px;
  }

  .logo-badge--phonepe img {
    height: 24px;
  }

  .logo-badge--visa img {
    height: 24px;
  }

  .logo-badge--mastercard img {
    height: 25px;
  }

  .logo-badge--rupay img {
    height: 24px;
  }

  .logo-badge--amex img {
    height: 25px;
    max-width: 122px;
  }

  .logo-badge--paypal img {
    height: 24px;
  }

  .logo-badge--gpay img {
    height: 27px;
  }

  .logo-badge--razorpay img {
    height: 23px;
  }

  .logo-badge--bhim img {
    height: 22px;
  }

  .product-collage__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-collage .tile {
    padding: 18px;
  }

  .tile__art,
  .tile__miniart {
    opacity: 0.8;
  }

  .product-proof__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-proof__frame {
    padding: 10px;
  }

  .product-proof__slider {
    width: 100%;
  }

  .pricing-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .accordion {
    padding: 14px;
  }

  .accordion-toggle {
    min-height: 48px;
    font-size: 1rem;
  }

  .card-grid.card-grid--stories {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .card-grid.card-grid--stories>.card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .cta-card__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-card__actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .hero-grid,
  .hero-v2__grid,
  .feature-split,
  .payments-trust__card,
  .product-collage__grid,
  .pricing-grid,
  .pricing-preview-grid,
  .kb-grid,
  .blog-grid,
  .card-grid,
  .benefit-grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
  }

  .tile--accent {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .footer-badges-center {
    flex-direction: column;
    gap: 12px;
  }

  .footer-badges-center .badge-divider {
    width: 40px;
    height: 1px;
  }
}

/* Shared-hosting comparison cards */
.compare-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.compare-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 20px;
}

.compare-card h3 {
  margin: 0;
}

.compare-card--featured {
  border-color: rgba(31, 100, 212, 0.4);
  box-shadow: 0 18px 45px rgba(31, 100, 212, 0.14);
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.compare-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 0.92rem;
}

.compare-list li strong {
  color: #0f172a;
}

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

@media (max-width: 700px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

/* Consistent hover behavior for interactive elements across the site */
.card,
.blog-card,
.kb-card,
.benefit-card,
.product-card,
.plan-card,
.compare-card,
.media-card,
.hero-card,
.email-visual-card,
.payments-trust__card,
.stat-card,
.tile,
.app-tile,
.support-block,
.status-card,
.promo-card,
.btn,
.button,
.pricing-toggle button,
.slider-arrow,
.logo-badge,
.chip,
.trust-pill,
.footer-grid a,
.footer-col a,
.nav-list > li > a,
.nav-list > li > .nav-dropdown > summary,
.nav-link,
.dropdown a,
.mobile-nav__item,
.mobile-nav__accordion a,
.tld-pill {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {

  .card:hover,
  .blog-card:hover,
  .kb-card:hover,
  .benefit-card:hover,
  .product-card:hover,
  .plan-card:hover,
  .compare-card:hover,
  .media-card:hover,
  .hero-card:hover,
  .email-visual-card:hover,
  .payments-trust__card:hover,
  .stat-card:hover,
  .tile:hover,
  .app-tile:hover,
  .support-block:hover,
  .status-card:hover,
  .promo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 100, 212, 0.24);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  }

  .btn:hover,
  .button:hover,
  .pricing-toggle button:hover,
  .slider-arrow:hover,
  .logo-badge:hover,
  .chip:hover,
  .trust-pill:hover,
  .tld-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  }

  .footer-grid a:hover,
  .footer-col a:hover,
  .nav-list > li > a:hover,
  .nav-list > li > .nav-dropdown > summary:hover,
  .nav-link:hover,
  .dropdown a:hover,
  .mobile-nav__item:hover,
  .mobile-nav__accordion a:hover {
    transform: translateX(2px);
  }
}

/* Footer social links */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: nowrap;
}

.footer-social__link {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: #e2e8f0;
  background: rgba(14, 28, 62, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease;
}

.footer-social__icon {
  position: static;
  width: 22px;
  height: 22px;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0.95;
  filter: grayscale(1) saturate(0) brightness(2.3) contrast(0.9);
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.footer-social__link:hover {
  transform: translateY(-1px);
  border-color: rgba(96, 165, 250, 0.72);
  background: rgba(37, 99, 235, 0.22);
}

.footer-social__link:hover .footer-social__icon,
.footer-social__link:focus-visible .footer-social__icon {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}

.footer-social__link:focus-visible {
  outline: 2px solid rgba(147, 197, 253, 0.85);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .footer-social {
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .footer-social__link {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .footer-social__icon {
    width: 18px;
    height: 18px;
  }

  .trustpilot-section {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .trustpilot-card {
    min-height: auto;
    padding: 18px 16px;
    border-radius: 14px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trustpilot-card__content h2 {
    font-size: 1.12rem;
  }

  .trustpilot-card__widget {
    width: 100%;
    padding: 12px;
  }

  .trustpilot-card__link {
    width: 100%;
    justify-content: center;
  }
}

/* Pricing trust cards + yearly badge contrast */
.pricing-toggle button .save-badge {
  border: 1px solid transparent;
}

.pricing-toggle button.is-active .save-badge {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
}

.trustpilot-section {
  padding-top: 20px;
  padding-bottom: 44px;
  border-top: 0;
}

.trustpilot-section__container {
  max-width: 1040px;
}

.trustpilot-card {
  width: 100%;
  min-height: 0;
  padding: 24px 26px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 24px;
}

.trustpilot-card__content {
  display: grid;
  gap: 8px;
}

.trustpilot-card__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1d4ed8;
}

.trustpilot-card__content h2 {
  margin: 0;
  font-size: clamp(1.22rem, 2.1vw, 1.6rem);
  line-height: 1.24;
}

.trustpilot-card__content p {
  margin: 0;
  color: #475569;
  max-width: 60ch;
}

.trustpilot-points {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.trustpilot-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-weight: 600;
  font-size: 0.9rem;
}

.trustpilot-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

.trustpilot-card__widget {
  width: 100%;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.trustpilot-card .trustpilot-widget {
  width: 100%;
}

.trustpilot-card .trustpilot-widget iframe {
  min-height: 52px !important;
}

.trustpilot-card__link {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.story-section {
  padding-top: 68px;
  padding-bottom: 22px;
}

.card-grid.card-grid--stories {
  gap: 20px;
}

.card-grid.card-grid--stories>.card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  padding: 22px;
}

.story-rating {
  margin: 0 0 8px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: #f59e0b;
}

.story-quote {
  margin: 0 0 10px;
  color: #1e293b;
  font-size: 1.08rem;
  line-height: 1.45;
}

.story-meta {
  margin-bottom: 10px;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-trust-inline {
  gap: 12px;
}

.pricing-trust-inline span {
  position: relative;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
}

.pricing-trust-inline span:first-child {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.24);
  color: #1d4ed8;
  padding-right: 30px;
}

.pricing-trust-inline span:first-child::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: trustPing 1.8s ease-out infinite;
}

.pricing-trust-inline span:nth-child(2) {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.22);
  color: #0369a1;
}

.pricing-trust-inline span:nth-child(3) {
  background: rgba(250, 204, 21, 0.16);
  border-color: rgba(202, 138, 4, 0.28);
  color: #854d0e;
}

@keyframes trustPing {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@media (max-width: 720px) {
  .pricing-trust-inline {
    gap: 8px;
  }

  .pricing-trust-inline span {
    font-size: 12px;
    border-radius: 10px;
    padding: 8px 11px;
  }
}

/* 403 page */
.error-403-page {
  min-height: 100vh;
  background: #f4f7ff;
  color: #0f172a;
}

.error-403-wrap {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 48px;
}

.error-403-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  text-decoration: none;
  color: inherit;
}

.error-403-brand img {
  height: 30px;
  width: auto;
}

.error-403 {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 20px;
  padding: 42px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.error-403__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 36px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  font-weight: 700;
  margin-bottom: 14px;
}

.error-403 h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5.6vw, 48px);
  line-height: 1.1;
}

.error-403 p {
  margin: 0;
  max-width: 62ch;
  color: #475569;
  font-size: 17px;
  line-height: 1.65;
}

.error-403__actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .error-403-wrap {
    padding: 22px 0 32px;
  }

  .error-403-brand {
    margin-bottom: 24px;
  }

  .error-403 {
    padding: 26px 18px;
    border-radius: 16px;
  }

  .error-403 p {
    font-size: 15px;
  }

  .error-403__actions {
    margin-top: 22px;
  }

  .error-403__actions .button {
    width: 100%;
  }
}

/* Section upgrades: Early customer stories + Verified reviews */
.story-section .stories-head {
  display: grid;
  gap: 8px;
}

.story-section .stories-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1d4ed8;
  border-bottom: 1px solid rgba(29, 78, 216, 0.25);
}

.story-section .stories-link:hover {
  border-bottom-color: rgba(29, 78, 216, 0.52);
}

.story-section .stories-link:focus-visible {
  outline: 2px solid rgba(29, 78, 216, 0.36);
  outline-offset: 3px;
  border-radius: 8px;
}

.story-section .card-grid.card-grid--stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.story-section .stories-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.story-section .stories-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.5), rgba(37, 99, 235, 0));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.story-section .stories-card:hover,
.story-section .stories-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.13);
  outline: none;
}

.story-section .stories-card:hover::before,
.story-section .stories-card:focus-visible::before {
  opacity: 1;
}

.story-section .story-rating {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: normal;
}

.story-section .stories-stars,
.trustpilot-section .reviews-stars {
  display: inline-flex;
  gap: 3px;
  color: #f59e0b;
}

.story-section .stories-star,
.trustpilot-section .reviews-star {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.story-section .story-rating-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #334155;
}

.story-section .story-quote {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 600;
}

.story-section .story-meta {
  margin: 0 0 10px;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
}

.story-section .stories-tag {
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.09);
  font-weight: 700;
}

.story-section .stories-proof {
  margin: 11px 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #64748b;
}

.story-section .story-person {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.story-section .story-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
}

.story-section .story-person .story-meta {
  margin: 0 0 4px;
}

.story-section .story-person .stories-tag {
  display: inline-flex;
}

.support-strip {
  padding-top: 24px;
  padding-bottom: 0;
  background: #f1f5f9;
}

.home-page .support-strip {
  background: #ffffff !important;
  border-top: 0 !important;
}

.home-page main > section.section.support-strip {
  background: #ffffff !important;
}

.support-strip__inner {
  background: linear-gradient(90deg, #1d4ed8 0%, #1e40af 100%);
  color: #ffffff;
  padding: clamp(22px, 3.3vw, 42px) clamp(18px, 4vw, 58px);
  display: grid;
  grid-template-columns: minmax(240px, 1.05fr) repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.support-strip__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.95rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.support-strip__item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
}

.support-strip__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.support-strip__icon svg {
  width: 34px;
  height: 34px;
}

.support-strip__text {
  display: grid;
  gap: 4px;
}

.support-strip__text strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
  font-weight: 800;
}

.support-strip__text span {
  font-size: clamp(0.98rem, 1.6vw, 1.16rem);
  color: rgba(255, 255, 255, 0.92);
}

.trustpilot-section {
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
}

.trustpilot-section .trustpilot-section__container {
  max-width: 1080px;
}

.trustpilot-section .trustpilot-card.reviews-grid {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.trustpilot-section .reviews-copy {
  gap: 10px;
}

.trustpilot-section .reviews-panel {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(59, 130, 246, 0.16) 0%, rgba(59, 130, 246, 0) 46%),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trustpilot-section .reviews-panel:hover,
.trustpilot-section .reviews-panel:focus-visible,
.trustpilot-section .reviews-panel:focus-within {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 16px 34px rgba(15, 23, 42, 0.12);
  outline: none;
}

.trustpilot-section .reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 10px;
  margin: 0 0 14px;
}

.trustpilot-section .reviews-score,
.trustpilot-section .reviews-count {
  margin: 0;
}

.trustpilot-section .reviews-score {
  font-family: "Syne", sans-serif;
  font-size: 1.54rem;
  font-weight: 700;
  color: #0f172a;
}

.trustpilot-section .reviews-count {
  grid-column: 1 / -1;
  color: #64748b;
  font-size: 0.82rem;
}

.trustpilot-section .reviews-actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.trustpilot-section .reviews-actions .trustpilot-card__link {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
}

.trustpilot-section .reviews-button-outline {
  background: rgba(255, 255, 255, 0.88);
}

.trustpilot-section .reviews-note {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 0.8rem;
}

.trustpilot-section .reviews-snippets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  width: 100%;
}

.trustpilot-section .reviews-snippets li {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  background: rgba(241, 245, 249, 0.72);
  padding: 8px 10px;
  font-size: 0.82rem;
  color: #334155;
}

.trustpilot-section .reviews-panel a:focus-visible {
  outline: 2px solid rgba(29, 78, 216, 0.34);
  outline-offset: 3px;
}

.home-faq {
  background: #f6f8ff;
}

.home-faq__container {
  max-width: 1280px;
}

.home-faq__title {
  margin: 0;
  text-align: center;
  font-size: clamp(2.05rem, 4.2vw, 5rem);
  line-height: 1.05;
  font-family: "Syne", "Inter", system-ui, sans-serif;
  color: #0f172a;
}

.home-faq__list {
  margin-top: clamp(22px, 4vw, 52px);
  border-top: 1px solid rgba(15, 23, 42, 0.16);
}

.home-faq__item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.16);
}

.home-faq__item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: clamp(22px, 3.2vw, 34px) 44px clamp(20px, 3vw, 30px) 12px;
  font-size: clamp(1.5rem, 2.25vw, 2.05rem);
  line-height: 1.2;
  font-weight: 500;
  color: #64748b;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  color: #64748b;
}

.home-faq__item[open] summary {
  color: #334155;
}

.home-faq__item[open] summary::after {
  content: "−";
}

.home-faq__answer {
  padding: 0 12px clamp(24px, 3vw, 34px);
  max-width: 1120px;
  color: #1f2937;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.6;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.34s ease, opacity 0.24s ease, transform 0.24s ease;
}

.home-faq__answer p {
  margin: 0 0 12px;
}

.home-faq__answer a {
  color: #1d4ed8;
  font-weight: 700;
}

.home-faq__actions {
  margin-top: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .home-faq__answer {
    transition: none !important;
  }
}

@media (max-width: 760px) {
  .home-faq__item summary {
    padding: 18px 36px 16px 4px;
    font-size: 1.2rem;
  }

  .home-faq__answer {
    padding: 0 4px 18px;
  }
}

.home-mc-cta {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: 0 !important;
  background:
    linear-gradient(180deg, #090214 0 23%, #3b1781 23% 94%, #1a0b2a 94% 100%) !important;
}

.home-mc-cta .container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.home-mc-cta__panel {
  position: relative;
  overflow: visible;
  border-radius: 0;
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: 14px;
  padding: clamp(12px, 1.8vw, 24px) clamp(18px, 3vw, 48px);
  border: 0;
  background:
    radial-gradient(58% 100% at 20% 45%, rgba(157, 78, 221, 0.3) 0%, rgba(157, 78, 221, 0) 70%),
    radial-gradient(40% 80% at 72% 55%, rgba(109, 40, 217, 0.28) 0%, rgba(109, 40, 217, 0) 72%),
    linear-gradient(90deg, rgba(76, 29, 149, 0.92), rgba(67, 23, 140, 0.92)),
    linear-gradient(120deg, #1b0b32, #2b0f51);
}

.home-mc-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 5, 23, 0.7) 0%, rgba(36, 14, 74, 0.5) 56%, rgba(24, 8, 46, 0.36) 100%),
    url("/assets/img/bg/hosting-bg.png") center/cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.home-mc-cta__content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding-left: clamp(10px, 2.5vw, 28px);
}

.home-mc-cta__content h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.1vw, 2.8rem);
  line-height: 1.1;
  color: #ffffff;
  font-weight: 700;
}

.home-mc-cta__content p {
  margin: 8px 0 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.94rem, 1.2vw, 1.03rem);
}

.home-mc-cta__button {
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  padding: 11px 22px;
  min-width: 0;
  justify-content: center;
  background: linear-gradient(135deg, #7a1fff, #d946ef);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(168, 85, 247, 0.36);
}

.home-mc-cta__button:hover,
.home-mc-cta__button:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #6d16ea, #c026d3);
}

.home-mc-cta__media {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-mc-cta__media img {
  width: min(100%, 620px);
  height: auto;
  transform: translate(8%, -24%);
  filter: drop-shadow(0 20px 40px rgba(2, 8, 23, 0.44));
}

@media (max-width: 920px) {
  .home-mc-cta {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .home-mc-cta__panel {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
    padding: 16px 16px 12px;
  }

  .home-mc-cta__content {
    padding-left: 0;
  }

  .home-mc-cta__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .home-mc-cta__button {
    margin-top: 10px;
    min-width: 0;
    width: min(100%, 280px);
  }

  .home-mc-cta__media {
    margin-top: 12px;
  }

  .home-mc-cta__media img {
    width: min(94%, 520px);
    transform: translateY(-8%);
  }

  .support-strip__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .support-strip__item {
    grid-template-columns: 46px 1fr;
  }

  .support-strip__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .support-strip__icon svg {
    width: 26px;
    height: 26px;
  }

  .trustpilot-section .trustpilot-card.reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .story-section .card-grid.card-grid--stories {
    grid-template-columns: 1fr !important;
    overflow: visible;
    scroll-snap-type: none;
  }

  .story-section .card-grid.card-grid--stories>.stories-card {
    flex: 1 1 auto;
    scroll-snap-align: none;
  }

  .trustpilot-section .reviews-actions {
    grid-template-columns: 1fr;
  }
}

/* Homepage verified reviews block (scoped) */
.tp-section {
  background: #ffffff;
  padding-top: 24px;
  padding-bottom: 68px;
}

.tp-container {
  max-width: 1080px;
}

.tp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: center;
}

.tp-copy {
  display: grid;
  gap: 12px;
}

.tp-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1d4ed8;
}

.tp-copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.35vw, 2rem);
  line-height: 1.18;
  color: #0f172a;
}

.tp-copy p {
  margin: 0;
  color: #475569;
  max-width: 62ch;
}

.tp-points {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.tp-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-weight: 600;
}

.tp-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

.tp-backdrop {
  position: relative;
  border-radius: 22px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.tp-card {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tp-card:hover,
.tp-card:focus-visible,
.tp-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(29, 78, 216, 0.28);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
  outline: none;
}

.tp-rating {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 10px;
  margin: 0 0 16px;
}

.tp-score,
.tp-count {
  margin: 0;
}

.tp-score {
  font-family: "Syne", sans-serif;
  font-size: 1.62rem;
  line-height: 1;
  color: #0f172a;
}

.tp-stars {
  display: inline-flex;
  gap: 3px;
  color: #f59e0b;
}

.tp-star {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.tp-count {
  grid-column: 1 / -1;
  font-size: 0.84rem;
  color: #64748b;
}

.tp-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.tp-link {
  width: 100%;
  min-height: 42px;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
}

.tp-link-outline {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.32);
  color: #1d4ed8;
}

.tp-link-outline:hover,
.tp-link-outline:focus-visible {
  background: rgba(37, 99, 235, 0.08);
}

.tp-note {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 0.82rem;
}

.tp-snippets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.tp-snippets li {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #ffffff;
  padding: 9px 10px;
  color: #334155;
  font-size: 0.83rem;
}

@media (max-width: 920px) {
  .tp-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tp-section {
    padding-top: 20px;
    padding-bottom: 54px;
  }
}

@media (max-width: 640px) {
  .tp-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .tp-backdrop {
    border-radius: 20px;
    padding: 8px;
  }

  .tp-actions {
    grid-template-columns: 1fr;
  }
}

/* Homepage verified reviews (official Trustpilot Review Collector) */
.tp-verified {
  background: #ffffff;
  padding-top: 24px;
  padding-bottom: 68px;
}

.tp-verified__container {
  max-width: 1080px;
}

.tp-verified__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 14px;
}

.tp-verified__eyebrow {
  margin: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  color: #1d4ed8;
}

.tp-verified__title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
  color: #0f172a;
}

.tp-verified__subtitle {
  margin: 0 auto;
  max-width: 68ch;
  color: #475569;
}

.tp-verified__pills {
  margin-top: 2px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tp-verified__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.tp-verified__pill--green {
  color: #166534;
  background: #ecfdf3;
  border-color: #bbf7d0;
}

.tp-verified__pill--blue {
  color: #1e40af;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.tp-verified__pill--amber {
  color: #92400e;
  background: #fffbeb;
  border-color: #fde68a;
}

.tp-verified__pill--purple {
  color: #6b21a8;
  background: #faf5ff;
  border-color: #e9d5ff;
}

.tp-verified__widget-wrap {
  width: min(100%, 720px);
  margin: 4px auto 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(29, 78, 216, 0.14);
  background:
    radial-gradient(120% 180% at 50% 0%, rgba(59, 130, 246, 0.13), rgba(59, 130, 246, 0) 58%),
    #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.tp-verified__widget-wrap .trustpilot-widget {
  width: 100%;
}

.tp-verified__note {
  margin: 0;
  color: #64748b;
  font-size: 0.84rem;
}

@media (max-width: 768px) {
  .tp-verified {
    padding-top: 20px;
    padding-bottom: 56px;
  }

  .tp-verified__widget-wrap {
    padding: 14px;
    border-radius: 16px;
  }
}

/* About page refresh */
.about-page {
  --about-radius: 20px;
  --about-border: rgba(31, 100, 212, 0.13);
  --about-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
  --about-shadow-hover: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.about-page .section {
  position: relative;
}

.about-page .section+.section {
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.about-page a:focus-visible,
.about-page button:focus-visible {
  outline: 3px solid rgba(31, 100, 212, 0.33);
  outline-offset: 3px;
  border-radius: 12px;
}

.about-page .button {
  white-space: nowrap;
}

.about-hero {
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 108px);
  padding-bottom: clamp(62px, 7vw, 94px);
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(31, 100, 212, 0.15) 0%, rgba(31, 100, 212, 0) 45%),
    radial-gradient(95% 130% at 0% 0%, rgba(15, 163, 177, 0.12) 0%, rgba(15, 163, 177, 0) 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 248, 255, 0.92) 100%);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(26px, 4vw, 44px);
}

.about-hero__content h1 {
  max-width: 13.2ch;
}

.about-hero__content .lead {
  max-width: 56ch;
}

.about-product-row,
.about-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-product-row {
  margin-top: 18px;
}

.about-product-pill,
.about-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--about-border);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
  font-size: 0.84rem;
  font-weight: 600;
  color: #173862;
}

.about-hero__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-trust-row {
  margin-top: 16px;
}

.about-hero__visual {
  position: relative;
}

.about-dashboard-wrap {
  position: relative;
  padding: 8px 4px;
}

.about-dashboard {
  position: relative;
  z-index: 2;
  border: 1px solid var(--about-border);
  border-radius: 22px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(31, 100, 212, 0.14) 0%, rgba(31, 100, 212, 0) 42%),
    #ffffff;
  box-shadow: var(--about-shadow);
  padding: clamp(16px, 2.2vw, 24px);
}

.about-dashboard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.about-dashboard__head h2 {
  margin: 2px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.about-dashboard__kicker {
  margin: 0;
  color: #335b8b;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-dashboard__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 163, 177, 0.12);
  border: 1px solid rgba(15, 163, 177, 0.22);
  color: #0a7580;
  font-size: 0.72rem;
  font-weight: 700;
}

.about-dashboard__tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.38);
  animation: about-pulse 1.8s ease-in-out infinite;
}

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

.about-dash-stat {
  border: 1px solid rgba(31, 100, 212, 0.14);
  border-radius: 14px;
  background: #f7faff;
  padding: 12px;
}

.about-dash-stat span {
  display: block;
  margin-bottom: 5px;
  color: #58739a;
  font-size: 0.79rem;
}

.about-dash-stat strong {
  color: #0f2b4f;
  font-size: 0.92rem;
  line-height: 1.2;
}

.about-dashboard__chart {
  margin-top: 16px;
  border: 1px solid rgba(31, 100, 212, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(235, 244, 255, 0.86), rgba(255, 255, 255, 0.92));
  padding: 12px;
}

.about-dashboard__chart svg {
  width: 100%;
  height: auto;
}

.about-dashboard__chart path {
  stroke: rgba(31, 100, 212, 0.2);
  stroke-width: 1.4;
  fill: none;
}

.about-dashboard__chart polyline {
  fill: none;
  stroke: #1f64d4;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-dashboard__bars {
  margin-top: 11px;
  display: grid;
  gap: 8px;
}

.about-dashboard__bars span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(31, 100, 212, 0.11);
  overflow: hidden;
}

.about-dashboard__bars span::after {
  content: "";
  display: block;
  width: var(--bar-fill, 70%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #60a5fa, #1f64d4);
}

.about-float-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.24);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.11);
  color: #173862;
  font-weight: 700;
  font-size: 0.74rem;
}

.about-float-badge--a {
  top: -10px;
  right: 18px;
  animation: about-float 6s ease-in-out infinite;
}

.about-float-badge--b {
  left: -14px;
  top: 40%;
  animation: about-float 5.6s ease-in-out infinite 0.5s;
}

.about-float-badge--c {
  right: 14px;
  bottom: -12px;
  animation: about-float 5.8s ease-in-out infinite 0.8s;
}

.about-section-head {
  max-width: 64ch;
  margin-bottom: 22px;
}

.about-exists__grid,
.about-different__grid,
.about-reviews__grid,
.about-roadmap__grid {
  display: grid;
  gap: 16px;
}

.about-exists__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-panel,
.about-honesty-card,
.about-feature-card,
.infra-stat,
.about-quote-card,
.about-road-card {
  border: 1px solid rgba(31, 100, 212, 0.14);
  border-radius: var(--about-radius);
  background: #ffffff;
  box-shadow: var(--about-shadow);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.about-panel,
.about-feature-card,
.about-road-card,
.about-quote-card {
  padding: clamp(18px, 2.3vw, 24px);
}

.about-panel:hover,
.about-honesty-card:hover,
.about-feature-card:hover,
.infra-stat:hover,
.about-quote-card:hover,
.about-road-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 100, 212, 0.28);
  box-shadow: var(--about-shadow-hover);
}

.about-value-list,
.about-honesty-list,
.about-road-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.about-value-list li,
.about-honesty-list li,
.about-road-card li {
  position: relative;
  padding-left: 18px;
  color: #465b79;
}

.about-value-list li::before,
.about-road-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1f64d4;
}

.about-honesty-card {
  margin-top: 16px;
  padding: clamp(18px, 2.3vw, 24px);
  background: linear-gradient(180deg, rgba(252, 253, 255, 1), rgba(245, 248, 255, 1));
}

.about-honesty-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ef4444;
}

.about-different__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(31, 100, 212, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #1f64d4;
}

.about-feature-card__icon svg {
  width: 20px;
  height: 20px;
}

.about-proof-line {
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px dashed rgba(31, 100, 212, 0.2);
  color: #2f4f77;
  font-size: 0.87rem;
  font-weight: 600;
}

.about-infra {
  background:
    radial-gradient(150% 100% at 0% 0%, rgba(15, 163, 177, 0.09) 0%, rgba(15, 163, 177, 0) 52%),
    radial-gradient(110% 100% at 100% 0%, rgba(31, 100, 212, 0.11) 0%, rgba(31, 100, 212, 0) 48%),
    transparent;
}

.infra-panel {
  border: 1px solid rgba(31, 100, 212, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.1);
  padding: clamp(18px, 2.6vw, 28px);
}

.infra-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.infra-panel__head h2 {
  margin-bottom: 6px;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.infra-stat {
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.infra-stat__label {
  font-size: 0.82rem;
  color: #577097;
  margin: 0 0 6px;
}

.infra-stat__value {
  margin: 0;
  font-family: "Syne", "Inter", system-ui, sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: #0e2a4a;
}

.infra-stat__value--text {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.infra-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 999px;
  background: #22c55e;
  margin-right: 7px;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.42);
  animation: about-pulse 1.9s ease-in-out infinite;
}

.infra-stat__meter {
  margin-top: 11px;
  height: 7px;
  border-radius: 999px;
  background: rgba(31, 100, 212, 0.12);
  overflow: hidden;
}

.infra-stat__meter span {
  display: block;
  width: var(--meter-fill, 70%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #67a7ff, #1f64d4);
  transform-origin: left center;
  animation: infra-meter 1.05s ease both;
}

.infra-note {
  margin: 14px 0 0;
  color: #587097;
  font-size: 0.84rem;
}

.trust-security-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.trust-security-pill {
  padding: 10px 12px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: #173862;
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
}

.about-security-links {
  margin: 14px 0 0;
  color: #516b8e;
}

.about-security-links a {
  color: #1f64d4;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-reviews__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-quote-card {
  margin: 0;
}

.about-quote-card blockquote {
  margin: 0;
  color: #183555;
  font-size: 1rem;
}

.about-quote-card figcaption {
  margin-top: 10px;
  color: #5f7597;
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-review-panel {
  margin-top: 16px;
  border: 1px solid rgba(31, 100, 212, 0.18);
  border-radius: var(--about-radius);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(31, 100, 212, 0.14) 0%, rgba(31, 100, 212, 0) 45%),
    #ffffff;
  box-shadow: var(--about-shadow);
  padding: clamp(18px, 2.4vw, 24px);
}

.trust-review-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-review-panel__logo {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 100, 212, 0.1);
  color: #1f64d4;
}

.trust-review-panel__logo svg {
  width: 18px;
  height: 18px;
}

.trust-review-panel p {
  margin: 10px 0 14px;
  color: #516b8e;
}

.about-roadmap__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

.about-roadmap__grid::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 100, 212, 0.15), rgba(31, 100, 212, 0.45), rgba(31, 100, 212, 0.15));
  z-index: 0;
}

.about-road-card {
  position: relative;
  z-index: 1;
}

.about-road-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(31, 100, 212, 0.1);
  border: 1px solid rgba(31, 100, 212, 0.2);
  color: #1f64d4;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-road-card__tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1f64d4;
}

.about-final-cta {
  background:
    radial-gradient(90% 120% at 10% 100%, rgba(15, 163, 177, 0.11) 0%, rgba(15, 163, 177, 0) 54%),
    radial-gradient(80% 120% at 90% 0%, rgba(31, 100, 212, 0.12) 0%, rgba(31, 100, 212, 0) 56%),
    transparent;
}

.about-final-cta__card {
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(31, 100, 212, 0.17);
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.1);
  padding: clamp(24px, 3vw, 34px);
}

.about-final-cta__card h2 {
  margin-bottom: 8px;
}

.about-final-cta__card p {
  color: #526c8f;
}

.about-final-cta__actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes about-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes about-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.38);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@keyframes infra-meter {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@media (max-width: 1080px) {

  .about-hero__grid,
  .about-exists__grid {
    grid-template-columns: 1fr;
  }

  .about-different__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-reviews__grid {
    grid-template-columns: 1fr 1fr;
  }

  .infra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-roadmap__grid {
    grid-template-columns: 1fr;
  }

  .about-roadmap__grid::before {
    display: none;
  }

  .about-float-badge--b {
    left: 8px;
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding-top: 56px;
    padding-bottom: 52px;
  }

  .about-dashboard__stats {
    grid-template-columns: 1fr;
  }

  .about-different__grid,
  .about-reviews__grid,
  .infra-grid {
    grid-template-columns: 1fr;
  }

  .trust-security-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero__actions {
    width: 100%;
  }

  .about-hero__actions .button {
    flex: 1 1 auto;
  }

  .about-float-badge {
    position: static;
    margin-top: 8px;
  }

  .about-dashboard-wrap {
    display: grid;
  }

  .about-final-cta__actions {
    flex-direction: column;
  }
}

/* ABOUT V3 */
.about-v3 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(90% 120% at 8% 0%, rgba(31, 100, 212, 0.08), rgba(31, 100, 212, 0)),
    radial-gradient(85% 115% at 100% 20%, rgba(15, 163, 177, 0.08), rgba(15, 163, 177, 0)),
    var(--bg);
}

.about-v3 .section {
  position: relative;
  padding: var(--section-y-desktop) 0;
}

.about-v3 .section+.section {
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.about-v3 .container {
  position: relative;
  z-index: 2;
}

.about-v3 .section-head {
  max-width: 700px;
  margin-bottom: 28px;
}

.about-v3 .lead {
  color: var(--text);
}

.about-v3 .card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.about-v3 .card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 100, 212, 0.24);
}

.about-v3 .pill {
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.18);
  background: #eff5ff;
  color: #1a4ea8;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 12px;
}

.about-v3 .button {
  border-radius: 999px;
}

.about-v3__hero {
  padding-top: calc(var(--section-y-desktop) - 6px);
}

.about-v3__hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

.about-v3__hero-copy .lead {
  max-width: 60ch;
}

.about-v3__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-v3__chips--compact {
  margin-top: 14px;
}

.about-v3__glass-chip {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(31, 100, 212, 0.22);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.about-v3__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.about-v3__actions--center {
  justify-content: center;
}

.about-v3__scroll-hint {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4d678c;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: about-v3-float 2.7s ease-in-out infinite;
}

.about-v3__scroll-hint svg {
  width: 15px;
  height: 15px;
}

.about-v3__hero-visual {
  position: relative;
}

.about-v3__hero-halo {
  position: absolute;
  inset: -12% -10% 10% -10%;
  background:
    radial-gradient(circle at 20% 32%, rgba(31, 100, 212, 0.28) 0%, rgba(31, 100, 212, 0) 58%),
    radial-gradient(circle at 86% 18%, rgba(15, 163, 177, 0.24) 0%, rgba(15, 163, 177, 0) 62%),
    radial-gradient(circle at 48% 86%, rgba(31, 100, 212, 0.12) 0%, rgba(31, 100, 212, 0) 70%);
  filter: blur(4px);
  opacity: 0.96;
  animation: about-v3-halo 7.2s ease-in-out infinite;
  z-index: 0;
}

.about-v3__micro {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: linear-gradient(135deg, rgba(31, 100, 212, 0.24), rgba(15, 163, 177, 0.24));
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
  animation: about-v3-float 6s ease-in-out infinite;
}

.about-v3__micro--one {
  width: 16px;
  height: 16px;
  top: 8%;
  right: 8%;
}

.about-v3__micro--two {
  width: 10px;
  height: 10px;
  left: 6%;
  top: 50%;
  animation-delay: 0.8s;
}

.about-v3__micro--three {
  width: 13px;
  height: 13px;
  right: 14%;
  bottom: 10%;
  animation-delay: 1.1s;
}

.about-v3__image-shell {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  border: 1px solid rgba(31, 100, 212, 0.18);
  background:
    linear-gradient(180deg, #f9fcff, #edf4ff),
    linear-gradient(135deg, rgba(31, 100, 212, 0.14), rgba(15, 163, 177, 0.12));
  box-shadow: var(--shadow-md);
  padding: 12px;
  overflow: hidden;
}

.about-v3__image-shell img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(145deg, #edf3ff, #e3edff);
  object-fit: cover;
}

.about-v3__image-shell--ops img {
  aspect-ratio: 16 / 10;
}

.about-v3__image-shell.is-missing::after,
.about-v3__proof.is-missing .about-v3__proof-viewport::after {
  content: "Preview coming soon";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(31, 100, 212, 0.36);
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(230, 239, 255, 0.94), rgba(225, 246, 249, 0.9));
  color: #3c5d8f;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-v3__floating-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  color: #29517f;
  font-size: 0.76rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  animation: about-v3-float 5.8s ease-in-out infinite;
}

.about-v3__floating-chip--a {
  right: -10px;
  top: 8%;
}

.about-v3__floating-chip--b {
  left: -12px;
  bottom: 11%;
  animation-delay: 0.9s;
}

.about-v3__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3.5vw, 34px);
  align-items: center;
}

.about-v3__who-card p {
  max-width: 60ch;
}

.about-v3__exist::before,
.about-v3__trust::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image: radial-gradient(rgba(31, 100, 212, 0.24) 1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.about-v3__signal-line {
  height: 2px;
  margin: 4px 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      rgba(31, 100, 212, 0.02),
      rgba(31, 100, 212, 0.46),
      rgba(15, 163, 177, 0.56),
      rgba(31, 100, 212, 0.02));
  background-size: 220% 100%;
  animation: about-v3-signal 7s linear infinite;
}

.about-v3__grid {
  display: grid;
  gap: 16px;
}

.about-v3__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-v3__grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-v3__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(31, 100, 212, 0.14), rgba(15, 163, 177, 0.13));
}

.about-v3__icon svg {
  width: 20px;
  height: 20px;
}

.about-v3__problem-card p,
.about-v3__service-card p {
  color: #4d6588;
}

.about-v3__link {
  display: inline-flex;
  margin-top: 10px;
  color: #1b56b6;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.about-v3__link:hover {
  color: #15468f;
}

.about-v3__different {
  padding-top: calc(var(--section-y-desktop) - 10px);
}

.about-v3__different-band {
  background:
    radial-gradient(120% 120% at 8% 0%, rgba(31, 100, 212, 0.12), rgba(31, 100, 212, 0)),
    radial-gradient(110% 110% at 96% 5%, rgba(15, 163, 177, 0.12), rgba(15, 163, 177, 0)),
    #ffffff;
  border: 1px solid rgba(31, 100, 212, 0.15);
  box-shadow: var(--shadow-md);
  border-radius: 20px;
  padding: clamp(18px, 2.6vw, 30px);
}

.about-v3__principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.about-v3__principle-item {
  background: linear-gradient(145deg, #fafdff, #eff5ff);
  border-color: rgba(31, 100, 212, 0.15);
  padding: 14px 15px;
  font-weight: 600;
  color: #234c7b;
}

.about-v3__meter {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 120% at 100% 0%, rgba(31, 100, 212, 0.16), rgba(31, 100, 212, 0)),
    linear-gradient(150deg, #f8fbff, #eef4ff);
}

.about-v3__meter::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -36px;
  top: -44px;
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.18);
  opacity: 0.66;
}

.about-v3__meter-eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-v3__meter h3 {
  margin-bottom: 12px;
}

.about-v3__meter-rows {
  display: grid;
  gap: 12px;
}

.about-v3__meter-rows div {
  display: grid;
  gap: 7px;
}

.about-v3__meter-rows span {
  color: #3e5c85;
  font-size: 0.84rem;
  font-weight: 600;
}

.about-v3__meter-rows i {
  position: relative;
  display: block;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(31, 100, 212, 0.12);
}

.about-v3__meter-rows i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--meter, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(31, 100, 212, 0.94), rgba(15, 163, 177, 0.86));
  transform-origin: left center;
  animation: about-v3-meter-fill 1s ease both;
}

.about-v3__meter-rows div:nth-child(2) i::before {
  animation-delay: 0.08s;
}

.about-v3__meter-rows div:nth-child(3) i::before {
  animation-delay: 0.16s;
}

.about-v3__meter-rows div:nth-child(4) i::before {
  animation-delay: 0.24s;
}

.about-v3 .price-note {
  color: #5f7598;
}

.about-v3__india {
  padding-top: 34px;
  padding-bottom: 34px;
}

.about-v3__india-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  border-radius: 16px;
  border: 1px solid rgba(31, 100, 212, 0.18);
  padding: 16px 18px;
  background:
    radial-gradient(110% 150% at 0% 0%, rgba(31, 100, 212, 0.2), rgba(31, 100, 212, 0)),
    linear-gradient(145deg, #f8fbff, #eef4ff);
  box-shadow: var(--shadow-sm);
}

.about-v3__india-line {
  margin: 0;
  color: #16395f;
  font-family: "Syne", "Inter", system-ui, sans-serif;
  font-size: clamp(1.03rem, 1.9vw, 1.35rem);
  letter-spacing: -0.01em;
}

.about-v3__india-built {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
}

.about-v3__india-built svg {
  width: 15px;
  height: 15px;
  color: #ff667d;
}

.about-v3__trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-v3__trust-card {
  text-align: center;
  font-weight: 600;
  color: #264b76;
}

.about-v3__proof {
  margin-top: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.08);
}

.about-v3__proof-viewport {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  overflow: hidden;
  background: linear-gradient(145deg, #edf3ff, #e4efff);
  min-height: 240px;
}

.about-v3__proof img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.about-v3__cta {
  background:
    radial-gradient(80% 120% at 10% 100%, rgba(15, 163, 177, 0.14), rgba(15, 163, 177, 0)),
    radial-gradient(80% 120% at 90% 0%, rgba(31, 100, 212, 0.16), rgba(31, 100, 212, 0));
}

.about-v3__cta-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(100% 120% at 12% 10%, rgba(15, 163, 177, 0.22), rgba(15, 163, 177, 0)),
    linear-gradient(145deg, #10274b, #173b68);
  box-shadow: 0 18px 44px rgba(12, 27, 50, 0.24);
  text-align: center;
  padding: clamp(24px, 3vw, 36px);
}

.about-v3__cta-card h2 {
  margin-bottom: 8px;
  color: #f5f9ff;
}

.about-v3__cta-card .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
  color: #e9f2ff;
}

.about-v3__cta-card .button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.about-v3__cta-note {
  margin-top: 12px;
  color: rgba(231, 241, 255, 0.84);
  font-size: 0.88rem;
}

@keyframes about-v3-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes about-v3-halo {

  0%,
  100% {
    opacity: 0.9;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes about-v3-signal {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 220% 50%;
  }
}

@keyframes about-v3-meter-fill {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@media (max-width: 1080px) {

  .about-v3__hero-grid,
  .about-v3__split {
    grid-template-columns: 1fr;
  }

  .about-v3__hero-visual {
    max-width: 720px;
  }

  .about-v3__grid--3,
  .about-v3__grid--4,
  .about-v3__trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-v3__floating-chip--a {
    right: 8px;
    top: 8px;
  }

  .about-v3__floating-chip--b {
    left: 8px;
    bottom: 8px;
  }
}

@media (max-width: 760px) {
  .about-v3 .section {
    padding: var(--section-y-mobile) 0;
  }

  .about-v3__hero {
    padding-top: var(--section-y-mobile);
  }

  .about-v3__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .about-v3__actions .button {
    width: 100%;
  }

  .about-v3__grid--3,
  .about-v3__grid--4,
  .about-v3__trust-grid,
  .about-v3__principles {
    grid-template-columns: 1fr;
  }

  .about-v3__floating-chip {
    position: static;
    margin-top: 10px;
  }

  .about-v3__india-band {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-v3__scroll-hint,
  .about-v3__hero-halo,
  .about-v3__micro,
  .about-v3__floating-chip,
  .about-v3__signal-line,
  .about-v3__meter-rows i::before {
    animation: none !important;
  }

  .about-v3 .card,
  .about-v3 .button,
  .about-v3__link {
    transition: none !important;
  }
}

/* ABOUT HERO V4 */
.about-hero-v4 {
  position: relative;
  overflow: clip;
  padding-top: calc(var(--section-y-desktop) + 8px);
  padding-bottom: calc(var(--section-y-desktop) - 6px);
  background: var(--bg);
}

.about-hero-v4__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(65% 70% at 50% 12%, rgba(31, 100, 212, 0.14), rgba(31, 100, 212, 0)),
    radial-gradient(55% 62% at 90% 8%, rgba(15, 163, 177, 0.12), rgba(15, 163, 177, 0)),
    radial-gradient(50% 60% at 10% 6%, rgba(31, 100, 212, 0.08), rgba(31, 100, 212, 0));
}

.about-hero-v4__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: radial-gradient(rgba(31, 100, 212, 0.22) 1px, transparent 1.35px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.about-hero-v4__bg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 34%;
  width: min(860px, 90vw);
  height: 170px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
}

.about-hero-v4 .container {
  position: relative;
  z-index: 1;
}

.about-hero-v4__content {
  margin: 0 auto;
  text-align: center;
  max-width: 980px;
}

.about-hero-v4 .eyebrow {
  margin-bottom: 14px;
}

.about-hero-v4 h1 {
  margin: 0;
  font-family: "Syne", "Inter", system-ui, sans-serif;
  font-size: clamp(2.35rem, 6.4vw, 5rem);
  line-height: 1.01;
  letter-spacing: -0.03em;
}

.about-hero-v4__line {
  display: block;
}

.about-hero-v4__highlight {
  color: var(--primary);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .about-hero-v4__highlight {
    background: linear-gradient(95deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.about-hero-v4__subheadline {
  margin: 16px auto 0;
  max-width: 74ch;
  color: #1e3c66;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.45;
}

.about-hero-v4__body {
  margin: 14px auto 0;
  max-width: 70ch;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.about-hero-v4__chips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.about-hero-v4__chip {
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(6px);
}

.about-hero-v4__actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.about-hero-v4__microline {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.about-hero-v4__signal {
  margin: 22px auto 0;
  width: min(420px, 88vw);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      rgba(31, 100, 212, 0),
      rgba(31, 100, 212, 0.52),
      rgba(15, 163, 177, 0.58),
      rgba(31, 100, 212, 0));
  background-size: 220% 100%;
  animation: about-hero-v4-signal 7s linear infinite;
}

@media (hover: hover) and (pointer: fine) {
  .about-hero-v4__chip {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .about-hero-v4__chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.09);
  }
}

@keyframes about-hero-v4-signal {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 220% 50%;
  }
}

@media (max-width: 760px) {
  .about-hero-v4 {
    padding-top: var(--section-y-mobile);
    padding-bottom: var(--section-y-mobile);
  }

  .about-hero-v4__subheadline {
    max-width: 36ch;
  }

  .about-hero-v4__body {
    max-width: 36ch;
    font-size: 0.96rem;
  }

  .about-hero-v4__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero-v4__actions .button {
    width: 100%;
  }
}

/* Cart */
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  margin-left: 10px;
  border-radius: 999px;
  background: rgba(31, 100, 212, 0.14);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.site-header .nav-action-group .cart-link {
  position: relative;
  width: 44px;
  min-width: 44px;
  min-height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.12);
  background: #ffffff;
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.site-header .nav-action-group .cart-link__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.site-header .nav-action-group .cart-link__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header .nav-action-group .cart-link .cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  margin-left: 0;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border: 2px solid #ffffff;
  background: #4b80cf;
  color: #ffffff;
  font-size: 0.54rem;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.16);
}

.site-header .nav-action-group .client-link {
  width: 44px;
  min-width: 44px;
  min-height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.12);
  background: #ffffff;
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.site-header .nav-action-group .client-link__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.site-header .nav-action-group .client-link__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (hover: hover) and (pointer: fine) {
  .site-header .nav-action-group .cart-link:hover,
  .site-header .nav-action-group .client-link:hover {
    transform: scale(1.03);
    border-color: rgba(31, 100, 212, 0.2);
  }
}

@keyframes rgb-outline-flow {
  0% {
    background-position: 0 0, 0% 50%;
  }
  50% {
    background-position: 0 0, 100% 50%;
  }
  100% {
    background-position: 0 0, 0% 50%;
  }
}

.cart-page .site-header {
  position: sticky;
}

.cart-title {
  font-family: "Syne", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 4.8vw, 2.95rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0;
}

.cart-page .section + .section {
  border-top: 0;
}

.cart-hero.section {
  padding: 34px 0 22px;
  background: #f7f7f9;
}

.cart-page[data-cart-step="2"] .cart-hero.section {
  /* Step 2 should feel like a focused auth flow (avoid vertical scroll). */
  padding: 26px 0 10px;
}

.cart-page[data-cart-step="2"] .cart-title {
  display: none;
}

.cart-page[data-cart-step="2"] .cart-shell.section {
  padding: 10px 0 54px;
}

.cart-stepper {
  margin-top: 0;
  display: block;
}

.cart-stepper__breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.cart-stepper__crumb {
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(37, 99, 235, 0.58);
  white-space: nowrap;
}

.cart-stepper__crumb span {
  cursor: default;
}

.cart-stepper__crumb.is-active span {
  color: #2563eb;
  font-weight: 700;
}

.cart-stepper__crumb.is-done span {
  color: #1d4ed8;
  font-weight: 700;
}

.cart-stepper__crumb + .cart-stepper__crumb::before {
  content: "›";
  margin: 0 10px;
  font-size: 1.1rem;
  color: rgba(37, 99, 235, 0.42);
  font-weight: 500;
}

@media (max-width: 520px) {
  .cart-stepper__breadcrumb {
    padding: 10px 14px;
  }
  .cart-stepper__crumb {
    font-size: 0.82rem;
  }
  .cart-stepper__crumb + .cart-stepper__crumb::before {
    margin: 0 6px;
  }
}

.cart-shell.section {
  padding: 22px 0 72px;
}

.cart-emptyState {
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 32px;
  background: #f8f9fc;
  padding: clamp(24px, 3.4vw, 46px);
}

.cart-emptyState__title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  letter-spacing: -0.02em;
}

.cart-emptyState__divider {
  margin: 18px 0 20px;
}

.cart-emptyState__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #64748b;
  margin-bottom: 18px;
}

.cart-emptyState__actions {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.cart-emptyState__actions .button {
  border-radius: 999px;
  min-height: 54px;
  padding: 0 42px;
  font-size: 1.03rem;
  font-weight: 800;
}

.cart-emptyState__cta {
  min-width: 220px;
}

.cart-emptyState__redirectMsg {
  margin: 18px 0 0;
  color: #475569;
  font-size: clamp(1.08rem, 2.3vw, 1.28rem);
  font-weight: 700;
  line-height: 1.35;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  padding: 10px 14px;
}

.cart-emptyState__redirectMsg strong {
  color: #1d4ed8;
  font-weight: 900;
  font-size: 1.2em;
}

.cart-page.is-empty-cart .cart-hero .container {
  text-align: center;
}

.cart-page.is-empty-cart .cart-emptyState {
  text-align: center;
}

.cart-page.is-empty-cart .cart-emptyState__actions {
  justify-content: center;
}

.cart-page.is-empty-cart [data-cart-products] {
  display: flex;
  justify-content: center;
}

.cart-page.is-empty-cart .cart-emptyState {
  width: min(980px, 100%);
  margin-inline: auto;
}

.cart-page.is-empty-cart .cart-layout {
  grid-template-columns: 1fr;
  justify-items: center;
}

.cart-page.is-empty-cart .cart-left {
  width: min(100%, 1320px);
}

@media (max-width: 820px) {
  .cart-emptyState__actions {
    gap: 10px;
  }
  .cart-emptyState__actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Cart-only: keep generous desktop breathing room without over-stretching. */
.cart-simpleHeader,
.cart-page,
.cart-simpleFooter {
  --max-width: 1320px;
  --cart-gutter: clamp(32px, 5vw, 96px);
}

.cart-simpleHeader .container,
.cart-page .container,
.cart-simpleFooter .container {
  width: min(var(--max-width), calc(100% - var(--cart-gutter)));
}

.cart-shell.section .container.cart-layout {
  /* Keep shell aligned with the same cart gutter as header/footer. */
  width: min(var(--max-width), calc(100% - var(--cart-gutter)));
}

.cart-simpleHeader {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.cart-simpleHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.cart-simpleHeader__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.cart-simpleHeader__logo {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.cart-simpleHeader__text {
  font-family: "Syne", "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 0.95;
  color: #0b1324;
}

.cart-progressBar {
  background: linear-gradient(180deg, #eef4ff 0%, #e8f0ff 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.14);
}

.cart-simpleHeader__right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.cart-simpleHeader__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 8px 12px;
  background: #fff;
}

.cart-simpleHeader__phoneIcon {
  font-size: 1.25rem;
  line-height: 1;
}

.cart-simpleHeader__phoneMeta {
  display: grid;
  line-height: 1.15;
}

.cart-simpleHeader__phoneMeta strong {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.cart-simpleHeader__phoneMeta small {
  color: rgba(15, 23, 42, 0.6);
  font-size: 0.8rem;
}

.cart-simpleHeader__session {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 850;
}

.cart-simpleHeader__email {
  color: rgba(15, 23, 42, 0.82);
  font-weight: 900;
}

.cart-simpleHeader__logout {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: rgba(91, 59, 255, 0.95);
  font-weight: 950;
}

.cart-simpleHeader__logout:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .cart-simpleHeader__phoneMeta small {
    display: none;
  }
}

@media (max-width: 760px) {
  .cart-simpleHeader__inner {
    min-height: 74px;
  }
  .cart-simpleHeader__phone {
    padding: 6px 10px;
  }
  .cart-simpleHeader__phoneMeta strong {
    font-size: 0.92rem;
  }
}

@media (max-width: 620px) {
  .cart-simpleHeader__phone {
    display: none;
  }
}

.cart-topBack {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(15, 23, 42, 0.82);
  font-weight: 900;
  cursor: pointer;
}

.cart-topBack:hover {
  color: rgba(15, 23, 42, 1);
}

.cart-page[data-cart-step="3"] .cart-topBack {
  margin-bottom: 10px;
}

.cart-page[data-cart-step="3"] .cart-title {
  display: none;
}

.cart-page[data-cart-step="3"] .cart-stepper {
  display: block;
}

.cart-page[data-cart-step="3"] .cart-hero.section {
  padding: 26px 0 10px;
}

.cart-page[data-cart-step="3"] .cart-shell.section {
  padding: 10px 0 72px;
}

.cart-billingStack {
  display: grid;
  gap: 18px;
}

.cart-billingCard {
  padding: 22px 26px 24px;
}

.cart-stepHead {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}

.cart-stepHead__main {
  flex: 1;
  min-width: 0;
}

.cart-stepHead__right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.cart-stepEdit {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: rgba(91, 59, 255, 0.98);
  font-weight: 950;
}

.cart-stepEdit:hover {
  text-decoration: underline;
}

.cart-stepHead__badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(91, 59, 255, 0.25);
  background: rgba(91, 59, 255, 0.08);
  color: rgba(91, 59, 255, 0.95);
  display: grid;
  place-items: center;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.cart-stepHead__badge.is-complete {
  background: rgba(22, 163, 74, 0.10);
  border-color: rgba(22, 163, 74, 0.35);
  color: rgba(22, 163, 74, 0.95);
}

.cart-stepHead__title {
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.9);
}

.cart-stepHead--noBorder {
  border-bottom: 0;
  padding-bottom: 0;
}

.cart-stepSummary {
  padding-top: 14px;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 800;
  line-height: 1.5;
}

.cart-stepHead__hint {
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 750;
  font-size: 0.98rem;
}

.cart-billingCard .cart-checkoutForm {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.cart-billingActions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.cart-billingContinue {
  min-width: 220px;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 1000;
}

.cart-paymentCard {
  padding: 18px 22px;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-paymentCard--expanded {
  display: block;
  padding: 22px 26px 24px;
  color: rgba(15, 23, 42, 0.88);
}

.cart-paymentCard__badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.75);
  display: grid;
  place-items: center;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.45);
}

.cart-paymentCard__text {
  font-size: 1.08rem;
}

.cart-payments {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.cart-payOption {
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.cart-payOption__head {
  width: 100%;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  color: rgba(15, 23, 42, 0.88);
  font-weight: 950;
}

.cart-payOption__name {
  font-size: 1rem;
}

.cart-payOption__logos {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-payOption__logos img {
  height: 22px;
  width: auto;
  display: block;
}

.cart-payOption__chev {
  color: rgba(15, 23, 42, 0.55);
  font-weight: 900;
  transform: rotate(0deg);
  transition: transform 160ms ease;
}

.cart-payOption.is-open .cart-payOption__chev {
  transform: rotate(180deg);
}

.cart-payOption__panel {
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.cart-paySubmit {
  width: 260px;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 1000;
}

.cart-payMeta {
  margin-top: 14px;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 750;
}

.cart-payMeta__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cart-payMeta__terms a {
  color: rgba(91, 59, 255, 0.98);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-payMeta__terms a:hover {
  text-decoration-thickness: 2px;
}

@media (max-width: 860px) {
  .cart-paySubmit {
    width: 100%;
  }
}

.cart-page[data-cart-step="3"] .cart-summary .cart-wizardActions {
  display: none;
}

@media (max-width: 860px) {
  .cart-page[data-cart-step="3"] .cart-topBack {
    margin-bottom: 14px;
  }
  .cart-billingContinue {
    width: 100%;
    min-width: 0;
  }
}

.cart-simpleFooter {
  background: #f4f6ff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 26px 0;
}

.cart-simpleFooter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cart-simpleFooter__copy {
  color: rgba(15, 23, 42, 0.52);
  font-weight: 750;
  letter-spacing: -0.01em;
}

.cart-simpleFooter__links {
  display: inline-flex;
  gap: 44px;
}

.cart-simpleFooter__links a {
  color: rgba(15, 23, 42, 0.88);
  font-weight: 800;
  text-decoration: none;
}

.cart-simpleFooter__links a:hover {
  text-decoration: underline;
}

/* Domains page India promo banner (reused on cart during .in searches) */
.india-flag-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 120;
}

.india-discount-banner {
  --india-banner-top: 10px;
  position: fixed;
  left: 50%;
  top: var(--india-banner-top);
  transform: translate(-50%, -130%);
  width: min(940px, calc(100% - 24px));
  border-radius: 12px;
  border: 1px solid rgba(8, 43, 97, 0.2);
  background:
    linear-gradient(
      90deg,
      rgba(255, 153, 51, 0.95) 0%,
      rgba(255, 235, 214, 0.96) 24%,
      rgba(255, 255, 255, 0.98) 50%,
      rgba(233, 249, 233, 0.96) 76%,
      rgba(19, 136, 8, 0.95) 100%
    );
  box-shadow: 0 16px 34px rgba(11, 40, 86, 0.22);
  color: #082d66;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 12px 14px;
  z-index: 130;
  opacity: 0;
  pointer-events: none;
}

.india-discount-banner.is-visible {
  animation: india-banner-drop 440ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.india-discount-banner__code {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  border: 1px solid rgba(8, 43, 97, 0.24);
  padding: 3px 10px;
  margin-left: 6px;
  font-size: 0.92em;
}

@keyframes india-banner-drop {
  0% {
    opacity: 0;
    transform: translate(-50%, -130%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.india-flag-drop {
  position: absolute;
  top: -34px;
  left: var(--x, 50%);
  width: 18px;
  height: 12px;
  border-radius: 3px;
  opacity: 0.92;
  background:
    linear-gradient(
      180deg,
      #ff9933 0%,
      #ff9933 33.33%,
      #ffffff 33.33%,
      #ffffff 66.66%,
      #138808 66.66%,
      #138808 100%
    );
  box-shadow: 0 10px 22px rgba(8, 30, 62, 0.18);
  transform: translate(calc(-50% + var(--drift, 0px)), -20px) rotate(var(--rot, 0deg))
    scale(var(--scale, 1));
  animation: india-flag-fall var(--dur, 2600ms) linear var(--delay, 0ms) forwards;
}

.india-flag-drop::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(8, 43, 97, 0.34);
  border-radius: 3px 0 0 3px;
}

@keyframes india-flag-fall {
  0% {
    opacity: 0;
    transform: translate(calc(-50% + var(--drift, 0px)), -20px) rotate(var(--rot, 0deg))
      scale(var(--scale, 1));
  }
  10% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--drift, 0px)), 108vh) rotate(calc(var(--rot, 0deg) + 160deg))
      scale(var(--scale, 1));
  }
}

.cart-layout {
  display: grid;
  gap: 18px;
  /* 70/30-ish: product review is primary, summary is supportive */
  grid-template-columns: 2.35fr 1fr;
  align-items: start;
}

.cart-page[data-cart-step="2"] .cart-layout {
  grid-template-columns: 1fr;
}

.cart-page[data-cart-step="2"] .cart-right {
  display: none;
}

.cart-page[data-cart-step="2"] .cart-step1Extras,
.cart-page[data-cart-step="3"] .cart-step1Extras {
  display: none;
}

.cart-secureDomain {
  padding: 26px 28px 28px;
}

.cart-secureDomain .domain-search-panel {
  /* Make the domain search feel like the /domains/ UI inside the cart card. */
  margin-top: 14px;
  box-shadow: 0 18px 46px rgba(16, 35, 71, 0.12);
}

.cart-domainSelected {
  margin-top: 14px;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 122, 92, 0.22);
  background: rgba(17, 122, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-domainSelected__label {
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(8, 92, 45, 0.78);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.cart-domainSelected__value {
  margin-top: 2px;
  font-size: 1.05rem;
  font-weight: 900;
  color: rgba(8, 92, 45, 0.98);
  overflow-wrap: anywhere;
}

.cart-domainSelected__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cart-domainSelected__price {
  font-weight: 900;
  color: rgba(8, 92, 45, 0.92);
  white-space: nowrap;
}

.cart-step1Extras {
  max-width: 100%;
}

/* Avoid the global focus glow being clipped into a long horizontal line on this card. */
.cart-secureDomain .cart-formInput:focus {
  box-shadow: none;
  border-color: rgba(91, 59, 255, 0.65);
}

.cart-secureDomain__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-secureDomain__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: rgba(91, 59, 255, 0.95);
  background: rgba(91, 59, 255, 0.10);
  border: 1px solid rgba(91, 59, 255, 0.22);
}

.cart-secureDomain__title {
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

.cart-secureDomain__sub {
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 700;
  font-size: 1rem;
}

.cart-secureDomain__form {
  margin-top: 22px;
}

.cart-secureDomain__label {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.78);
  font-size: 1.05rem;
}

.cart-secureDomain__inputWrap {
  position: relative;
  margin-top: 14px;
}

.cart-secureDomain__searchIcon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(15, 23, 42, 0.55);
  pointer-events: none;
}

.cart-secureDomain__input {
  border-radius: 16px;
  padding-left: 64px;
  min-height: 68px;
  font-size: 1.1rem;
  font-weight: 800;
}

.cart-secureDomain__input::placeholder {
  /* Ensure placeholder doesn't collide with the search icon */
  color: rgba(15, 23, 42, 0.42);
  font-weight: 750;
}

.cart-page[data-cart-step="2"] .cart-left {
  /* Single-column steps: use the full site container width for a wider card like the reference */
  max-width: var(--max-width);
  margin: 0 auto;
}

.cart-page[data-cart-step="2"] .cart-left {
  max-width: var(--max-width);
}

.cart-left,
.cart-right {
  display: grid;
  gap: 18px;
}

.cart-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.cart-summary.cart-card {
  /* Sidebar should feel lighter than the main product card */
  border-color: rgba(15, 23, 42, 0.11);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

.cart-card__head {
  padding: 22px 24px 0;
}

.cart-card__title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cart-card__subtitle {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.4;
}

.cart-products {
  padding: 22px 24px 24px;
}

.cart-product__header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cart-product__name {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cart-product__typeBadge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  background: #e0e7ff;
  color: #3730a3;
}

.cart-product__typeBadge--vps { background: #fef3c7; color: #92400e; }
.cart-product__typeBadge--dedicated { background: #fce7f3; color: #9d174d; }
.cart-product__typeBadge--email { background: #d1fae5; color: #065f46; }
.cart-product__typeBadge--wordpress { background: #ede9fe; color: #5b21b6; }
.cart-product__typeBadge--game { background: #fee2e2; color: #991b1b; }

.cart-product__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  color: #475569;
}

.cart-product__specs li {
  position: relative;
  padding-left: 14px;
}

.cart-product__specs li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* Config step styles */
.cart-config-section {
  margin-bottom: 1.5rem;
}

.cart-config-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink, #0f172a);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.cart-config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .cart-config-grid {
    grid-template-columns: 1fr;
  }
}

.cart-config-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cart-config-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink, #0f172a);
}

.cart-config-hint {
  font-size: 0.78rem;
  color: #6b7280;
}

.cart-config-select,
.cart-config-input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.9rem;
  background: #fff;
  color: var(--ink, #0f172a);
  transition: border-color 0.15s;
}

.cart-config-select:focus,
.cart-config-input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.cart-config-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-config-checkbox input {
  width: 18px;
  height: 18px;
}

.cart-config-setupFee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #92400e;
  font-weight: 500;
  margin-top: 0.5rem;
}

.cart-divider {
  margin: 16px 0;
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
}

.cart-product__row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
}

.cart-product__row.is-two {
  grid-template-columns: 1.1fr 0.9fr;
}

.cart-product__row.is-one {
  grid-template-columns: 1fr;
}

.cart-field__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.cart-select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 14px;
  background: #fff;
  padding: 14px 14px;
  font-weight: 700;
  color: var(--ink);
  outline: none;
}

.cart-product__price {
  display: grid;
  justify-items: end;
  gap: 6px;
  padding-top: 28px;
}

.cart-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ccff00;
  color: #14240f;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 0.95rem;
}

.cart-priceNow {
  font-size: 1.7rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.cart-priceWas {
  color: rgba(15, 23, 42, 0.45);
  font-weight: 800;
  text-decoration: line-through;
}

.cart-renew {
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.58);
  font-weight: 600;
}

.cart-dealbar {
  margin-top: 18px;
  border-radius: 16px;
  padding: 14px 16px;
  width: 100%;
  background: #d3ff00;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-dealbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-dealbar__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 1.2rem;
  color: #0f172a;
}

.cart-dealbar__text {
  line-height: 1.25;
}

.cart-dealbar__title {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.cart-dealbar__sub {
  color: rgba(15, 23, 42, 0.72);
  font-weight: 600;
  margin-top: 2px;
  font-size: 0.96rem;
}

.cart-timer {
  font-variant-numeric: tabular-nums;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: rgba(15, 23, 42, 0.1);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cart-goodnews {
  margin-top: 14px;
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(12, 183, 90, 0.08);
  border: 1px solid rgba(12, 183, 90, 0.18);
  color: rgba(15, 23, 42, 0.84);
  font-weight: 700;
}

.cart-domain {
  padding: 22px 24px 24px;
}

.cart-field__control {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
}

.cart-field__icon {
  opacity: 0.65;
}

.cart-input {
  width: 100%;
  border: 0;
  outline: none;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
}

.cart-summary {
  padding: 22px 24px 24px;
}

.cart-summary__title {
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.cart-summary__lines {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.cart-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: rgba(15, 23, 42, 0.85);
  font-weight: 700;
}

.cart-line small {
  color: rgba(15, 23, 42, 0.55);
  font-weight: 700;
}

.cart-line__muted {
  color: rgba(15, 23, 42, 0.55);
  font-weight: 700;
}

.cart-line__typeBadge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: #e0e7ff;
  color: #3730a3;
}

.cart-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.cart-total__label {
  font-size: 1.35rem;
  font-weight: 950;
}

.cart-total__value {
  font-size: 1.6rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.cart-coupon {
  margin-top: 14px;
  color: #5b3bff;
  font-weight: 900;
}

.cartCoupon {
  margin-top: 14px;
}

.cartCoupon__toggle {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  color: #5b3bff;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.cartCoupon__panel {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.cartCoupon__input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  padding: 0 14px;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.9);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.cartCoupon__input:focus {
  border-color: rgba(91, 59, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(91, 59, 255, 0.12);
}

.cartCoupon__applyBtn {
  height: 44px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 999px;
  font-weight: 950;
}

.cartCoupon__applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.cartCoupon__appliedText {
  color: rgba(15, 23, 42, 0.8);
  font-weight: 850;
}

.cartCoupon__message {
  margin-top: 10px;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 850;
}

.cartCoupon__message.is-success {
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: rgba(20, 83, 45, 0.95);
}

.cartCoupon__message.is-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: rgba(127, 29, 29, 0.92);
}

.cart-line--discount .cart-line__discountValue {
  color: rgba(15, 23, 42, 0.92);
  font-weight: 950;
}

.cart-checkoutError {
  margin-top: 12px;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: rgba(127, 29, 29, 0.92);
  font-weight: 850;
}

.cart-hero .cart-checkoutError {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cart-authError {
  margin: 10px 0 10px;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: rgba(127, 29, 29, 0.92);
  font-weight: 850;
}

.cart-checkoutForm {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.cart-checkoutForm__title {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.92);
}

.cart-auth {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cart-auth__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 0;
  color: rgba(53, 31, 160, 0.9);
  font-weight: 950;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.cart-authBackLink {
  width: 100%;
  max-width: 640px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  background: transparent;
  border: 0;
  padding: 0;
  color: rgba(53, 31, 160, 0.9);
  font-weight: 950;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.cart-authBackLink:hover {
  color: rgba(53, 31, 160, 1);
}

.cart-page[data-cart-step="2"] .cart-products.cart-card {
  /* Step 3: remove the "card inside a card" look */
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.cart-page[data-cart-step="2"] [data-cart-products].cart-card,
.cart-page[data-cart-step="2"] .cart-card.cart-product {
  /* Step 3: also flatten the outer wrapper used by the cart page layout */
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.cart-authCard {
  /* Fixed SaaS-style auth card width (inputs/buttons remain full-width). */
  max-width: 640px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 42px 48px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.cart-page[data-cart-step="2"] .cart-authCard {
  padding: 32px 42px;
}

.cart-authHeader {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cart-authHeader .cart-authCard__title {
  margin: 0;
  line-height: 1;
}

.cart-authBackIcon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.02);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  color: rgba(53, 31, 160, 0.7);
  font-weight: 950;
}

.cart-authBackIcon:hover {
  color: rgba(53, 31, 160, 0.95);
  border-color: rgba(15, 23, 42, 0.2);
  background: rgba(15, 23, 42, 0.03);
}

.cart-authCard__title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 1000;
  letter-spacing: -0.03em;
  color: rgba(32, 22, 96, 0.92);
  line-height: 1.08;
  margin-bottom: 18px;
}

.cart-page[data-cart-step="2"] .cart-authCard__title {
  font-size: 2.55rem;
  margin-bottom: 14px;
}

.cart-authGoogleWrap {
  width: 100%;
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
}

.cart-authGoogleMount {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center the Google button container (GIS has its own width constraints). */
.cart-authGoogleMount > div,
.cart-authGoogleMount iframe {
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.cart-authDivider {
  margin: 18px auto 14px;
  /* Keep divider lines visually short even if the card gets wider. */
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 850;
}

.cart-page[data-cart-step="2"] .cart-authDivider {
  margin: 12px auto 10px;
}

.cart-authDivider::before,
.cart-authDivider::after {
  content: "";
  height: 1px;
  /* ~22% each side feels "designed" vs default long lines */
  flex: 0 0 22%;
  background: rgba(15, 23, 42, 0.08);
}

.cart-authTerms {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 700;
  text-align: center;
}

.cart-page[data-cart-step="2"] .cart-authTerms {
  margin-top: 12px;
}

.cart-authTerms a {
  color: rgba(53, 31, 160, 0.9);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-authTerms a:hover {
  color: rgba(53, 31, 160, 1);
}

@media (max-width: 540px) {
  .cart-authCard {
    padding: 30px 22px;
    border-radius: 18px;
  }
  .cart-authBackLink {
    padding: 0 4px;
  }
}

.cart-authDivider span {
  padding: 0 6px;
}

.cart-authPrimary {
  margin-top: 10px;
  width: 100%;
  background: linear-gradient(180deg, #5b3bff, #4a2cff);
  color: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 36px rgba(91, 59, 255, 0.24);
  min-height: 52px;
  font-weight: 1000;
  letter-spacing: -0.01em;
  padding: 14px 18px;
}

.cart-page[data-cart-step="2"] .cart-authPrimary {
  margin-top: 8px;
  min-height: 48px;
  padding: 12px 18px;
}

.cart-authPrimary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(91, 59, 255, 0.28);
}

.cart-authSwitch {
  margin-top: 8px;
  text-align: center;
  font-weight: 650;
  font-size: 0.96rem;
  color: rgba(15, 23, 42, 0.5);
}

.cart-authLink {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #5b3bff;
  font-weight: 950;
}

.cart-accountSwitch {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cart-accountSwitch__opt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 850;
  color: rgba(15, 23, 42, 0.86);
}

.cart-accountSwitch__opt input {
  accent-color: #5b3bff;
}

.cart-loginBox {
  margin-top: 12px;
}

.cart-loginBox__row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cart-loginOk {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  font-weight: 800;
}

.cart-savedAddress {
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.cart-savedAddress__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-savedAddress__label {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.78);
  font-size: 0.9rem;
}

.cart-savedAddress__value {
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.74);
  font-weight: 750;
  line-height: 1.35;
}

.cart-savedAddress.is-empty .cart-savedAddress__value {
  color: rgba(127, 29, 29, 0.85);
}

.cart-addressToggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  color: rgba(15, 23, 42, 0.82);
}

.cart-addressToggle input {
  accent-color: #5b3bff;
}

.cart-checkoutForm__grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.cart-checkoutForm__grid--hostinger {
  margin-top: 18px;
  gap: 14px 18px;
}

.cart-required {
  color: rgba(15, 23, 42, 0.62);
  font-weight: 900;
}

.cart-phoneRow {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  align-items: center;
}

.cart-phonePrefix {
  text-align: left;
}

.cart-companyRow {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.78);
}

.cart-companyRow input {
  width: 18px;
  height: 18px;
  accent-color: #5b3bff;
}

.cart-formField {
  display: grid;
  gap: 8px;
}

.cart-formField--full {
  grid-column: 1 / -1;
}

.cart-formField__label,
.cart-checkoutForm__hint {
  font-weight: 850;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.78);
  font-size: 0.9rem;
}

.cart-checkoutForm__hint {
  margin-top: 2px;
  font-weight: 750;
}

.cart-formInput {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.22);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
  min-height: 52px;
  font-weight: 750;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.cart-formInput:hover {
  border-color: rgba(15, 23, 42, 0.32);
}

.cart-formInput:disabled {
  background: rgba(148, 163, 184, 0.14);
  color: rgba(15, 23, 42, 0.62);
}

.cart-formInput:focus {
  border-color: rgba(91, 59, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(91, 59, 255, 0.14);
}

/* Ensure the Secure Domain search input keeps enough left padding (the base .cart-formInput padding is declared later). */
.cart-secureDomain__input.cart-formInput {
  padding-left: 64px;
}

.cart-checkoutForm__note {
  margin-top: 12px;
  color: rgba(15, 23, 42, 0.58);
  font-weight: 700;
  font-size: 0.92rem;
}

.cart-continue {
  margin-top: 14px;
  width: 100%;
  background: #5b3bff;
  color: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 36px rgba(91, 59, 255, 0.24);
  font-weight: 950;
  letter-spacing: -0.01em;
  padding: 14px 18px;
}

.cart-continue--back {
  background: #fff;
  color: #5b3bff;
  border: 1.5px solid #5b3bff;
  box-shadow: none;
}

.cart-continue:hover {
  transform: translateY(-1px);
}

.cart-continue.is-loading {
  opacity: 0.78;
  cursor: progress;
  transform: none;
}

.cart-wizardActions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.cart-wizardActions .button {
  flex: 1;
  width: 100%;
}

.cart-inlineActions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.cart-inlineActions .button {
  flex: 1;
  width: 100%;
}

@media (max-width: 560px) {
  .cart-wizardActions {
    flex-direction: column;
  }
  .cart-inlineActions {
    flex-direction: column;
  }
}

.cart-trust {
  padding: 4px 6px;
  color: rgba(15, 23, 42, 0.68);
  display: grid;
  gap: 12px;
}

.cart-trust__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.cart-trust__badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #fff;
  font-weight: 700;
}

.cart-ns-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-ns-step__head {
  margin-bottom: 2px;
}

.cart-ns-step__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.cart-ns-step__desc {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.4;
}

.cart-ns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

.cart-ns-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-ns-field--full {
  grid-column: 1 / -1;
  max-width: calc(50% - 7px);
}

.cart-ns-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}

.cart-ns-opt {
  font-weight: 400;
  color: #94a3b8;
}

.cart-ns-field .cart-formInput {
  font-size: 0.84rem;
  padding: 8px 11px;
}

@media (max-width: 540px) {
  .cart-ns-grid {
    grid-template-columns: 1fr;
  }
  .cart-ns-field--full {
    max-width: 100%;
  }
}

.cart-domainInline {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  /* Wider domain entry block like the reference */
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cart-domainInline__row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.cart-domainCheckBtn {
  white-space: nowrap;
}

.cart-domainInline__input {
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  flex: 1;
}

.cart-domainInline__modes {
  display: grid;
  gap: 8px;
}

.cart-domainInline__mode {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 800;
}

.cart-page .domain-search-panel {
  width: 100%;
  margin-top: 12px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(20, 53, 109, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 56px rgba(16, 35, 71, 0.12);
  backdrop-filter: blur(4px);
}

.cart-page .domain-search-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cart-page .domain-search-row input {
  flex: 1;
  min-height: 54px;
  border-radius: 12px;
  border: 1px solid rgba(18, 50, 102, 0.2);
  padding: 0 14px;
  font-size: 1rem;
  color: rgba(16, 35, 71, 0.95);
  background: #fdfefe;
}

.cart-page .domain-search-row .domain-input-rgb {
  border: 2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(120deg, #ff3a6a, #ff9f1a, #ffe45e, #4ade80, #22d3ee, #7c3aed, #ff3a6a) border-box;
  background-size: 100% 100%, 280% 280%;
  animation: rgb-outline-flow 7s linear infinite;
}

.cart-page .domain-search-row input:focus {
  outline: 0;
  border-color: rgba(36, 95, 213, 0.5);
  box-shadow: 0 0 0 3px rgba(36, 95, 213, 0.16);
}

.cart-page .domain-search-row .domain-input-rgb:focus {
  box-shadow: 0 0 0 3px rgba(36, 95, 213, 0.2), 0 0 18px rgba(124, 58, 237, 0.22);
}

.cart-page #findDomainBtn.is-india-active {
  color: #0b2f6b;
  border: 1px solid rgba(12, 47, 105, 0.2);
  background: linear-gradient(
    90deg,
    rgba(255, 153, 51, 0.32) 0%,
    rgba(255, 153, 51, 0.18) 30%,
    rgba(255, 255, 255, 0.96) 50%,
    rgba(19, 136, 8, 0.18) 70%,
    rgba(19, 136, 8, 0.32) 100%
  );
  box-shadow: 0 12px 28px rgba(19, 136, 8, 0.16), 0 10px 24px rgba(255, 153, 51, 0.16);
}

.cart-page #findDomainBtn.is-india-active:hover {
  color: #082654;
  background: linear-gradient(
    90deg,
    rgba(255, 153, 51, 0.38) 0%,
    rgba(255, 153, 51, 0.24) 30%,
    rgba(255, 255, 255, 0.98) 50%,
    rgba(19, 136, 8, 0.24) 70%,
    rgba(19, 136, 8, 0.38) 100%
  );
  box-shadow: 0 14px 30px rgba(19, 136, 8, 0.2), 0 12px 26px rgba(255, 153, 51, 0.2);
}

.cart-page .tld-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.cart-page .tld-row[hidden] {
  display: none !important;
}

.cart-page .tld-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  border-radius: 12px;
  border: 1px solid rgba(24, 62, 124, 0.15);
  background: #fff;
  color: #0f2f61;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-page .tld-pill .price {
  font-size: 0.78rem;
  font-weight: 600;
  color: #597196;
  transition: transform 0.2s ease, color 0.2s ease;
}

.cart-page .tld-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 95, 213, 0.45);
  box-shadow: 0 10px 22px rgba(18, 58, 125, 0.12);
}

.cart-page .tld-pill:hover .price {
  color: #1b4fb4;
  transform: translateY(-1px) scale(1.04);
}

.cart-page .tld-pill[data-tld=".in"] {
  position: relative;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 12px 36px 12px 14px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
      90deg,
      #ff9933 0%,
      #ff9933 33.33%,
      #ffffff 33.33%,
      #ffffff 66.66%,
      #138808 66.66%,
      #138808 100%
    ) border-box;
  box-shadow: 0 10px 20px rgba(19, 136, 8, 0.08), 0 8px 18px rgba(255, 153, 51, 0.08);
}

.cart-page .tld-pill[data-tld=".in"] > span:first-child {
  color: #0a2f7a;
}

.cart-page .tld-pill[data-tld=".in"] .price {
  color: #395a86;
}

.cart-page .tld-pill[data-tld=".in"]:hover {
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(19, 136, 8, 0.14), 0 10px 22px rgba(255, 153, 51, 0.14);
}

.cart-page .tld-pill[data-tld=".in"]:hover .price {
  color: #0a2f7a;
}

.cart-page .tld-pill[data-tld=".in"] .tld-pill__gift {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(10, 47, 122, 0.18);
  background: #ffffff;
  color: #0a2f7a;
  pointer-events: none;
}

.cart-page .tld-pill[data-tld=".in"] .tld-pill__gift svg {
  width: 11px;
  height: 11px;
}

.cart-page .domain-search-feedback {
  margin-top: 16px;
  min-height: 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #3d5578;
}

.cart-page .domain-search-feedback.is-error {
  color: #b42318;
}

.cart-page .domain-search-feedback.is-success {
  color: #116850;
}

.cart-page .domain-search-feedback.is-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d538d;
}

.cart-page .domain-search-feedback.is-loading::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.24);
  border-top-color: #2563eb;
  animation: domain-spin 0.75s linear infinite;
}

.cart-page .domain-search-results {
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 47, 96, 0.14);
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  transform-origin: top;
}

.cart-page .domain-search-results[hidden] {
  display: none;
}

.cart-page .domain-search-results.is-loading {
  opacity: 0.72;
}

.cart-page .domain-search-results.is-expanded {
  animation: domain-results-reveal 0.34s ease both;
}

@media (max-width: 820px) {
  .cart-page .tld-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@keyframes domain-results-reveal {
  0% {
    opacity: 0;
    transform: translateY(-8px) scaleY(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes domain-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cart-page .domain-suggestions p,
.cart-page .domain-featured__label,
.cart-page .domain-options__label {
  margin: 0;
  color: #5a7090;
  font-size: 0.88rem;
  font-weight: 600;
}

.cart-page .domain-suggestion-chip {
  border: 1px solid rgba(33, 82, 177, 0.2);
  background: rgba(237, 245, 255, 0.9);
  color: #1d4ea8;
  border-radius: 12px;
  padding: 14px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
  transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.cart-page .domain-suggestion-chip:hover {
  border-color: rgba(33, 82, 177, 0.35);
  background: #eef4ff;
  box-shadow: 0 10px 22px rgba(17, 43, 86, 0.12);
  transform: translateY(-1px);
}

.cart-page .domain-suggestions__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.cart-page .domain-featured {
  margin-top: 22px;
}

.cart-page .domain-featured__label,
.cart-page .domain-options__label {
  font-size: 1rem;
  font-weight: 700;
  color: #4e6384;
}

.cart-page .domain-featured__label {
  text-align: center;
}

.cart-page .domain-featured__grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cart-page .domain-featured__card {
  border-radius: 18px;
  border: 1px solid rgba(22, 53, 103, 0.18);
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
  padding: 22px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease,
    background-color 0.2s ease;
}

.cart-page .domain-featured__card:hover {
  transform: translateY(-1px);
  border-color: rgba(52, 102, 206, 0.36);
  box-shadow: 0 12px 26px rgba(17, 43, 86, 0.12);
}

.cart-page .domain-featured__card.is-active {
  border-color: rgba(28, 80, 186, 0.44);
  background: linear-gradient(180deg, #f1f6ff 0%, #eaf2ff 100%);
}

.cart-page .domain-featured__card.is-india {
  position: relative;
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%) padding-box,
    linear-gradient(
      90deg,
      #ff9933 0%,
      #ff9933 33.33%,
      #ffffff 33.33%,
      #ffffff 66.66%,
      #138808 66.66%,
      #138808 100%
    ) border-box;
  box-shadow: 0 16px 34px rgba(19, 136, 8, 0.08), 0 14px 30px rgba(255, 153, 51, 0.08);
}

.cart-page .domain-featured__card.is-india::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(0, 56, 168, 0.18);
  box-shadow: 0 0 0 6px rgba(0, 56, 168, 0.04);
  pointer-events: none;
}

.cart-page .domain-featured__tag {
  display: inline-flex;
  align-items: center;
  border-radius: 9px;
  padding: 6px 11px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.cart-page .domain-featured__tag.is-exact {
  background: #0b9f67;
  color: #fff;
}

.cart-page .domain-featured__tag.is-bundle {
  background: #1f5ed0;
  color: #fff;
}

.cart-page .domain-featured__card.is-india .domain-featured__tag {
  background: linear-gradient(90deg, #ff9933 0%, #ffffff 50%, #138808 100%);
  color: #0a2f7a;
  border: 1px solid rgba(10, 47, 122, 0.18);
}

.cart-page .domain-featured__name {
  margin-top: 14px;
  font-size: clamp(1.58rem, 2.4vw, 2.1rem);
  line-height: 1.08;
  font-weight: 800;
  color: #1a2130;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cart-page .domain-featured__save {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e6f0ff;
  color: #1d4aa0;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 12px;
}

.cart-page .domain-featured__card.is-india .domain-featured__save {
  background: rgba(255, 153, 51, 0.12);
  color: #8a3a00;
}

.cart-page .domain-featured__hint {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #71798b;
}

.cart-page .domain-featured__price-line {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-page .domain-featured__price-main {
  font-size: 2.45rem;
  line-height: 1.02;
  color: #161d29;
  font-weight: 700;
}

.cart-page .domain-featured__price-old {
  font-size: 1rem;
  color: #828999;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.cart-page .domain-featured__cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  border-radius: 13px;
  padding: 12px 16px;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.cart-page .domain-featured__cta.is-solid {
  border: 1px solid transparent;
  background: linear-gradient(90deg, #2a66d8, #2155bb);
  color: #fff;
}

.cart-page .domain-featured__cta.is-outline {
  border: 2px solid #2c64cf;
  background: transparent;
  color: #2457be;
}

.cart-page .domain-featured__cta[aria-disabled="true"] {
  opacity: 0.52;
  cursor: not-allowed;
  pointer-events: none;
}

.cart-page .domain-featured__benefits {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 54, 108, 0.12);
  display: grid;
  gap: 10px;
}

.cart-page .domain-featured__benefit {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #243247;
  font-size: 0.98rem;
}

.cart-page .domain-featured__benefit::before {
  content: "✓";
  color: #0b8f61;
  font-weight: 800;
  line-height: 1;
}

.cart-page .domain-featured__status {
  margin-left: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(17, 122, 92, 0.26);
  padding: 4px 10px;
}

.cart-page .domain-featured__status.is-available {
  color: #0f6b53;
  background: rgba(17, 122, 92, 0.1);
}

.cart-page .domain-featured__status.is-unavailable {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.28);
  background: rgba(180, 35, 24, 0.08);
}

.cart-page .domain-featured__status.is-unknown {
  color: #2457be;
  border-color: rgba(44, 100, 207, 0.28);
  background: rgba(44, 100, 207, 0.1);
}

.cart-page .domain-options__list {
  margin-top: 12px;
  border: 1px solid rgba(20, 54, 108, 0.12);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.cart-page .domain-option-row {
  position: relative;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-top: 1px solid rgba(20, 54, 108, 0.08);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cart-page .domain-option-row:first-child {
  border-top: 0;
}

.cart-page .domain-option-row:hover {
  background: #f8faff;
}

.cart-page .domain-option-row.is-active {
  background: #f2f5ff;
}

.cart-page .domain-option-row.is-india::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #ff9933 0%, #ffffff 50%, #138808 100%);
  opacity: 0.95;
}

.cart-page .domain-option-row.is-india {
  background: linear-gradient(
    90deg,
    rgba(255, 153, 51, 0.06) 0%,
    rgba(255, 255, 255, 0.0) 40%,
    rgba(19, 136, 8, 0.04) 100%
  );
}

.cart-page .domain-option-row__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cart-page .domain-option-row__domain {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1f2633;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cart-page .domain-option-row__save {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e6f0ff;
  color: #1e4ea8;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 11px;
}

.cart-page .domain-option-row__status {
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(18, 55, 105, 0.18);
}

.cart-page .domain-option-row__status.is-available {
  color: #0f6b53;
  border-color: rgba(17, 122, 92, 0.26);
  background: rgba(17, 122, 92, 0.1);
}

.cart-page .domain-option-row__status.is-unavailable {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.24);
  background: rgba(180, 35, 24, 0.08);
}

.cart-page .domain-option-row__status.is-unknown {
  color: #2457be;
  border-color: rgba(44, 100, 207, 0.24);
  background: rgba(44, 100, 207, 0.1);
}

.cart-page .domain-option-row__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.cart-page .domain-option-row__price-old {
  font-size: 0.95rem;
  color: #858c9c;
  text-decoration: line-through;
}

.cart-page .domain-option-row__price-main {
  font-size: 1.36rem;
  font-weight: 800;
  color: #1b2230;
  white-space: nowrap;
}

.cart-page .domain-option-row__price-main small {
  font-size: 0.86rem;
  font-weight: 700;
}

.cart-page .domain-option-row__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  border-radius: 12px;
  padding: 10px 14px;
  border: 2px solid #2c64cf;
  color: #2457be;
  background: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-page .domain-option-row__buy[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 560px) {
  .cart-page .domain-featured__grid {
    grid-template-columns: 1fr;
  }
  .cart-page .domain-featured__cta {
    width: 100%;
  }
  .cart-page .domain-option-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cart-page .domain-option-row__right {
    justify-content: flex-start;
  }
  .cart-page .domain-option-row__buy {
    min-width: 0;
  }
}

.cart-domainStatus {
  margin-top: 10px;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 0.72);
  font-weight: 800;
  font-size: 0.92rem;
}

.cart-domainStatus--checking {
  background: rgba(91, 59, 255, 0.06);
  border-color: rgba(91, 59, 255, 0.18);
  color: rgba(53, 31, 160, 0.9);
}

.cart-domainStatus--available {
  background: rgba(12, 183, 90, 0.08);
  border-color: rgba(12, 183, 90, 0.22);
  color: rgba(8, 92, 45, 0.92);
}

.cart-domainStatus--taken,
.cart-domainStatus--invalid,
.cart-domainStatus--error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.22);
  color: rgba(127, 29, 29, 0.92);
}

/* Legacy cart layout (used by /checkout/) */
.cart-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.6fr 1fr;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.cart-item__title {
  font-weight: 800;
  color: var(--ink);
}

.cart-item__meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-item__actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .cart-checkoutForm__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-v4__signal {
    animation: none !important;
  }

  .about-hero-v4__chip {
    transition: none !important;
  }
}

/* ABOUT STORY V2 */
.about-story-v2 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(72% 110% at 8% 0%, rgba(31, 100, 212, 0.12), rgba(31, 100, 212, 0)),
    radial-gradient(62% 100% at 92% 18%, rgba(15, 163, 177, 0.1), rgba(15, 163, 177, 0)),
    var(--bg);
}

.about-story-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(31, 100, 212, 0.22) 1px, transparent 1.35px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
}

.about-story-v2 .container {
  position: relative;
  z-index: 1;
}

.about-story-v2__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(20px, 3.2vw, 34px);
  align-items: start;
}

.about-story-v2__card {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 2.2vw, 30px);
}

.about-story-v2__card h2 {
  margin-bottom: 10px;
}

.about-story-v2__lead {
  max-width: 66ch;
  color: #496282;
  line-height: 1.7;
}

.about-story-v2__chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-story-v2__chip {
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(255, 255, 255, 0.76);
  color: #1f4f9f;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(6px);
}

.about-story-v2__microproof {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.about-story-v2__proof-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #32557f;
  font-size: 0.86rem;
  font-weight: 600;
}

.about-story-v2__proof-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.about-story-v2__cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  color: #1d57b8;
  font-weight: 700;
  font-size: 0.92rem;
}

.about-story-v2__cta:hover {
  color: #164896;
}

.about-story-v2__rail {
  display: grid;
  gap: 12px;
}

.about-story-v2__frame {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.92)),
    linear-gradient(125deg, rgba(31, 100, 212, 0.16), rgba(15, 163, 177, 0.14));
  padding: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-story-v2__frame::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.about-story-v2__frame-pill {
  margin-bottom: 10px;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(255, 255, 255, 0.86);
  color: #1d56b6;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.about-story-v2__viewport {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  overflow: hidden;
  background: linear-gradient(145deg, #edf3ff, #e4efff);
  min-height: 250px;
}

.about-story-v2__viewport img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.about-story-v2__viewport.is-missing {
  background:
    linear-gradient(135deg, rgba(31, 100, 212, 0.08), rgba(15, 163, 177, 0.08)),
    linear-gradient(145deg, #edf3ff, #e4efff);
}

.about-story-v2__viewport.is-missing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.5) 50%, transparent 78%);
  transform: translateX(-120%);
  animation: about-story-v2-shimmer 2.2s linear infinite;
}

.about-story-v2__viewport.is-missing::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 18px;
  bottom: 18px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.1)),
    repeating-linear-gradient(to bottom,
      rgba(31, 100, 212, 0.14) 0 16px,
      transparent 16px 34px);
  opacity: 0.72;
}

@media (hover: hover) and (pointer: fine) {
  .about-story-v2__card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .about-story-v2__card:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 100, 212, 0.2);
    box-shadow: var(--shadow-md);
  }
}

@keyframes about-story-v2-shimmer {
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 1024px) {
  .about-story-v2__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-story-v2__viewport.is-missing::before {
    animation: none !important;
  }

  .about-story-v2__card,
  .about-story-v2__chip {
    transition: none !important;
  }
}

/* ABOUT STORY V3 */
.about-story-v3 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(72% 110% at 10% 0%, rgba(31, 100, 212, 0.12), rgba(31, 100, 212, 0)),
    radial-gradient(62% 100% at 92% 18%, rgba(15, 163, 177, 0.1), rgba(15, 163, 177, 0)),
    var(--bg);
}

.about-story-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(rgba(31, 100, 212, 0.2) 1px, transparent 1.35px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
}

.about-story-v3 .container {
  position: relative;
  z-index: 1;
}

.about-story-v3__head {
  text-align: center;
  margin: 0 auto 30px;
  max-width: 760px;
}

.about-story-v3__head .eyebrow {
  margin-bottom: 12px;
}

.about-story-v3__head h2 {
  margin: 0;
}

.about-story-v3__grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(20px, 3.2vw, 38px);
  align-items: start;
}

.about-story-v3__spine {
  position: relative;
  padding-left: 34px;
  display: grid;
  gap: 14px;
}

.about-story-v3__spine::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 3px;
  bottom: 84px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg,
      rgba(31, 100, 212, 0.18),
      rgba(31, 100, 212, 0.55),
      rgba(15, 163, 177, 0.55),
      rgba(31, 100, 212, 0.18));
  background-size: 100% 220%;
  animation: about-story-v3-line 9s linear infinite;
}

.about-story-v3__node {
  position: relative;
  padding: 0 2px 2px 0;
}

.about-story-v3__node::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  left: -29px;
  top: 4px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(31, 100, 212, 0.62);
  box-shadow: 0 0 0 5px rgba(31, 100, 212, 0.09);
}

.about-story-v3__label {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-story-v3__node p {
  margin: 0;
  color: #385778;
  line-height: 1.65;
  max-width: 60ch;
}

.about-story-v3__chips {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-story-v3__chips .pill {
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: #1f4f9f;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.07);
}

.about-story-v3__proof {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.9)),
    linear-gradient(130deg, rgba(31, 100, 212, 0.14), rgba(15, 163, 177, 0.14));
  box-shadow: var(--shadow-md);
  padding: 14px;
  overflow: hidden;
}

.about-story-v3__proof::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.about-story-v3__proof-pill {
  margin-left: auto;
  margin-bottom: 10px;
  display: inline-flex;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(255, 255, 255, 0.84);
  color: #1f58ba;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.about-story-v3__field {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(140deg, #eef4ff, #e4efff);
  min-height: 260px;
  overflow: hidden;
}

.about-story-v3__bars {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 16px;
  display: grid;
  gap: 10px;
}

.about-story-v3__bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 100, 212, 0.26), rgba(31, 100, 212, 0.08));
}

.about-story-v3__bars span:nth-child(1) {
  width: 88%;
}

.about-story-v3__bars span:nth-child(2) {
  width: 72%;
}

.about-story-v3__bars span:nth-child(3) {
  width: 84%;
}

.about-story-v3__bars span:nth-child(4) {
  width: 62%;
}

.about-story-v3__bars span:nth-child(5) {
  width: 78%;
}

.about-story-v3__dots {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: inline-flex;
  gap: 8px;
}

.about-story-v3__dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 100, 212, 0.55);
  box-shadow: 0 0 0 0 rgba(31, 100, 212, 0.25);
  animation: about-story-v3-pulse 2.2s ease-in-out infinite;
}

.about-story-v3__dots span:nth-child(2) {
  animation-delay: 0.35s;
}

.about-story-v3__dots span:nth-child(3) {
  animation-delay: 0.7s;
}

.about-story-v3__sweep {
  position: absolute;
  inset: -14% auto -14% -55%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: skewX(-16deg);
  animation: about-story-v3-sweep 7s linear infinite;
}

.about-story-v3__proof-foot {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.about-story-v3__proof-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 9px;
  color: #2e527e;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-story-v3__proof-item svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex: 0 0 auto;
}

@media (hover: hover) and (pointer: fine) {

  .about-story-v3__node,
  .about-story-v3__proof-item {
    transition: transform 0.2s ease;
  }

  .about-story-v3__node:hover {
    transform: translateX(2px);
  }

  .about-story-v3__proof-item:hover {
    transform: translateY(-1px);
  }
}

@keyframes about-story-v3-line {
  0% {
    background-position: 50% 0;
  }

  100% {
    background-position: 50% 220%;
  }
}

@keyframes about-story-v3-pulse {

  0%,
  100% {
    opacity: 0.65;
    box-shadow: 0 0 0 0 rgba(31, 100, 212, 0.22);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(31, 100, 212, 0);
  }
}

@keyframes about-story-v3-sweep {
  0% {
    transform: translateX(0) skewX(-16deg);
  }

  100% {
    transform: translateX(360%) skewX(-16deg);
  }
}

@media (max-width: 1024px) {
  .about-story-v3__grid {
    grid-template-columns: 1fr;
  }

  .about-story-v3__proof-foot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .about-story-v3__spine {
    padding-left: 20px;
    gap: 12px;
  }

  .about-story-v3__spine::before {
    left: 0;
    bottom: 74px;
  }

  .about-story-v3__node::before {
    left: -9px;
  }

  .about-story-v3__proof-foot {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-story-v3__spine::before,
  .about-story-v3__dots span,
  .about-story-v3__sweep {
    animation: none !important;
  }

  .about-story-v3__node,
  .about-story-v3__proof-item {
    transition: none !important;
  }
}

/* ABOUT PRINCIPLES V1 */
.about-principles-v1 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(72% 110% at 8% 0%, rgba(31, 100, 212, 0.12), rgba(31, 100, 212, 0)),
    radial-gradient(62% 100% at 92% 18%, rgba(15, 163, 177, 0.1), rgba(15, 163, 177, 0)),
    var(--bg);
}

.about-principles-v1::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(rgba(31, 100, 212, 0.2) 1px, transparent 1.35px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

.about-principles-v1 .container {
  position: relative;
  z-index: 1;
}

.about-principles-v1__head {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 760px;
}

.about-principles-v1__head .eyebrow {
  margin-bottom: 12px;
}

.about-principles-v1__head h2 {
  margin: 0;
}

.about-principles-v1__subline {
  margin-top: 9px;
  color: #526b8d;
  font-size: 0.97rem;
}

.about-principles-v1__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.about-principles-v1__stack {
  display: grid;
  gap: 14px;
}

.about-principles-v1 .card.about-principles-v1__card {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: clamp(20px, 2.4vw, 26px);
  display: grid;
  gap: 10px;
  align-content: start;
}

.about-principles-v1__card--mission {
  background:
    radial-gradient(100% 120% at 0% 0%, rgba(31, 100, 212, 0.09), rgba(31, 100, 212, 0)),
    linear-gradient(145deg, #ffffff, #f6faff);
}

.about-principles-v1__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(31, 100, 212, 0.14), rgba(15, 163, 177, 0.13));
}

.about-principles-v1__icon svg {
  width: 19px;
  height: 19px;
}

.about-principles-v1__card h3 {
  margin: 0;
}

.about-principles-v1__card p {
  margin: 0;
  color: #446182;
  line-height: 1.67;
}

.about-principles-v1__pill {
  justify-self: start;
  align-self: start;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: #1f4f9f;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
}

.about-principles-v1__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.about-principles-v1__list li {
  position: relative;
  padding-left: 15px;
  color: #446182;
}

.about-principles-v1__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .about-principles-v1 .card.about-principles-v1__card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .about-principles-v1 .card.about-principles-v1__card:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 100, 212, 0.2);
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 980px) {
  .about-principles-v1__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-principles-v1 .card.about-principles-v1__card {
    transition: none !important;
  }
}

/* ABOUT TRIAD V1 */
.about-triad-v1 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(72% 118% at 7% 2%, rgba(31, 100, 212, 0.13), rgba(31, 100, 212, 0)),
    radial-gradient(64% 108% at 96% 12%, rgba(15, 163, 177, 0.11), rgba(15, 163, 177, 0)),
    var(--bg);
}

.about-triad-v1::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(31, 100, 212, 0.2) 1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.about-triad-v1 .container {
  position: relative;
  z-index: 1;
}

.about-triad-v1__head {
  text-align: center;
  margin: 0 auto 24px;
  max-width: 760px;
}

.about-triad-v1__head .eyebrow {
  margin-bottom: 12px;
}

.about-triad-v1__head h2 {
  margin: 0;
}

.about-triad-v1__canvas {
  position: relative;
  min-height: clamp(480px, 58vw, 620px);
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(245, 250, 255, 0.94)),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  padding: clamp(22px, 3vw, 34px);
}

.about-triad-v1__canvas::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(86%, 680px);
  height: min(72%, 420px);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(55% 60% at 50% 50%, rgba(31, 100, 212, 0.18), rgba(31, 100, 212, 0)),
    radial-gradient(58% 62% at 48% 56%, rgba(15, 163, 177, 0.15), rgba(15, 163, 177, 0));
}

.about-triad-v1__core,
.about-triad-v1__node {
  position: absolute;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  padding: clamp(16px, 2vw, 22px);
}

.about-triad-v1__core {
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%);
  width: min(44vw, 420px);
  text-align: center;
  background:
    radial-gradient(100% 120% at 50% 8%, rgba(31, 100, 212, 0.12), rgba(31, 100, 212, 0)),
    rgba(255, 255, 255, 0.94);
}

.about-triad-v1__core h3 {
  margin: 0;
}

.about-triad-v1__core p {
  margin: 10px 0 0;
  color: #42607f;
  line-height: 1.6;
}

.about-triad-v1__node {
  width: min(31vw, 320px);
  display: grid;
  gap: 10px;
  align-content: start;
  animation: aboutTriadPulse 10s ease-in-out infinite;
}

.about-triad-v1__node h3 {
  margin: 0;
}

.about-triad-v1__node p {
  margin: 0;
  color: #42607f;
  line-height: 1.62;
}

.about-triad-v1__node::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.45;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.about-triad-v1__node--mission {
  left: clamp(20px, 3vw, 34px);
  top: 52%;
  transform: translateY(-50%);
  animation-delay: 0s;
}

.about-triad-v1__node--mission::after {
  left: calc(100% - 2px);
  top: 50%;
  width: clamp(46px, 7vw, 96px);
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 100, 212, 0.38), rgba(31, 100, 212, 0.06));
}

.about-triad-v1__node--vision {
  left: 50%;
  top: clamp(18px, 2.2vw, 30px);
  transform: translateX(-50%);
  width: min(35vw, 360px);
  animation-delay: 1.6s;
}

.about-triad-v1__node--vision::after {
  left: 50%;
  top: calc(100% - 2px);
  width: 1px;
  height: clamp(46px, 8vw, 104px);
  background: linear-gradient(180deg, rgba(31, 100, 212, 0.36), rgba(31, 100, 212, 0.04));
}

.about-triad-v1__node--values {
  right: clamp(20px, 3vw, 34px);
  top: 52%;
  transform: translateY(-50%);
  animation-delay: 3.2s;
}

.about-triad-v1__node--values::after {
  right: calc(100% - 2px);
  top: 50%;
  width: clamp(46px, 7vw, 96px);
  height: 1px;
  background: linear-gradient(270deg, rgba(31, 100, 212, 0.38), rgba(31, 100, 212, 0.06));
}

.about-triad-v1__pill {
  justify-self: start;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(255, 255, 255, 0.84);
  color: #1f4f9f;
}

.about-triad-v1__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.about-triad-v1__list li {
  position: relative;
  padding-left: 15px;
  color: #42607f;
}

.about-triad-v1__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .about-triad-v1__node {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .about-triad-v1__node--mission:hover {
    transform: translateY(calc(-50% - 2px));
  }

  .about-triad-v1__node--vision:hover {
    transform: translate(-50%, -2px);
  }

  .about-triad-v1__node--values:hover {
    transform: translateY(calc(-50% - 2px));
  }

  .about-triad-v1__node:hover {
    border-color: rgba(31, 100, 212, 0.24);
    box-shadow: var(--shadow-md);
  }

  .about-triad-v1__node:hover::after {
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(31, 100, 212, 0.3));
  }
}

@keyframes aboutTriadPulse {

  0%,
  100% {
    opacity: 0.94;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .about-triad-v1__canvas {
    min-height: 0;
    display: grid;
    gap: 14px;
    padding: 18px;
  }

  .about-triad-v1__canvas::before {
    width: 100%;
    height: 180px;
    top: 94px;
    transform: translateX(-50%);
  }

  .about-triad-v1__canvas::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(31, 100, 212, 0.35), rgba(31, 100, 212, 0.06));
  }

  .about-triad-v1__core,
  .about-triad-v1__node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    z-index: 1;
    margin-left: 14px;
  }

  .about-triad-v1__node::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-triad-v1__node {
    animation: none !important;
    transition: none !important;
  }

  .about-triad-v1__node::after {
    transition: none !important;
  }
}

/* ABOUT FOUNDATION V2 */
.about-foundation-v2 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(70% 112% at 8% 0%, rgba(31, 100, 212, 0.09), rgba(31, 100, 212, 0)),
    radial-gradient(62% 106% at 94% 12%, rgba(15, 163, 177, 0.08), rgba(15, 163, 177, 0)),
    var(--bg);
}

.about-foundation-v2 .container {
  position: relative;
  z-index: 1;
}

.about-foundation-v2__slab {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.94)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  padding: clamp(22px, 3.2vw, 38px);
  isolation: isolate;
}

.about-foundation-v2__slab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(rgba(31, 100, 212, 0.2) 1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}

.about-foundation-v2__slab::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(24px - 1px);
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), inset 0 -14px 30px rgba(31, 100, 212, 0.05);
}

.about-foundation-v2__head {
  text-align: center;
  margin: 0 auto;
  max-width: 760px;
}

.about-foundation-v2__head .eyebrow {
  margin-bottom: 11px;
}

.about-foundation-v2__head h2 {
  margin: 0;
}

.about-foundation-v2__core {
  position: relative;
  z-index: 1;
  margin: clamp(18px, 2.6vw, 30px) auto 0;
  max-width: 760px;
  text-align: center;
  padding: clamp(14px, 2.2vw, 22px);
}

.about-foundation-v2__core h3 {
  margin: 0;
}

.about-foundation-v2__core p {
  margin: 10px auto 0;
  max-width: 62ch;
  color: #446182;
  line-height: 1.65;
}

.about-foundation-v2__grid {
  position: relative;
  z-index: 1;
  margin-top: clamp(18px, 3vw, 32px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-foundation-v2__principle {
  padding: clamp(14px, 1.8vw, 20px) clamp(12px, 1.4vw, 18px);
  min-width: 0;
}

.about-foundation-v2__principle+.about-foundation-v2__principle {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.about-foundation-v2__principle h3 {
  margin: 0;
}

.about-foundation-v2__principle p {
  margin: 10px 0 0;
  color: #446182;
  line-height: 1.65;
}

.about-foundation-v2__pill {
  margin-top: 14px;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: #1f4f9f;
}

.about-foundation-v2__list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.about-foundation-v2__list li {
  position: relative;
  padding-left: 15px;
  color: #446182;
}

.about-foundation-v2__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .about-foundation-v2__principle {
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    border-radius: 14px;
  }

  .about-foundation-v2__principle:hover {
    background: rgba(31, 100, 212, 0.05);
    box-shadow: inset 0 0 0 1px rgba(31, 100, 212, 0.08);
  }
}

@media (max-width: 980px) {
  .about-foundation-v2__slab {
    border-radius: 20px;
    padding: 18px;
  }

  .about-foundation-v2__slab::after {
    border-radius: calc(20px - 1px);
  }

  .about-foundation-v2__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .about-foundation-v2__principle {
    padding: 12px 4px 14px;
  }

  .about-foundation-v2__principle+.about-foundation-v2__principle {
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-foundation-v2__principle {
    transition: none !important;
  }
}

/* ABOUT FOUNDATION V2 CORE AMBIENT REFINEMENT */
.about-foundation-v2__core {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(10px, 1.4vw, 16px);
  padding: clamp(14px, 2vw, 20px) clamp(12px, 2.2vw, 20px);
}

.about-foundation-v2__core>* {
  position: relative;
  z-index: 1;
}

.about-foundation-v2__core::before,
.about-foundation-v2__core::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  filter: blur(14px);
}

.about-foundation-v2__core::before {
  width: clamp(220px, 36vw, 360px);
  height: clamp(120px, 22vw, 200px);
  right: -18%;
  top: -28%;
  transform: rotate(-17deg);
  background:
    linear-gradient(140deg,
      rgba(31, 100, 212, 0),
      rgba(31, 100, 212, 0.42) 48%,
      rgba(31, 100, 212, 0));
}

.about-foundation-v2__core::after {
  width: clamp(200px, 32vw, 330px);
  height: clamp(110px, 20vw, 190px);
  left: -22%;
  bottom: -34%;
  transform: rotate(18deg);
  background:
    linear-gradient(130deg,
      rgba(15, 163, 177, 0),
      rgba(15, 163, 177, 0.44) 48%,
      rgba(15, 163, 177, 0));
}

.about-foundation-v2__core h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.about-foundation-v2__core p {
  margin-top: 8px;
}

.about-foundation-v2__mark {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.about-foundation-v2__mark img {
  opacity: 0.9;
  filter: grayscale(1) brightness(0) saturate(100%) invert(31%) sepia(62%) saturate(994%) hue-rotate(184deg) brightness(92%) contrast(89%);
}

@media (max-width: 980px) {
  .about-foundation-v2__core::before {
    width: clamp(160px, 46vw, 220px);
    height: clamp(90px, 26vw, 130px);
    right: -18%;
    top: -30%;
    opacity: 0.06;
  }

  .about-foundation-v2__core::after {
    width: clamp(150px, 42vw, 210px);
    height: clamp(85px, 24vw, 120px);
    left: -22%;
    bottom: -36%;
    opacity: 0.05;
  }
}

/* ABOUT NAME V1 */
.about-name-v1 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(70% 112% at 8% 0%, rgba(31, 100, 212, 0.1), rgba(31, 100, 212, 0)),
    radial-gradient(58% 100% at 94% 12%, rgba(15, 163, 177, 0.08), rgba(15, 163, 177, 0)),
    var(--bg);
}

.about-name-v1::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(31, 100, 212, 0.2) 1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.about-name-v1 .container {
  position: relative;
  z-index: 1;
}

.about-name-v1__head {
  text-align: center;
  margin: 0 auto;
  max-width: 820px;
}

.about-name-v1__head .eyebrow {
  margin-bottom: 12px;
}

.about-name-v1__head h2 {
  margin: 0;
}

.about-name-v1__subline {
  margin: 10px auto 0;
  color: #516b8c;
  max-width: 66ch;
}

.about-name-v1__layout {
  margin-top: clamp(20px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(16px, 2.6vw, 30px);
  align-items: start;
}

.about-name-v1__brand {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(14px, 1.8vw, 20px);
}

.about-name-v1__word {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.about-name-v1__word span {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-name-v1__signal {
  width: min(230px, 100%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 100, 212, 0.9), rgba(15, 163, 177, 0.18) 85%);
}

.about-name-v1__closing {
  margin: 0;
  color: #214168;
  font-weight: 600;
  max-width: 34ch;
}

.about-name-v1__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.about-name-v1__link span:last-child {
  transition: transform 0.2s ease;
}

.about-name-v1__decoder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-name-v1__item {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: clamp(14px, 1.7vw, 18px);
  display: grid;
  gap: 10px;
  min-height: 100%;
}

.about-name-v1__tag {
  justify-self: start;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(235, 244, 255, 0.86);
  color: #1f4f9f;
}

.about-name-v1__item p {
  margin: 0;
  color: #446182;
  line-height: 1.62;
}

@media (hover: hover) and (pointer: fine) {
  .about-name-v1__item {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .about-name-v1__item:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 100, 212, 0.2);
    box-shadow: var(--shadow-md);
  }

  .about-name-v1__link:hover span:last-child {
    transform: translateX(2px);
  }
}

@media (max-width: 1024px) {
  .about-name-v1__layout {
    grid-template-columns: 1fr;
  }

  .about-name-v1__brand {
    text-align: center;
    justify-items: center;
  }

  .about-name-v1__closing {
    max-width: 46ch;
  }
}

@media (max-width: 820px) {
  .about-name-v1__decoder {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-name-v1__item,
  .about-name-v1__link span:last-child {
    transition: none !important;
  }
}

/* ABOUT NAME V1 INTERACTIONS */
.about-name-v1__line {
  margin: 0;
  color: #214168;
  font-weight: 600;
  max-width: 34ch;
}

.about-name-v1__word {
  position: relative;
  display: inline-flex;
  gap: 0;
}

.about-name-v1__word .seg {
  position: relative;
  z-index: 1;
  color: var(--ink);
  background: none;
  -webkit-text-fill-color: currentColor;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.about-name-v1__word .word-i {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-name-v1__underline {
  position: absolute;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  width: 40px;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.9;
  pointer-events: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.about-name-v1.is-net .word-net,
.about-name-v1.is-i .word-i,
.about-name-v1.is-go .word-go {
  color: var(--primary);
  -webkit-text-fill-color: currentColor;
  background: none;
}

.about-name-v1.is-net .seg:not(.word-net),
.about-name-v1.is-i .seg:not(.word-i),
.about-name-v1.is-go .seg:not(.word-go) {
  color: rgba(11, 18, 32, 0.52);
  -webkit-text-fill-color: currentColor;
  background: none;
}

.about-name-v1__card.is-active {
  transform: translateY(-2px);
  border-color: rgba(31, 100, 212, 0.24);
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .about-name-v1__line {
    max-width: 46ch;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-name-v1__word .seg,
  .about-name-v1__card {
    transition: none !important;
  }
}

/* ABOUT NAME V2 — Premium Hover Canvas */
.about-name-v2 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(70% 118% at 4% 0%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 65%),
    radial-gradient(64% 110% at 96% 8%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 68%),
    var(--bg);
}

.about-name-v2 .about-name-v2__wrap {
  position: relative;
}

.about-name-v2__head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto clamp(22px, 3vw, 34px);
}

.about-name-v2__head h2 {
  margin: 0;
}

.about-name-v2__head .lead {
  margin: 12px auto 0;
  max-width: 68ch;
}

.about-name-v2__canvas {
  --hx: 52%;
  --hy: 28%;
  --beam-x: 0px;
  --beam-w: 132px;
  --c1: var(--primary);
  --c2: var(--accent);
  position: relative;
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(152deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 255, 0.88)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.about-name-v2__canvas::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(28px - 1px);
  pointer-events: none;
  z-index: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -20px 40px color-mix(in srgb, var(--c1) 7%, transparent);
}

.about-name-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(42% 46% at var(--hx) var(--hy),
      color-mix(in srgb, var(--c1) 20%, transparent),
      transparent 72%),
    radial-gradient(34% 38% at calc(var(--hx) + 18%) calc(var(--hy) - 18%),
      color-mix(in srgb, var(--c2) 16%, transparent),
      transparent 75%),
    linear-gradient(120deg,
      color-mix(in srgb, var(--c1) 7%, transparent) 0%,
      transparent 36%,
      color-mix(in srgb, var(--c2) 8%, transparent) 72%,
      transparent 100%);
  transition: background 420ms ease, filter 420ms ease;
}

.about-name-v2__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(rgba(31, 100, 212, 0.2) 1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
}

.about-name-v2__bg::after {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(35% 35% at calc(var(--hx) + 10%) calc(var(--hy) + 8%),
      color-mix(in srgb, var(--c1) 22%, transparent),
      transparent 72%);
  filter: blur(18px);
  opacity: 0.26;
  mask-image: radial-gradient(circle at center, #000 46%, transparent 82%);
  transition: transform 420ms ease, opacity 420ms ease;
}

.about-name-v2__center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-name-v2__word {
  position: relative;
  display: inline-flex;
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.about-name-v2__word .seg {
  position: relative;
  z-index: 1;
  transition: color 300ms ease, opacity 300ms ease, filter 300ms ease;
}

.about-name-v2__word .seg--i {
  color: color-mix(in srgb, var(--primary) 78%, var(--accent));
}

.about-name-v2__beam {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: var(--beam-w);
  height: 4px;
  transform: translateX(var(--beam-x));
  border-radius: 999px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--c1), color-mix(in srgb, var(--c2) 78%, #ffffff));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--c1) 22%, transparent),
    0 0 24px color-mix(in srgb, var(--c2) 34%, transparent);
  transition: transform 360ms ease, width 360ms ease, background 320ms ease;
}

.about-name-v2__line {
  margin: clamp(18px, 2.4vw, 24px) auto 0;
  max-width: 44ch;
  color: #36597f;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.6;
  transition: opacity 180ms ease, transform 180ms ease;
}

.about-name-v2__line.is-swap {
  opacity: 0.28;
  transform: translateY(6px);
}

.about-name-v2__cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.about-name-v2__cards {
  position: relative;
  z-index: 2;
  margin-top: clamp(22px, 3vw, 30px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-name-v2__card {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  padding: clamp(14px, 1.7vw, 18px);
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 260ms ease;
}

.about-name-v2__card::before {
  content: "";
  position: absolute;
  inset: -32%;
  background:
    radial-gradient(40% 40% at var(--hx) var(--hy),
      color-mix(in srgb, var(--c1) 26%, transparent),
      transparent 72%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 280ms ease;
  pointer-events: none;
}

.about-name-v2__card .pill {
  justify-self: start;
  border: 1px solid color-mix(in srgb, var(--c1) 24%, transparent);
  background: color-mix(in srgb, var(--c1) 12%, #ffffff);
  color: color-mix(in srgb, var(--c1) 82%, #0f172a);
}

.about-name-v2__card h3 {
  margin: 0;
  color: var(--ink);
}

.about-name-v2__card p {
  margin: 0;
  color: #4a6688;
  line-height: 1.58;
}

.about-name-v2__card:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--c1) 45%, transparent);
  outline-offset: 2px;
}

.about-name-v2__card.is-active {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--c1) 30%, transparent);
  box-shadow: var(--shadow-md);
  background: color-mix(in srgb, var(--c1) 8%, #ffffff);
}

.about-name-v2__card.is-active::before {
  opacity: 0.6;
}

.about-name-v2__canvas[data-active="net"] {
  --c1: var(--primary);
  --c2: color-mix(in srgb, var(--primary) 65%, var(--accent));
}

.about-name-v2__canvas[data-active="i"] {
  --c1: color-mix(in srgb, var(--primary) 56%, var(--accent));
  --c2: var(--accent);
}

.about-name-v2__canvas[data-active="go"] {
  --c1: color-mix(in srgb, var(--accent) 78%, var(--primary));
  --c2: color-mix(in srgb, var(--accent) 62%, #38bdf8);
}

.about-name-v2__canvas[data-active="net"] .seg--net,
.about-name-v2__canvas[data-active="i"] .seg--i,
.about-name-v2__canvas[data-active="go"] .seg--go {
  color: var(--c1);
  filter: saturate(1.08);
}

.about-name-v2__canvas[data-active="net"] .seg:not(.seg--net),
.about-name-v2__canvas[data-active="i"] .seg:not(.seg--i),
.about-name-v2__canvas[data-active="go"] .seg:not(.seg--go) {
  color: rgba(15, 23, 42, 0.5);
}

.about-name-v2__canvas[data-active="none"] .seg--i {
  color: color-mix(in srgb, var(--primary) 78%, var(--accent));
}

@media (hover: hover) and (pointer: fine) {
  .about-name-v2__card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--c1) 24%, transparent);
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 980px) {
  .about-name-v2__canvas {
    border-radius: 22px;
    padding: 18px;
  }

  .about-name-v2__canvas::before {
    border-radius: calc(22px - 1px);
  }

  .about-name-v2__line {
    max-width: 100%;
  }

  .about-name-v2__cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-name-v2__bg,
  .about-name-v2__bg::after,
  .about-name-v2__word .seg,
  .about-name-v2__beam,
  .about-name-v2__line,
  .about-name-v2__card,
  .about-name-v2__card::before {
    transition: none !important;
    animation: none !important;
  }
}

/* ABOUT PAGE RHYTHM OVERRIDES (scoped) */
.about-page {
  --about-section-y-desktop: 72px;
  --about-section-y-mobile: 52px;
  --about-head-gap-desktop: 20px;
  --about-head-gap-mobile: 16px;
  --about-slab-pad-desktop: 22px;
  --about-slab-pad-mobile: 18px;
  --about-grid-gap-desktop: 18px;
  --about-grid-gap-mobile: 14px;
}

.about-page .section {
  padding-block: var(--about-section-y-desktop);
}

.about-page .section-head,
.about-page .section-header,
.about-page .about-section-head,
.about-page .about-story-v3__head,
.about-page .about-name-v2__head,
.about-page .about-foundation-v2__head {
  margin-bottom: var(--about-head-gap-desktop);
}

.about-page h1,
.about-page h2 {
  margin-top: 0;
}

.about-page .lead {
  margin-top: 10px;
  margin-bottom: 12px;
}

.about-page .chip-row,
.about-page .trust-row,
.about-page .hero-v2__ctaButtons {
  margin-top: 14px;
}

/* Hero spacing tighten */
.about-page .about-hero.section {
  padding-bottom: clamp(44px, 6vw, 72px);
}

.about-page .about-hero .about-hero-v4__content {
  gap: 10px;
}

.about-page .about-hero .about-hero-v4__actions,
.about-page .about-hero .about-hero-v4__chips {
  margin-top: 12px;
}

.about-page .about-hero .about-hero-v4__signal {
  margin-top: 8px;
}

/* Story section tighten */
.about-page .about-story .card,
.about-page .about-story .story-panel,
.about-page .about-story .about-story-v3__proof {
  padding: 20px;
}

.about-page .about-story .story-grid,
.about-page .about-story .about-story-v3__grid {
  gap: var(--about-grid-gap-desktop);
}

.about-page .about-story .about-story-v3__head {
  margin-bottom: 12px;
}

.about-page .about-story .about-story-v3__chips {
  margin-top: 12px;
}

.about-page .about-story .about-story-v3__proof-foot {
  margin-top: 12px;
}

/* Name section tighten */
.about-page .about-name-v1 .about-name-v1__head,
.about-page .about-name-v2 .about-name-v2__head {
  margin-bottom: 12px;
}

.about-page .about-name-v1 .about-name-v1__slab,
.about-page .about-name-v2 .about-name-v2__canvas {
  padding: var(--about-slab-pad-desktop);
}

.about-page .about-name-v1 .about-name-v1__cards,
.about-page .about-name-v2 .about-name-v2__cards {
  gap: var(--about-grid-gap-desktop);
  margin-top: 14px;
}

.about-page .about-name-v2 .about-name-v2__line {
  margin-top: 14px;
}

/* Foundation section tighten */
.about-page .about-foundation-v2 .foundation-slab,
.about-page .about-foundation-v2 .about-foundation-v2__panel {
  padding: var(--about-slab-pad-desktop);
}

.about-page .about-foundation-v2 .foundation-core,
.about-page .about-foundation-v2 .about-foundation-v2__core {
  margin-bottom: 14px;
}

.about-page .about-foundation-v2 .foundation-grid,
.about-page .about-foundation-v2 .about-foundation-v2__grid {
  gap: var(--about-grid-gap-desktop);
}

.about-page .about-foundation-v2 .about-foundation-v2__head {
  margin-bottom: 12px;
}

/* Normalize slab widths */
.about-page .about-name-v1__slab,
.about-page .about-name-v2 .about-name-v2__canvas,
.about-page .about-foundation-v2 .about-foundation-v2__panel,
.about-page .about-foundation-v2 .foundation-slab {
  width: 100%;
  max-width: none;
}

@media (max-width: 768px) {
  .about-page .section {
    padding-block: var(--about-section-y-mobile);
  }

  .about-page .section-head,
  .about-page .section-header,
  .about-page .about-section-head,
  .about-page .about-story-v3__head,
  .about-page .about-name-v2__head,
  .about-page .about-foundation-v2__head {
    margin-bottom: var(--about-head-gap-mobile);
  }

  .about-page .about-story .story-grid,
  .about-page .about-story .about-story-v3__grid {
    gap: var(--about-grid-gap-mobile);
  }

  .about-page .about-name-v1 .about-name-v1__slab,
  .about-page .about-name-v2 .about-name-v2__canvas,
  .about-page .about-foundation-v2 .foundation-slab,
  .about-page .about-foundation-v2 .about-foundation-v2__panel {
    padding: var(--about-slab-pad-mobile);
  }

  .about-page .about-name-v1 .about-name-v1__cards,
  .about-page .about-name-v2 .about-name-v2__cards,
  .about-page .about-foundation-v2 .foundation-grid,
  .about-page .about-foundation-v2 .about-foundation-v2__grid {
    gap: var(--about-grid-gap-mobile);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page * {
    scroll-behavior: auto;
  }

  .about-page .about-name-v2__bg,
  .about-page .about-foundation-v2__bg {
    animation: none !important;
    transition: none !important;
  }
}

/* ABOUT PAGE — Match Homepage Cadence */
.about-page {
  --about-bg: var(--bg);
  --about-surface: var(--card);
  --about-border: var(--border);
  --about-shadow: var(--shadow-sm);
  --about-section-y-desktop: 76px;
  --about-section-y-mobile: 54px;
  --about-head-gap-desktop: 18px;
  --about-head-gap-mobile: 14px;
  --about-slab-pad-desktop: 22px;
  --about-slab-pad-mobile: 18px;
  --about-grid-gap-desktop: 18px;
  --about-grid-gap-mobile: 14px;
}

.about-page .section {
  padding-block: var(--about-section-y-desktop);
}

.about-page .section-head,
.about-page .section-header,
.about-page .about-section-head {
  margin-bottom: var(--about-head-gap-desktop);
}

.about-page .about-hero,
.about-page .about-story {
  background: var(--about-bg);
}

.about-page .about-name,
.about-page .about-foundation,
.about-page .about-cta-slab {
  background: transparent;
}

.about-page .about-hero.section {
  padding-bottom: clamp(44px, 6vw, 72px);
}

.about-page .about-hero .about-hero-v4__content {
  gap: 10px;
}

.about-page .lead {
  margin-top: 10px;
  margin-bottom: 12px;
}

.about-page .chip-row,
.about-page .trust-row {
  margin-top: 12px;
  margin-bottom: 0;
}

.about-page .about-story .about-story-v3__head {
  margin-bottom: 12px;
}

.about-page .about-story .story-grid {
  gap: var(--about-grid-gap-desktop);
}

.about-page .about-story .story-panel {
  padding: 20px;
}

.about-page .about-story .about-story-v3__chips {
  margin-top: 12px;
}

.about-page .about-name .about-name-v2__head,
.about-page .about-foundation .about-foundation-v2__head {
  margin-bottom: 12px;
}

.about-page .about-name .about-slab,
.about-page .about-foundation .about-slab {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--about-shadow);
  border-radius: 20px;
  padding: var(--about-slab-pad-desktop);
}

.about-page .about-name .about-slab,
.about-page .about-foundation .about-slab,
.about-page .about-cta-slab .about-slab {
  width: 100%;
  max-width: none;
}

.about-page .about-name .about-name-v2__cards,
.about-page .about-foundation .foundation-grid {
  gap: var(--about-grid-gap-desktop);
}

.about-page .about-name .about-name-v2__cards {
  margin-top: 14px;
}

.about-page .about-foundation .foundation-core {
  margin-bottom: 14px;
}

.about-page .about-story .card,
.about-page .about-name .about-name-v2__card,
.about-page .about-foundation .about-foundation-v2__principle {
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  border-radius: 16px;
}

@media (hover: hover) and (pointer: fine) {
  .about-page .card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
}

.about-page .about-cta-slab .about-slab {
  background:
    radial-gradient(82% 120% at 6% 0%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #154cb5, #1382bf);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
  text-align: center;
  color: #f8fbff;
}

.about-page .about-cta-slab .eyebrow {
  color: rgba(236, 247, 255, 0.9);
}

.about-page .about-cta-slab h2 {
  margin: 0;
  color: #ffffff;
}

.about-page .about-cta-slab .lead {
  color: rgba(235, 245, 255, 0.9);
  margin-inline: auto;
}

.about-page .about-cta-slab__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .about-page .section {
    padding-block: var(--about-section-y-mobile);
  }

  .about-page .section-head,
  .about-page .section-header,
  .about-page .about-section-head {
    margin-bottom: var(--about-head-gap-mobile);
  }

  .about-page .about-story .story-grid,
  .about-page .about-name .about-name-v2__cards,
  .about-page .about-foundation .foundation-grid {
    gap: var(--about-grid-gap-mobile);
  }

  .about-page .about-name .about-slab,
  .about-page .about-foundation .about-slab,
  .about-page .about-cta-slab .about-slab {
    padding: var(--about-slab-pad-mobile);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page * {
    transition: none !important;
    animation: none !important;
  }
}

/* ABOUT PAGE — Homepage Theme Sync */
.about-page {
  background: var(--bg);
}

.about-page .section+.section {
  border-top: none;
}

.about-page .about-hero {
  background:
    radial-gradient(88% 116% at 100% 0%, rgba(31, 100, 212, 0.12), rgba(31, 100, 212, 0) 48%),
    radial-gradient(78% 112% at 0% 0%, rgba(15, 163, 177, 0.08), rgba(15, 163, 177, 0) 52%),
    var(--bg);
}

.about-page .about-story,
.about-page .about-name,
.about-page .about-foundation {
  background: var(--bg);
}

.about-page .about-name-v2,
.about-page .about-foundation-v2 {
  background: transparent;
}

.about-page .about-name-v2::before,
.about-page .about-foundation-v2::before {
  display: none;
}

.about-page .about-name .about-slab {
  --c1: #ff9933;
  --c2: #138808;
  background:
    linear-gradient(90deg,
      color-mix(in srgb, #ff9933 14%, #ffffff) 0%,
      color-mix(in srgb, #ffffff 96%, #ff9933) 34%,
      #ffffff 50%,
      color-mix(in srgb, #ffffff 96%, #138808) 66%,
      color-mix(in srgb, #138808 12%, #ffffff) 100%);
  border-color: color-mix(in srgb, #0f172a 16%, #ffffff);
  box-shadow: var(--shadow-sm);
}

.about-page .about-foundation .about-slab {
  background: var(--card);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.about-page .about-story .story-panel,
.about-page .about-story .about-story-v3__spine,
.about-page .about-story .about-story-v3__proof,
.about-page .about-name .about-name-v2__card,
.about-page .about-foundation .about-foundation-v2__principle {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: 16px;
}

.about-page .about-name .about-name-v2__bg {
  background:
    linear-gradient(90deg,
      color-mix(in srgb, #ff9933 10%, transparent) 0%,
      transparent 42%,
      transparent 58%,
      color-mix(in srgb, #138808 9%, transparent) 100%),
    radial-gradient(40% 44% at var(--hx) var(--hy),
      color-mix(in srgb, var(--c1) 14%, transparent),
      transparent 74%),
    radial-gradient(32% 36% at calc(var(--hx) + 18%) calc(var(--hy) - 18%),
      color-mix(in srgb, var(--c2) 11%, transparent),
      transparent 76%),
    linear-gradient(120deg,
      color-mix(in srgb, var(--c1) 5%, transparent) 0%,
      transparent 38%,
      color-mix(in srgb, var(--c2) 5%, transparent) 72%,
      transparent 100%);
}

.about-page .about-name .about-name-v2__canvas[data-active="net"],
.about-page .about-name .about-name-v2__canvas[data-active="i"],
.about-page .about-name .about-name-v2__canvas[data-active="go"] {
  --c1: #ff9933;
  --c2: #138808;
}

.about-page .about-name .about-name-v2__bg::before {
  opacity: 0.12;
}

.about-page .about-name .about-name-v2__bg::after {
  opacity: 0.16;
}

.about-page .about-name .about-name-v2__beam {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--c1) 18%, transparent),
    0 0 14px color-mix(in srgb, var(--c2) 18%, transparent);
}

.about-page .about-foundation .about-foundation-v2__core p,
.about-page .about-name .about-name-v2__line,
.about-page .about-story .about-story-v3__node p,
.about-page .about-story .about-story-v3__proof-item span {
  color: #3f5f83;
}

@media (hover: hover) and (pointer: fine) {

  .about-page .about-name .about-name-v2__card:hover,
  .about-page .about-foundation .about-foundation-v2__principle:hover,
  .about-page .about-story .story-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 100, 212, 0.2);
    box-shadow: var(--shadow-md);
  }
}

/* ABOUT STORY V4 — Origin Timeline + Proof Panel */
.about-story-v4 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(74% 116% at 6% 0%, rgba(31, 100, 212, 0.11), rgba(31, 100, 212, 0) 62%),
    radial-gradient(66% 108% at 96% 10%, rgba(15, 163, 177, 0.08), rgba(15, 163, 177, 0) 64%),
    var(--bg);
}

.about-story-v4::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(31, 100, 212, 0.2) 1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.about-story-v4 .container {
  position: relative;
  z-index: 1;
}

.about-story-v4 .section-head.center {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 16px;
}

.about-story-v4 .section-head.center .lead {
  max-width: 62ch;
  margin: 10px auto 0;
}

.about-story-v4__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(18px, 2.8vw, 22px);
  align-items: stretch;
}

.about-story-v4__rail,
.about-story-v4__panel {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.92);
}

.about-story-v4__rail {
  position: relative;
  padding: clamp(14px, 2vw, 18px);
  display: grid;
  gap: 10px;
}

.about-story-v4__rail::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  bottom: 86px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg,
      rgba(31, 100, 212, 0.4),
      rgba(31, 100, 212, 0.15) 50%,
      rgba(31, 100, 212, 0.04));
}

.about-story-v4__step {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  padding: 12px 12px 12px 14px;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 18px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 4px;
  align-items: start;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.24s ease;
}

.about-story-v4__dot {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(31, 100, 212, 0.45);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.about-story-v4__label {
  grid-column: 2;
  letter-spacing: 0.08em;
  font-size: 0.69rem;
  font-weight: 700;
  color: #2a5ea8;
}

.about-story-v4__text {
  grid-column: 2;
  color: #3f5e82;
  line-height: 1.42;
}

.about-story-v4__step.is-active {
  background:
    radial-gradient(100% 160% at 0% 0%, rgba(31, 100, 212, 0.1), rgba(31, 100, 212, 0)),
    #ffffff;
  border-color: rgba(31, 100, 212, 0.24);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  padding-top: 13px;
  padding-bottom: 13px;
}

.about-story-v4__step.is-active .about-story-v4__dot {
  border-color: rgba(31, 100, 212, 0.88);
  background: var(--primary);
}

.about-story-v4__chips {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-story-v4__chips .pill {
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(236, 245, 255, 0.82);
  color: #1f4f9f;
}

.about-story-v4__panel {
  --panel-c1: var(--primary);
  --panel-c2: var(--accent);
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2.2vw, 22px);
  display: grid;
  gap: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.28s ease;
}

.about-story-v4__panel::before {
  content: "";
  position: absolute;
  inset: -22%;
  pointer-events: none;
  background:
    radial-gradient(40% 42% at 78% 16%, color-mix(in srgb, var(--panel-c1) 16%, transparent), transparent 72%),
    radial-gradient(36% 38% at 24% 78%, color-mix(in srgb, var(--panel-c2) 14%, transparent), transparent 74%);
  filter: blur(14px);
  opacity: 0.85;
}

.about-story-v4__panel>* {
  position: relative;
  z-index: 1;
}

.about-story-v4__panel[data-mode="problem"] {
  --panel-c1: var(--primary);
  --panel-c2: color-mix(in srgb, var(--primary) 54%, var(--accent));
}

.about-story-v4__panel[data-mode="frustration"] {
  --panel-c1: color-mix(in srgb, var(--primary) 52%, var(--accent));
  --panel-c2: var(--accent);
}

.about-story-v4__panel[data-mode="decision"] {
  --panel-c1: color-mix(in srgb, var(--primary) 66%, var(--accent));
  --panel-c2: color-mix(in srgb, var(--accent) 58%, #5fd4dd);
}

.about-story-v4__panel[data-mode="standard"] {
  --panel-c1: color-mix(in srgb, var(--primary) 74%, var(--accent));
  --panel-c2: color-mix(in srgb, var(--accent) 72%, #86e1ee);
}

.about-story-v4__panelHead .pill--soft {
  border: 1px solid rgba(31, 100, 212, 0.24);
  background: rgba(236, 245, 255, 0.82);
  color: #1f4f9f;
}

.about-story-v4__panelTitle {
  margin: 8px 0 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-story-v4__panelDesc {
  margin: 8px 0 0;
  color: #3f5f83;
  line-height: 1.62;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-story-v4__vignette {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.92), rgba(235, 245, 255, 0.82));
  min-height: 170px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.about-story-v4__vignette .v-row {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 100, 212, 0.16), rgba(31, 100, 212, 0.06));
  margin-bottom: 10px;
}

.about-story-v4__vignette .v-row:nth-child(2) {
  width: 86%;
}

.about-story-v4__vignette .v-row:nth-child(3) {
  width: 72%;
}

.about-story-v4__vignette .v-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 40%;
  height: 72px;
  border-radius: 12px;
  border: 1px solid rgba(31, 100, 212, 0.16);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.about-story-v4__vignette .v-badge {
  position: absolute;
  left: 16px;
  bottom: 18px;
  width: 92px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 100, 212, 0.24), rgba(15, 163, 177, 0.2));
}

.about-story-v4__proof {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.84);
  padding: 12px;
}

.about-story-v4__proofTitle {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #2a5ea8;
  font-weight: 700;
}

.about-story-v4__proofText {
  margin-top: 6px;
  color: #3f5f83;
  line-height: 1.52;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-story-v4__panel.is-swapping .about-story-v4__panelTitle,
.about-story-v4__panel.is-swapping .about-story-v4__panelDesc,
.about-story-v4__panel.is-swapping .about-story-v4__proofText {
  opacity: 0.3;
  transform: translateY(4px);
}

.about-story-v4__panelFooter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-story-v4__panelFooter .chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: #33557b;
  font-size: 0.81rem;
  font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
  .about-story-v4__step:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 100, 212, 0.22);
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 980px) {
  .about-story-v4__grid {
    grid-template-columns: 1fr;
  }

  .about-story-v4__rail::before {
    bottom: 72px;
  }
}

@media (max-width: 768px) {
  .about-story-v4 .section-head.center {
    margin-bottom: 14px;
  }

  .about-story-v4__rail,
  .about-story-v4__panel {
    border-radius: 18px;
    padding: 14px;
  }

  .about-story-v4__step {
    padding: 11px 11px 11px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-story-v4__step,
  .about-story-v4__panel,
  .about-story-v4__panel::before {
    transition: none !important;
    animation: none !important;
  }
}

/* ABOUT STORY V5 — Unified Story Console */
.about-story-v5 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(72% 112% at 6% 0%, rgba(31, 100, 212, 0.1), rgba(31, 100, 212, 0) 64%),
    radial-gradient(64% 104% at 96% 8%, rgba(15, 163, 177, 0.08), rgba(15, 163, 177, 0) 66%),
    var(--bg);
}

.about-story-v5::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(31, 100, 212, 0.2) 1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.about-story-v5 .container {
  position: relative;
  z-index: 1;
}

.about-story-v5 .section-head.center {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 14px;
}

.about-story-v5 .section-head.center .lead {
  max-width: 62ch;
  margin: 10px auto 0;
}

.about-story-v5__console {
  --story-tone-1: color-mix(in srgb, var(--primary) 72%, var(--accent));
  --story-tone-2: color-mix(in srgb, var(--accent) 68%, #8ce4ef);
  position: relative;
  display: grid;
  grid-template-columns: minmax(288px, 0.92fr) minmax(0, 1.08fr);
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.92)),
    radial-gradient(90% 140% at 94% 14%, color-mix(in srgb, var(--story-tone-1) 10%, transparent), transparent 74%);
  overflow: hidden;
}

.about-story-v5__console::before {
  content: "";
  position: absolute;
  inset: -22%;
  pointer-events: none;
  background:
    radial-gradient(44% 38% at 78% 16%, color-mix(in srgb, var(--story-tone-1) 14%, transparent), transparent 72%),
    radial-gradient(38% 34% at 24% 82%, color-mix(in srgb, var(--story-tone-2) 12%, transparent), transparent 76%);
  filter: blur(16px);
  opacity: 0.75;
}

.about-story-v5__console>* {
  position: relative;
  z-index: 1;
}

.about-story-v5__console[data-active="problem"] {
  --story-tone-1: color-mix(in srgb, var(--primary) 82%, #3d78d8);
  --story-tone-2: color-mix(in srgb, var(--primary) 60%, var(--accent));
}

.about-story-v5__console[data-active="frustration"] {
  --story-tone-1: color-mix(in srgb, var(--primary) 58%, var(--accent));
  --story-tone-2: color-mix(in srgb, var(--accent) 62%, #6bcddd);
}

.about-story-v5__console[data-active="decision"] {
  --story-tone-1: color-mix(in srgb, var(--primary) 70%, var(--accent));
  --story-tone-2: color-mix(in srgb, var(--accent) 70%, #8ce4ef);
}

.about-story-v5__console[data-active="standard"] {
  --story-tone-1: color-mix(in srgb, var(--primary) 74%, #488de0);
  --story-tone-2: color-mix(in srgb, var(--accent) 72%, #98e7ee);
}

.about-story-v5__steps {
  position: relative;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.about-story-v5__steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  bottom: 94px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg,
      color-mix(in srgb, var(--story-tone-1) 42%, transparent),
      color-mix(in srgb, var(--story-tone-1) 14%, transparent) 54%,
      color-mix(in srgb, var(--story-tone-2) 20%, transparent));
  opacity: 0.7;
}

.about-story-v5__step {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
  padding: 12px 12px 12px 14px;
  display: grid;
  grid-template-columns: 18px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 4px;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.about-story-v5__step .dot {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(31, 100, 212, 0.45);
  background: #fff;
  margin-top: 4px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.about-story-v5__step .k {
  grid-column: 2;
  grid-row: 1;
  letter-spacing: 0.08em;
  font-size: 0.69rem;
  font-weight: 700;
  color: #2a5ea8;
}

.about-story-v5__step .t {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  color: #3f5f83;
  line-height: 1.4;
}

.about-story-v5__step.is-active {
  border-color: color-mix(in srgb, var(--story-tone-1) 30%, rgba(15, 23, 42, 0.08));
  box-shadow: var(--shadow-md);
  background:
    radial-gradient(120% 180% at 0% 0%, color-mix(in srgb, var(--story-tone-1) 12%, transparent), transparent 72%),
    #fff;
  transform: translateY(-1px);
}

.about-story-v5__step.is-active .dot {
  border-color: color-mix(in srgb, var(--story-tone-1) 88%, #1f4f9f);
  background: var(--story-tone-1);
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 6px color-mix(in srgb, var(--story-tone-1) 14%, transparent);
}

.about-story-v5__pills {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-story-v5__pills .pill {
  border: 1px solid color-mix(in srgb, var(--story-tone-1) 20%, rgba(15, 23, 42, 0.08));
  background: rgba(236, 245, 255, 0.82);
  color: #1f4f9f;
}

.about-story-v5__panel {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  padding: 18px 20px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.about-story-v5__panelTop .pill--soft {
  border: 1px solid color-mix(in srgb, var(--story-tone-1) 22%, rgba(15, 23, 42, 0.08));
  background: rgba(236, 245, 255, 0.85);
  color: #1f4f9f;
}

.about-story-v5__title {
  margin: 8px 0 0;
  line-height: 1.18;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-story-v5__desc {
  margin: 8px 0 0;
  color: #3f5f83;
  line-height: 1.58;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-story-v5__proofUI {
  --proof-tone-1: var(--story-tone-1);
  --proof-tone-2: var(--story-tone-2);
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.93), rgba(238, 247, 255, 0.88));
  min-height: clamp(242px, 30vw, 276px);
  padding: 14px;
  overflow: hidden;
}

.about-story-v5__proofUI::before {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  background:
    radial-gradient(40% 44% at 82% 12%, color-mix(in srgb, var(--proof-tone-1) 18%, transparent), transparent 70%),
    radial-gradient(36% 38% at 18% 86%, color-mix(in srgb, var(--proof-tone-2) 14%, transparent), transparent 74%);
  filter: blur(16px);
  opacity: 0.85;
}

.about-story-v5__proofUI>* {
  position: relative;
  z-index: 1;
}

.about-story-v5__proofUI.is-problem {
  --proof-tone-1: color-mix(in srgb, var(--primary) 84%, #3f7ddc);
  --proof-tone-2: color-mix(in srgb, var(--primary) 56%, var(--accent));
}

.about-story-v5__proofUI.is-frustration {
  --proof-tone-1: color-mix(in srgb, var(--primary) 60%, var(--accent));
  --proof-tone-2: color-mix(in srgb, var(--accent) 58%, #6ecddf);
}

.about-story-v5__proofUI.is-decision {
  --proof-tone-1: color-mix(in srgb, var(--primary) 70%, var(--accent));
  --proof-tone-2: color-mix(in srgb, var(--accent) 70%, #8fe6ee);
}

.about-story-v5__proofUI.is-standard {
  --proof-tone-1: color-mix(in srgb, var(--primary) 72%, #4f8edf);
  --proof-tone-2: color-mix(in srgb, var(--accent) 64%, #9be8ef);
}

.about-story-v5 .proofUI__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.about-story-v5 .proofUI__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #223c62;
  font-size: 0.82rem;
  font-weight: 700;
}

.about-story-v5 .proofUI__badge {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--proof-tone-1), var(--proof-tone-2));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--proof-tone-1) 16%, transparent);
}

.about-story-v5 .proofUI__status {
  border: 1px solid color-mix(in srgb, var(--proof-tone-1) 24%, rgba(15, 23, 42, 0.08));
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 5px 9px;
  color: #2c5e9f;
  font-size: 0.75rem;
  font-weight: 600;
}

.about-story-v5 .proofUI__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-story-v5 .proofUI__card {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.86);
  padding: 10px;
  display: grid;
  gap: 6px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  min-height: 94px;
}

.about-story-v5 .proofUI__label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  font-weight: 700;
  color: #3c5f89;
}

.about-story-v5 .proofUI__value {
  color: #10213f;
  font-weight: 700;
  line-height: 1.34;
}

.about-story-v5 .proofUI__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: #4a698f;
  font-size: 0.76rem;
  line-height: 1.35;
}

.about-story-v5 .proofUI__bar {
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--proof-tone-1) 44%, transparent), color-mix(in srgb, var(--proof-tone-2) 44%, transparent));
}

.about-story-v5 .proofUI__stamp {
  justify-self: start;
  margin-top: 2px;
  border: 1px solid color-mix(in srgb, var(--proof-tone-1) 26%, rgba(15, 23, 42, 0.08));
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #2e5f9e;
  background: rgba(255, 255, 255, 0.92);
}

.about-story-v5 .proofUI__spark {
  height: 24px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 8% 62%, color-mix(in srgb, var(--proof-tone-1) 30%, transparent) 0 3px, transparent 3.2px),
    radial-gradient(circle at 34% 46%, color-mix(in srgb, var(--proof-tone-1) 36%, transparent) 0 3px, transparent 3.2px),
    radial-gradient(circle at 62% 58%, color-mix(in srgb, var(--proof-tone-2) 34%, transparent) 0 3px, transparent 3.2px),
    radial-gradient(circle at 88% 30%, color-mix(in srgb, var(--proof-tone-2) 38%, transparent) 0 3px, transparent 3.2px),
    linear-gradient(95deg, rgba(31, 100, 212, 0.08), rgba(15, 163, 177, 0.1));
}

.about-story-v5__fix {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.86);
  padding: 11px 12px;
}

.about-story-v5__fixLabel {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #2a5ea8;
}

.about-story-v5__fixText {
  margin-top: 6px;
  color: #3f5f83;
  line-height: 1.48;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-story-v5__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-story-v5__chips .chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #33557b;
  font-size: 0.81rem;
  font-weight: 600;
}

.about-story-v5__panel.is-swapping .about-story-v5__title,
.about-story-v5__panel.is-swapping .about-story-v5__desc,
.about-story-v5__panel.is-swapping .about-story-v5__fixText {
  opacity: 0.3;
  transform: translateY(4px);
}

@media (hover: hover) and (pointer: fine) {
  .about-story-v5__step:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--story-tone-1) 24%, rgba(15, 23, 42, 0.08));
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 920px) {
  .about-story-v5__console {
    grid-template-columns: 1fr;
  }

  .about-story-v5__panel {
    border-left: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .about-story-v5__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-v5__steps::before {
    display: none;
  }

  .about-story-v5__pills {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .about-story-v5 .section-head.center {
    margin-bottom: 12px;
  }

  .about-story-v5__console {
    border-radius: 18px;
  }

  .about-story-v5__steps,
  .about-story-v5__panel {
    padding: 14px;
  }

  .about-story-v5__steps {
    grid-template-columns: 1fr;
  }

  .about-story-v5__proofUI {
    min-height: 230px;
  }

  .about-story-v5 .proofUI__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-story-v5__console::before,
  .about-story-v5__step,
  .about-story-v5__step .dot,
  .about-story-v5__title,
  .about-story-v5__desc,
  .about-story-v5__fixText {
    transition: none !important;
    animation: none !important;
  }
}

/* ABOUT STORY V5 — Layout Bugfix Overrides */
.about-story-v5 * {
  box-sizing: border-box;
}

.about-story-v5__console {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 255, 0.86));
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.about-story-v5__console::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: calc(18px + min(440px, 38vw));
  width: 1px;
  background: rgba(15, 23, 42, 0.06);
  pointer-events: none;
}

.about-story-v5__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.about-story-v5__step {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  padding: 14px;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  cursor: pointer;
}

.about-story-v5__step .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(31, 100, 212, 0.35);
  margin-top: 3px;
}

.about-story-v5__step.is-active {
  border-color: rgba(31, 100, 212, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 255, 0.88));
  box-shadow: var(--shadow-md);
}

.about-story-v5__step.is-active .dot {
  border-color: rgba(31, 100, 212, 0.75);
  background: rgba(31, 100, 212, 0.15);
}

.about-story-v5__panel {
  min-width: 0;
  min-height: 0;
  border-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
}

.about-story-v5__panelTop {
  padding: 6px 6px 0 6px;
}

.about-story-v5__title {
  margin: 10px 0 6px;
}

.about-story-v5__desc {
  margin: 0;
  max-width: 62ch;
}

.about-story-v5__proofUI {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.about-story-v5__proofUI::before {
  content: "";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(circle at 20% 10%, rgba(31, 100, 212, 0.14), transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(15, 163, 177, 0.12), transparent 60%);
  pointer-events: none;
}

.about-story-v5 .proofUI__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  z-index: 1;
}

.about-story-v5 .proofUI__grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.about-story-v5 .proofUI__card {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px;
  min-width: 0;
}

.about-story-v5 .proofUI__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.about-story-v5 .proofUI__value {
  margin-top: 6px;
  font-weight: 800;
  color: var(--ink);
}

.about-story-v5 .proofUI__meta {
  margin-top: 6px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text);
  font-size: 0.9rem;
}

.about-story-v5 .proofUI__bar {
  margin-top: 10px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 100, 212, 0.25), rgba(15, 163, 177, 0.18));
}

.about-story-v5 .proofUI__stamp {
  margin-top: 10px;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.25);
  background: rgba(31, 100, 212, 0.08);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary);
}

.about-story-v5 .proofUI__spark {
  margin-top: 10px;
  height: 28px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 10% 70%, rgba(31, 100, 212, 0.35) 0 3px, transparent 4px),
    radial-gradient(circle at 35% 45%, rgba(31, 100, 212, 0.35) 0 3px, transparent 4px),
    radial-gradient(circle at 60% 55%, rgba(15, 163, 177, 0.32) 0 3px, transparent 4px),
    radial-gradient(circle at 85% 30%, rgba(31, 100, 212, 0.35) 0 3px, transparent 4px),
    linear-gradient(180deg, rgba(245, 248, 255, 0.9), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(15, 23, 42, 0.06);
}

@media (max-width: 980px) {
  .about-story-v5__console {
    grid-template-columns: 1fr;
  }

  .about-story-v5__console::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-story-v5 * {
    transition: none !important;
    animation: none !important;
  }
}

/* ABOUT STORY V5 — Color Sync Patch */
.about-story-v5 {
  background: var(--bg);
}

.about-story-v5__console,
.about-story-v5__console[data-active="problem"],
.about-story-v5__console[data-active="frustration"],
.about-story-v5__console[data-active="decision"],
.about-story-v5__console[data-active="standard"] {
  --story-tone-1: var(--primary);
  --story-tone-2: color-mix(in srgb, var(--primary) 62%, var(--accent));
}

.about-story-v5__proofUI,
.about-story-v5__proofUI.is-problem,
.about-story-v5__proofUI.is-frustration,
.about-story-v5__proofUI.is-decision,
.about-story-v5__proofUI.is-standard {
  --proof-tone-1: var(--primary);
  --proof-tone-2: color-mix(in srgb, var(--primary) 55%, var(--accent));
}

/* ===== ABOUT STORY FIX (ISOLATED) ===== */
.about-story-fix,
.about-story-fix * {
  box-sizing: border-box;
}

.about-story-fix .container {
  position: relative;
}

/* The big white rounded wrapper (the console) */
.about-story-fix .about-story-v5__console,
.about-story-fix .about-story__console,
.about-story-fix .story-console,
.about-story-fix .our-story-console {
  display: grid !important;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr) !important;
  gap: 20px !important;
  align-items: start !important;
  /* stop stretch causing big empty left */
  padding: 22px !important;
  border-radius: 24px !important;
  overflow: hidden !important;
}

/* If your console wrapper has a different class, target the FIRST direct grid container under the section */
.about-story-fix>.container>div {
  /* only apply if it’s the console; keep safe by requiring 2 children */
}

.about-story-fix>.container>div:has(> :nth-child(2)) {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

/* Left column: steps list */
.about-story-fix .about-story-v5__steps,
.about-story-fix .story-steps,
.about-story-fix .our-story-steps,
.about-story-fix .steps {
  min-width: 0 !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-self: start !important;
}

/* Remove accidental huge height / stretch */
.about-story-fix .about-story-v5__steps>* {
  max-width: 100%;
}

/* Each step card */
.about-story-fix .about-story-v5__step,
.about-story-fix .story-step,
.about-story-fix .step {
  width: 100% !important;
  min-width: 0 !important;
  text-align: left !important;
  border-radius: 16px !important;
  padding: 14px 14px !important;
  display: grid !important;
  grid-template-columns: 16px 1fr !important;
  gap: 10px !important;
  align-items: start !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06) !important;
}

/* Active step */
.about-story-fix .about-story-v5__step.is-active,
.about-story-fix .story-step.is-active {
  border-color: rgba(31, 100, 212, 0.28) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.92)) !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10) !important;
}

/* Dot alignment + size */
.about-story-fix .about-story-v5__step .dot,
.about-story-fix .about-story-v5__step .about-story-v5__dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
  border: 2px solid rgba(31, 100, 212, 0.35) !important;
  margin-top: 3px !important;
}

.about-story-fix .about-story-v5__step.is-active .dot,
.about-story-fix .about-story-v5__step.is-active .about-story-v5__dot {
  border-color: rgba(31, 100, 212, 0.8) !important;
  background: rgba(31, 100, 212, 0.14) !important;
}

/* Chips under steps: prevent them from forcing height/width issues */
.about-story-fix .about-story-v5__pills,
.about-story-fix .about-story-v5__chips,
.about-story-fix .story-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 10px !important;
}

/* Right column: panel */
.about-story-fix .about-story-v5__panel,
.about-story-fix .story-panel,
.about-story-fix .our-story-panel {
  min-width: 0 !important;
  /* grid overflow fix */
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  align-self: start !important;
}

/* Tighten title/paragraph spacing so it doesn’t look floating */
.about-story-fix .about-story-v5__panelTop,
.about-story-fix .panel-top {
  padding: 0 !important;
}

.about-story-fix .about-story-v5__title,
.about-story-fix h3 {
  margin: 8px 0 6px !important;
}

.about-story-fix .about-story-v5__desc,
.about-story-fix p {
  margin: 0 !important;
}

/* Proof UI wrapper (Checkout Preview slab) */
.about-story-fix .about-story-v5__proofUI,
.about-story-fix .proofUI,
.about-story-fix .checkout-preview {
  border-radius: 18px !important;
  padding: 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  background: rgba(255, 255, 255, 0.90) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08) !important;
}

/* Proof UI grid: prevent card overflow + ensure consistent height */
.about-story-fix .proofUI__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.about-story-fix .proofUI__card {
  min-width: 0 !important;
  border-radius: 14px !important;
  padding: 12px !important;
}

/* “What we fix” slab + chips (stop odd spacing) */
.about-story-fix .about-story-v5__fix,
.about-story-fix .what-we-fix {
  margin-top: 8px !important;
}

.about-story-fix .about-story-v5__chips {
  margin-top: 4px !important;
}

/* RESPONSIVE: stack cleanly */
@media (max-width: 980px) {

  .about-story-fix .about-story-v5__console,
  .about-story-fix .about-story__console,
  .about-story-fix .story-console,
  .about-story-fix .our-story-console,
  .about-story-fix>.container>div:has(> :nth-child(2)) {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 18px !important;
  }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  .about-story-fix * {
    transition: none !important;
    animation: none !important;
  }
}

/* ===== END ABOUT STORY FIX ===== */

/* ABOUT STORY V6 — Problem / Story / Solution */
.about-story-v6 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(72% 110% at 6% 0%, rgba(31, 100, 212, 0.09), rgba(31, 100, 212, 0) 62%),
    radial-gradient(66% 106% at 96% 8%, rgba(15, 163, 177, 0.07), rgba(15, 163, 177, 0) 64%),
    var(--bg);
}

.about-story-v6::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(rgba(31, 100, 212, 0.22) 1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

.about-story-v6 .container {
  position: relative;
  z-index: 1;
}

.about-story-v6__head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 18px;
}

.about-story-v6__head .lead {
  max-width: 72ch;
  margin: 10px auto 0;
}

.about-story-v6__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.3vw, 20px);
  align-items: stretch;
}

.about-story-v6__panel {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  padding: clamp(16px, 2vw, 20px);
  display: grid;
  gap: 10px;
}

.about-story-v6__panel--story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 150% at 50% -10%, rgba(31, 100, 212, 0.12), rgba(31, 100, 212, 0) 64%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 255, 0.88));
}

.about-story-v6__panel--story::before {
  content: "";
  position: absolute;
  inset: auto -10% -55% -10%;
  height: 180px;
  pointer-events: none;
  background: radial-gradient(62% 70% at 50% 0%, rgba(15, 163, 177, 0.16), rgba(15, 163, 177, 0));
}

.about-story-v6__kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #2a5ea8;
}

.about-story-v6__panel h3 {
  margin: 0;
  line-height: 1.2;
}

.about-story-v6__panel p {
  margin: 0;
  color: #3f5f83;
  line-height: 1.58;
}

.about-story-v6__list {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.about-story-v6__list li {
  position: relative;
  padding-left: 18px;
  color: #355779;
  line-height: 1.45;
}

.about-story-v6__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(31, 100, 212, 0.7), rgba(15, 163, 177, 0.68));
}

.about-story-v6__signal {
  margin: 4px 0 2px;
  display: grid;
  gap: 8px;
}

.about-story-v6__signal span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 100, 212, 0.2), rgba(15, 163, 177, 0.2));
}

.about-story-v6__signal span:nth-child(1) {
  width: 92%;
}

.about-story-v6__signal span:nth-child(2) {
  width: 78%;
}

.about-story-v6__signal span:nth-child(3) {
  width: 86%;
}

.about-story-v6__note {
  margin-top: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.85);
  color: #284a72;
}

.about-story-v6__chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.about-story-v6__chips .pill {
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(236, 245, 255, 0.84);
  color: #1f4f9f;
}

@media (hover: hover) and (pointer: fine) {
  .about-story-v6__panel:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 100, 212, 0.2);
  }
}

@media (max-width: 1024px) {
  .about-story-v6__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-story-v6__head {
    margin-bottom: 14px;
  }

  .about-story-v6__panel {
    border-radius: 16px;
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-story-v6__panel,
  .about-story-v6__panel * {
    transition: none !important;
    animation: none !important;
  }
}

/* ABOUT STORY V6 — Advanced Visual Upgrade */
.about-story-v6__shell {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 255, 0.86));
  box-shadow: var(--shadow-sm);
  padding: clamp(14px, 2vw, 20px);
  overflow: hidden;
}

.about-story-v6__shell::before {
  content: "";
  position: absolute;
  inset: -25% 35% auto -20%;
  height: 220px;
  pointer-events: none;
  background: radial-gradient(56% 62% at 40% 40%, rgba(31, 100, 212, 0.15), rgba(31, 100, 212, 0));
}

.about-story-v6__shell::after {
  content: "";
  position: absolute;
  inset: auto -18% -32% 42%;
  height: 240px;
  pointer-events: none;
  background: radial-gradient(56% 68% at 50% 50%, rgba(15, 163, 177, 0.14), rgba(15, 163, 177, 0));
}

.about-story-v6__shell>* {
  position: relative;
  z-index: 1;
}

.about-story-v6__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.12fr) minmax(0, 0.95fr);
}

.about-story-v6__panel {
  gap: 12px;
  min-height: 100%;
}

.about-story-v6__panel-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-story-v6__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: linear-gradient(145deg, rgba(236, 245, 255, 0.95), rgba(224, 241, 255, 0.86));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2a5ea8;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
}

.about-story-v6__icon svg {
  width: 16px;
  height: 16px;
}

.about-story-v6__kicker {
  margin: 0;
}

.about-story-v6__pulse {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-story-v6__pulse span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.16);
  background: rgba(235, 245, 255, 0.82);
  color: #2f5c96;
  font-size: 0.78rem;
  font-weight: 600;
}

.about-story-v6__track {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.84);
  padding: 10px 12px;
  display: grid;
  gap: 8px;
}

.about-story-v6__track div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #355779;
  line-height: 1.4;
}

.about-story-v6__track div span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(31, 100, 212, 0.75), rgba(15, 163, 177, 0.72));
  flex: 0 0 auto;
}

.about-story-v6__proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-story-v6__proof-grid div {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  padding: 9px 10px;
  display: grid;
  gap: 4px;
}

.about-story-v6__proof-grid small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #52719a;
  font-weight: 700;
}

.about-story-v6__proof-grid strong {
  color: #1a365c;
  line-height: 1.35;
  font-size: 0.89rem;
}

.about-story-v6__chips {
  margin-top: 16px;
}

@media (hover: hover) and (pointer: fine) {
  .about-story-v6__panel:hover .about-story-v6__icon {
    border-color: rgba(31, 100, 212, 0.34);
    box-shadow: 0 10px 20px rgba(31, 100, 212, 0.13);
  }
}

@media (max-width: 1200px) {
  .about-story-v6__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-v6__panel--story {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .about-story-v6__grid {
    grid-template-columns: 1fr;
  }

  .about-story-v6__panel--story {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .about-story-v6__proof-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT STORY V6 — Color Synchronization */
.about-story-v6 {
  background: var(--bg);
}

.about-story-v6::before {
  opacity: 0.1;
  background-image: radial-gradient(rgba(31, 100, 212, 0.16) 1px, transparent 1.4px);
}

.about-story-v6__shell {
  border-color: var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.88));
  box-shadow: var(--shadow-sm);
}

.about-story-v6__shell::before {
  background: radial-gradient(56% 62% at 40% 40%, rgba(31, 100, 212, 0.1), rgba(31, 100, 212, 0));
}

.about-story-v6__shell::after {
  background: radial-gradient(56% 68% at 50% 50%, rgba(15, 163, 177, 0.09), rgba(15, 163, 177, 0));
}

.about-story-v6__panel,
.about-story-v6__panel--story {
  background: var(--card);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.about-story-v6__panel--story::before {
  display: none;
}

.about-story-v6__kicker,
.about-story-v6__icon {
  color: var(--primary);
}

.about-story-v6__icon {
  border-color: color-mix(in srgb, var(--primary) 24%, var(--border));
  background: linear-gradient(145deg, rgba(236, 245, 255, 0.92), rgba(231, 243, 255, 0.86));
}

.about-story-v6__panel p,
.about-story-v6__list li,
.about-story-v6__track div,
.about-story-v6__proof-grid strong,
.about-story-v6__note {
  color: var(--text);
}

.about-story-v6__proof-grid div,
.about-story-v6__track,
.about-story-v6__note {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.9);
}

.about-story-v6__proof-grid small {
  color: var(--muted);
}

.about-story-v6__chips .pill,
.about-story-v6__pulse span {
  border-color: color-mix(in srgb, var(--primary) 20%, var(--border));
  background: rgba(236, 245, 255, 0.82);
  color: var(--primary);
}

/* Payment Methods Page (trust-first redesign) */
.payments-page .paypage-hero {
  position: relative;
  overflow: clip;
  padding-top: calc(var(--section-y-desktop) + 84px);
  padding-bottom: calc(var(--section-y-desktop) - 12px);
  background: linear-gradient(180deg, #d8e8ff 0%, #eaf3ff 36%, #f4f9ff 72%, #f8fbff 100%);
}

.paypage-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 72% at 10% -18%, rgba(15, 163, 177, 0.18), transparent 64%),
    radial-gradient(110% 66% at 92% -16%, rgba(31, 100, 212, 0.22), transparent 62%);
}

.paypage-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(31, 100, 212, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.52;
}

.paypage-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

.paypage-hero__content {
  max-width: 980px;
  text-align: center;
  margin: 0 auto;
}

.paypage-hero__content .eyebrow {
  margin-bottom: 6px;
}

.paypage-hero__content h1 {
  margin: 0 auto;
  max-width: 13ch;
  font-family: "Syne", "Inter", system-ui, sans-serif;
  font-size: clamp(2.35rem, 6.2vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #0a1733;
}

.paypage-hero__line {
  display: block;
}

.paypage-hero__content h1 span span {
  background: linear-gradient(95deg, #1f64d4 16%, #0fa3b1 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.paypage-hero__subheadline {
  margin: 16px auto 0;
  max-width: 56ch;
  font-size: clamp(1rem, 1.9vw, 1.16rem);
  color: #1e3f6e;
  font-weight: 620;
}

.paypage-hero__chips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.paypage-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 13px;
  border: 1px solid rgba(31, 100, 212, 0.22);
  background: rgba(255, 255, 255, 0.74);
  color: #1f3e68;
  font-size: 0.82rem;
  font-weight: 600;
}

.paypage-hero__chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0fa3b1, #1f64d4);
}

.paypage-hero__actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.paypage-hero__actions .button {
  min-width: 200px;
}

.paypage-hero__microline {
  margin-top: 10px;
  color: #5a7092;
  font-size: 0.84rem;
}

.paypage-hero__signal {
  margin: 14px auto 0;
  width: min(460px, 92vw);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      rgba(31, 100, 212, 0),
      rgba(31, 100, 212, 0.54),
      rgba(15, 163, 177, 0.58),
      rgba(31, 100, 212, 0));
  background-size: 220% 100%;
  animation: pay-hero-signal 8s linear infinite;
}

@keyframes pay-hero-signal {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 220% 50%;
  }
}

.paypage-hero-visual {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.pay-trust-board {
  position: relative;
  width: min(920px, 100%);
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 14px 0 6px;
}

.pay-trust-board::before {
  content: "";
  position: absolute;
  inset: 20px 3% 0;
  border-radius: 50px;
  background:
    radial-gradient(95% 160% at 50% 50%, rgba(255, 255, 255, 0.7), rgba(238, 246, 255, 0.2)),
    linear-gradient(135deg, rgba(31, 100, 212, 0.08), rgba(15, 163, 177, 0.08));
  border: 1px solid rgba(31, 100, 212, 0.16);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
  z-index: 0;
}

.pay-trust-board__core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  justify-items: center;
  padding: 15px 22px;
  border-radius: 18px;
  background: linear-gradient(140deg, #0c2e63, #0a4bc9);
  color: #ffffff;
  border: 1px solid rgba(182, 213, 255, 0.5);
  box-shadow: 0 18px 34px rgba(10, 36, 88, 0.35);
}

.pay-trust-board__core strong {
  font-size: 0.93rem;
  letter-spacing: 0.08em;
}

.pay-trust-board__core span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
}

.pay-trust-board__row {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pay-trust-board__row:nth-child(2) {
  transform: translateX(-24px);
}

.pay-trust-board__row:nth-child(3) {
  transform: translateX(24px);
}

.pay-trust-board__row--gateway {
  transform: none !important;
  margin-top: 2px;
}

.pay-logo-tile {
  min-width: 150px;
  min-height: 62px;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  padding: 9px 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pay-logo-tile--gateway {
  min-width: 190px;
}

.pay-logo-tile img {
  max-width: 100%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pay-logo-tile--compact img {
  max-height: 31px;
}

.pay-method-name {
  display: block;
  margin-top: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #475569;
  text-align: center;
  letter-spacing: 0.01em;
}


.pay-trust-icons {
  width: min(860px, 100%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-trust-icons span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: #24476f;
  font-size: 0.78rem;
  font-weight: 600;
}

.pay-trust-icons img {
  width: 14px;
  height: 14px;
}

.pay-cert-strip {
  width: min(860px, 100%);
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pay-cert-chip {
  min-width: 160px;
  min-height: 62px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
}

.pay-cert-chip img {
  width: 100%;
  max-width: 145px;
  height: 40px;
  object-fit: contain;
}

.paypage-methods {
  background:
    radial-gradient(70% 88% at 92% 0%, rgba(15, 163, 177, 0.1), transparent 70%),
    #f8fbff;
}

.paypage-market-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
  flex-wrap: wrap;
}

.paypage-market-toggle__btn {
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: #ffffff;
  border-radius: 999px;
  color: #1e3558;
  font-weight: 700;
  min-width: 130px;
  padding: 10px 16px;
  cursor: pointer;
}

.paypage-market-toggle__btn.is-active {
  background: linear-gradient(135deg, #1f64d4, #0fa3b1);
  color: #ffffff;
  border-color: transparent;
}

.pay-mosaic {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pay-mosaic__card {
  position: relative;
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(165deg, #ffffff 0%, #f5faff 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.pay-mosaic__card::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(31, 100, 212, 0.2), rgba(15, 163, 177, 0.2));
}

.pay-mosaic__card--gateway {
  background: linear-gradient(160deg, #f2f8ff 0%, #e7f2ff 100%);
  border-color: rgba(31, 100, 212, 0.28);
}

.pay-mosaic__label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #1e4e9f;
}

.pay-logo-rack {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pay-logo-rack--single {
  grid-template-columns: 1fr;
}

.pay-logo-rack img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  padding: 10px 14px;
}

.pay-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pay-logo-item img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  padding: 10px 14px;
}

.pay-logo-item .pay-method-name {
  margin-top: 2px;
  font-size: 0.72rem;
}


.pay-mini-checks {
  margin: 12px 0 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.pay-mini-checks li {
  position: relative;
  padding-left: 20px;
  color: #3f5471;
  font-size: 0.86rem;
}

.pay-mini-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0f7ebd;
  font-weight: 800;
}

.pay-gateway {
  background:
    radial-gradient(68% 95% at 6% 0%, rgba(31, 100, 212, 0.08), transparent 72%),
    #ffffff;
}

.pay-gateway__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.pay-gateway__copy {
  border-radius: 22px;
  background: linear-gradient(150deg, #0f1e37, #0f2f67);
  border: 1px solid rgba(153, 188, 255, 0.24);
  box-shadow: 0 20px 40px rgba(11, 21, 44, 0.34);
  padding: 24px;
}

.pay-gateway__copy h2,
.pay-gateway__copy p,
.pay-gateway__copy .eyebrow {
  color: #ffffff;
}

.pay-gateway__copy .eyebrow {
  opacity: 0.86;
}

.pay-check-stack {
  margin: 12px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pay-check-stack li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pay-check-stack li span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0fa3b1, #1f64d4);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.pay-check-stack li strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
}

.pay-check-stack--dark li strong {
  color: #20395f;
}

.pay-gateway-cloud {
  border-radius: 22px;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: linear-gradient(160deg, #f4f9ff 0%, #e9f4ff 100%);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 12px;
  align-content: start;
}

.pay-gateway-cloud__layer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pay-gateway-cloud__layer img {
  height: 48px;
  width: auto;
  max-width: 148px;
  padding: 9px 13px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
  object-fit: contain;
}

.pay-gateway-cloud__layer--top img {
  height: 52px;
}

.pay-gateway-cloud__layer img[src$="phonepe.svg"] {
  height: 42px;
  max-width: 110px;
}

.pay-gateway-cloud__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pay-gateway-cloud__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 100, 212, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: #21436c;
  font-size: 0.78rem;
  font-weight: 600;
}

.pay-gateway-cloud__trust img {
  width: 14px;
  height: 14px;
}

.pay-gateway-cloud__footer {
  margin-top: 4px;
  border-radius: 14px;
  border: 1px dashed rgba(31, 100, 212, 0.28);
  background: rgba(255, 255, 255, 0.74);
  padding: 12px;
}

.pay-gateway-cloud__footer p {
  margin: 0;
  font-size: 0.86rem;
  color: #2a4568;
}

.pay-flow-track {
  list-style: none;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pay-flow-track li {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(165deg, #ffffff 0%, #f6fbff 90%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.pay-flow-track__index {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1f64d4, #0fa3b1);
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
}

.pay-flow-track h3 {
  margin-top: 12px;
}

.pay-flow-track p {
  margin: 0;
  color: #516786;
}

.pay-fee-board {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.paypage-fees__table {
  width: 100%;
  border-collapse: collapse;
}

.paypage-fees__table th,
.paypage-fees__table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.paypage-fees__table th {
  background: linear-gradient(180deg, #f3f8ff, #ecf4ff);
  color: #1b3c67;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paypage-fees__table tbody tr:nth-child(2n) td {
  background: rgba(247, 251, 255, 0.78);
}

.pay-fee-board__note {
  margin: 0;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #607089;
  background: #f9fcff;
}

.pay-support {
  background:
    radial-gradient(78% 88% at 95% 0%, rgba(15, 163, 177, 0.08), transparent 72%),
    #ffffff;
}

.pay-support__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.pay-support-panel,
.pay-support-proof {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: linear-gradient(165deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.09);
  padding: 22px;
}

.pay-support-panel__actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-support-proof__logos {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pay-support-proof__logos img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  padding: 10px;
}

.pay-support-proof__foot {
  margin: 12px 0 0;
  color: #5e7393;
  font-size: 0.86rem;
}

.pay-faq-list {
  display: grid;
  gap: 10px;
}

.pay-faq-item {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  padding: 0 14px;
}

.pay-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-weight: 700;
  color: #0f2347;
}

.pay-faq-item summary::-webkit-details-marker {
  display: none;
}

.pay-faq-item[open] summary {
  color: #1d4ed8;
}

.pay-faq-item p {
  margin: 0;
  padding: 0 0 14px;
  color: #516786;
}

@media (max-width: 1100px) {

  .pay-mosaic,
  .pay-flow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pay-gateway__grid {
    grid-template-columns: 1fr;
  }

  .pay-trust-board__row:nth-child(2),
  .pay-trust-board__row:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 768px) {
  .payments-page .paypage-hero {
    padding-top: calc(var(--section-y-mobile) + 26px);
    padding-bottom: var(--section-y-mobile);
  }

  .paypage-hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .paypage-hero__actions .button {
    width: 100%;
  }

  .pay-trust-board {
    gap: 10px;
  }

  .pay-trust-board::before {
    inset: 18px 1% 0;
    border-radius: 26px;
  }

  .pay-logo-tile {
    min-width: 132px;
    height: 56px;
    padding: 8px 11px;
  }

  .pay-logo-tile--gateway {
    min-width: 150px;
  }

  .pay-logo-tile img {
    max-height: 32px;
  }

  .pay-mosaic,
  .pay-flow-track,
  .pay-support__grid,
  .pay-support-proof__logos {
    grid-template-columns: 1fr;
  }

  .pay-gateway-cloud__layer img {
    height: 44px;
    max-width: 128px;
  }

  .pay-gateway-cloud__layer--top img {
    height: 48px;
  }

  .paypage-fees {
    overflow-x: hidden;
  }

  .pay-fee-board {
    overflow-x: auto;
  }

  .paypage-fees__table {
    min-width: 640px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .paypage-hero__signal,
  .pay-faq-item,
  .pay-mosaic__card,
  .pay-flow-track li {
    transition: none !important;
    animation: none !important;
  }
}

/* Homepage synced pricing section */
.pricing-preview--synced {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.pricing-sync-shell {
  margin-top: 14px;
  min-height: 280px;
}

.pricing-sync-head {
  text-align: center;
}

.pricing-sync-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: #0f172a;
}

.pricing-sync-loading {
  border: 1px solid #dbe8ff;
  background: linear-gradient(90deg, #f4f8ff 0%, #eef5ff 50%, #f4f8ff 100%);
  background-size: 220% 100%;
  animation: pricingSyncPulse 1.25s ease-in-out infinite;
  color: #2853a8;
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  font-weight: 700;
}

.backToTopBtn {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 120;
  border: 1px solid rgba(37, 99, 235, 0.45);
  background: #2563eb;
  color: #ffffff;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
}

.backToTopBtn svg {
  width: 24px;
  height: 24px;
}

.backToTopBtn:hover,
.backToTopBtn:focus-visible {
  background: #1d4ed8;
}

.backToTopBtn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 640px) {
  .backToTopBtn {
    left: 12px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}

.pricing-sync-fallback {
  margin-top: 12px;
  text-align: center;
  color: #324765;
}

@keyframes pricingSyncPulse {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Homepage staggered testimonials */
.hp-stagger-testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
}

.hp-stagger-testimonials::before {
  content: "";
  position: absolute;
  inset: -120px -10vw auto;
  height: 360px;
  background:
    radial-gradient(560px 220px at 18% 26%, rgba(55, 107, 209, 0.11), transparent 72%),
    radial-gradient(640px 240px at 84% 10%, rgba(48, 96, 194, 0.13), transparent 74%);
  pointer-events: none;
}

.hp-stagger {
  position: relative;
  margin-top: 20px;
  background: transparent;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hp-stagger__stage {
  position: relative;
  width: 100%;
  height: 640px;
  overflow: hidden;
  animation: hpStaggerStageIn 700ms ease both;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease;
}

.hp-stagger-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 365px;
  height: 365px;
  border: 2px solid #d2def5;
  border-radius: 8px;
  padding: 28px;
  cursor: pointer;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 260ms ease, background-color 260ms ease, box-shadow 320ms ease;
  clip-path: polygon(50px 0%, calc(100% - 50px) 0%, 100% 50px, 100% 100%, calc(100% - 50px) 100%, 50px 100%, 0 100%, 0 0);
  background: #ffffff;
  color: #0f2347;
  user-select: none;
  will-change: transform;
  transform: var(--card-transform);
}

.hp-stagger-card:not(.is-center):hover {
  border-color: rgba(47, 111, 255, 0.5);
}

.hp-stagger-card.is-center {
  z-index: 10;
  border-color: #2f6fff;
  background: linear-gradient(155deg, #2f6fff 0%, #2559cb 100%);
  color: #ffffff;
  box-shadow: 0 8px 0 4px #d2def5;
  animation: hpStaggerCenterGlow 2.8s ease-in-out infinite;
}

.hp-stagger__stage.is-leaving-next {
  transform: translateX(-34px);
  opacity: 0.72;
}

.hp-stagger__stage.is-leaving-prev {
  transform: translateX(34px);
  opacity: 0.72;
}

.hp-stagger__stage.is-entering-next {
  transform: translateX(34px);
  opacity: 0.72;
}

.hp-stagger__stage.is-entering-prev {
  transform: translateX(-34px);
  opacity: 0.72;
}

.hp-stagger-card__slash {
  position: absolute;
  right: -2px;
  top: 48px;
  width: 70.710678px;
  height: 2px;
  transform-origin: right top;
  transform: rotate(45deg);
  background: #d2def5;
}

.hp-stagger-card.is-center .hp-stagger-card__slash {
  background: rgba(255, 255, 255, 0.5);
}

.hp-stagger-card__avatar {
  width: 48px;
  height: 56px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 14px;
  border-radius: 2px;
  box-shadow: 3px 3px 0 #eef4ff;
}

.hp-stagger-card.is-center .hp-stagger-card__avatar {
  box-shadow: 3px 3px 0 #1f4fb7;
}

.hp-stagger-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
  color: inherit;
}

.hp-stagger-card p {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
  color: rgba(15, 35, 71, 0.78);
  font-style: italic;
}

.hp-stagger-card.is-center p {
  color: rgba(255, 255, 255, 0.82);
}

.hp-stagger__controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hp-stagger__btn {
  width: 56px;
  height: 56px;
  border: 2px solid #d2def5;
  border-radius: 8px;
  background: #fff;
  color: #0f2347;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.hp-stagger__btn:hover,
.hp-stagger__btn:focus-visible {
  border-color: #2f6fff;
  background: #2f6fff;
  color: #fff;
}

@keyframes hpStaggerCenterGlow {
  0%,
  100% {
    box-shadow: 0 8px 0 4px #d2def5, 0 12px 34px rgba(34, 92, 212, 0.24);
  }
  50% {
    box-shadow: 0 8px 0 4px #d2def5, 0 18px 44px rgba(34, 92, 212, 0.34);
  }
}

@keyframes hpStaggerStageIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .hp-stagger__stage {
    height: 560px;
  }

  .hp-stagger-card {
    width: 290px;
    height: 290px;
    padding: 20px;
  }

  .hp-stagger-card h3 {
    font-size: 0.96rem;
  }

  .hp-stagger-card p {
    left: 20px;
    right: 20px;
    bottom: 16px;
    font-size: 0.8rem;
  }

  .hp-stagger__controls {
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-stagger__stage,
  .hp-stagger-card,
  .hp-stagger-card.is-center,
  .hp-stagger-card:not(.is-center) {
    animation: none !important;
    transition: none !important;
  }
}
