:root {
  --bg: #111418;
  --bg-page: linear-gradient(180deg, #111418 0%, #171c22 100%);
  --bg-radial-left: rgba(34, 197, 94, 0.12);
  --bg-radial-right: rgba(14, 165, 233, 0.12);
  --bg-elevated: #171c22;
  --bg-panel: rgba(23, 28, 34, 0.92);
  --bg-soft: rgba(255, 255, 255, 0.04);
  --border: rgba(148, 163, 184, 0.14);
  --text: #f8fafc;
  --muted: #96a4b5;
  --accent: #22c55e;
  --accent-strong: #16a34a;
  --accent-alt: #38bdf8;
  --danger: #fb7185;
  --warning: #f59e0b;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  --radius: 8px;
  --mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  --sans: "Segoe UI", "Inter", system-ui, sans-serif;
}

[data-theme="light"] {
  --bg: #f1f6fb;
  --bg-page: linear-gradient(180deg, #f7fbff 0%, #eef4f9 100%);
  --bg-radial-left: rgba(34, 197, 94, 0.12);
  --bg-radial-right: rgba(14, 165, 233, 0.1);
  --bg-elevated: #ffffff;
  --bg-panel: rgba(255, 255, 255, 0.94);
  --bg-soft: rgba(19, 36, 58, 0.04);
  --border: rgba(31, 50, 76, 0.12);
  --text: #102033;
  --muted: #60758d;
  --accent: #0f9f52;
  --accent-strong: #0b8041;
  --accent-alt: #0ea5e9;
  --danger: #cc4d5f;
  --warning: #a86b07;
  --shadow: 0 18px 40px rgba(34, 63, 96, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, var(--bg-radial-left), transparent 36%),
    radial-gradient(circle at top right, var(--bg-radial-right), transparent 28%),
    var(--bg-page);
  color: var(--text);
  font-family: var(--sans);
}

body {
  min-width: 0;
}

.shell,
.page-shell {
  width: min(1480px, calc(100vw - 24px));
  margin: 0 auto;
  padding: 18px 0 32px;
}

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

h1 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.02;
}

h2 {
  font-size: 20px;
  line-height: 1.15;
}

h3 {
  font-size: 17px;
  line-height: 1.2;
}

.eyebrow,
.panel-kicker,
.service-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow,
.panel-kicker {
  color: var(--muted);
}

.service-kicker {
  color: var(--accent-alt);
}

.lead,
.service-text,
.status-note,
.settings-note,
.leader-route,
.alert-meta,
.alert-time,
.field span,
.metric-label,
.panel-meta,
.pricing-copy,
.plan-copy,
.faq-answer,
.checkout-copy,
.order-meta {
  color: var(--muted);
}

.topbar,
.service-band,
.hero-grid,
.toolbar,
.content-grid {
  width: 100%;
}

.topbar,
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 20;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(17, 20, 24, 0.72);
  backdrop-filter: blur(18px);
}

.brand-block,
.page-copy {
  max-width: 780px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text .eyebrow {
  color: var(--accent-alt);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(143, 168, 193, 0.16);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.12);
}

.brand-name {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.lead,
.pricing-copy,
.checkout-copy {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
}

.topbar-actions,
.page-actions,
.service-actions,
.quick-actions,
.plan-actions,
.checkout-actions,
.billing-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.nav-link.is-active {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.26);
}

button,
select,
input,
textarea,
a {
  font: inherit;
}

.primary-button,
.ghost-button,
.anchor-chip,
.switch-chip {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.primary-button {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #08130d;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.18);
}

.ghost-button,
.switch-chip {
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ghost-button:hover,
.anchor-chip:hover,
.switch-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(148, 163, 184, 0.28);
}

.primary-button:disabled,
.ghost-button:disabled {
  opacity: 0.5;
  cursor: default;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.full-width-button {
  width: 100%;
}

.anchor-chip {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.switch-chip.is-active {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.28);
}

.service-band,
.metric-panel,
.panel,
.toolbar,
.highlight-card,
.access-card,
.plan-card,
.checkout-card,
.summary-card,
.feature-band,
.faq-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.service-band,
.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.9fr);
  gap: 16px;
  padding: 20px;
  margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(14, 165, 233, 0.12), transparent 52%),
    var(--bg-panel);
}

.service-copy h2,
.feature-copy h2 {
  max-width: 860px;
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.service-text {
  max-width: 860px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.highlight-card,
.summary-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 168px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(34, 197, 94, 0.12), transparent 60%),
    var(--bg-panel);
}

.highlight-label,
.access-label,
.data-card-kicker,
.plan-badge,
.summary-label,
.checkout-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}

