@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg: #07111f;
  --bg-soft: #0d1728;
  --bg-panel: #101b2d;
  --bg-panel-2: #132238;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --line: rgba(212, 175, 55, 0.20);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f4efe4;
  --text-soft: #d9cfbf;
  --muted: #a79d8b;
  --gold: #d4af37;
  --gold-soft: #f1df9b;
  --gold-deep: #a88316;
  --success: #85c98d;
  --warn: #d8b15a;
  --danger: #d7857f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.22);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1200px;
  --nav-height: 80px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.10), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.06), transparent 20%),
    linear-gradient(180deg, #06101d 0%, #081321 40%, #0a1626 100%);
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

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

button {
  cursor: pointer;
}

textarea,
input,
select {
  color: var(--text);
}

::selection {
  background: rgba(212, 175, 55, 0.22);
  color: var(--text);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-tight {
  padding: 72px 0;
}

.kicker,
.eyebrow,
.mono,
.overline {
  font-family: "DM Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-size: 0.78rem;
}

.section-heading,
.section-head {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading h2,
.section-head h2,
.section-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-heading p,
.section-head p,
.section-lead,
.lead {
  margin: 0;
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.65;
  color: var(--text-soft);
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 1.1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
  font-weight: 600;
  color: var(--text);
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 24px 0;
}

/* ---------- Public site shell ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 17, 31, 0.70);
  border-bottom: 1px solid var(--line-soft);
}

.navbar,
.site-nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a,
.nav-menu a {
  font-family: "DM Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.nav-links a:hover,
.nav-menu a:hover {
  color: var(--gold-soft);
}

.brand,
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.36);
  background:
    radial-gradient(circle at 30% 30%, rgba(241, 223, 155, 0.22), transparent 40%),
    linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.08), 0 10px 24px rgba(0, 0, 0, 0.24);
  flex: 0 0 auto;
}

.brand-mark::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.72);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-name {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand-copy span,
.brand-tagline {
  display: block;
  margin-top: 4px;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Buttons ---------- */

.btn,
.button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  font-family: "DM Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.btn:hover,
.button:hover,
.cta-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary,
.button-primary,
.cta-primary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.10));
  border-color: rgba(212, 175, 55, 0.56);
  color: var(--gold-soft);
}

.btn-primary:hover,
.button-primary:hover,
.cta-primary:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.30), rgba(212, 175, 55, 0.12));
}

.btn-secondary,
.button-secondary {
  background: transparent;
}

.btn-ghost {
  border-color: var(--line-soft);
  color: var(--text-soft);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(212, 175, 55, 0.08), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.03), transparent 18%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.hero p {
  max-width: 680px;
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-meta,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-chip,
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  color: var(--text-soft);
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.hero-card,
.hero-panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(7, 17, 31, 0.66);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

/* ---------- Grids / cards ---------- */

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

.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));
}

.card,
.panel,
.info-card,
.metric-card,
.arch-card,
.use-case-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(10, 20, 34, 0.92);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.card:hover,
.panel:hover,
.info-card:hover,
.metric-card:hover,
.arch-card:hover,
.use-case-card:hover {
  border-color: rgba(212, 175, 55, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(11, 23, 39, 0.96);
}

.card h3,
.panel h3,
.info-card h3,
.metric-card h3,
.arch-card h3,
.use-case-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.card p,
.panel p,
.info-card p,
.metric-card p,
.arch-card p,
.use-case-card p {
  margin-bottom: 0;
  color: var(--text-soft);
}

/* ---------- Architecture / feature list ---------- */

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

.arch-item,
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.arch-number,
.feature-number,
.index-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-family: "DM Mono", monospace;
  font-size: 0.82rem;
  color: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.30);
  background: rgba(212, 175, 55, 0.08);
}

.arch-copy h3,
.feature-copy h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.arch-copy p,
.feature-copy p {
  margin-bottom: 0;
}

/* ---------- Dashboard preview ---------- */

.dashboard-preview {
  position: relative;
  padding: 110px 0;
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(7, 17, 31, 0.84);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.10), transparent 26%);
  pointer-events: none;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.dashboard-title {
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.dashboard-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 22px;
}

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

.metric {
  min-height: 120px;
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
}

.metric .label {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.metric .value {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--gold-soft);
}

.metric .meta {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.chart-placeholder,
.graph-placeholder {
  min-height: 260px;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  position: relative;
  overflow: hidden;
}

.chart-placeholder::after,
.graph-placeholder::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
}

