/* 
  Operations X-Ray
  Clean, dark, “governance AI” aesthetic
*/

/* Root + base */

:root {
  --bg: #020617;
  --bg-alt: #050816;
  --accent: #5ef2c4;
  --accent-soft: rgba(94, 242, 196, 0.15);
  --accent-strong: #42d9aa;
  --danger: #f97373;

  --text-main: #f9fafb;
  --text-soft: #9ca3af;

  --card-bg: rgba(15, 23, 42, 0.92);
  --border-subtle: rgba(148, 163, 184, 0.32);
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.9);

  --radius-xl: 24px;
  --radius-lg: 18px;

  --transition-fast: 200ms ease-out;
  --transition-med: 260ms ease;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 18px;
  --space-xl: 24px;
  --space-2xl: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, #0f172a 0, #020617 38%, #020617 100%);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* subtle global glow overlay */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 0%, rgba(94, 242, 196, 0.12), transparent 55%),
    radial-gradient(circle at 82% 10%, rgba(96, 165, 250, 0.16), transparent 60%),
    radial-gradient(circle at 50% 110%, rgba(248, 250, 252, 0.06), transparent 60%);
  opacity: 0.95;
  z-index: -1;
}

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

/* Layout containers */

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 72px;
}

/* Header */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 0%, #5ef2c4, #22c55e);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #022c22;
}

.brand-text-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
  color: #e5e7eb;
}

.brand-text-sub {
  font-size: 12px;
  color: var(--text-soft);
}

/* Nav */

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  font-size: 13px;
  color: var(--text-soft);
  padding: 4px 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #5ef2c4, #38bdf8);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.32);
  backdrop-filter: blur(18px);
  font-size: 12px;
  color: var(--text-soft);
}

.nav-pill span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #bbf7d0;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.hero-left {
  min-width: 0;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  margin-bottom: var(--space-sm);
  font-size: 11px;
  color: var(--text-soft);
}

.hero-tagline-badge {
  padding: 4px 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #5ef2c4, #22c55e);
  color: #022c22;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.45rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.hero-title span {
  background: linear-gradient(120deg, #5ef2c4, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: var(--space-md);
}

.hero-metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero-metric {
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-metric strong {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 13px;
  color: #e5e7eb;
}

.hero-metric-pill {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #bbf7d0;
  font-size: 11px;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: 6px;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #5ef2c4, #38bdf8);
  color: #022c22;
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(15, 118, 110, 0.6);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.65);
  color: var(--text-soft);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.98);
  transform: translateY(-1px);
  border-color: var(--accent);
}

.btn-primary .icon {
  font-size: 14px;
}

.hero-note {
  font-size: 11px;
  color: var(--text-soft);
}

/* Hero right panel */

.hero-right {
  position: relative;
}

.panel {
  position: relative;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 0, rgba(94, 242, 196, 0.18), transparent 50%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.42);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4b5563;
}

.dot.red {
  background: #fb7185;
}

.dot.amber {
  background: #facc15;
}

.dot.green {
  background: #4ade80;
}

.panel-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 12px;
  color: #e5e7eb;
}

.panel-body {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
}

.mini-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}

.mini-card {
  border-radius: 16px;
  padding: 8px 9px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 11px;
}

.mini-card-label {
  color: var(--text-soft);
  margin-bottom: 2px;
}

.mini-card-value {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.mini-card-trend {
  font-size: 11px;
  color: #4ade80;
}

.mini-card-trend.bad {
  color: #fb7185;
}

.leakage-box {
  border-radius: 18px;
  padding: 10px 10px 11px;
  background: rgba(185, 28, 28, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.5);
  font-size: 11px;
  margin-bottom: 8px;
}

.leakage-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #fecaca;
  margin-bottom: 3px;
}

.leakage-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.leakage-main strong {
  font-size: 13px;
  color: #fee2e2;
}

.leakage-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.1);
  color: #fecaca;
  font-size: 10px;
  white-space: nowrap;
}

.panel-list {
  list-style: none;
  font-size: 11px;
  color: var(--text-soft);
  padding-left: 0;
  margin: 0;
}

.panel-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.panel-pill {
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 10px;
  color: #e5e7eb;
}

.panel-side {
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% 0, rgba(94, 242, 196, 0.22), transparent 60%),
    rgba(15, 23, 42, 0.95);
  border: 1px dashed rgba(148, 163, 184, 0.7);
  padding: 10px;
  font-size: 11px;
}

.panel-side-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.panel-side-main {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 13px;
  margin-bottom: 6px;
}

