:root {
  --brand-cyan: #22c6fc;
  --brand-blue: #4b8dfd;
  --brand-violet: #7a5aff;
  --gradient-brand: linear-gradient(120deg, var(--brand-cyan) 0%, var(--brand-blue) 48%, var(--brand-violet) 100%);
  --bg-0: #04060b;
  --bg-1: #080d15;
  --bg-2: #0c121d;
  --bg-3: #121927;
  --bg-4: #1a2334;
  --bg-terminal: #05070d;
  --border-1: rgba(151, 178, 255, .10);
  --border-2: rgba(151, 178, 255, .17);
  --border-3: rgba(151, 178, 255, .28);
  --border-highlight: rgba(255, 255, 255, .06);
  --text-1: #f2f5fb;
  --text-2: #9da8bf;
  --text-3: #79859d;
  --text-disabled: #3b4356;
  --text-on-brand: #ffffff;
  --success: #2fd98e;
  --warning: #ffb224;
  --danger: #ff5d73;
  --focus-ring: rgba(34, 198, 252, .55);
  --font-sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --shadow-2: 0 4px 16px rgba(0, 0, 0, .35);
  --shadow-3: 0 12px 40px rgba(0, 0, 0, .5);
  --glow-brand: 0 0 0 1px rgba(122, 90, 255, .35), 0 4px 24px rgba(75, 141, 253, .35);
  --dot-grid: radial-gradient(circle at 1px 1px, rgba(151, 178, 255, .13) 1px, transparent 1.5px);
  --dot-grid-size: 28px 28px;
  --ease-out: cubic-bezier(.2, 0, 0, 1);
  --duration-fast: 120ms;
  --duration-base: 200ms;
  --duration-slow: 320ms;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(720px 420px at 72% -12%, rgba(122, 90, 255, .10), transparent 70%),
    radial-gradient(620px 340px at 12% 8%, rgba(34, 198, 252, .08), transparent 72%),
    var(--bg-0);
  color: var(--text-1);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--brand-cyan);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: #7bdfff;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

::selection {
  background: rgba(34, 198, 252, .30);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 6px;
}

code,
pre,
kbd,
samp,
.mono {
  font-family: var(--font-mono);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  background: var(--bg-2);
  color: var(--text-1);
  padding: 9px 12px;
}

.skip-link:focus {
  transform: none;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 40px;
  border-bottom: 1px solid var(--border-1);
  background: rgba(4, 6, 11, .76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text-1);
}

.brand:hover {
  color: var(--text-1);
}

.brand img {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-1);
  border-radius: 9px;
}