/* ---------- Copilot result UI ---------- */

.copilot-section,
.copilot-shell {
  position: relative;
}

.copilot-grid,
.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
}

.input-panel,
.result-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    rgba(10, 20, 34, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.form-label,
.label {
  display: block;
  margin-bottom: 10px;
  font-family: "DM Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

textarea,
.input,
select,
.field {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 16px 18px;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

textarea {
  min-height: 220px;
  resize: vertical;
}

textarea:focus,
.input:focus,
select:focus,
.field:focus {
  border-color: rgba(212, 175, 55, 0.40);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.form-actions,
.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.status-line,
.helper-line {
  margin-top: 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  color: var(--muted);
}

.result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.result-head h3 {
  margin: 0;
  font-size: 1.9rem;
}

.result-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  font-family: "DM Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: var(--text-soft);
}

.decision-banner,
#decision-box,
.decision-box {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  margin-bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.20);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.03));
  color: var(--text);
  font-family: "DM Mono", monospace;
  letter-spacing: 0.03em;
}

.risk-band,
.score-band {
  margin-bottom: 18px;
}

.progress-track,
.score-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-soft);
}

.progress-fill,
.score-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.55), rgba(241, 223, 155, 0.92));
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.20);
  transition: width 400ms ease;
}

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

.result-box {
  min-width: 0;
  border-radius: 20px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.result-box.full {
  grid-column: span 12;
}

.result-box.half {
  grid-column: span 6;
}

.result-box .label {
  margin-bottom: 12px;
}

.result-box .value,
.result-stat {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--gold-soft);
}

.result-copy,
.result-content {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.result-list,
.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-list li,
.list-clean li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.6;
}

.result-list li + li,
.list-clean li + li {
  margin-top: 10px;
}

.result-list li::before,
.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

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

.qen-mini-card {
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  padding: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.qen-mini-card .label {
  margin-bottom: 8px;
}

.qen-mini-card .value {
  font-size: 1.5rem;
  color: var(--gold-soft);
}

/* ---------- Tables / comparison ---------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

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

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}

th {
  font-family: "DM Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.02);
}

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

/* ---------- Footer ---------- */

.site-footer,
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 34px 0 48px;
  background: rgba(5, 12, 21, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.footer p,
.footer small,
.site-footer p,
.site-footer small {
  color: var(--muted);
  font-size: 0.98rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: "DM Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

/* ---------- Utilities ---------- */

.text-gold {
  color: var(--gold-soft);
}

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

.text-soft {
  color: var(--text-soft);
}

.text-center {
  text-align: center;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.stack-sm > * + * {
  margin-top: 10px;
}

.stack-md > * + * {
  margin-top: 16px;
}

.stack-lg > * + * {
  margin-top: 24px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-0 {
  margin-bottom: 0;
}

.hidden {
  display: none !important;
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .dashboard-grid,
  .copilot-grid,
  .result-grid,
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-row,
  .qen-mini-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 86px 0;
  }

  .nav-links,
  .nav-menu {
    gap: 14px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .metric-row,
  .qen-mini-grid {
    grid-template-columns: 1fr;
  }

  .result-box.half,
  .result-box.full {
    grid-column: span 12;
  }

  .dashboard-shell,
  .input-panel,
  .result-panel,
  .hero-card,
  .hero-panel,
  .card,
  .panel {
    padding: 22px;
    border-radius: 24px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    line-height: 0.98;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    position: static;
  }

  .navbar,
  .site-nav {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links,
  .nav-menu,
  .hero-actions,
  .form-actions,
  .action-row,
  .footer-links {
    width: 100%;
  }

  .nav-links a,
  .nav-menu a,
  .btn,
  .button,
  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 86px 0 64px;
  }

  .hero-meta,
  .hero-stats {
    gap: 10px;
  }

  .hero-chip,
  .stat-chip,
  .badge,
  .pill {
    width: 100%;
    justify-content: center;
  }

  .dashboard-shell,
  .input-panel,
  .result-panel,
  .hero-card,
  .hero-panel,
  .card,
  .panel,
  .info-card,
  .metric-card,
  .arch-card,
  .use-case-card {
    padding: 18px;
    border-radius: 22px;
  }

  .section-heading h2,
  .section-head h2,
  .section-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  p,
  .section-heading p,
  .section-head p,
  .section-lead,
  .lead {
    font-size: 1.02rem;
  }

  textarea {
    min-height: 180px;
  }

  .decision-banner,
  #decision-box,
  .decision-box {
    align-items: flex-start;
  }
}
