@font-face {
  font-family: "Cloudoppel Sans";
  src: url("./fonts.gstatic.com/s/lato/v25/S6uyw4BMUTPHjx4wWw.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cloudoppel Sans";
  src: url("./fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh6UVSwiPHA.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cloudoppel Sans";
  src: url("./fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwiPHA.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cloudoppel Sans";
  src: url("./fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwiPHA.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cloudoppel Sans";
  src: url("./fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh50XSwiPHA.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cloudoppel Mono";
  src: url("./fonts.gstatic.com/s/ubuntumono/v19/KFOjCneDtsqEr0keqCMhbBc9.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cloudoppel Mono";
  src: url("./fonts.gstatic.com/s/ubuntumono/v19/KFO-CneDtsqEr0keqCMhbC-BL-Hy.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blackberry-black: #2c2d30;
  --text-primary: #2c2d30;
  --text-secondary: rgba(44, 45, 48, 0.62);
  --text-tertiary: rgba(44, 45, 48, 0.34);
  --brand-green: #3AC0A3;
  --brand-green-rgb: 58, 192, 163;
  --accent-1: var(--brand-green);
  --accent-2: var(--brand-green);
  --accent-3: #7f7540;
  --accent-4: #98644f;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --card-bg: #fbfbfb;
  --line-soft: rgba(44, 45, 48, 0.06);
  --line-mid: rgba(44, 45, 48, 0.11);
  --card-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 14px 34px rgba(44, 45, 48, 0.09);
  --card-texture-diagonal-dark: repeating-linear-gradient(
    135deg,
    rgba(44, 45, 48, 0.04) 0 1px,
    transparent 1px 14px
  );
  --card-texture-diagonal-light: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14) 0 1px,
    transparent 1px 22px
  );
  --container: min(1178px, calc(100% - 3rem));
  --mono: "Cloudoppel Mono", "SFMono-Regular", "Consolas", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: var(--surface);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text-primary);
  font-family: "Cloudoppel Sans", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(980px 460px at -2% -8%, rgba(var(--brand-green-rgb), 0.2), transparent 62%),
    radial-gradient(900px 460px at 104% -12%, rgba(152, 100, 79, 0.16), transparent 62%),
    radial-gradient(760px 420px at 50% 108%, rgba(106, 130, 114, 0.1), transparent 66%),
    var(--surface);
}

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

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

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 80px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(44, 45, 48, 0);
  transition: box-shadow 180ms ease;
}

.topbar[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(44, 45, 48, 0.1), 0 8px 24px rgba(44, 45, 48, 0.06);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  transition: opacity 150ms ease;
}

.brand img {
  height: 31px;
  width: auto;
}

.brand:hover {
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  margin-left: 0.55rem;
  flex: 1 1 auto;
}

.site-nav > a,
.nav-drop-btn {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.09px;
  line-height: 1.25;
  border-radius: 999px;
  padding: 0.57rem 0.86rem;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.33rem;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-drop-btn:hover,
.nav-drop-btn:focus-visible {
  color: var(--text-primary);
  background: rgba(44, 45, 48, 0.04);
}

.site-nav > a.is-active {
  color: var(--text-primary);
  background: rgba(var(--brand-green-rgb), 0.14);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 150ms ease;
}

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 0.52rem);
  left: 0;
  width: 330px;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: #fff;
  box-shadow: var(--card-shadow);
  padding: 0.5rem;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 170ms ease, transform 170ms ease;
}

.nav-dropdown:hover .nav-drop-panel,
.nav-dropdown:focus-within .nav-drop-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown:hover .nav-drop-btn svg,
.nav-dropdown:focus-within .nav-drop-btn svg,
.nav-dropdown.is-open .nav-drop-btn svg {
  transform: rotate(180deg);
}

.nav-dropdown:hover .nav-drop-btn,
.nav-dropdown:focus-within .nav-drop-btn {
  color: var(--text-primary);
  background: rgba(44, 45, 48, 0.04);
}

.nav-dropdown.is-open .nav-drop-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.drop-card {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  border-radius: 11px;
  padding: 0.56rem;
  transition: background 150ms ease;
}

.drop-card:hover {
  background: #f7f7f7;
}

.drop-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.drop-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.drop-card strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.25;
}

.drop-card em {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-secondary);
  font-style: normal;
  font-size: 12px;
  line-height: 1.4;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  border-radius: 999px;
  border: 1px solid var(--line-mid);
  padding: 0.46rem 0.9rem;
  background: var(--surface);
  color: var(--text-primary);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 50px;
  border: 0;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Cloudoppel Sans", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.09px;
  padding: 0 16px;
  min-height: 36px;
  transition: all 170ms ease;
}

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

.btn-lg {
  min-height: 44px;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -0.13px;
  padding: 0 26px;
}

.btn-primary {
  color: #fff;
  background: var(--accent-1);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-2);
}

.btn-secondary {
  color: var(--blackberry-black);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--text-primary);
  background: rgba(44, 45, 48, 0.04);
}

.btn-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  background: rgba(255, 255, 255, 0.25);
}

.btn-secondary .btn-dot {
  background: rgba(44, 45, 48, 0.13);
}

.btn-dot::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

main {
  overflow: clip;
}

