@font-face {
  font-family: "Be Vietnam Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/assets/fonts/be-vietnam-pro-400.ttf") format("truetype");
}

@font-face {
  font-family: "Be Vietnam Pro";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/assets/fonts/be-vietnam-pro-500.ttf") format("truetype");
}

@font-face {
  font-family: "Be Vietnam Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/assets/fonts/be-vietnam-pro-600.ttf") format("truetype");
}

@font-face {
  font-family: "Be Vietnam Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/assets/fonts/be-vietnam-pro-700.ttf") format("truetype");
}

@font-face {
  font-family: "Be Vietnam Pro";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/static/assets/fonts/be-vietnam-pro-800.ttf") format("truetype");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/static/assets/fonts/jetbrains-mono-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
    U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309,
    U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/static/assets/fonts/jetbrains-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand: #2a5bd7;
  --brand-hover: #1f49b5;
  --brand-soft: #eef3fe;
  --brand-border: #c9d8f8;
  --brand-header: #1b3a8f;
  --navy: #0e1b3d;
  --navy-soft: #15264f;
  --gold: #f5a623;
  --gold-hover: #e0940f;
  --gold-soft: #fff6e5;
  --page: #f4f6fa;
  --surface: #ffffff;
  --surface-muted: #eef0f4;
  --surface-raised: #fcfdfe;
  --ink: #0f1626;
  --text-secondary: #4a5468;
  --muted: #8a93a5;
  --disabled: #b6bdc9;
  --line: #e3e7ee;
  --control-line: #c9d2e0;
  --success: #12855c;
  --success-soft: #f0faf5;
  --warning: #a96500;
  --warning-soft: #fff6e5;
  --danger: #c62828;
  --danger-soft: #fef3f2;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --shadow-1: 0 1px 3px rgba(15, 22, 38, 0.08);
  --shadow-2: 0 18px 50px -28px rgba(15, 22, 38, 0.42);
  --font-sans: "Be Vietnam Pro", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(42, 91, 215, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 91, 215, 0.035) 1px, transparent 1px),
    var(--page);
  background-size: 40px 40px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--brand-hover);
}

img,
svg {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(42, 91, 215, 0.25);
  outline-offset: 2px;
}