.brand b {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand em {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: normal;
}

.brand img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 10px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 38px;
  margin-right: 5px;
  border: 1px solid var(--border-1);
  border-radius: 10px;
  padding: 0 9px;
  color: var(--text-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.language-link {
  color: var(--text-3);
}

.language-link:hover,
.language-link.is-active {
  color: var(--text-1);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 10px;
  padding: 7px 12px;
  color: var(--text-2);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: var(--bg-3);
  color: var(--text-1);
}

.nav-login {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 9px;
  color: var(--text-2);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-login:hover {
  color: var(--text-1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-1);
  border-radius: 12px;
  background: var(--bg-2);
  color: var(--text-1);
}

.menu-icon-open,
.menu-icon-close {
  display: inline-flex;
}

.menu-icon-close,
body.nav-open .menu-icon-open {
  display: none;
}

body.nav-open .menu-icon-close {
  display: inline-flex;
}

.mobile-drawer {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 9px 14px;
  color: var(--text-1);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

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

.btn:active {
  transform: scale(.98);
}

.btn .icon {
  width: 16px;
  height: 16px;
}

.btn-primary {
  border-color: rgba(255, 255, 255, .14);
  background: var(--gradient-brand);
  box-shadow: var(--glow-brand);
  color: #fff;
}

.btn-secondary {
  border-color: var(--border-2);
  background: rgba(12, 18, 29, .86);
  color: var(--text-1);
}

.btn-secondary:hover {
  border-color: var(--border-3);
  background: var(--bg-3);
}

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

.btn-ghost:hover {
  background: var(--bg-3);
  color: var(--text-1);
}

.btn-large {
  min-height: 50px;
  border-radius: 14px;
  padding: 13px 18px;
  font-size: 15px;
}

.page-main {
  min-height: 70vh;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 40px 74px;
  text-align: center;
}

.hero-compact {
  padding-top: 72px;
  padding-bottom: 52px;
  text-align: left;
}

.living-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .95;
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-centered {
  max-width: 840px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-height: 30px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(12, 18, 29, .82);
  color: var(--text-2);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 12px rgba(47, 217, 142, .45);
}

.status-dot.warning {
  background: var(--warning);
  box-shadow: 0 0 12px rgba(255, 178, 36, .35);
}

.status-dot.danger {
  background: var(--danger);
  box-shadow: 0 0 12px rgba(255, 93, 115, .35);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 840px;
  margin: 26px auto 0;
  color: var(--text-1);
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.hero-compact h1 {
  margin-left: 0;
  max-width: 720px;
  font-size: 56px;
}

.hero h1 em,
.section-title em,
.quote-title em {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-sub {
  max-width: 520px;
  margin: 22px auto 0;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.55;
}

.hero-compact .hero-sub {
  margin-left: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-compact .hero-actions {
  justify-content: flex-start;
}

.proof-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.proof-line > span,
.proof-line > small {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid var(--border-1);
  border-radius: 999px;
  background: rgba(12, 18, 29, .72);
  color: var(--text-2);
  padding: 5px 10px;
}

.proof-line > small {
  color: var(--text-3);
  font-size: inherit;
}

.demo-frame {
  position: relative;
  max-width: 900px;
  margin: 64px auto 0;
  border: 1px solid var(--border-2);
  border-radius: 28px;
  background: rgba(8, 13, 21, .72);
  box-shadow: var(--shadow-3);
  padding: 18px;
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.demo-frame::before,
.panel::before,
.product-card::before,
.plan-card::before,
.template-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  border-radius: inherit;
  background: var(--border-highlight);
  content: "";
}

.demo-question {
  margin: 2px 2px 10px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(220px, .85fr) minmax(0, 1.25fr);
  gap: 14px;
  align-items: stretch;
}

.launch-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.launch-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  border: 1px solid var(--border-1);
  border-radius: 18px;
  background: var(--bg-2);
  color: var(--text-1);
  padding: 14px;
}

.launch-tile.is-selected {
  border-color: rgba(34, 198, 252, .42);
  background: linear-gradient(120deg, rgba(34, 198, 252, .10), rgba(122, 90, 255, .08)), var(--bg-2);
}

.launch-icon,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--border-1);
  border-radius: 12px;
  background: var(--bg-4);
  color: var(--text-2);
}

.launch-tile.is-selected .launch-icon,
.product-card:hover .card-icon,
.template-card:hover .card-icon {
  color: var(--brand-cyan);
}

.launch-copy b,
.product-card b,
.template-card b,
.step-card b {
  display: block;
  color: var(--text-1);
  font-size: 16px;
  font-weight: 600;
}

.launch-copy span,
.product-card p,
.template-card p,
.step-card p {
  display: block;
  margin: 4px 0 0;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.5;
}

.deploy-area {
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr);
  gap: 8px;
}

.deploy-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  min-height: 58px;
  border: 1px solid var(--border-1);
  border-radius: 18px;
  background: var(--bg-2);
  padding: 10px;
}

.deploy-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  border-radius: 12px;
  background: rgba(151, 178, 255, .04);
  color: var(--text-3);
  padding: 8px;
}

.deploy-step b {
  color: inherit;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.deploy-step.is-live {
  background: rgba(34, 198, 252, .11);
  color: var(--text-1);
}

.terminal {
  overflow: hidden;
  border: 1px solid var(--border-1);
  border-radius: 18px;
  background: var(--bg-terminal);
}

.terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  border-bottom: 1px solid var(--border-1);
  padding: 0 13px;
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 12px;
}

.terminal-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.terminal-body {
  min-height: 178px;
  padding: 12px 13px 14px;
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
}

.log-line {
  display: grid;
  grid-template-columns: 58px 58px minmax(0, 1fr);
  gap: 9px;
  align-items: baseline;
  animation: fade-up var(--duration-slow) var(--ease-out);
}

.log-line [data-tone="ok"] {
  color: var(--success);
}

.log-line [data-tone="info"] {
  color: var(--brand-cyan);
}

.section {
  padding: 80px 40px;
}

.section.tint {
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  background: rgba(8, 13, 21, .72);
}

.section.fx {
  position: relative;
  overflow: hidden;
}

.section.fx::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 320px at 16% 18%, rgba(34, 198, 252, .075), transparent 70%),
    radial-gradient(760px 400px at 86% 82%, rgba(122, 90, 255, .08), transparent 70%),
    var(--dot-grid);
  background-size: auto, auto, var(--dot-grid-size);
  opacity: .78;
  content: "";
}