.hero {
  padding: 122px 0 52px;
}

.hero-grid,
.pricing-hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-copy {
  padding-top: 0.35rem;
}

.hero-kicker {
  margin: 0;
  color: var(--text-secondary);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
}

.hero-tagline {
  margin: 0.8rem 0 0;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--text-primary);
  letter-spacing: -0.2px;
  line-height: 1.35;
  font-weight: 500;
}

.hero h1,
.pricing-title {
  margin: 0.82rem 0 0;
  color: var(--blackberry-black);
  font-size: clamp(40px, 4.8vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.2px;
  font-weight: 600;
}

.hero-sub,
.pricing-sub {
  margin: 1.02rem 0 0;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.45;
  letter-spacing: -0.2px;
  max-width: 41em;
}

.hero-actions,
.cta-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-pills span {
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: #fff;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 0.34rem 0.64rem;
}

.hero-art,
.pricing-art {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 16% 14%, rgba(var(--brand-green-rgb), 0.28), transparent 44%),
    radial-gradient(circle at 85% 14%, rgba(152, 100, 79, 0.24), transparent 42%),
    radial-gradient(circle at 44% 90%, rgba(106, 130, 114, 0.18), transparent 48%),
    linear-gradient(165deg, #ffffff 0%, #f7f9f8 100%);
  box-shadow: var(--card-shadow);
  padding: 1rem;
  overflow: hidden;
  min-height: 395px;
}

.hero-art::before,
.pricing-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 45, 48, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 45, 48, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 82%);
  pointer-events: none;
}

.hero-art::after,
.pricing-art::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -110px;
  bottom: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-green-rgb), 0.25), rgba(var(--brand-green-rgb), 0));
  pointer-events: none;
}

.hero-art-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(145deg, var(--brand-green), var(--brand-green));
  box-shadow: 0 18px 30px rgba(var(--brand-green-rgb), 0.34);
  z-index: 4;
}

.hero-art-core strong {
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.core-ring {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px dashed rgba(44, 45, 48, 0.2);
  animation: spin 30s linear infinite;
}

.core-ring-2 {
  inset: -31px;
  border-style: solid;
  opacity: 0.35;
  animation-duration: 22s;
  animation-direction: reverse;
}

.hero-node {
  position: absolute;
  z-index: 5;
  width: 190px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: #fff;
  box-shadow: 0 8px 20px rgba(44, 45, 48, 0.08);
  padding: 0.55rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: center;
  animation: nodeFloat 6s ease-in-out infinite;
}

.hero-node h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero-node p {
  margin: 0.22rem 0 0;
  font-size: 11px;
  line-height: 1.35;
  color: var(--text-secondary);
}

.hero-node-a {
  top: 7%;
  left: 8%;
}

.hero-node-b {
  top: 12%;
  right: 8%;
  animation-delay: 1s;
}

.hero-node-c {
  left: 8%;
  bottom: 12%;
  animation-delay: 2s;
}

.hero-node-d {
  right: 8%;
  bottom: 8%;
  animation-delay: 1.6s;
}

.node-icon,
.feature-icon,
.plan-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.node-icon img,
.feature-icon img,
.plan-icon img {
  width: 21px;
  height: 21px;
  filter: brightness(0) invert(1);
}

.hero-link {
  position: absolute;
  border-top: 1px dashed rgba(44, 45, 48, 0.2);
  z-index: 3;
}

.hero-link-a {
  width: 118px;
  left: 35%;
  top: 23%;
  transform: rotate(-25deg);
}

.hero-link-b {
  width: 118px;
  right: 35%;
  top: 24%;
  transform: rotate(24deg);
}

.hero-link-c {
  width: 118px;
  left: 35%;
  bottom: 25%;
  transform: rotate(25deg);
}

.hero-link-d {
  width: 118px;
  right: 35%;
  bottom: 22%;
  transform: rotate(-24deg);
}

.hero-stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-simple {
  padding-bottom: 2.8rem;
}

.hero-focus .container {
  display: grid;
  gap: 0.52rem;
}

.hero-focus-visual {
  width: min(212px, 63vw);
  margin: 0 auto 0.06rem;
}

.hero-cloud-mark {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  box-shadow: none;
  filter: none;
}

.hero-focus-copy {
  position: relative;
  isolation: isolate;
  padding: 0.16rem 0 0.02rem;
}

.hero-focus-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.82rem;
  width: min(820px, 110%);
  height: calc(100% + 1.72rem);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(44, 45, 48, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 45, 48, 0.03) 1px, transparent 1px),
    radial-gradient(100% 94% at 50% 36%, rgba(255, 255, 255, 0.92), rgba(244, 245, 246, 0.7));
  background-size:
    18px 18px,
    18px 18px,
    100% 100%;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.88) 56%, rgba(0, 0, 0, 0.42) 82%, transparent 98%);
  opacity: 0.74;
}

.hero-focus-copy > * {
  position: relative;
  z-index: 1;
}

.hero-focus-copy .hero-kicker {
  font-size: 11px;
  letter-spacing: 0.06em;
}

.hero-focus-copy h1 {
  margin-top: 0.4rem;
  font-size: clamp(27px, 4vw, 39px);
  line-height: 1.09;
  letter-spacing: -0.45px;
  font-weight: 500;
}