.highlight-value,
.summary-title {
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.05;
}

.highlight-meta,
.summary-meta {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.floating-card {
  animation: floatPanel 8s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.metric-panel {
  min-height: 102px;
  padding: 18px;
}

.metric-label {
  display: block;
  font-size: 13px;
  margin-bottom: 12px;
}

.metric-value {
  display: block;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.05;
}

.metric-value-small {
  font-size: 18px;
}

.accent-value {
  color: var(--accent);
  animation: pulseAccent 3.2s ease-in-out infinite;
}

.content-grid,
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.95fr);
  gap: 16px;
  align-items: start;
}

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

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

.guide-card {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(143, 168, 193, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.step-card,
.owner-card {
  display: grid;
  gap: 10px;
  min-height: 140px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(143, 168, 193, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: var(--accent);
  font-weight: 700;
}

.step-card span,
.owner-card span {
  color: var(--muted);
  line-height: 1.5;
}

.muted-owner-card {
  min-height: auto;
}

.guide-card strong {
  font-size: 15px;
}

.guide-card span {
  color: var(--muted);
  line-height: 1.5;
}

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

.main-column,
.side-column,
.checkout-main,
.checkout-side {
  display: grid;
  gap: 16px;
}

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

.panel,
.plan-card,
.checkout-card,
.faq-card {
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 0;
}

.tabs-bar {
  display: flex;
  justify-content: flex-start;
  padding: 14px 18px 0;
}

.tabs-bar-wide {
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  flex-wrap: wrap;
}

.segmented-control {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 6px;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid rgba(143, 168, 193, 0.12);
  background: var(--bg-soft);
}

.segment-button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.segment-button.is-active {
  background: rgba(34, 197, 94, 0.16);
  color: var(--text);
}

.toolbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 16px 18px;
  margin: 16px 18px 0;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 13px;
}

.compact-field {
  min-width: min(260px, 100%);
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid rgba(143, 168, 193, 0.22);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.92);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

select:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(34, 197, 94, 0.38);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

select,
input {
  height: 40px;
  padding: 0 12px;
}

textarea {
  padding: 10px 12px;
  resize: vertical;
}

[data-theme="light"] select,
[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] .mini-stat,
[data-theme="light"] .alert-item,
[data-theme="light"] .leader-item,
[data-theme="light"] .error-item,
[data-theme="light"] .empty-state,
[data-theme="light"] .segmented-control,
[data-theme="light"] .data-card,
[data-theme="light"] .access-card,
[data-theme="light"] .access-link,
[data-theme="light"] .plan-card,
[data-theme="light"] .checkout-card,
[data-theme="light"] .summary-card,
[data-theme="light"] .faq-card,
[data-theme="light"] .promo-card,
[data-theme="light"] .feature-item {
  background: rgba(10, 24, 40, 0.03);
}

.toolbar-status {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #dcfce7;
  font-size: 13px;
}

.muted-pill {
  background: rgba(143, 168, 193, 0.14);
  color: var(--muted);
}

.stack,
.plan-content,
.checkout-content,
.faq-content {
  display: grid;
  gap: 10px;
  padding: 16px 18px 18px;
}

.settings-stack {
  gap: 14px;
}

.compact-stack {
  padding-top: 0;
}

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

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

.checklist li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.checkbox-list,
.preset-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkbox-chip,
.preset-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(143, 168, 193, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.checkbox-chip:hover,
.preset-chip:hover {
  transform: translateY(-1px);
}

.checkbox-chip input {
  width: 14px;
  height: 14px;
  margin: 0;
}

.preset-chip.is-active {
  border-color: rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.12);
}

.group-chip {
  font-weight: 600;
}

.mini-stat,
.promo-card,
.feature-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(143, 168, 193, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.promo-card,
.feature-item {
  min-height: auto;
  align-items: flex-start;
  flex-direction: column;
  padding: 16px;
}

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

.promo-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
}

.promo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-alt);
}

.mini-stat span {
  color: var(--muted);
  font-size: 13px;
}

.mini-stat strong {
  font-family: var(--mono);
  font-size: 18px;
}

.access-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  font-family: var(--mono);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.muted-access {
  color: var(--muted);
}

.access-list {
  display: grid;
  gap: 8px;
}

.access-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-alt);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.access-link:hover {
  border-color: rgba(14, 165, 233, 0.3);
}

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

.settings-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.status-note,
.settings-note,
.faq-answer {
  font-size: 12px;
  line-height: 1.45;
}

.card-list {
  display: grid;
  gap: 12px;
  padding: 16px 18px 18px;
}

.is-hidden {
  display: none !important;
}