.section-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.kicker {
  margin-bottom: 12px;
  color: var(--brand-cyan);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-title {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--text-1);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.12;
}

.section-copy {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

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

.product-card,
.plan-card,
.template-card,
.panel,
.step-card,
.policy-card {
  position: relative;
  border: 1px solid var(--border-1);
  border-radius: 18px;
  background: rgba(12, 18, 29, .82);
}

.product-card,
.template-card,
.step-card,
.policy-card {
  padding: 24px;
}

.product-card,
.template-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  gap: 12px;
  transition: border-color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.product-card:hover,
.template-card:hover {
  border-color: var(--border-2);
  background: rgba(18, 25, 39, .86);
  color: var(--text-1);
  transform: translateY(-2px);
}

.product-card footer,
.template-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  color: var(--brand-cyan);
  font-size: 13px;
  font-weight: 600;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 27px;
  border: 1px solid var(--border-1);
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--text-2);
  padding: 5px 9px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.1;
  white-space: nowrap;
}

.tag.accent {
  border-color: rgba(34, 198, 252, .22);
  background: rgba(34, 198, 252, .10);
  color: var(--brand-cyan);
}

.step-card {
  min-height: 182px;
}

.step-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-bottom: 16px;
  border: 2.5px solid var(--brand-cyan);
  border-radius: 999px;
}

.step-card:last-child .step-dot {
  border: 0;
  background: #fff;
  box-shadow: 0 0 12px rgba(122, 90, 255, .5), 0 0 0 4px rgba(122, 90, 255, .25);
}

.step-num {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.cap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.cap {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid var(--border-1);
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--text-2);
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  white-space: nowrap;
}

.cap .icon {
  color: var(--brand-cyan);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.panel {
  padding: 28px;
}

.panel h2,
.panel h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.panel p,
.panel li {
  color: var(--text-2);
  line-height: 1.6;
}

.panel ul,
.policy-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.panel li + li,
.policy-card li + li {
  margin-top: 7px;
}

.quote {
  position: relative;
  overflow: hidden;
  padding: 96px 40px;
  text-align: center;
}

.quote::before {
  position: absolute;
  inset: 0;
  background-image: var(--dot-grid);
  background-size: var(--dot-grid-size);
  mask-image: radial-gradient(ellipse 50% 70% at 50% 50%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 50% 70% at 50% 50%, #000 20%, transparent 72%);
  content: "";
}

.quote-inner {
  position: relative;
}

.quote-title {
  max-width: 760px;
  margin: 0 auto;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
}

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

.plan-grid-narrow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
}

.plan-grid-single {
  grid-template-columns: minmax(0, 440px);
}

.tariff-families {
  display: grid;
  gap: 20px;
}

.tariff-family {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 2.22fr);
  gap: 24px;
  overflow: hidden;
  border: 1px solid var(--border-1);
  border-radius: 28px;
  background: rgba(8, 13, 21, .72);
  padding: 26px;
}

.tariff-family::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--family-accent, var(--brand-cyan));
  content: "";
}

.tariff-family-lite {
  --family-accent: linear-gradient(90deg, var(--brand-cyan), var(--brand-blue));
  background: linear-gradient(145deg, rgba(34, 198, 252, .05), transparent 42%), rgba(8, 13, 21, .76);
}

.tariff-family-plus {
  --family-accent: linear-gradient(90deg, var(--brand-blue), var(--brand-violet));
  background: linear-gradient(145deg, rgba(122, 90, 255, .07), transparent 42%), rgba(8, 13, 21, .76);
}

.tariff-family-head {
  align-self: stretch;
  min-height: 0;
  border-right: 1px solid var(--border-1);
  padding: 4px 24px 4px 2px;
}

.tariff-family-head h2,
.tariff-family-head h3 {
  margin: 14px 0 7px;
  font-size: 28px;
  line-height: 1.1;
}

.tariff-family-head p {
  max-width: 560px;
  margin: 0;
  color: var(--text-2);
  line-height: 1.55;
}