.hero-focus-copy .hero-slogan {
  margin-top: 0.62rem;
  max-width: 36rem;
  color: var(--text-secondary);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.38;
  letter-spacing: -0.1px;
  font-weight: 400;
}

.hero-focus-copy .hero-actions {
  margin-top: 0.96rem;
}

.hero-centered {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-centered .hero-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
}

.hero-centered .hero-actions,
.hero-centered .hero-pills {
  justify-content: center;
}

.hero-art-centered {
  max-width: 960px;
  margin: 1.2rem auto 0;
}

.hero-stats-centered {
  max-width: 960px;
  margin: 0.95rem auto 0;
}

.stat-card {
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: #fff;
  box-shadow: var(--card-shadow);
  padding: 0.84rem;
}

.stat-card strong {
  display: block;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 4.4rem 0;
  position: relative;
}

.section-compact {
  padding: 3.2rem 0;
}

.section::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1082px, calc(100% - 3rem));
  transform: translateX(-50%);
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(44, 45, 48, 0.17),
    rgba(44, 45, 48, 0.17) 4px,
    transparent 4px,
    transparent 10px
  );
  opacity: 0.5;
}

.section-header {
  max-width: 860px;
  margin-bottom: 1.45rem;
}

.section-kicker {
  margin: 0;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  color: var(--text-secondary);
}

.section-header h2 {
  margin: 0.74rem 0 0;
  color: var(--blackberry-black);
  font-size: clamp(26px, 2.8vw, 28px);
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 500;
}

.section-header p {
  margin: 0.85rem 0 0;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.45;
  letter-spacing: -0.2px;
  max-width: 41em;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.quote-grid,
.feature-grid,
.compare-grid,
.why-grid,
.plan-grid {
  display: grid;
  gap: 0.68rem;
}

.quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-card,
.feature-card,
.compare-card,
.why-card,
.plan-card,
.cta-band,
.matrix-wrap,
.faq-item {
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 251, 251, 0.98));
  box-shadow: var(--card-shadow);
}