.site-header {
  position: relative;
  z-index: 20;
  color: white;
  background: var(--brand-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.header-shell,
.footer-shell,
.page-shell {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.header-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.brand:hover {
  color: white;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 6px;
  background: var(--gold);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
}

.brand-mark i {
  display: block;
  background: var(--navy);
  border-radius: 1px 1px 0 0;
}

.brand-mark i:nth-child(1) { height: 6px; }
.brand-mark i:nth-child(2) { height: 10px; }
.brand-mark i:nth-child(3) { height: 14px; }

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: #aebee6;
  font: 500 8px/1 var(--font-mono);
  letter-spacing: 0.16em;
}

.site-nav {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #dce5fb;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 3px;
  background: transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.site-nav a[aria-current="page"]::after {
  background: var(--gold);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c8d4f0;
  font: 500 10px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.system-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #48d597;
  box-shadow: 0 0 0 4px rgba(72, 213, 151, 0.13);
}

.button,
button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 0 18px;
  color: white;
  background: var(--brand);
  cursor: pointer;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
button:hover {
  color: white;
  background: var(--brand-hover);
}

.button:active,
button:active {
  transform: translateY(1px);
}

.button-small {
  min-height: 36px;
  padding-inline: 14px;
  font-size: 12px;
}

.button-large {
  min-height: 50px;
  padding-inline: 22px;
  font-size: 15px;
}

.button-gold {
  color: #20160a;
  background: var(--gold);
}

.button-gold:hover {
  color: #20160a;
  background: var(--gold-hover);
}

.button-secondary {
  color: var(--ink);
  background: white;
  border-color: var(--control-line);
}

.button-secondary:hover {
  color: var(--brand-hover);
  background: var(--brand-soft);
  border-color: var(--brand-border);
}

.button-ghost-light {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-danger,
button.danger {
  background: var(--danger);
}

.button-danger:hover,
button.danger:hover {
  background: #a8201a;
}

.site-main {
  min-height: calc(100vh - 330px);
}

.site-footer {
  color: #c9d5ef;
  background: var(--navy);
  border-top: 4px solid var(--gold);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 56px;
  padding-block: 46px;
}

.footer-brand p {
  max-width: 400px;
  margin: 18px 0 0;
  color: #92a2c6;
  font-size: 12px;
  line-height: 1.75;
}

.brand-inverse {
  width: fit-content;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
  font-size: 12px;
}

.footer-column strong {
  margin-bottom: 5px;
  color: white;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-column a,
.footer-column span {
  color: #92a2c6;
}

.footer-column a:hover {
  color: white;
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--brand-hover);
  font: 600 10px/1.4 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.section-heading p {
  margin: 0;
  color: var(--text-secondary);
}

.notice {
  padding: 13px 15px;
  color: var(--text-secondary);
  background: var(--gold-soft);
  border: 1px solid #f4d9a4;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  white-space: pre-wrap;
}

.notice-success {
  color: #0c6b4a;
  background: var(--success-soft);
  border-color: #bfe5d3;
  border-left-color: var(--success);
}

.notice-error {
  color: #9e1d1d;
  background: var(--danger-soft);
  border-color: #f3c9c6;
  border-left-color: var(--danger);
}

.landing-page {
  padding: 24px 0 80px;
}

.landing-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  overflow: hidden;
  color: white;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    var(--navy);
  background-size: 32px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0 52% 0 auto;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 52px;
}

.hero-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 7px 10px;
  color: #b9c9ee;
  background: rgba(42, 91, 215, 0.14);
  border: 1px solid rgba(201, 216, 248, 0.2);
  border-radius: var(--radius-sm);
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-status i {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-copy h1 span {
  color: #8fb0ff;
}

.hero-copy > p {
  max-width: 590px;
  margin-bottom: 30px;
  color: #aebee2;
  font-size: 15px;
  line-height: 1.8;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  color: #8295bf;
  font: 500 10px/1.6 var(--font-mono);
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-note i {
  width: 5px;
  height: 5px;
  background: #48d597;
  border-radius: 50%;
}

.hero-console-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 42px 42px 42px 24px;
}

.hero-console {
  width: 100%;
  color: var(--ink);
  background: #f9fbff;
  border: 1px solid #2e4370;
  border-radius: var(--radius-lg);
  box-shadow: 18px 24px 0 rgba(42, 91, 215, 0.12);
  overflow: hidden;
}

.console-topbar {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  background: white;
  border-bottom: 1px solid var(--line);
}

.console-dots {
  display: flex;
  gap: 5px;
}

.console-dots i {
  width: 7px;
  height: 7px;
  background: var(--control-line);
  border-radius: 50%;
}

.console-dots i:first-child { background: var(--gold); }

.console-title {
  margin-left: 5px;
  color: var(--text-secondary);
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.04em;
}

.console-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font: 600 9px/1 var(--font-mono);
}

.console-live::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

.console-body {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  min-height: 380px;
}

.console-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 15px 10px;
  background: #f1f4f9;
  border-right: 1px solid var(--line);
}

.console-sidebar strong {
  padding: 7px 9px;
  color: var(--muted);
  font: 600 9px/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-sidebar span {
  padding: 8px 9px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 600;
}

.console-sidebar span.active {
  color: var(--brand-hover);
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
}

.console-main {
  min-width: 0;
  padding: 16px;
}

.console-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.console-heading strong {
  font-size: 13px;
}

.console-heading span {
  padding: 5px 7px;
  color: var(--brand-hover);
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  font: 600 8px/1 var(--font-mono);
}

.console-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.console-stat {
  display: grid;
  gap: 2px;
  padding: 12px;
  background: white;
}

.console-stat b {
  color: var(--brand-hover);
  font: 600 20px/1 var(--font-mono);
}

.console-stat small {
  color: var(--muted);
  font-size: 8px;
}

.schedule-list {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.schedule-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border-bottom: 1px solid var(--line);
}

.schedule-row:last-child { border-bottom: 0; }

.schedule-time {
  color: var(--text-secondary);
  font: 500 9px/1 var(--font-mono);
}

.schedule-page {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.schedule-avatar {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: none;
  color: white;
  background: var(--brand);
  border-radius: var(--radius-sm);
  font-size: 8px;
  font-weight: 700;
}

.schedule-page span {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 9px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-state {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--success);
  font-size: 8px;
  font-weight: 600;
}

.schedule-state::before {
  content: "";
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

.schedule-state.waiting { color: var(--warning); }

.hero-footer-line {
  position: absolute;
  right: 42px;
  bottom: 22px;
  color: #6d82ae;
  font: 500 9px/1 var(--font-mono);
}

.capability-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  margin-top: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.capability-strip > div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.capability-strip > div:last-child { border-right: 0; }

.capability-strip .capability-lead {
  color: white;
  background: var(--brand);
}

.capability-strip strong {
  font-size: 13px;
}

.capability-strip span {
  color: var(--muted);
  font-size: 10px;
}

.capability-strip .capability-lead span { color: #cfdbfb; }

.landing-section {
  padding-top: 76px;
}

.feature-matrix {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.feature-row {
  display: grid;
  grid-template-columns: 180px 1.1fr 1.1fr 0.9fr;
  border-bottom: 1px solid var(--line);
}

.feature-row:last-child { border-bottom: 0; }

.feature-row > div {
  min-height: 122px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.feature-row > div:last-child { border-right: 0; }

.feature-index {
  color: var(--brand);
  background: var(--surface-raised);
  font: 600 12px/1.5 var(--font-mono);
}

.feature-index span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.feature-cell h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.feature-cell p,
.feature-outcome p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 12px;
}

.feature-outcome {
  background: var(--brand-soft);
}

.feature-outcome strong {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-hover);
  font: 600 10px/1.4 var(--font-mono);
  text-transform: uppercase;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.workflow-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.workflow-card::after {
  content: "";
  position: absolute;
  top: 39px;
  right: -13px;
  z-index: 1;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.workflow-card:last-child::after { display: none; }

.workflow-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius-md);
  font: 600 12px/1 var(--font-mono);
}

.workflow-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.workflow-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 12px;
}

.workflow-meta {
  margin-top: auto;
  padding-top: 24px;
  color: var(--muted);
  font: 500 9px/1.5 var(--font-mono);
  letter-spacing: 0.05em;
}

.integration-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.integration-copy {
  padding: 38px;
  color: white;
  background: var(--brand-header);
}

.integration-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
}

.integration-copy p {
  margin: 0;
  color: #b5c4e7;
  font-size: 13px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.integration-grid span {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--text-secondary);
  background: white;
  font: 600 11px/1 var(--font-mono);
}

.closing-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 38px 42px;
  color: white;
  background: var(--brand);
  border-radius: var(--radius-lg);
}

.closing-panel::after {
  content: "";
  position: absolute;
  right: 22%;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.closing-panel h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.closing-panel p {
  margin: 0;
  color: #d8e3ff;
}

.closing-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  padding: 56px 0 30px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--text-secondary);
}

.page-hero-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font: 500 10px/1.5 var(--font-mono);
  text-align: right;
}

.pricing-page {
  padding-bottom: 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-top: 30px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.pricing-card.featured {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.pricing-card.featured::before {
  content: "Khuyến nghị cho đội vận hành";
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 8px;
  color: #20160a;
  background: var(--gold);
  border-radius: var(--radius-sm);
  font: 600 8px/1 var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-code {
  color: var(--brand);
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.featured .plan-code { color: var(--gold); }

.pricing-card h2 {
  margin: 22px 0 14px;
  font-size: 27px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}

.plan-price strong {
  font: 600 38px/1 var(--font-mono);
  letter-spacing: -0.05em;
}

.plan-price span {
  color: var(--muted);
  font-size: 11px;
}

.featured .plan-price span { color: #9db0dc; }

.plan-summary {
  min-height: 54px;
  color: var(--text-secondary);
  font-size: 13px;
}

.featured .plan-summary { color: #b6c4e5; }

.plan-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.featured .plan-list { border-color: rgba(255,255,255,0.14); }

.plan-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 12px;
}

.featured .plan-list span { color: #d1dbef; }

.plan-list span::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-top: 3px;
  flex: none;
  background: var(--brand-soft);
  border: 1px solid var(--brand);
  border-radius: 3px;
  box-shadow: inset 0 0 0 3px white;
}

.featured .plan-list span::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 3px var(--navy);
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

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

.comparison-table {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child { border-bottom: 0; }

.comparison-row > * {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-right: 1px solid var(--line);
}

.comparison-row > *:last-child { border-right: 0; }

.comparison-row.header {
  color: white;
  background: var(--brand-header);
  font-size: 12px;
  font-weight: 700;
}

.comparison-row span {
  color: var(--text-secondary);
  font-size: 12px;
}

.comparison-row strong {
  color: var(--success);
  font: 600 11px/1.4 var(--font-mono);
}

.comparison-row strong.na { color: var(--muted); }

.pricing-note {
  margin-top: 14px;
  padding: 18px;
  color: var(--text-secondary);
  background: var(--gold-soft);
  border: 1px solid #f4d9a4;
  border-radius: var(--radius-lg);
  font-size: 12px;
}

.auth-page {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 38px 0 56px;
}

.auth-shell {
  width: min(980px, calc(100% - 48px));
  min-height: 570px;
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  margin: 0 auto;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}

.auth-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 34px;
  color: white;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    var(--navy);
  background-size: 30px 30px;
}

.auth-aside::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border: 38px solid rgba(42,91,215,0.18);
  border-radius: 50%;
}

.auth-aside .brand {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.auth-aside-copy {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.auth-aside h1 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.35;
}

.auth-aside-copy > p {
  margin-bottom: 28px;
  color: #9fb0d6;
  font-size: 12px;
  line-height: 1.75;
}

.auth-benefits {
  display: grid;
  gap: 17px;
}

.auth-benefit {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 12px;
}

.auth-benefit i {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  background: rgba(245,166,35,0.15);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
}

.auth-benefit b {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
}

.auth-benefit span {
  display: block;
  color: #8fa2cc;
  font-size: 11px;
  line-height: 1.55;
}

.auth-aside-foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 24px;
  color: #8195c1;
  border-top: 1px solid rgba(255,255,255,0.11);
  font-size: 11px;
}

.auth-aside-foot a {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-weight: 600;
}

.auth-panel {
  display: flex;
  align-items: center;
  padding: 44px 56px;
}

.auth-form-wrap {
  width: 100%;
  max-width: 430px;
  margin: auto;
}

.auth-heading {
  margin-bottom: 24px;
}

.auth-heading .section-label {
  margin-bottom: 10px;
}

.auth-heading h2 {
  margin-bottom: 8px;
  font-size: 25px;
}

.auth-heading p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 12px;
}

.auth-form {
  display: grid;
  gap: 17px;
}

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

.field > span,
.field-label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea,
.quantity-field input,
.danger-zone textarea {
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 0 13px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--control-line);
  border-radius: var(--radius-md);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea,
.danger-zone textarea {
  min-height: 112px;
  padding-block: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.quantity-field input:focus,
.danger-zone textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(42,91,215,0.12);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-secondary);
  font-size: 11px;
}

.check-row input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--brand);
}

.auth-form button {
  width: 100%;
  min-height: 48px;
}

.password-rule {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.auth-alternate {
  margin: 22px 0 0;
  color: var(--text-secondary);
  font-size: 11px;
  text-align: center;
}

.auth-alternate a {
  font-weight: 700;
}

.token-state {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.token-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  background: var(--brand);
  border-radius: var(--radius-md);
  font: 600 18px/1 var(--font-mono);
  box-shadow: 7px 7px 0 var(--brand-soft);
}

.account-page {
  padding: 28px 0 72px;
}

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

.account-sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-profile-card,
.account-nav,
.account-support-card,
.account-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.account-profile-card {
  padding: 18px;
}

.profile-monogram {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  color: var(--brand-hover);
  background: var(--brand-soft);
  border-radius: var(--radius-md);
  font: 600 13px/1 var(--font-mono);
}

.account-profile-card strong {
  display: block;
  font-size: 13px;
}

.account-profile-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font: 500 9px/1.4 var(--font-mono);
}

.account-nav {
  overflow: hidden;
  padding-block: 6px;
}

.account-nav a {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 18px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
}

.account-nav a:hover {
  color: var(--brand-hover);
  background: var(--brand-soft);
}

.account-nav a.active {
  color: var(--brand-hover);
  background: var(--brand-soft);
}

.account-nav a.active::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--brand);
}