.family-includes-title {
  margin-top: 24px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.family-includes {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.family-includes li {
  display: flex;
  gap: 8px;
  color: var(--text-2);
  font-size: 12.5px;
  line-height: 1.4;
}

.family-includes .icon {
  margin-top: 1px;
  color: var(--success);
}

.term-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 356px;
  padding: 22px;
  transition: border-color var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), opacity var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.plan-card.highlight {
  border-color: rgba(34, 198, 252, .34);
  background:
    linear-gradient(120deg, rgba(34, 198, 252, .10), rgba(122, 90, 255, .08)),
    rgba(12, 18, 29, .9);
}

.plan-card:hover {
  z-index: 2;
  border-color: rgba(75, 141, 253, .82);
  background: linear-gradient(135deg, rgba(34, 198, 252, .14), rgba(75, 141, 253, .16)), rgba(12, 18, 29, .96);
  box-shadow: 0 18px 48px rgba(40, 116, 235, .18);
  transform: translateY(-4px);
}

.plan-card-top {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.plan-card h3 {
  margin: 20px 0 4px;
  font-size: 24px;
  line-height: 1.2;
}

.plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 5px;
  color: var(--text-1);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.plan-price small {
  color: var(--text-3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-equivalent {
  color: var(--brand-cyan);
  font-family: var(--font-mono);
  font-size: 11.5px;
}

.plan-pitch {
  margin: 20px 0 22px;
  line-height: 1.55;
}

.plan-card p,
.plan-card li {
  color: var(--text-2);
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.monthly-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 32px;
  align-items: start;
  margin-top: 18px;
  scroll-margin-top: 80px;
  background:
    radial-gradient(circle at 85% 0%, rgba(122, 90, 255, .13), transparent 34%),
    rgba(12, 18, 29, .86);
}

.monthly-card h3 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.monthly-copy .monthly-definition {
  max-width: 690px;
  font-size: 17px;
  line-height: 1.55;
}

.monthly-copy .monthly-story {
  max-width: 760px;
  margin-top: 10px;
  color: var(--text-2);
  line-height: 1.55;
}

.monthly-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, .75fr);
  gap: 20px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border-1);
}

.monthly-detail-grid h4 {
  margin: 0 0 10px;
  color: var(--text-1);
  font-size: 13px;
}

.monthly-detail-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.monthly-detail-grid li {
  display: flex;
  gap: 8px;
  color: var(--text-2);
  font-size: 12.5px;
  line-height: 1.45;
}

.monthly-detail-grid li .icon {
  margin-top: 2px;
  color: var(--success);
}

.monthly-detail-grid p {
  margin: 0;
  color: var(--text-3);
  font-size: 12.5px;
  line-height: 1.55;
}

.monthly-price {
  display: grid;
  min-width: 220px;
  justify-items: end;
  gap: 9px;
  text-align: right;
}

.monthly-price .plan-price {
  margin: 0;
}

.monthly-price > span {
  color: var(--text-3);
  font-size: 12px;
}

.moment-panel {
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(34, 198, 252, .08), rgba(122, 90, 255, .06)),
    rgba(12, 18, 29, .86);
}

.moment-panel blockquote {
  max-width: 940px;
  margin: 16px 0 0;
  color: var(--text-1);
  font-size: clamp(24px, 3.1vw, 42px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-1);
  border-radius: 18px;
  background: rgba(12, 18, 29, .72);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--border-1);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--text-1);
  font-size: 12px;
  font-weight: 700;
}

td {
  color: var(--text-2);
}

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

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

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

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

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field span {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--border-1);
  border-radius: 12px;
  background: var(--bg-3);
  color: var(--text-1);
  padding: 10px 12px;
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--border-3);
  background: var(--bg-4);
}

.field small {
  color: var(--text-3);
  font-size: 12px;
}

.check-field a,
.text-link {
  color: var(--brand-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(34, 198, 252, .36);
  text-underline-offset: 3px;
}

.btn:disabled {
  border-color: var(--border-1);
  background: var(--bg-3);
  color: var(--text-disabled);
  cursor: not-allowed;
  opacity: .75;
  transform: none;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.45;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--brand-cyan);
}

.form-status {
  min-height: 22px;
  color: var(--text-2);
  font-size: 13px;
}

.form-status.ok {
  color: var(--success);
}

.form-status.warn {
  color: var(--warning);
}