.quote-card {
  padding: 0.92rem;
  background:
    radial-gradient(140% 130% at 8% 0%, rgba(var(--brand-green-rgb), 0.13), transparent 58%),
    linear-gradient(180deg, #ffffff, #f9fbfb);
}

.quote-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.quote-card span {
  display: block;
  margin-top: 0.72rem;
  color: var(--text-secondary);
  font-size: 12px;
  font-family: var(--mono);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid.triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 0.92rem;
  background: linear-gradient(180deg, #ffffff, #f8faf9);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.feature-card:nth-child(2) {
  background:
    radial-gradient(120% 110% at 100% 0%, rgba(152, 100, 79, 0.1), transparent 55%),
    linear-gradient(180deg, #ffffff, #f9f9f8);
}

.feature-card:nth-child(3) {
  background:
    radial-gradient(130% 115% at 0% 0%, rgba(127, 117, 64, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff, #fafaf8);
}

.feature-card:nth-child(4) {
  background:
    radial-gradient(120% 115% at 100% 0%, rgba(var(--brand-green-rgb), 0.13), transparent 56%),
    linear-gradient(180deg, #ffffff, #f6fbf9);
}

.feature-card:hover,
.why-card:hover,
.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 18px 36px rgba(44, 45, 48, 0.13);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.feature-card h3 {
  margin: 0.72rem 0 0;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.27px;
  font-weight: 500;
}

.feature-card p {
  margin: 0.6rem 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

/* All-in-One background treatment for rollout stack cards */
.rollout-stack .feature-grid.triple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
  gap: 0.9rem 1rem;
}

.rollout-stack .feature-grid.triple .feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 138px;
  padding: 24px 32px;
  border-radius: 16px;
  border-color: rgba(44, 45, 48, 0.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 1px 3px rgba(44, 45, 48, 0.04);
}

.rollout-stack .feature-grid.triple .feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    var(--card-texture-diagonal-dark),
    var(--card-texture-diagonal-light),
    radial-gradient(140% 100% at 0% 0%, rgba(255, 255, 255, 0.434), transparent 52%),
    radial-gradient(120% 100% at 100% 100%, rgba(44, 45, 48, 0.021), transparent 60%);
  opacity: 0.62;
}

.rollout-stack .feature-grid.triple .feature-card > * {
  position: relative;
  z-index: 1;
}

.rollout-stack .feature-grid.triple .feature-icon {
  margin: 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(44, 45, 48, 0.16) inset;
  color: rgba(44, 45, 48, 0.58);
}

.rollout-stack .feature-grid.triple .feature-icon .internet-color-icon {
  width: 30px;
  height: 30px;
}

.rollout-stack .feature-grid.triple .feature-card h3,
.rollout-stack .feature-grid.triple .feature-card p {
  text-align: center;
}

.rollout-stack .feature-grid.triple .feature-card p {
  margin-left: auto;
  margin-right: auto;
  max-width: 30ch;
}

.rollout-stack .feature-grid.triple .feature-card:nth-child(1) {
  background:
    radial-gradient(130% 120% at 38% 115%, rgba(87, 103, 194, 0.126), transparent 62%),
    radial-gradient(120% 110% at 84% 26%, rgba(255, 109, 46, 0.091), transparent 58%),
    radial-gradient(125% 118% at -8% 18%, rgba(var(--brand-green-rgb), 0.098), transparent 58%),
    linear-gradient(180deg, #ffffff, #fbfbfb);
}

.rollout-stack .feature-grid.triple .feature-card:nth-child(2) {
  background:
    radial-gradient(130% 120% at 96% 86%, rgba(var(--brand-green-rgb), 0.098), transparent 60%),
    radial-gradient(122% 112% at 26% 115%, rgba(250, 197, 7, 0.091), transparent 60%),
    radial-gradient(115% 104% at 20% 14%, rgba(205, 129, 243, 0.084), transparent 56%),
    radial-gradient(120% 102% at 112% 14%, rgba(255, 109, 46, 0.07), transparent 56%),
    linear-gradient(180deg, #ffffff, #fbfbfb);
}

.rollout-stack .feature-grid.triple .feature-card:nth-child(3) {
  background:
    radial-gradient(126% 118% at 0% 100%, rgba(var(--brand-green-rgb), 0.091), transparent 60%),
    radial-gradient(120% 110% at 86% 16%, rgba(255, 109, 46, 0.084), transparent 56%),
    radial-gradient(114% 102% at 68% 106%, rgba(87, 103, 194, 0.098), transparent 62%),
    linear-gradient(180deg, #ffffff, #fbfbfb);
}

.rollout-stack .feature-grid.triple .feature-card:nth-child(4) {
  background:
    radial-gradient(130% 118% at 100% 100%, rgba(87, 103, 194, 0.084), transparent 60%),
    radial-gradient(120% 108% at 14% 20%, rgba(var(--brand-green-rgb), 0.077), transparent 56%),
    radial-gradient(116% 100% at 72% 0%, rgba(250, 197, 7, 0.07), transparent 58%),
    linear-gradient(180deg, #ffffff, #fbfbfb);
}

.vault-clone {
  position: relative;
  max-width: 1082px;
  margin: 0 auto;
  padding: 48px 0;
}

.vault-divider {
  position: absolute;
  pointer-events: none;
}

.vault-divider-h {
  left: 0;
  right: 0;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(44, 45, 48, 0.18),
    rgba(44, 45, 48, 0.18) 4px,
    transparent 4px,
    transparent 10px
  );
}

.vault-divider-top {
  top: 47px;
}

.vault-divider-bottom {
  bottom: 47px;
}

.vault-divider-v {
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(44, 45, 48, 0.18),
    rgba(44, 45, 48, 0.18) 4px,
    transparent 4px,
    transparent 10px
  );
}

.vault-divider-left {
  left: 47px;
}

.vault-divider-right {
  right: 48px;
}

.vault-panel {
  position: relative;
  z-index: 2;
  max-width: 1082px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 0;
  overflow: hidden;
}

.vault-logo {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(44, 45, 48, 0.05);
  overflow: visible;
}

.vault-halo {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  width: 860px;
  height: 860px;
  background: rgba(var(--brand-green-rgb), 0.12);
  animation: vaultPulse 28s ease-out infinite both;
}

.vault-halo:nth-child(2) {
  animation-delay: -7s;
}

.vault-halo:nth-child(3) {
  animation-delay: -14s;
}

.vault-halo:nth-child(4) {
  animation-delay: -21s;
}

.vault-panel h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 500;
}

.vault-chain {
  margin: 0;
  color: var(--text-secondary);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.39px;
}

.vault-panel .btn {
  margin-top: 16px;
}

.chain-integrate-clone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.chain-integrate-clone :where(.styles_inner__mnNbL) {
  position: relative;
  width: 100%;
  max-width: 1360px;
  padding: 48px 16px;
}

.chain-integrate-clone .styles_innerClassName__1YTHN {
  padding-top: 64px;
  padding-bottom: 64px;
}

.chain-integrate-clone .styles_inner__xArKV {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.chain-integrate-clone h2 {
  margin: 0;
  color: var(--blackberry-black);
  font-family: "Cloudoppel Sans", "Segoe UI", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
}

.chain-integrate-clone .styles_title__RIDJY h2 {
  text-align: center;
}

.chain-integrate-clone .styles_title__RIDJY h2 i {
  font-style: normal;
  color: var(--text-secondary);
}

.chain-integrate-clone .styles_grid__YjHJI {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.chain-integrate-clone .styles_card__JN06F {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 0;
  width: 100%;
  padding: 18px 16px 18px 108px;
  height: 118px;
  min-height: 118px;
  border-radius: 1rem;
  background-color: var(--card-bg);
  overflow: hidden;
}

.chain-integrate-clone h5 {
  margin: 0;
  color: var(--blackberry-black);
  font-family: "Cloudoppel Sans", "Segoe UI", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 138%;
  letter-spacing: -0.2px;
}

.chain-integrate-clone .styles_card__JN06F h5 span {
  color: var(--text-secondary);
}

.chain-integrate-clone .styles_icon__6_vgy {
  width: 72px;
  height: 72px;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 45, 48, 0.03);
}

.chain-integrate-clone .styles_card__JN06F h5 {
  position: relative;
  z-index: 1;
}

.chain-integrate-clone .styles_icon__6_vgy .internet-color-icon {
  width: 34px;
  height: 34px;
}

.chain-integrate-clone .styles_card__JN06F:nth-child(1) .styles_icon__6_vgy {
  color: #f3975f;
  background: rgba(243, 151, 95, 0.16);
}

.chain-integrate-clone .styles_card__JN06F:nth-child(2) .styles_icon__6_vgy {
  color: #c17c94;
  background: rgba(193, 124, 148, 0.15);
}

.chain-integrate-clone .styles_card__JN06F:nth-child(3) .styles_icon__6_vgy {
  color: #628cb3;
  background: rgba(98, 140, 179, 0.16);
}

.chain-integrate-clone .styles_card__JN06F:nth-child(4) .styles_icon__6_vgy {
  color: var(--brand-green);
  background: rgba(0, 205, 125, 0.14);
}

.compare-grid {
  grid-template-columns: 1fr 1fr;
}

.compare-grid.compact-two {
  max-width: 960px;
  margin: 0 auto;
}

.compare-card {
  padding: 0.92rem;
  background:
    radial-gradient(140% 130% at 100% 0%, rgba(152, 100, 79, 0.08), transparent 58%),
    linear-gradient(180deg, #ffffff, #faf9f9);
}

.compare-card-positive {
  background:
    radial-gradient(140% 130% at 0% 0%, rgba(var(--brand-green-rgb), 0.18), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 251, 246, 0.98));
  border-color: rgba(var(--brand-green-rgb), 0.3);
}

.compare-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.27px;
  font-weight: 500;
}

.compare-card ul {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.compare-card li {
  position: relative;
  padding-left: 0.9rem;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f43b5c;
}

.compare-card-positive li::before {
  background: var(--accent-1);
}

.enterprise-why .section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.enterprise-why-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.enterprise-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.95rem;
  padding: 2rem 1.15rem;
  border-right: 1px solid rgba(44, 45, 48, 0.14);
  border-bottom: 1px solid rgba(44, 45, 48, 0.14);
}

.enterprise-why-item:nth-child(4n) {
  border-right: 0;
}

.enterprise-why-item:nth-child(n + 5) {
  border-bottom: 0;
}

.enterprise-why-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.enterprise-why-item h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.2px;
  font-weight: 500;
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-card {
  padding: 0.7rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.58rem;
  align-items: center;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(var(--brand-green-rgb), 0.07), transparent 62%),
    linear-gradient(180deg, #ffffff, #fafbfb);
}

.why-card img {
  width: 34px;
  height: 34px;
}

.why-card span {
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 1.05rem;
  background: linear-gradient(180deg, #fafafb 0%, #f7f7f8 100%);
  border-color: rgba(44, 45, 48, 0.07);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.58) inset,
    0 1px 2px rgba(44, 45, 48, 0.03);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(255, 255, 255, 0.36), transparent 55%),
    radial-gradient(120% 100% at 100% 100%, rgba(44, 45, 48, 0.016), transparent 58%);
}

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

.cta-band h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.2px;
  font-weight: 500;
}

.cta-band p {
  margin: 0.75rem 0 0;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.45;
  letter-spacing: -0.2px;
}

.updates-band {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  padding: 1.08rem 1.1rem 0.96rem;
}

.updates-title {
  display: grid;
  gap: 0.12rem;
  justify-items: center;
}

.updates-band .updates-title h2 {
  margin: 0;
  font-size: clamp(23px, 2.35vw, 30px);
  line-height: 1.22;
  letter-spacing: -0.24px;
  font-weight: 500;
}

.updates-band .updates-title h2 + h2 {
  margin-top: 0.06rem;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.3;
  color: var(--text-secondary);
  letter-spacing: -0.12px;
  font-weight: 400;
}

.updates-band .updates-title h2 + h2 i {
  font-style: normal;
  font-weight: 400;
}

.updates-card {
  margin: 0.78rem auto 0;
  max-width: 760px;
  padding: 0.4rem;
  border-radius: 16px;
  border: 1px solid rgba(44, 45, 48, 0.065);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.62) inset,
    0 1px 2px rgba(44, 45, 48, 0.03);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.updates-input-group {
  flex: 1;
  min-width: 0;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(44, 45, 48, 0.07);
  background: linear-gradient(180deg, #ffffff, #fafafa);
  display: flex;
  align-items: center;
  padding: 0 0.34rem 0 0.72rem;
}

.updates-input-group input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.2;
}

.updates-input-group input::placeholder {
  color: rgba(44, 45, 48, 0.42);
}

.updates-input-group input:focus {
  outline: none;
}

.updates-vertical-divider {
  width: 1px;
  height: 22px;
  margin: 0 0.22rem 0 0.42rem;
  background: rgba(44, 45, 48, 0.12);
}

.updates-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
}

.updates-select-wrap select {
  border: 0;
  background: transparent;
  appearance: none;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--text-primary);
  padding: 0 1.12rem 0 0.1rem;
  cursor: pointer;
}

.updates-select-wrap select:focus {
  outline: none;
}

.updates-select-caret {
  position: absolute;
  right: 0.06rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.updates-submit {
  min-width: 132px;
  height: 42px;
  border-radius: 12px;
  padding: 0 0.92rem;
  font-size: 13px;
}

.site-footer {
  position: relative;
  margin-top: 3rem;
  padding: 2rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.footer-brand img {
  height: 30px;
  width: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 1rem;
}

.footer-columns p {
  margin: 0;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
}

.footer-columns a {
  display: block;
  margin-top: 0.42rem;
  color: var(--text-secondary);
  font-size: 13px;
}

.footer-bottom {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 0.45rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-copy {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 12px;
}

.pricing-hero {
  padding: 122px 0 44px;
}

.pricing-hero-simple {
  padding-bottom: 2.8rem;
}

.pricing-hero-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.pricing-hero-copy .pricing-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 52rem;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  display: grid;
  gap: 0.16rem;
  justify-items: center;
}

.pricing-hero-copy .pricing-sub.pricing-sub-growth span {
  display: block;
  color: var(--text-primary);
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.24;
  letter-spacing: -0.22px;
  font-weight: 500;
}

.pricing-hero-copy .pricing-sub.pricing-sub-growth i {
  display: block;
  margin-top: 0.05rem;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.32;
  letter-spacing: -0.1px;
  font-style: normal;
  font-weight: 400;
}

.pricing-hero-copy .hero-actions {
  justify-content: center;
}

.pricing-art {
  min-height: 312px;
  display: grid;
  align-content: center;
  gap: 0.5rem;
}

.pricing-art-inline {
  max-width: 920px;
  margin: 1rem auto 0;
  min-height: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.pricing-art-inline .pricing-art-ring {
  display: none;
}

.pricing-art-inline::before,
.pricing-art-inline::after {
  display: none;
}

.pricing-art-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px dashed rgba(44, 45, 48, 0.22);
  left: calc(50% - 120px);
  top: calc(50% - 120px);
  animation: spin 40s linear infinite;
}

.pricing-art article {
  position: relative;
  z-index: 4;
}

.pricing-art-inline .feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 138px;
  padding: 24px 32px;
  border-radius: 16px;
  border: 1px solid rgba(44, 45, 48, 0.04);
  background:
    radial-gradient(130% 120% at 38% 115%, rgba(87, 103, 194, 0.126), transparent 62%),
    radial-gradient(120% 110% at 84% 26%, rgba(255, 109, 46, 0.091), transparent 58%),
    radial-gradient(125% 118% at -8% 18%, rgba(var(--brand-green-rgb), 0.098), transparent 58%),
    linear-gradient(180deg, #ffffff, #fbfbfb);
  box-shadow: 0 1px 3px rgba(44, 45, 48, 0.04);
}

.pricing-art-inline .feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    var(--card-texture-diagonal-dark),
    var(--card-texture-diagonal-light),
    radial-gradient(140% 100% at 0% 0%, rgba(255, 255, 255, 0.434), transparent 52%),
    radial-gradient(120% 100% at 100% 100%, rgba(44, 45, 48, 0.021), transparent 60%);
  opacity: 0.62;
}

.pricing-art-inline .feature-card > * {
  position: relative;
  z-index: 1;
}

.pricing-art-inline .feature-card:nth-child(2) {
  background:
    radial-gradient(130% 120% at 96% 86%, rgba(var(--brand-green-rgb), 0.098), transparent 60%),
    radial-gradient(122% 112% at 26% 115%, rgba(250, 197, 7, 0.091), transparent 60%),
    radial-gradient(115% 104% at 20% 14%, rgba(205, 129, 243, 0.084), transparent 56%),
    radial-gradient(120% 102% at 112% 14%, rgba(255, 109, 46, 0.07), transparent 56%),
    linear-gradient(180deg, #ffffff, #fbfbfb);
}

.pricing-art-inline .feature-card:nth-child(3) {
  background:
    radial-gradient(126% 118% at 0% 100%, rgba(var(--brand-green-rgb), 0.091), transparent 60%),
    radial-gradient(120% 110% at 86% 16%, rgba(255, 109, 46, 0.084), transparent 56%),
    radial-gradient(114% 102% at 68% 106%, rgba(87, 103, 194, 0.098), transparent 62%),
    linear-gradient(180deg, #ffffff, #fbfbfb);
}

.pricing-art-inline .feature-icon {
  margin: 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(44, 45, 48, 0.16) inset;
  color: rgba(44, 45, 48, 0.58);
}

.pricing-art-inline .feature-icon .internet-color-icon {
  width: 30px;
  height: 30px;
}

.pricing-art-inline .feature-card h3 {
  margin: 0.72rem 0 0;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.27px;
  font-weight: 500;
}

.pricing-art-inline .feature-card p {
  margin: 0.6rem auto 0;
  max-width: 30ch;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.billing {
  margin-top: 0.95rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: #fff;
  padding: 0.34rem;
}

.pricing-hero-copy .billing {
  margin-left: auto;
  margin-right: auto;
}

.billing strong {
  margin-left: 0.52rem;
  color: var(--text-tertiary);
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.billing button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  color: var(--text-secondary);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 0.36rem 0.73rem;
  cursor: pointer;
}

.billing button.is-active {
  color: #fff;
  background: var(--blackberry-black);
}

.billing-caption {
  margin: 0.6rem 0 0;
  color: var(--text-tertiary);
  font-size: 12px;
}

.pricing-hero-copy .billing-caption {
  text-align: center;
}

.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0.92rem;
  display: grid;
  gap: 0.75rem;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(152, 100, 79, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff, #f9f9f9);
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    var(--card-texture-diagonal-dark),
    var(--card-texture-diagonal-light),
    radial-gradient(140% 100% at 0% 0%, rgba(255, 255, 255, 0.38), transparent 52%),
    radial-gradient(120% 100% at 100% 100%, rgba(44, 45, 48, 0.026), transparent 60%);
  opacity: 0.58;
}

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

.plan-card.featured {
  border-color: rgba(var(--brand-green-rgb), 0.35);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(var(--brand-green-rgb), 0.22), transparent 56%),
    linear-gradient(180deg, #ffffff, #f2fcf8);
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.plan-eyebrow {
  margin: 0;
  color: var(--text-tertiary);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
}

.plan-badge {
  border-radius: 999px;
  background: var(--accent-1);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 0.24rem 0.58rem;
}

.plan-name {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-price {
  margin-top: 0.43rem;
  display: flex;
  align-items: flex-end;
  gap: 0.28rem;
}

.plan-price strong {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.plan-price span {
  margin-bottom: 0.31rem;
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 12px;
}

.plan-note {
  margin: 0.2rem 0 0;
  color: var(--text-tertiary);
  font-size: 12px;
}

.plan-summary {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
}

.plan-meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.plan-meta div {
  border-radius: 11px;
  border: 1px solid var(--line-soft);
  background: #fbfbfb;
  padding: 0.5rem;
}

.plan-meta dt {
  margin: 0;
  color: var(--text-tertiary);
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.plan-meta dd {
  margin: 0.28rem 0 0;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.33;
}

.plan-list {
  margin: 0;
  padding-left: 0.95rem;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.53;
}

.plan-list li + li {
  margin-top: 0.27rem;
}

.matrix-wrap {
  overflow-x: auto;
}

.matrix {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.matrix th,
.matrix td {
  text-align: left;
  vertical-align: top;
  padding: 0.76rem 0.86rem;
  border-bottom: 1px solid var(--line-soft);
}

.matrix th {
  color: var(--text-tertiary);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
}

.matrix td:first-child {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
  width: 19%;
}

.matrix td ul {
  margin: 0;
  padding-left: 0.88rem;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
}

.matrix tbody tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.52rem;
}

.faq-list-compact {
  max-width: 920px;
  margin: 0 auto;
}

.center-actions {
  justify-content: center;
}

.faq-item {
  overflow: hidden;
}

.faq-button {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.86rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  font: inherit;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-align: left;
}

.faq-button span {
  flex: 1;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-mid);
  position: relative;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--text-secondary);
  transform: translate(-50%, -50%);
  transition: transform 170ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 1rem 0.86rem;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.faq-answer[hidden] {
  display: none;
}

/* Pricing-only typography reinforcement to avoid thin rendering */
.pricing-page .pricing-title {
  font-weight: 700;
}

.pricing-page .pricing-hero-copy .pricing-sub.pricing-sub-growth span {
  font-weight: 600;
}

.pricing-page .pricing-hero-copy .pricing-sub.pricing-sub-growth i {
  font-weight: 600;
  color: rgba(44, 45, 48, 0.7);
}

.pricing-page .pricing-art-inline .feature-card h3 {
  font-weight: 700;
}

.pricing-page .pricing-art-inline .feature-card p {
  font-weight: 600;
  color: rgba(44, 45, 48, 0.72);
}

.pricing-page .plan-name {
  font-weight: 700;
}

.pricing-page .plan-summary,
.pricing-page .plan-list,
.pricing-page .matrix td ul,
.pricing-page .faq-answer {
  font-weight: 600;
  color: rgba(44, 45, 48, 0.72);
}

.pricing-page .plan-price span,
.pricing-page .plan-note,
.pricing-page .billing-caption {
  font-weight: 600;
}

.grad-a {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green));
}

.grad-b {
  background: linear-gradient(135deg, #6a8272, #5f6c75);
}

.grad-c {
  background: linear-gradient(135deg, #7f7540, #98644f);
}

.grad-d {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes vaultPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  35% {
    opacity: 0.7;
  }
  70% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .pricing-hero-grid,
  .quote-grid,
  .feature-grid,
  .compare-grid,
  .why-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .chain-integrate-clone .styles_grid__YjHJI {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rollout-stack .feature-grid.triple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-why-item {
    border-right: 1px solid rgba(44, 45, 48, 0.14);
    border-bottom: 1px solid rgba(44, 45, 48, 0.14);
  }

  .enterprise-why-item:nth-child(4n) {
    border-right: 1px solid rgba(44, 45, 48, 0.14);
  }

  .enterprise-why-item:nth-child(n + 5) {
    border-bottom: 1px solid rgba(44, 45, 48, 0.14);
  }

  .enterprise-why-item:nth-child(2n) {
    border-right: 0;
  }

  .enterprise-why-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .hero-art,
  .pricing-art {
    min-height: 460px;
  }

  .pricing-art-inline {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-focus-visual {
    width: min(186px, 60vw);
    margin-bottom: 0.04rem;
  }

  .hero-focus-copy h1 {
    font-size: clamp(24px, 4.3vw, 34px);
    line-height: 1.1;
  }

  .pricing-hero-copy .pricing-sub {
    max-width: 44rem;
  }

  .pricing-hero-copy .pricing-sub.pricing-sub-growth span {
    font-size: clamp(21px, 2.6vw, 26px);
  }

  .pricing-hero-copy .pricing-sub.pricing-sub-growth i {
    font-size: clamp(16px, 1.8vw, 18px);
  }

  .updates-band {
    padding: 0.96rem 0.9rem 0.86rem;
  }

  .updates-band .updates-title h2 {
    font-size: clamp(22px, 3.1vw, 28px);
  }

  .updates-band .updates-title h2 + h2 {
    font-size: clamp(17px, 2.1vw, 20px);
  }

  .rollout-stack .feature-grid.triple .feature-card {
    min-height: 120px;
    padding: 16px 20px;
  }

  .pricing-art-inline .feature-card {
    min-height: 120px;
    padding: 16px 20px;
  }

  .vault-clone {
    padding: 16px 0;
  }

  .vault-divider-top {
    top: 15px;
  }

  .vault-divider-bottom {
    bottom: 15px;
  }

  .vault-divider-left {
    left: 15px;
  }

  .vault-divider-right {
    right: 16px;
  }

  .vault-panel h2 {
    font-size: 21px;
    line-height: 1.3;
  }

  .vault-chain {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.24px;
  }

  .chain-integrate-clone :where(.styles_inner__mnNbL) {
    padding: 24px 16px;
  }

  .chain-integrate-clone .styles_innerClassName__1YTHN {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .chain-integrate-clone h2 {
    font-size: 21px;
    line-height: 130%;
  }

  .chain-integrate-clone h5 {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.25px;
  }

  .chain-integrate-clone .styles_card__JN06F {
    height: 100px;
    min-height: 100px;
    padding: 16px 14px 16px 92px;
  }

  .chain-integrate-clone .styles_icon__6_vgy {
    left: 14px;
    top: 50%;
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .chain-integrate-clone .styles_icon__6_vgy .internet-color-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(1178px, calc(100% - 1.6rem));
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    top: calc(100% + 0.45rem);
    margin-left: 0;
    border-radius: 15px;
    border: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--card-shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.45rem;
    gap: 0.2rem;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-panel {
    position: static;
    width: 100%;
    margin-top: 0.4rem;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: 1px solid var(--line-soft);
    display: none;
  }

  .nav-dropdown:hover .nav-drop-panel,
  .nav-dropdown:focus-within .nav-drop-panel {
    display: block;
  }

  .nav-dropdown.is-open .nav-drop-panel {
    display: block;
  }

  .topbar-actions {
    display: none;
  }

  .hero,
  .pricing-hero {
    padding-top: 108px;
  }

  .section::before,
  .site-footer::before {
    width: calc(100% - 1.6rem);
  }

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

@media (max-width: 720px) {
  .chain-integrate-clone .styles_grid__YjHJI,
  .rollout-stack .feature-grid.triple {
    grid-template-columns: 1fr;
  }

  .enterprise-why-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-why-item {
    border-right: 0;
    border-bottom: 1px solid rgba(44, 45, 48, 0.14);
    padding: 1.5rem 0.9rem;
  }

  .enterprise-why-item:last-child {
    border-bottom: 0;
  }

  .hero-art,
  .pricing-art {
    min-height: 520px;
  }

  .pricing-art-inline {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .pricing-art-inline .feature-card {
    min-height: 116px;
    padding: 16px 18px;
  }

  .updates-band {
    padding: 0.86rem 0.78rem 0.8rem;
  }

  .updates-card {
    margin-top: 0.78rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.44rem;
    padding: 0.42rem;
  }

  .updates-input-group {
    height: 44px;
    padding-left: 0.62rem;
  }

  .updates-vertical-divider {
    height: 18px;
    margin-left: 0.32rem;
  }

  .updates-select-wrap select {
    font-size: 13px;
  }

  .updates-submit {
    width: 100%;
    height: 44px;
    justify-content: center;
  }

  .hero-focus-visual {
    width: min(158px, 50vw);
    margin-bottom: 0;
  }

  .hero-focus-copy h1 {
    font-size: clamp(20px, 5.6vw, 27px);
    line-height: 1.12;
  }

  .hero-focus-copy .hero-slogan {
    max-width: 27rem;
    font-size: clamp(12px, 2.8vw, 14px);
    line-height: 1.36;
  }

  .hero-node {
    width: calc(100% - 1.2rem);
    left: 0.6rem !important;
    right: auto !important;
    position: relative;
    top: auto !important;
    bottom: auto !important;
    margin-top: 0.45rem;
    animation: none;
  }

  .hero-art {
    display: block;
    padding-top: 150px;
  }

  .hero-art-core {
    top: 84px;
  }

  .hero-link {
    display: none;
  }

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

@media (max-width: 640px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .billing {
    width: 100%;
    border-radius: 14px;
    flex-wrap: wrap;
  }

  .vault-panel .btn {
    width: auto;
  }
}