.account-nav a.logout-link {
  margin-top: 6px;
  padding-top: 6px;
  color: var(--danger);
  border-top: 1px solid var(--line);
}

.nav-code {
  color: var(--muted);
  font: 500 9px/1 var(--font-mono);
}

.account-support-card {
  padding: 16px;
}

.account-support-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}

.account-support-card p {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 10px;
}

.account-support-card a {
  font-size: 10px;
  font-weight: 700;
}

.account-panel {
  min-width: 0;
  overflow: hidden;
}

.account-panel-head {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.account-panel-head h1 {
  margin: 0;
  font-size: 22px;
}

.account-panel-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font: 500 9px/1.5 var(--font-mono);
}

.account-panel-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--success);
  font: 600 9px/1 var(--font-mono);
}

.account-panel-status::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
}

.account-panel-body {
  min-height: 430px;
  padding: 22px;
}

.account-panel-body > .notice:first-child {
  margin-bottom: 16px;
}

.loading-state {
  min-height: 320px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font: 500 10px/1 var(--font-mono);
}

.loading-state span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.loading-state span::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--brand-border);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.metric-card {
  min-width: 0;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: white;
}

.metric-card.primary {
  color: white;
  background: var(--brand-header);
}

.metric-label {
  color: var(--muted);
  font: 600 9px/1.4 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.metric-card.primary .metric-label { color: #9fb0d6; }

.metric-value {
  margin: auto 0 9px;
  overflow: hidden;
  font-size: 24px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-value.mono {
  color: var(--brand-hover);
  font-size: 34px;
}

.metric-card.primary .metric-value { color: white; }

.metric-caption {
  margin: 0;
  color: var(--text-secondary);
  font-size: 10px;
}

.metric-card.primary .metric-caption { color: #aebee2; }

.account-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.account-info-strip div {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}

.account-info-strip div:last-child { border-right: 0; }

.account-info-strip span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font: 500 8px/1 var(--font-mono);
  text-transform: uppercase;
}

.account-info-strip strong {
  font-size: 11px;
}

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

.plan-purchase {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 20px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.plan-purchase.advanced {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.plan-purchase-code {
  color: var(--brand);
  font: 600 9px/1 var(--font-mono);
  letter-spacing: 0.06em;
}

.plan-purchase.advanced .plan-purchase-code { color: var(--gold); }

.plan-purchase h2 {
  margin: 18px 0 7px;
  font-size: 20px;
}

.purchase-price {
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 11px;
}

.plan-purchase.advanced .purchase-price { color: #aebee2; }

.purchase-price strong {
  margin-right: 5px;
  color: var(--ink);
  font: 600 22px/1 var(--font-mono);
}

.plan-purchase.advanced .purchase-price strong { color: white; }

.quantity-field {
  display: grid;
  grid-template-columns: 1fr 92px;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: 10px;
  font-weight: 600;
}

.quantity-field input {
  min-height: 40px;
  text-align: center;
}

.plan-purchase button {
  width: 100%;
  margin-top: 12px;
}

.plan-purchase.advanced button {
  color: #20160a;
  background: var(--gold);
}

.order-history-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 30px 0 12px;
}

.order-history-heading h2 {
  margin: 0;
  font-size: 16px;
}

.order-history-heading span {
  color: var(--muted);
  font: 500 9px/1 var(--font-mono);
}

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

.order-card {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 130px 110px auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.order-reference strong {
  display: block;
  margin-bottom: 3px;
  font: 600 12px/1.3 var(--font-mono);
}

.order-reference small,
.order-expiry {
  color: var(--muted);
  font-size: 9px;
}

.order-amount {
  font: 600 12px/1 var(--font-mono);
  text-align: right;
}

.status-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  color: var(--warning);
  background: var(--warning-soft);
  border: 1px solid #f4d9a4;
  border-radius: var(--radius-sm);
  font: 600 8px/1 var(--font-mono);
  text-transform: uppercase;
}

.status-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

.order-qr {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.order-qr img {
  width: 170px;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.order-qr p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 11px;
}

.empty-state {
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--text-secondary);
  background: var(--surface-raised);
  border: 1px dashed var(--control-line);
  border-radius: var(--radius-lg);
  text-align: center;
}

.empty-state strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

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

.slot-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.slot-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: var(--radius-md);
  font: 600 12px/1 var(--font-mono);
}

.slot-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
}

.slot-card p {
  margin: 0;
  color: var(--muted);
  font: 500 9px/1.5 var(--font-mono);
}

.danger-zone {
  max-width: 690px;
  padding: 24px;
  background: var(--danger-soft);
  border: 1px solid #f3c9c6;
  border-radius: var(--radius-lg);
}

.danger-zone-code {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--danger);
  font: 600 9px/1 var(--font-mono);
  letter-spacing: 0.07em;
}

.danger-zone h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.danger-zone p {
  color: #7e3935;
  font-size: 11px;
}

.danger-zone label {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  font-size: 10px;
  font-weight: 700;
}

.legal-page {
  padding-bottom: 80px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 14px;
  padding-top: 28px;
}

.legal-aside {
  align-self: start;
  position: sticky;
  top: 18px;
  display: grid;
  gap: 4px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.legal-aside a {
  padding: 9px 10px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
}

.legal-aside a:hover,
.legal-aside a.active {
  color: var(--brand-hover);
  background: var(--brand-soft);
}

.legal-document {
  padding: 34px clamp(24px, 5vw, 58px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.legal-update {
  margin-bottom: 30px;
  padding-bottom: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font: 500 9px/1 var(--font-mono);
}

.legal-section {
  scroll-margin-top: 24px;
  padding: 6px 0 22px;
}

.legal-section + .legal-section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 11px;
  font-size: 20px;
}

.legal-section p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.9;
}

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

.support-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.support-card.primary {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.support-code {
  color: var(--brand);
  font: 600 9px/1 var(--font-mono);
  text-transform: uppercase;
}

.support-card.primary .support-code { color: var(--gold); }

.support-card h2 {
  margin: 22px 0 8px;
  font-size: 20px;
}

.support-card p {
  color: var(--text-secondary);
  font-size: 11px;
}

.support-card.primary p { color: #aebee2; }

.support-card a {
  margin-top: auto;
  font-weight: 700;
}

.support-card.primary a { color: var(--gold); }

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

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
}

@media (prefers-reduced-motion: no-preference) {
  .landing-hero,
  .capability-strip,
  .landing-section,
  .pricing-grid,
  .auth-shell,
  .account-layout,
  .legal-layout {
    animation: rise 480ms both;
  }

  .capability-strip { animation-delay: 70ms; }
  .landing-section:nth-of-type(2) { animation-delay: 110ms; }
}

@media (max-width: 1050px) {
  .system-status { display: none; }
  .landing-hero { grid-template-columns: 1fr; }
  .landing-hero::before { display: none; }
  .hero-copy { padding-bottom: 30px; }
  .hero-console-wrap { padding: 10px 42px 48px; }
  .hero-footer-line { display: none; }
  .capability-strip { grid-template-columns: repeat(2, 1fr); }
  .capability-strip > div { border-bottom: 1px solid var(--line); }
  .capability-strip > div:nth-child(2n) { border-right: 0; }
  .capability-strip .capability-lead { grid-column: 1 / -1; }
  .feature-row { grid-template-columns: 130px 1fr 1fr; }
  .feature-outcome { grid-column: 2 / -1; border-top: 1px solid var(--line); }
  .feature-row > .feature-cell:nth-child(3) { border-right: 0; }
  .footer-shell { gap: 30px; }
}

@media (max-width: 820px) {
  .header-shell,
  .footer-shell,
  .page-shell { width: min(100% - 28px, 680px); }
  .header-shell { min-height: 62px; gap: 18px; }
  .site-nav { display: none; }
  .brand-copy small { display: none; }
  .landing-page { padding-top: 14px; }
  .hero-copy { padding: 44px 30px 28px; }
  .hero-copy h1 { font-size: clamp(42px, 11vw, 62px); }
  .hero-console-wrap { padding: 8px 20px 36px; }
  .console-body { grid-template-columns: 118px minmax(0,1fr); }
  .capability-strip { grid-template-columns: 1fr 1fr; }
  .landing-section { padding-top: 56px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card { min-height: 210px; }
  .workflow-card::after { display: none; }
  .integration-panel { grid-template-columns: 1fr; }
  .closing-panel { grid-template-columns: 1fr; padding: 30px; }
  .footer-shell { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-meta { text-align: left; }
  .auth-page { padding: 14px 0 36px; }
  .auth-shell { width: min(100% - 28px, 680px); grid-template-columns: 1fr; }
  .auth-aside { min-height: 430px; }
  .auth-panel { padding: 42px 34px; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .account-nav { grid-row: span 2; }
  .order-card { grid-template-columns: 1fr 110px; }
  .order-expiry { text-align: right; }
  .order-amount { text-align: left; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { position: static; display: flex; overflow-x: auto; }
  .legal-aside a { white-space: nowrap; }
}

@media (max-width: 560px) {
  body { font-size: 13px; background-size: 32px 32px; }
  .header-actions .button { min-height: 34px; padding-inline: 11px; font-size: 10px; }
  .brand-mark { width: 28px; height: 28px; }
  .brand-copy strong { font-size: 14px; }
  .hero-copy { padding: 36px 22px 24px; }
  .hero-status { margin-bottom: 20px; }
  .hero-copy h1 { font-size: 42px; }
  .hero-copy > p { font-size: 13px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-note { align-items: flex-start; flex-direction: column; gap: 5px; }
  .hero-console-wrap { padding: 4px 12px 24px; }
  .hero-console { box-shadow: 8px 10px 0 rgba(42,91,215,0.12); }
  .console-body { grid-template-columns: 1fr; min-height: auto; }
  .console-sidebar { display: none; }
  .console-stats { grid-template-columns: repeat(3, 1fr); }
  .console-stat { padding: 9px; }
  .console-stat b { font-size: 15px; }
  .schedule-row { grid-template-columns: 38px minmax(0,1fr); }
  .schedule-state { display: none; }
  .capability-strip { grid-template-columns: 1fr; }
  .capability-strip > div,
  .capability-strip > div:nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row > div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-row > div:last-child { border-bottom: 0; }
  .feature-outcome { grid-column: auto; }
  .integration-grid { grid-template-columns: repeat(2, 1fr); }
  .closing-actions { flex-direction: column; }
  .footer-shell { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .page-hero { padding-top: 38px; }
  .page-hero h1 { font-size: 40px; }
  .pricing-card { min-height: 380px; padding: 23px; }
  .pricing-card.featured::before { position: static; width: fit-content; margin: -2px 0 16px; }
  .comparison-table { overflow-x: auto; }
  .comparison-row { min-width: 650px; }
  .auth-shell { width: 100%; min-height: calc(100vh - 62px); border-inline: 0; border-radius: 0; }
  .auth-aside { display: none; }
  .auth-panel { align-items: flex-start; padding: 46px 23px 58px; }
  .auth-form-wrap { margin: 0 auto; }
  .account-page { padding-top: 14px; }
  .account-sidebar { display: block; }
  .account-profile-card,
  .account-support-card { display: none; }
  .account-nav { display: flex; overflow-x: auto; padding: 0; }
  .account-nav a { min-width: max-content; min-height: 48px; padding-inline: 14px; }
  .account-nav a.active::before { inset: auto 10px 0; width: auto; height: 3px; }
  .account-nav a.logout-link { margin: 0; padding-top: 0; border-top: 0; }
  .nav-code { display: none; }
  .account-panel-head { min-height: 70px; padding: 15px 16px; }
  .account-panel-head h1 { font-size: 19px; }
  .account-panel-status { display: none; }
  .account-panel-body { padding: 16px; }
  .metric-grid,
  .purchase-grid { grid-template-columns: 1fr; }
  .metric-card { min-height: 135px; }
  .account-info-strip { grid-template-columns: 1fr; }
  .account-info-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .account-info-strip div:last-child { border-bottom: 0; }
  .order-card { grid-template-columns: 1fr; }
  .order-expiry,
  .order-amount { text-align: left; }
  .order-qr { grid-template-columns: 1fr; }
  .order-qr img { width: min(220px, 100%); }
  .slot-card { grid-template-columns: 42px minmax(0,1fr); }
  .slot-card .status-badge { grid-column: 2; }
  .legal-document { padding: 24px 20px; }
  .support-grid { grid-template-columns: 1fr; }
}