.form-status.error {
  color: var(--danger);
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  max-width: 980px;
}

.auth-copy {
  align-self: start;
}

.auth-copy h2,
.auth-form h2 {
  margin: 18px 0 10px;
}

.auth-copy p,
.auth-copy li,
.auth-switch {
  color: var(--text-2);
}

.auth-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.auth-form {
  max-width: 100%;
}

.auth-switch {
  margin: 6px 0 0;
  text-align: center;
}

.account-shell {
  display: grid;
  gap: 24px;
}

.account-toolbar,
.account-order-head,
.account-order-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.account-toolbar h2,
.account-order-card h3,
.account-empty h3 {
  margin: 6px 0;
}

.account-toolbar p {
  margin: 0;
  color: var(--text-2);
}

.account-metrics .policy-card h2 {
  margin: 14px 0 4px;
  font-size: 32px;
}

.account-support-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: border-color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.account-support-card:hover {
  border-color: var(--border-2);
  background: rgba(18, 25, 39, .86);
  color: var(--text-1);
  transform: translateY(-2px);
}

.account-support-card .text-link {
  margin-top: auto;
  padding-top: 12px;
}

.account-section-head {
  margin-top: 18px;
}

.account-orders {
  display: grid;
  gap: 14px;
}

.account-order-card {
  display: grid;
  gap: 18px;
}

.account-order-details {
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border-1);
  color: var(--text-2);
}

.account-order-details span + span::before {
  content: "·";
  margin-right: 18px;
  color: var(--text-3);
}

.account-loading,
.account-empty {
  color: var(--text-2);
}

.account-empty .btn {
  margin-top: 14px;
}

.status-note {
  margin-top: 22px;
}

.site-footer {
  border-top: 1px solid var(--border-1);
  padding: 44px 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(150px, .75fr));
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-logo {
  width: 156px;
  height: auto;
}

.footer-note {
  max-width: 300px;
  margin-top: 18px;
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.55;
}

.footer-col h2 {
  margin-bottom: 12px;
  color: var(--text-1);
  font-size: 13px;
}

.footer-col a,
.footer-col button {
  display: block;
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--text-3);
  padding: 0;
  font-size: 12.5px;
  line-height: 1.9;
  text-align: left;
}

.footer-col a:hover,
.footer-col button:hover {
  color: var(--text-1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container);
  margin: 38px auto 0;
  border-top: 1px solid var(--border-1);
  padding-top: 22px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11.5px;
}

.privacy-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: min(420px, calc(100vw - 40px));
  border: 1px solid var(--border-2);
  border-radius: 18px;
  background: rgba(8, 13, 21, .96);
  box-shadow: var(--shadow-3);
  padding: 20px;
}

.privacy-panel[hidden] {
  display: none;
}

.privacy-panel h2 {
  margin-bottom: 8px;
  font-size: 18px;
}

.privacy-panel p {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.55;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.legal-doc {
  max-width: 860px;
  margin: 0 auto;
}

.legal-doc h2 {
  margin-top: 36px;
  font-size: 26px;
}

.legal-doc p,
.legal-doc li {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

.legal-doc ul {
  padding-left: 20px;
}

.disabled-note {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 12px;
}

.catalog-note {
  margin-top: 20px;
}

.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-1);
}

.footer-wordmark:hover {
  color: var(--text-1);
}

.footer-wordmark b {
  font-size: 19px;
}

.footer-wordmark em {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: normal;
}

.account-preview {
  display: grid;
  gap: 10px;
}

.account-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  background: var(--bg-2);
  padding: 12px;
}

.account-row b,
.account-row small {
  display: block;
}

.account-row small {
  margin-top: 3px;
  color: var(--text-3);
}

.status-pill {
  border: 1px solid var(--border-1);
  border-radius: 999px;
  color: var(--text-3);
  padding: 5px 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
}

.status-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.status-stage {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  background: var(--bg-2);
  padding: 14px;
  color: var(--text-2);
  font-size: 12px;
}

.stage-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--text-3);
}

.order-section {
  padding-top: 68px;
}

.order-selector {
  scroll-margin-top: 84px;
}

.order-selector > .section-head {
  margin-bottom: 28px;
}

.order-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

.order-form-wrap {
  width: 100%;
  min-width: 0;
}

.order-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.order-tariff-families {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 16px;
}