.panel-side-main span {
  color: var(--accent-strong);
}

.panel-side-foot {
  font-size: 10px;
  color: var(--text-soft);
}

/* Sections */

.section {
  margin-top: var(--space-2xl);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-soft);
  max-width: 420px;
}

/* Pills */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 11px;
  color: #e5e7eb;
}

/* Cards / grids */

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

.card {
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  padding: 14px 14px 16px;
  font-size: 13px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.7);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-med),
    background var(--transition-med);
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(94, 242, 196, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.98);
}

.card:hover::before {
  opacity: 1;
}

.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.card-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 15px;
  margin-bottom: 6px;
}

.card-body {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.card-stat {
  font-size: 11px;
  color: #bbf7d0;
}

.card-stat.bad {
  color: #fecaca;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 6px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step {
  display: flex;
  gap: 10px;
  font-size: 13px;
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
}

.step-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}

.step-body {
  font-size: 12px;
  color: var(--text-soft);
}

.highlight-box {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 12px 12px 13px;
  font-size: 12px;
}

.highlight-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.highlight-main {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 14px;
  margin-bottom: 4px;
}

.highlight-main span {
  color: var(--accent);
}

.highlight-foot {
  font-size: 11px;
  color: var(--text-soft);
}

/* Node section */

.node-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: center;
}

.node-visual-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.node-visual {
  position: relative;
  width: 220px;
  height: 180px;
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.15), transparent 55%),
    linear-gradient(145deg, #020617, #020617 40%, #020617 100%);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 18px;
}

.node-top-glow {
  position: absolute;
  inset: -40% -10% auto;
  background: radial-gradient(circle at 50% 0, rgba(148, 163, 184, 0.16), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.node-body {
  position: relative;
  width: 140px;
  height: 80px;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 1), #020617 70%);
  border: 1px solid rgba(31, 41, 55, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.node-logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 0%, #5ef2c4, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #022c22;
}

.node-ring {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-led {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.9);
  display: block;
}

.node-button {
  margin-top: 12px;
  width: 42px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: linear-gradient(90deg, #020617, #111827);
  color: #e5e7eb;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.node-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.7);
  border-color: var(--accent);
}

.node-caption {
  font-size: 11px;
  color: var(--text-soft);
  max-width: 260px;
}

/* Node states */

.node-state-green .node-led {
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.9);
}

.node-state-amber .node-led {
  background: #facc15;
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.9);
}

.node-state-red .node-led {
  background: #fb7185;
  box-shadow: 0 0 18px rgba(248, 113, 113, 0.95);
}

.node-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.node-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 15px;
  margin-bottom: 4px;
}

.node-text {
  font-size: 13px;
  color: var(--text-soft);
}

.node-controls {
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 10px 12px 12px;
}

.node-controls-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.node-controls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.node-state-btn {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 11px;
  padding: 5px 10px;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.node-state-btn:hover {
  background: rgba(15, 23, 42, 1);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.node-state-btn.is-active {
  border-color: var(--accent);
  background: rgba(34, 197, 94, 0.14);
}

.node-state-text {
  font-size: 12px;
  color: var(--text-soft);
}

.node-footnote {
  font-size: 11px;
  color: var(--text-soft);
}

/* Pricing */

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

.price-card {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 12px 12px 14px;
  font-size: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-med);
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 1);
  border-color: rgba(148, 163, 184, 0.9);
}

.price-card.featured {
  border-color: var(--accent-strong);
  box-shadow: 0 26px 70px rgba(94, 242, 196, 0.45);
}

.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 9px;
  right: 10px;
  padding: 3px 9px;
  font-size: 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 13px;
  margin-bottom: 2px;
}

.price-tagline {
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.price-value {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 15px;
  margin-bottom: 2px;
}

.price-note {
  font-size: 10px;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.price-list {
  list-style: none;
  font-size: 11px;
  color: var(--text-soft);
  padding-left: 0;
  margin: 0;
}

.price-list li {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.price-dot {
  color: var(--accent);
  margin-top: 1px;
  font-size: 9px;
}

/* Footer */

.footer {
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid rgba(30, 64, 175, 0.6);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-soft);
}

.footer-logo {
  width: 28px;
  height: 28px;
  font-size: 14px;
  box-shadow: none;
}

.founders {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.founder-names {
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-pill {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
}

/* Responsive */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .panel {
    margin-bottom: 4px;
  }

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

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

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

  .node-visual {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-right {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .page {
    padding-inline: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