.card-list-compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.data-card,
.plan-card,
.checkout-card,
.faq-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(143, 168, 193, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.data-card:hover,
.plan-card:hover,
.checkout-card:hover,
.faq-card:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 163, 184, 0.22);
}

.compact-card {
  gap: 10px;
}

.data-card-top,
.plan-top,
.checkout-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.data-card-top strong,
.plan-top strong,
.checkout-top strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.data-card-badge,
.plan-price,
.checkout-price {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: var(--accent);
  font-weight: 700;
}

.plan-price,
.checkout-price {
  font-size: 18px;
}

.plan-copy,
.feature-item span,
.promo-card span {
  line-height: 1.55;
}

.plan-list,
.summary-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.plan-list li,
.summary-list li {
  position: relative;
  padding-left: 16px;
}

.plan-list li::before,
.summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.plan-card.is-featured {
  border-color: rgba(34, 197, 94, 0.24);
  box-shadow: 0 20px 46px rgba(34, 197, 94, 0.08);
}

.plan-note {
  color: var(--accent-alt);
  font-size: 12px;
}

.checkout-methods {
  display: grid;
  gap: 12px;
}

.checkout-card.is-selected {
  border-color: rgba(34, 197, 94, 0.26);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.12);
}

.checkout-badge {
  color: var(--accent-alt);
  font-size: 12px;
}

.summary-card strong {
  font-size: 18px;
}

.order-meta {
  display: block;
  margin-top: 4px;
}

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

.data-card-grid div {
  display: grid;
  gap: 4px;
}

.data-card-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.data-card-grid strong {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.table-wrap {
  overflow: auto;
  padding: 14px 18px 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(143, 168, 193, 0.1);
  text-align: left;
  font-size: 13px;
  white-space: nowrap;
}

th {
  color: var(--muted);
  font-weight: 600;
}

td {
  font-family: var(--mono);
}

tbody tr:hover {
  background: rgba(34, 197, 94, 0.06);
}

.positive-cell {
  color: var(--accent);
  font-weight: 700;
}

.alerts-list,
.errors-list {
  list-style: none;
  margin: 0;
  padding: 0 18px 18px;
}

.site-footer {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 165, 233, 0.1), transparent 38%),
    linear-gradient(135deg, rgba(34, 197, 94, 0.08), transparent 42%),
    var(--bg-panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.page-shell > .site-footer {
  margin-top: 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 22px 18px;
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-copy,
.footer-note,
.footer-column a {
  color: var(--muted);
  line-height: 1.55;
}

.footer-column strong {
  font-size: 15px;
}

.footer-column a {
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--text);
}

.alert-item,
.leader-item,
.error-item,
.empty-state {
  border-radius: 8px;
  border: 1px solid rgba(143, 168, 193, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.alert-item,
.leader-item,
.error-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  margin-bottom: 10px;
}

.alert-item strong,
.leader-item strong {
  font-size: 14px;
}

.empty-state {
  padding: 18px;
}

.compact-empty {
  padding: 10px 12px;
}

.desktop-table {
  display: block;
}

.section-reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: sectionReveal 520ms ease forwards;
}

.section-reveal:nth-child(1) { animation-delay: 40ms; }
.section-reveal:nth-child(2) { animation-delay: 90ms; }
.section-reveal:nth-child(3) { animation-delay: 140ms; }

.animated-card {
  opacity: 0;
  transform: translateY(12px);
  animation: cardReveal 420ms ease forwards;
  animation-delay: calc(var(--delay-index, 0) * 28ms);
}

@keyframes sectionReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseAccent {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1260px) {
  .service-band,
  .feature-band,
  .content-grid,
  .checkout-grid,
  .pricing-grid,
  .pricing-features-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .toolbar-status {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .shell,
  .page-shell {
    width: calc(100vw - 16px);
    padding-top: 12px;
  }

  .topbar,
  .page-header,
  .tabs-bar-wide {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-actions,
  .page-actions,
  .quick-actions,
  .checkout-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .settings-grid,
  .toolbar,
  .quick-actions,
  .data-card-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-band,
  .feature-band,
  .metric-panel,
  .toolbar,
  .panel-header,
  .stack,
  .table-wrap,
  .card-list,
  .promo-grid,
  .footer-grid,
  .plan-content,
  .checkout-content,
  .faq-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .panel-header {
    padding-top: 14px;
  }

  .tabs-bar {
    padding: 12px 14px 0;
  }

  .segmented-control {
    width: 100%;
    grid-auto-flow: row;
    grid-auto-columns: 1fr;
  }

  .desktop-table {
    display: none;
  }

  .data-card-top,
  .plan-top,
  .checkout-top {
    flex-direction: column;
  }
}