.order-family {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 82px;
  border: 1px solid var(--border-1);
  border-radius: 24px;
  background: rgba(8, 13, 21, .78);
  padding: 20px;
}

.order-family::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--family-accent, var(--brand-cyan));
  content: "";
}

.order-family-head {
  min-height: 128px;
  padding: 4px 2px 18px;
}

.order-family-head h2 {
  margin: 12px 0 6px;
  font-size: 25px;
}

.order-family-head p {
  max-width: 560px;
  margin: 0;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.5;
}

button.order-plan {
  width: 100%;
  min-height: 260px;
  color: inherit;
  text-align: left;
}

.order-plan-family {
  display: block;
  margin-top: 18px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.order-plan h3 {
  margin-top: 6px;
}

.order-plan .plan-price {
  font-size: 36px;
}

.order-plan footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  color: var(--brand-cyan);
  font-size: 13px;
  font-weight: 600;
}

.order-plan.is-selected {
  z-index: 3;
  border-color: rgba(34, 198, 252, .92);
  background: linear-gradient(135deg, rgba(34, 198, 252, .20), rgba(75, 141, 253, .19)), rgba(12, 18, 29, .98);
  box-shadow: inset 0 0 0 2px rgba(34, 198, 252, .16), 0 22px 56px rgba(34, 198, 252, .20);
  transform: translateY(-7px) scale(1.025);
}

.order-plan.is-selected footer {
  color: #fff;
}

.order-tariff-families.has-selection .order-plan:not(.is-selected) {
  opacity: .66;
  transform: scale(.985);
}

.order-tariff-families.has-selection .order-plan:not(.is-selected):hover {
  opacity: 1;
  transform: translateY(-4px);
}

.order-form {
  margin-top: 0;
  border: 1px solid var(--border-1);
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(34, 198, 252, .04), rgba(122, 90, 255, .04)), rgba(12, 18, 29, .84);
  padding: 26px;
}

.order-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 6px;
}

.order-form-head h2 {
  margin: 0;
}

.order-form-head p {
  max-width: 600px;
  margin: 9px 0 0;
  color: var(--text-2);
  line-height: 1.55;
}

.order-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(37, 214, 139, .28);
  border-radius: 14px;
  background: rgba(37, 214, 139, .08);
  padding: 16px;
}

.order-success[hidden] {
  display: none;
}

.order-success .card-icon {
  color: var(--success);
}

.order-success b {
  color: var(--text-1);
}

.order-success p {
  margin: 6px 0 0;
  color: var(--text-2);
  line-height: 1.5;
}

button.order-service {
  width: 100%;
  color: inherit;
  text-align: left;
}

.order-service.is-selected {
  border-color: rgba(34, 198, 252, .48);
  background: linear-gradient(120deg, rgba(34, 198, 252, .10), rgba(122, 90, 255, .08)), var(--bg-2);
  box-shadow: inset 0 0 0 1px rgba(34, 198, 252, .08);
}

.order-service.is-selected .card-icon,
.order-service.is-selected footer {
  color: var(--brand-cyan);
}

.tariff-placeholder {
  margin-top: 18px;
}

.tariff-placeholder h2 {
  margin-top: 18px;
}

.placeholder-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.placeholder-lines span {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bg-4), rgba(26, 35, 52, .25));
}

.placeholder-lines span:nth-child(2) {
  width: 78%;
}

.placeholder-lines span:nth-child(3) {
  width: 56%;
}

.order-summary {
  position: sticky;
  top: 90px;
}

.order-summary dl {
  margin: 18px 0 22px;
}

.order-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--border-1);
  padding: 12px 0;
}

.order-summary dt {
  color: var(--text-3);
}

.order-summary dd {
  margin: 0;
  color: var(--text-1);
  font-weight: 600;
  text-align: right;
}

.legal-version {
  border: 1px solid rgba(255, 178, 36, .18);
  border-radius: 12px;
  background: rgba(255, 178, 36, .07);
  padding: 14px 16px;
  color: var(--warning) !important;
  font-family: var(--font-mono);
  font-size: 12px !important;
}

.account-card h2,
.policy-card h3 {
  margin: 16px 0 8px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-drawer {
    position: fixed;
    inset: 69px 0 0;
    z-index: 45;
    display: none;
    overflow-y: auto;
    border-bottom: 0;
    background:
      radial-gradient(520px 260px at 80% 0%, rgba(122, 90, 255, .10), transparent 72%),
      rgba(4, 6, 11, .985);
    padding: 16px 24px 24px;
  }

  body.nav-open .mobile-drawer {
    display: grid;
    gap: 8px;
  }

  .mobile-drawer .nav-link,
  .mobile-drawer .btn {
    justify-content: flex-start;
    width: 100%;
  }

  .mobile-drawer .language-switcher {
    justify-content: center;
    width: max-content;
    margin: 4px 0;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-compact h1 {
    font-size: 48px;
  }

  .grid-4,
  .plan-grid,
  .order-plan-grid,
  .term-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .tariff-family {
    grid-template-columns: 1fr;
  }

  .tariff-family-head {
    border-right: 0;
    border-bottom: 1px solid var(--border-1);
    padding: 4px 2px 22px;
  }

  .order-tariff-families {
    grid-template-columns: 1fr;
  }

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

  .order-checkout-layout {
    display: flex;
    flex-direction: column;
  }

  .order-summary {
    position: static;
    order: -1;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .site-nav {
    min-height: 62px;
    padding: 0 16px;
  }

  .mobile-drawer {
    inset: 63px 0 0;
  }

  .brand b {
    font-size: 18px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-actions .nav-login {
    display: none;
  }

  .hero,
  .section,
  .quote,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 66px;
    padding-bottom: 54px;
  }

  .hero-compact {
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .hero h1,
  .hero-compact h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 16px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .demo-frame {
    margin-top: 42px;
    border-radius: 20px;
    padding: 12px;
  }

  .demo-grid,
  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .plan-grid,
  .tariff-families,
  .form-grid,
  .form-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .tariff-family {
    gap: 18px;
    border-radius: 22px;
    padding: 18px;
  }

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

  .term-grid,
  .term-grid.is-three,
  .order-plan-grid,
  .order-plan-grid.is-three {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 86%);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 4px 4px 12px;
    scroll-padding-inline: 4px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(75, 141, 253, .55) transparent;
  }

  .term-grid .plan-card,
  .order-plan-grid .order-plan {
    scroll-snap-align: start;
  }

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

  .auth-form-panel,
  .contact-form-panel {
    order: -1;
  }

  .account-toolbar,
  .account-order-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-order-details {
    display: grid;
    gap: 8px;
  }

  .account-order-details span + span::before {
    display: none;
  }

  .order-form-head {
    flex-direction: column;
  }

  .monthly-card {
    grid-template-columns: 1fr;
  }

  .monthly-detail-grid {
    grid-template-columns: 1fr;
  }

  .monthly-price {
    justify-items: start;
    text-align: left;
  }

  .billing-options {
    grid-template-columns: 1fr;
  }

  .billing-option {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 0;
  }

  .billing-option > strong {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .deploy-area {
    grid-template-rows: auto auto;
  }

  .deploy-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-head {
    display: block;
  }

  .section-head > .btn {
    margin-top: 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .quote-title {
    font-size: 34px;
  }

  .plan-card {
    min-height: 342px;
  }

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

  .order-family-head {
    min-height: 0;
    padding-bottom: 18px;
  }

  button.order-plan {
    min-height: 280px;
  }

  .tariff-family-head {
    min-height: 0;
  }

  .order-plan.is-selected {
    transform: translateY(-2px);
  }

  .footer-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .footer-inner > :first-child {
    grid-column: 1 / -1;
  }

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

  .status-track {
    grid-template-columns: 1fr;
  }

  .account-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .account-row .status-pill {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 460px) {
  .hero h1,
  .hero-compact h1 {
    font-size: 34px;
  }

  .hero-sub,
  .section-copy {
    font-size: 15px;
  }

  .proof-line {
    gap: 6px;
  }

  .proof-line > span,
  .proof-line > small {
    min-height: 27px;
    padding: 5px 8px;
  }

  .family-includes {
    grid-template-columns: 1fr;
  }

  .plan-card {
    padding: 20px;
  }

  .plan-price {
    font-size: 40px;
  }

  .eyebrow {
    white-space: normal;
  }

  .launch-tile {
    min-height: 58px;
  }

  .deploy-step b {
    font-size: 10.5px;
  }

  .terminal-body,
  .terminal-head {
    font-size: 11px;
  }

  .log-line {
    grid-template-columns: 48px 48px minmax(0, 1fr);
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
