:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-soft: #0b0c10;
  --panel: rgba(14, 16, 24, 0.82);
  --panel-strong: rgba(22, 25, 36, 0.95);
  --panel-light: rgba(255, 255, 255, 0.06);
  --gold: #f6c857;
  --gold-2: #a7731e;
  --silver: #dfe4ea;
  --silver-dim: #8c95a3;
  --green: #77ff54;
  --purple: #b95cff;
  --danger: #ff657c;
  --text: #f8f8ff;
  --muted: #b7bfcc;
  --line: rgba(255, 255, 255, 0.12);
  --shadow-gold: 0 0 36px rgba(246, 200, 87, 0.22);
  --shadow-green: 0 0 36px rgba(119, 255, 84, 0.2);
  --shadow-purple: 0 0 36px rgba(185, 92, 255, 0.2);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1220px;
  --header-height: 86px;
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at top, rgba(120, 255, 84, 0.12), transparent 24rem),
    radial-gradient(circle at 90% 20%, rgba(185, 92, 255, 0.14), transparent 22rem),
    linear-gradient(180deg, #020203 0%, #08080c 50%, #020203 100%);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(246, 200, 87, 0.35);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: #111;
  padding: 0.75rem 1rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -5;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 50% 0%, black 0%, transparent 72%);
  pointer-events: none;
}

.orb {
  position: fixed;
  z-index: -4;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
}

.orb-gold {
  left: -7rem;
  top: 12rem;
  background: var(--gold);
}

.orb-green {
  right: -8rem;
  top: 18rem;
  background: var(--green);
}

.orb-purple {
  left: 40%;
  bottom: -12rem;
  background: var(--purple);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
  padding: 1rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 5, 8, 0.84);
  backdrop-filter: blur(20px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: max-content;
}

.brand-lockup img {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  object-fit: cover;
  box-shadow: var(--shadow-gold);
}

.brand-lockup strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand-lockup small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.main-nav a {
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  background: linear-gradient(135deg, rgba(246, 200, 87, 0.18), rgba(119, 255, 84, 0.12), rgba(185, 92, 255, 0.12));
  color: var(--text);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.app-shell {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 3rem) 0 7rem;
}

.route-view {
  min-height: calc(100vh - var(--header-height));
  animation: pageIn 0.34s ease both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  min-height: calc(100vh - 170px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  padding: clamp(1.35rem, 4vw, 3rem);
}

.hero-card::before,
.premium-panel::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(246, 200, 87, 0.18), transparent 36%, rgba(119, 255, 84, 0.1), transparent 58%, rgba(185, 92, 255, 0.16));
  opacity: 0.45;
  pointer-events: none;
}

.hero-card > *,
.premium-panel > *,
.feature-card > * {
  position: relative;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 9vw, 7.3rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

h4 {
  font-size: 1.04rem;
}

.lede {
  max-width: 66ch;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.75;
}

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

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

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

.hero-actions,
.inline-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.primary-button,
.secondary-button,
.ghost-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--gold), #fff0a8 45%, var(--green));
  color: #080806;
  box-shadow: var(--shadow-gold);
}

.secondary-button {
  border: 1px solid rgba(246, 200, 87, 0.38);
  background: rgba(246, 200, 87, 0.08);
  color: var(--gold);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.danger-button {
  border: 1px solid rgba(255, 101, 124, 0.4);
  background: rgba(255, 101, 124, 0.12);
  color: #ffd6dd;
}

.compact {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.danger-button:hover,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.ghost-button:focus-visible,
.danger-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.ghost-button:focus-visible,
.danger-button:focus-visible {
  box-shadow: 0 0 0 4px rgba(246, 200, 87, 0.25), var(--shadow-gold);
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.logo-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 50% 20%, rgba(246, 200, 87, 0.12), transparent 35%), rgba(255, 255, 255, 0.04);
  padding: clamp(1rem, 2vw, 1.5rem);
  min-height: 460px;
  display: grid;
  place-items: center;
}

.logo-stage img {
  width: min(100%, 500px);
  border-radius: 28px;
  filter: drop-shadow(0 0 42px rgba(246, 200, 87, 0.16));
}

.signal-row,
.metrics-grid,
.stack-grid,
.product-grid,
.case-grid,
.download-grid,
.contact-grid,
.admin-grid {
  display: grid;
  gap: 1rem;
}

.signal-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
}

.signal-card,
.metric-card,
.feature-card,
.product-card,
.download-card,
.contact-card,
.timeline-card,
.admin-card,
.qa-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: 1.15rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.signal-card strong,
.metric-card strong {
  display: block;
  color: var(--text);
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.signal-card span,
.metric-card span,
.card-copy,
.small-copy,
.timeline-card p,
.product-card p,
.download-card p,
.contact-card p,
.admin-card p,
.qa-card p {
  color: var(--muted);
  line-height: 1.65;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.4rem;
}

.section-head p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-section {
  padding: clamp(1.4rem, 4vw, 3rem) 0;
}

.premium-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  padding: clamp(1.2rem, 4vw, 2.3rem);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

.image-panel img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.badge-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.badge,
.tag,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--silver);
  padding: 0.42rem 0.68rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.badge.gold,
.status-pill.gold {
  border-color: rgba(246, 200, 87, 0.32);
  color: var(--gold);
}

.badge.green,
.status-pill.green {
  border-color: rgba(119, 255, 84, 0.32);
  color: var(--green);
}

.badge.purple,
.status-pill.purple {
  border-color: rgba(185, 92, 255, 0.32);
  color: var(--purple);
}

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

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

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

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

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

.feature-card,
.product-card {
  min-height: 270px;
}

.product-card .product-logo {
  width: 82px;
  height: 82px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.32);
  object-fit: cover;
  margin-bottom: 1rem;
}

.product-card h3 {
  margin-bottom: 0.7rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.product-meta span {
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  padding: 0.32rem 0.55rem;
  font-size: 0.78rem;
}

.timeline {
  display: grid;
  gap: 1rem;
  counter-reset: timeline;
}

.timeline-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-card::before {
  counter-increment: timeline;
  content: counter(timeline, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(246, 200, 87, 0.2), rgba(119, 255, 84, 0.15), rgba(185, 92, 255, 0.15));
  color: var(--gold);
  font-weight: 900;
}

.quote-panel {
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: rgba(246, 200, 87, 0.07);
  padding: 1.1rem 1.2rem;
  color: var(--silver);
  line-height: 1.72;
}

.download-card code,
.admin-card code {
  display: block;
  overflow-wrap: anywhere;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.34);
  color: var(--green);
  padding: 0.65rem;
  font-size: 0.82rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--silver);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  padding: 0.85rem 0.95rem;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(246, 200, 87, 0.55);
  box-shadow: 0 0 0 4px rgba(246, 200, 87, 0.12);
}

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

.route-anchor {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.agent-shell {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 120;
  pointer-events: none;
}

.agent-fab {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(246, 200, 87, 0.32);
  border-radius: 999px;
  background: rgba(5, 6, 10, 0.92);
  color: var(--text);
  padding: 0.55rem 0.95rem 0.55rem 0.55rem;
  box-shadow: var(--shadow-gold), var(--shadow-purple);
}

.agent-fab img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
}

.agent-fab span {
  font-weight: 900;
}

.agent-panel {
  pointer-events: auto;
  position: absolute;
  right: 0;
  bottom: 4.5rem;
  width: min(410px, calc(100vw - 2rem));
  max-height: min(760px, calc(100vh - 7rem));
  display: grid;
  grid-template-rows: auto auto auto minmax(160px, 1fr) auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(7, 8, 13, 0.95);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55), var(--shadow-purple);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.agent-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.agent-header h2 {
  font-size: 1.25rem;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.35rem;
}

.agent-presence {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.agent-presence img {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
}

.agent-presence p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.agent-quick-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.agent-quick-actions button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver);
  padding: 0.42rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.agent-messages {
  overflow-y: auto;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.agent-message {
  max-width: 94%;
  border-radius: 18px;
  padding: 0.78rem 0.9rem;
  color: var(--silver);
  line-height: 1.55;
  font-size: 0.9rem;
}

.agent-message.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.agent-message.user {
  align-self: flex-end;
  background: rgba(246, 200, 87, 0.12);
  border: 1px solid rgba(246, 200, 87, 0.2);
  color: #fff5d0;
}

.agent-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line);
}

.agent-form input {
  border-radius: 999px;
  padding-inline: 1rem;
}

.agent-form button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--green));
  color: #080806;
  padding: 0 0.95rem;
  font-weight: 900;
}

.guide-highlight {
  position: relative !important;
  z-index: 160 !important;
  outline: 3px solid var(--gold) !important;
  box-shadow: 0 0 0 8px rgba(246, 200, 87, 0.16), 0 0 40px rgba(246, 200, 87, 0.45), 0 0 60px rgba(185, 92, 255, 0.25) !important;
  animation: pulseGuide 1.4s ease-in-out infinite;
}

@keyframes pulseGuide {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.012);
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 140;
  max-width: calc(100vw - 2rem);
  transform: translateX(-50%) translateY(120%);
  border: 1px solid rgba(246, 200, 87, 0.22);
  border-radius: 999px;
  background: rgba(5, 6, 10, 0.95);
  color: var(--silver);
  padding: 0.85rem 1rem;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-banner {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.9rem;
  object-fit: contain;
}

.admin-lock {
  max-width: 520px;
  margin: 0 auto;
}

.admin-notice {
  border: 1px dashed rgba(246, 200, 87, 0.36);
  border-radius: var(--radius-lg);
  background: rgba(246, 200, 87, 0.07);
  padding: 1rem;
  color: var(--silver);
  line-height: 1.7;
}

.footer-line {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .main-nav {
    position: fixed;
    inset: var(--header-height) 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius-lg);
    background: rgba(7, 8, 13, 0.96);
    padding: 1rem;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border-radius: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .signal-row,
  .metrics-grid,
  .stack-grid,
  .product-grid,
  .case-grid,
  .download-grid,
  .contact-grid,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-stage {
    min-height: 320px;
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    padding-inline: 0.75rem;
  }

  .brand-lockup img {
    width: 48px;
    height: 48px;
  }

  .brand-lockup small {
    display: none;
  }

  .site-header > .ghost-button {
    display: none;
  }

  .signal-row,
  .metrics-grid,
  .stack-grid,
  .product-grid,
  .case-grid,
  .download-grid,
  .contact-grid,
  .admin-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .premium-panel {
    border-radius: 24px;
  }

  .agent-shell {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .agent-panel {
    right: -0.25rem;
    bottom: 4.3rem;
    width: calc(100vw - 1rem);
  }
}

/* Production-polish additions */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: max-content;
}

.compact-head {
  align-items: center;
}

.spaced-top {
  margin-top: 1rem;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.qa-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  min-height: auto;
}

.qa-card strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(119, 255, 84, 0.12);
  color: var(--green);
}

.qa-card p {
  margin: 0;
  font-size: 0.88rem;
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-line a {
  color: var(--gold);
  font-weight: 800;
}

.product-card h3,
.feature-card h3,
.download-card h3,
.admin-card h3 {
  margin-top: 0.85rem;
}

.form-actions {
  margin-top: 0;
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}

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

@media (max-width: 1100px) {
  .header-actions [data-install-button] {
    display: none;
  }
}

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

@media (max-width: 640px) {
  .header-actions {
    display: none;
  }

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


/* Founder-story and enriched mission polish */
.hero-founder-note {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.founder-strip {
  margin-top: clamp(1rem, 4vw, 2rem);
}

.quote-signature {
  border-left: 3px solid var(--gold);
  font-size: 1.04rem;
}

.founder-image-panel img {
  max-height: 520px;
  object-fit: contain;
}

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

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

.story-card,
.difference-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(246, 200, 87, 0.08), rgba(119, 255, 84, 0.04), rgba(185, 92, 255, 0.06)),
    rgba(255, 255, 255, 0.035);
  padding: 1.25rem;
  min-height: 100%;
}

.story-card::before,
.difference-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(246, 200, 87, 0.35);
  pointer-events: none;
}

.story-card h3,
.difference-card h3 {
  margin: 0 0 0.7rem;
  color: var(--text);
}

.story-card p,
.difference-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.principle-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  padding: 0.95rem 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.principle-list strong {
  color: var(--gold);
}

@media (max-width: 1040px) {
  .story-grid,
  .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .story-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .hero-founder-note {
    font-size: 0.95rem;
  }
}


/* Executive premium visual polish layer */
:root {
  --champagne: #ffe6a0;
  --glass: rgba(255, 255, 255, 0.075);
  --glass-strong: rgba(255, 255, 255, 0.105);
  --line-gold: rgba(246, 200, 87, 0.32);
  --line-green: rgba(119, 255, 84, 0.25);
  --line-purple: rgba(185, 92, 255, 0.24);
  --executive-shadow: 0 28px 90px rgba(0, 0, 0, 0.55), 0 0 60px rgba(246, 200, 87, 0.10);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -6;
  background:
    linear-gradient(115deg, transparent 0%, rgba(246, 200, 87, 0.045) 22%, transparent 44%),
    radial-gradient(circle at 18% 8%, rgba(246, 200, 87, 0.18), transparent 24rem),
    radial-gradient(circle at 78% 16%, rgba(119, 255, 84, 0.11), transparent 22rem),
    radial-gradient(circle at 50% 78%, rgba(185, 92, 255, 0.12), transparent 28rem);
  pointer-events: none;
}

.site-header {
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.brand-lockup strong,
.hero-card h1,
.premium-panel h2,
.section-head h2 {
  text-wrap: balance;
}

.luxury-hero {
  position: relative;
  align-items: stretch;
}

.luxury-hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: calc(var(--radius-xl) + 12px);
  background:
    linear-gradient(90deg, transparent, rgba(246, 200, 87, 0.22), rgba(119, 255, 84, 0.12), rgba(185, 92, 255, 0.20), transparent);
  filter: blur(28px);
  opacity: 0.75;
}

.executive-hero-card {
  min-height: 690px;
  padding: clamp(1.4rem, 4.2vw, 3.4rem);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 18% 0%, rgba(246, 200, 87, 0.22), transparent 20rem),
    radial-gradient(circle at 100% 30%, rgba(185, 92, 255, 0.14), transparent 20rem),
    rgba(5, 6, 9, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--executive-shadow);
}

.luxury-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.luxury-kicker span {
  border: 1px solid rgba(246, 200, 87, 0.32);
  border-radius: 999px;
  background: rgba(246, 200, 87, 0.075);
  color: var(--champagne);
  padding: 0.42rem 0.72rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.executive-hero-card h1 {
  max-width: 980px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
  background: linear-gradient(100deg, #fff 0%, var(--champagne) 38%, #eaffdf 68%, #f4e8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(246, 200, 87, 0.08);
}

.executive-hero-card .lede {
  max-width: 820px;
  font-size: clamp(1.15rem, 2vw, 1.48rem);
}

.signature-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  border: 1px solid rgba(246, 200, 87, 0.18);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(246, 200, 87, 0.10), rgba(119, 255, 84, 0.055), rgba(185, 92, 255, 0.075));
  padding: 0.75rem 1rem;
  color: var(--silver);
}

.signature-bar strong {
  color: var(--champagne);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.executive-visual {
  display: grid;
  gap: 1rem;
}

.executive-logo-stage {
  min-height: 420px;
  background:
    conic-gradient(from 180deg, rgba(246, 200, 87, 0.22), rgba(119, 255, 84, 0.12), rgba(185, 92, 255, 0.20), rgba(246, 200, 87, 0.22)),
    radial-gradient(circle, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 55%, transparent 72%);
  box-shadow: var(--executive-shadow);
}

.executive-logo-stage img {
  filter: drop-shadow(0 0 40px rgba(246, 200, 87, 0.26));
}

.investment-panel,
.executive-strip article,
.boardroom-card,
.promise-card,
.manifesto-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.028)),
    rgba(4, 5, 8, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.investment-panel {
  padding: 1.25rem;
}

.investment-panel h2 {
  margin: 0.2rem 0 0.9rem;
  color: var(--text);
}

.investment-panel ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.investment-panel li::before {
  content: "✦";
  margin-right: 0.45rem;
  color: var(--gold);
}

.executive-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--max-width);
  margin: clamp(1rem, 3vw, 1.4rem) auto 0;
}

.executive-strip article {
  padding: 1.2rem;
  min-height: 210px;
}

.executive-strip article::before,
.boardroom-card::before,
.promise-card::before,
.manifesto-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(246, 200, 87, 0.46);
  background: linear-gradient(120deg, rgba(246, 200, 87, 0.08), transparent 52%);
  pointer-events: none;
}

.executive-strip h3,
.boardroom-card h3,
.promise-card h3,
.manifesto-grid strong {
  margin: 0 0 0.7rem;
  color: var(--text);
  font-size: 1.06rem;
}

.executive-strip p,
.boardroom-card p,
.promise-card p,
.manifesto-grid span {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.luxury-section .section-head,
.proof-theatre .section-head {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(246, 200, 87, 0.075), rgba(119, 255, 84, 0.035), rgba(185, 92, 255, 0.055));
  padding: clamp(1rem, 2.6vw, 1.6rem);
}

.premium-standard-grid .feature-card,
.premium-check-grid .qa-card,
.executive-metrics .metric-card {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.boardroom-grid,
.promise-grid,
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.boardroom-card,
.promise-card {
  padding: 1.2rem;
  min-height: 230px;
}

.boardroom-card span,
.promise-card span {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 34px;
  margin-bottom: 1rem;
  border: 1px solid rgba(246, 200, 87, 0.32);
  border-radius: 999px;
  color: var(--champagne);
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.founder-portrait,
.mission-hero {
  box-shadow: var(--executive-shadow);
}

.founder-portrait p:not(.eyebrow):not(.lede),
.founder-manifesto p:not(.eyebrow):not(.lede) {
  color: var(--muted);
  line-height: 1.82;
  font-size: 1rem;
}

.founder-manifesto {
  background:
    linear-gradient(140deg, rgba(246, 200, 87, 0.10), rgba(119, 255, 84, 0.04), rgba(185, 92, 255, 0.075)),
    rgba(5, 6, 9, 0.74);
}

.manifesto-grid article {
  padding: 1.1rem;
}

.manifesto-grid strong,
.manifesto-grid span {
  display: block;
}

.mission-logo-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: center;
}

.mission-logo-wall img:first-child {
  grid-column: 1 / -1;
}

.mission-logo-wall img {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  padding: 0.7rem;
}

.agent-panel {
  border-color: rgba(246, 200, 87, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62), 0 0 60px rgba(246, 200, 87, 0.13);
}

.agent-fab {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42), 0 0 34px rgba(119, 255, 84, 0.16);
}

.guide-highlight {
  outline: 3px solid var(--champagne) !important;
  box-shadow: 0 0 0 8px rgba(246, 200, 87, 0.18), 0 0 48px rgba(246, 200, 87, 0.42) !important;
}

@media (max-width: 1100px) {
  .executive-strip,
  .boardroom-grid,
  .promise-grid,
  .manifesto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .executive-strip,
  .boardroom-grid,
  .promise-grid,
  .manifesto-grid,
  .mission-logo-wall {
    grid-template-columns: 1fr;
  }

  .executive-hero-card {
    min-height: auto;
  }

  .executive-hero-card h1 {
    letter-spacing: -0.045em;
  }

  .signature-bar {
    border-radius: var(--radius-lg);
  }
}

/* Guided navigation, minimised VexSpark and next-action polish */
.nav-toggle[aria-expanded="true"] {
  border-color: rgba(246, 200, 87, 0.38);
  background: rgba(246, 200, 87, 0.1);
  box-shadow: 0 0 26px rgba(246, 200, 87, 0.14);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle span {
  transition: transform 0.22s ease, opacity 0.22s ease;
}

body.nav-open {
  overflow-x: hidden;
}

.welcome-button {
  border-color: rgba(119, 255, 84, 0.26);
  background: linear-gradient(135deg, rgba(119, 255, 84, 0.08), rgba(246, 200, 87, 0.08));
}

.agent-shell .agent-panel[hidden] {
  display: none !important;
}

.agent-shell:not(.is-open) .agent-fab {
  transform: translateZ(0);
}

.agent-shell.is-open .agent-fab {
  border-color: rgba(119, 255, 84, 0.34);
  background: rgba(7, 8, 13, 0.98);
}

.guide-note {
  position: fixed;
  z-index: 220;
  border: 1px solid rgba(246, 200, 87, 0.32);
  border-radius: 16px;
  background: rgba(5, 6, 10, 0.96);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.46), 0 0 32px rgba(246, 200, 87, 0.16);
  color: var(--silver);
  padding: 0.7rem 0.78rem;
  pointer-events: none;
  line-height: 1.42;
  backdrop-filter: blur(18px);
}

.guide-note::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: -7px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-left: 1px solid rgba(246, 200, 87, 0.32);
  border-top: 1px solid rgba(246, 200, 87, 0.32);
  background: rgba(5, 6, 10, 0.96);
}

.guide-note strong,
.guide-note span {
  display: block;
}

.guide-note strong {
  color: var(--champagne, var(--gold));
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.22rem;
}

.guide-note span {
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  .main-nav {
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 640px) {
  .header-actions {
    display: inline-flex;
    gap: 0.35rem;
  }

  .header-actions .ghost-button:not(.welcome-button) {
    display: none;
  }

  .welcome-button {
    padding: 0.55rem 0.68rem;
    font-size: 0.72rem;
  }

  .agent-fab span {
    display: none;
  }

  .agent-fab {
    padding: 0.5rem;
  }

  .guide-note {
    max-width: calc(100vw - 1.5rem);
    font-size: 0.82rem;
  }
}

/* UX/UI specialist final reskin — premium founder-company polish */
:root {
  --bg: #030305;
  --bg-soft: #090a0f;
  --panel: rgba(10, 12, 18, 0.78);
  --panel-strong: rgba(10, 12, 18, 0.94);
  --panel-light: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.13);
  --gold: #f4c85d;
  --champagne: #ffe9aa;
  --green: #76ff72;
  --purple: #b86cff;
  --text: #fbfbff;
  --muted: #c4cbd8;
  --silver: #e8edf5;
  --silver-dim: #a3adbc;
  --max-width: 1340px;
  --header-height: 82px;
  --radius-xl: 38px;
  --radius-lg: 26px;
  --executive-shadow: 0 34px 110px rgba(0, 0, 0, 0.58), 0 0 72px rgba(246, 200, 87, 0.12);
}

html {
  background: #020203;
}

body {
  background:
    radial-gradient(circle at 18% 6%, rgba(246, 200, 87, 0.17), transparent 24rem),
    radial-gradient(circle at 82% 15%, rgba(119, 255, 84, 0.10), transparent 22rem),
    radial-gradient(circle at 56% 86%, rgba(185, 92, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #020203 0%, #090a10 44%, #020203 100%);
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -6;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(246, 200, 87, 0.04) 20%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%);
}

.background-grid {
  background-size: 96px 96px;
  opacity: 0.48;
  mask-image: radial-gradient(circle at 50% 5%, black 0%, transparent 76%);
}

.site-header {
  min-height: var(--header-height);
  padding: 0.85rem clamp(0.85rem, 2.4vw, 2rem);
  border-bottom: 1px solid rgba(246, 200, 87, 0.16);
  background: linear-gradient(180deg, rgba(3, 4, 7, 0.94), rgba(3, 4, 7, 0.78));
  backdrop-filter: blur(24px) saturate(145%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

.brand-lockup {
  gap: 0.7rem;
}

.brand-lockup img {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(246, 200, 87, 0.28);
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(246, 200, 87, 0.18), 0 14px 40px rgba(0,0,0,0.4);
}

.brand-lockup strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand-lockup small {
  color: var(--champagne);
  opacity: 0.82;
  font-size: 0.68rem;
}

.main-nav {
  gap: 0.1rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.main-nav a {
  padding: 0.58rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.main-nav a.active {
  background: linear-gradient(135deg, rgba(246, 200, 87, 0.23), rgba(119, 255, 84, 0.12), rgba(185, 92, 255, 0.14));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(246, 200, 87, 0.08);
}

.header-actions .ghost-button {
  min-height: 39px;
  padding: 0.55rem 0.78rem;
  border-color: rgba(246, 200, 87, 0.18);
  font-size: 0.78rem;
}

.app-shell {
  width: min(var(--max-width), calc(100% - clamp(1rem, 4vw, 5rem)));
  padding-top: clamp(1rem, 2.2vw, 2rem);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  gap: clamp(1rem, 2.6vw, 2rem);
  min-height: calc(100vh - 138px);
}

.hero-card,
.premium-panel,
.feature-card,
.product-card,
.download-card,
.contact-card,
.admin-card,
.qa-card,
.metric-card,
.timeline-card,
.story-card,
.difference-card,
.investment-panel,
.executive-strip article,
.boardroom-card,
.promise-card,
.manifesto-grid article {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.095), rgba(255,255,255,0.030)),
    rgba(6, 8, 13, 0.78);
  box-shadow: 0 24px 80px rgba(0,0,0,0.30);
}

.hero-card::before,
.premium-panel::before,
.feature-card::before {
  opacity: 0.30;
}

.executive-hero-card {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.45rem, 4vw, 3.2rem);
  border: 1px solid rgba(246, 200, 87, 0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(246, 200, 87, 0.20), transparent 18rem),
    radial-gradient(circle at 96% 34%, rgba(185, 92, 255, 0.14), transparent 20rem),
    linear-gradient(140deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025)),
    rgba(5, 6, 9, 0.82);
}

.executive-hero-card h1,
h1 {
  max-width: 100%;
  font-size: clamp(2.9rem, 5.35vw, 5.95rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.executive-hero-card h1 {
  background: linear-gradient(104deg, #ffffff 0%, var(--champagne) 34%, #e8ffdf 66%, #f0ddff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.executive-hero-card .lede {
  max-width: 760px;
  color: #d8dfeb;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.65;
}

.hero-founder-note {
  max-width: 760px;
  color: #cbd2df;
  line-height: 1.72;
}

.luxury-kicker span,
.badge,
.status-pill,
.tag {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-actions,
.inline-actions,
.card-actions {
  gap: 0.72rem;
}

.primary-button,
.secondary-button,
.ghost-button,
.danger-button {
  min-height: 48px;
  padding: 0.82rem 1.08rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.primary-button {
  background: linear-gradient(135deg, #f2c65f, #fff0b4 42%, #86ff73 100%);
  color: #070704;
  box-shadow: 0 18px 48px rgba(246,200,87,0.22), inset 0 1px 0 rgba(255,255,255,0.45);
}

.secondary-button,
.ghost-button {
  backdrop-filter: blur(14px);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.danger-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35), 0 0 38px rgba(246,200,87,0.13);
}

.executive-visual {
  align-content: stretch;
}

.executive-logo-stage,
.logo-stage {
  min-height: 360px;
  border-color: rgba(246, 200, 87, 0.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.10), transparent 34%),
    conic-gradient(from 180deg, rgba(246,200,87,0.22), rgba(119,255,84,0.10), rgba(185,92,255,0.18), rgba(246,200,87,0.22)),
    rgba(6,8,13,0.76);
}

.executive-logo-stage img,
.logo-stage img {
  width: min(82%, 430px);
  border-radius: 32px;
}

.signal-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.signal-card {
  padding: 0.95rem;
  min-height: 105px;
}

.signal-card strong,
.metric-card strong {
  color: var(--champagne);
}

.executive-strip {
  margin-top: 1rem;
}

.executive-strip article,
.boardroom-card,
.promise-card {
  min-height: 188px;
}

.section-head h2,
.premium-panel h2,
h2 {
  max-width: 980px;
  font-size: clamp(1.9rem, 4vw, 4.1rem);
  line-height: 1.02;
}

.page-section,
.premium-panel {
  margin-top: clamp(1rem, 2.8vw, 2rem);
}

.product-card,
.feature-card,
.download-card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.product-card:hover,
.feature-card:hover,
.download-card:hover,
.story-card:hover,
.difference-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246,200,87,0.28);
  box-shadow: 0 28px 90px rgba(0,0,0,0.38), 0 0 42px rgba(246,200,87,0.08);
}

.product-card .product-logo {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.32), 0 0 28px rgba(246,200,87,.10);
}

.footer-line {
  border-top-color: rgba(246,200,87,0.16);
  color: #aeb7c6;
}

/* Make VexSpark feel like an optional premium assistant, not a blocking overlay */
.agent-shell {
  right: clamp(0.8rem, 2vw, 1.4rem);
  bottom: clamp(0.8rem, 2vw, 1.4rem);
}

.agent-fab {
  border-color: rgba(246, 200, 87, 0.30);
  background: linear-gradient(135deg, rgba(9,10,16,0.95), rgba(15,18,26,0.92));
  padding: 0.48rem 0.86rem 0.48rem 0.48rem;
  box-shadow: 0 20px 70px rgba(0,0,0,.44), 0 0 38px rgba(119,255,84,.13), inset 0 1px 0 rgba(255,255,255,.08);
}

.agent-fab span::after {
  content: " VexSpark™";
  color: var(--champagne);
}

.agent-panel {
  width: min(430px, calc(100vw - 1.5rem));
  border-color: rgba(246,200,87,0.22);
  background: linear-gradient(160deg, rgba(10,12,18,.98), rgba(5,6,10,.96));
  box-shadow: 0 34px 110px rgba(0,0,0,.68), 0 0 62px rgba(185,92,255,.18);
}

.agent-quick-actions {
  max-height: 174px;
  overflow-y: auto;
}

.agent-quick-actions button:hover,
.agent-quick-actions button:focus-visible {
  border-color: rgba(246,200,87,.35);
  color: #fff;
  background: rgba(246,200,87,.10);
  outline: none;
}

.guide-highlight {
  outline: 3px solid var(--champagne) !important;
  border-radius: 18px;
}

.guide-note {
  max-width: 330px;
  border-color: rgba(246,200,87,.38);
  background: linear-gradient(145deg, rgba(9,10,16,.98), rgba(18,20,28,.97));
}

/* Clean, working hamburger menu */
.nav-toggle {
  flex-shrink: 0;
}

@media (max-width: 1180px) {
  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + 0.7rem);
    right: clamp(0.75rem, 3vw, 1.4rem);
    left: auto;
    width: min(420px, calc(100vw - 1.5rem));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 26px;
    padding: 0.75rem;
    background: rgba(6, 8, 13, 0.98);
    border: 1px solid rgba(246, 200, 87, 0.18);
    box-shadow: 0 28px 90px rgba(0,0,0,.55);
    opacity: 0;
    transform: translateY(-10px) scale(.985);
    pointer-events: none;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .main-nav a {
    border-radius: 18px;
    padding: 0.9rem 1rem;
    font-size: 0.92rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .executive-visual {
    grid-template-columns: minmax(280px, .9fr) minmax(280px, 1.1fr);
    align-items: stretch;
  }

  .signal-row {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .executive-visual,
  .signal-row,
  .executive-strip,
  .boardroom-grid,
  .promise-grid,
  .manifesto-grid,
  .stack-grid,
  .product-grid,
  .case-grid,
  .download-grid,
  .metrics-grid,
  .contact-grid,
  .admin-grid,
  .qa-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: .65rem;
  }

  .brand-lockup span {
    max-width: 160px;
  }

  .brand-lockup strong {
    white-space: nowrap;
  }

  .executive-hero-card h1,
  h1 {
    font-size: clamp(2.55rem, 12vw, 4.4rem);
  }

  .section-head {
    align-items: start;
  }
}

@media (max-width: 640px) {
  :root { --header-height: 74px; }

  .app-shell {
    width: min(100% - 1rem, var(--max-width));
    padding-bottom: 6rem;
  }

  .site-header {
    padding: .65rem .7rem;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .brand-lockup strong {
    font-size: .86rem;
  }

  .welcome-button {
    min-height: 38px;
    padding: .48rem .58rem;
    font-size: .69rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .executive-hero-card,
  .premium-panel,
  .page-section .section-head,
  .luxury-section .section-head,
  .proof-theatre .section-head {
    border-radius: 26px;
  }

  .executive-logo-stage,
  .logo-stage {
    min-height: 280px;
  }

  .hero-actions > *,
  .inline-actions > *,
  .card-actions > * {
    width: 100%;
  }

  .agent-fab span::after { content: ""; }
  .agent-panel {
    right: -0.25rem;
    width: calc(100vw - 1rem);
    max-height: min(690px, calc(100vh - 6.3rem));
  }

  .agent-presence {
    grid-template-columns: 58px 1fr;
  }

  .agent-presence img {
    width: 58px;
    height: 58px;
  }
}


/* --------------------------------------------------------------------------
   Multi-page executive polish layer
   Real pages replace the old hash-router feel. Keep this layer at the bottom
   so it safely improves without damaging the existing visual system.
-------------------------------------------------------------------------- */
.page-shell {
  padding-top: clamp(2.2rem, 5vw, 4.8rem);
}
.site-header {
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
}
.main-nav[hidden] { display: none !important; }
@media (min-width: 1181px) {
  .main-nav[hidden] { display: flex !important; }
}
.page-title-block {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246,200,87,.18);
  border-radius: clamp(28px, 4vw, 46px);
  padding: clamp(2rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(246,200,87,.10), rgba(119,255,84,.06), rgba(185,92,255,.08)),
    rgba(8,10,15,.78);
  box-shadow: 0 40px 130px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
  margin-bottom: clamp(1.4rem, 4vw, 3rem);
}
.page-title-block::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% 28%;
  height: 20rem;
  background: radial-gradient(circle, rgba(246,200,87,.18), transparent 62%);
  pointer-events: none;
}
.page-title-block h1 {
  max-width: 980px;
  margin: 0 0 1rem;
  font-size: clamp(2.7rem, 8vw, 6.5rem);
  line-height: .92;
  letter-spacing: -.075em;
}
.page-title-block .lede {
  max-width: 860px;
}
.page-hero {
  margin-bottom: clamp(1.4rem, 4vw, 3rem);
}
.story-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .85fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: stretch;
  margin-bottom: clamp(1.4rem, 4vw, 3rem);
}
.story-panel p,
.mission-statement p,
.brand-theatre p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}
.founder-portrait-card,
.brand-theatre,
.filter-panel,
.metric-card,
.step-card,
.admin-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(16,18,26,.9), rgba(7,8,12,.88));
  box-shadow: 0 28px 95px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.07);
}
.founder-portrait-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}
.founder-portrait-card img {
  width: min(250px, 80%);
  margin: 0 auto 1.4rem;
  border-radius: 32px;
  box-shadow: 0 32px 100px rgba(246,200,87,.15);
}
.brand-theatre {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  margin-bottom: clamp(1.4rem, 4vw, 3rem);
}
.brand-theatre img {
  border-radius: 28px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.step-card {
  padding: 1.35rem;
  transition: transform .25s ease, border-color .25s ease;
}
.step-card:hover { transform: translateY(-5px); border-color: rgba(246,200,87,.28); }
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), #fff1a6);
  font-weight: 900;
  margin-bottom: .9rem;
}
.step-card a { color: var(--gold); font-weight: 800; }
.filter-panel {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  margin-bottom: 1.25rem;
}
.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.filter-actions button,
.path-list button {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.055);
  padding: .72rem .95rem;
}
.filter-actions button.active,
.filter-actions button:hover,
.path-list button:hover {
  border-color: rgba(246,200,87,.35);
  background: rgba(246,200,87,.12);
}
.compact-card {
  min-height: 42px;
  padding: .65rem .9rem;
  font-size: .84rem;
}
.safespark-stage img { max-width: 440px; margin: auto; }
.speech-sample {
  border-left: 3px solid var(--gold);
  padding: .85rem 1rem;
  border-radius: 0 18px 18px 0;
  background: rgba(246,200,87,.07);
  color: var(--champagne, #ffe7a3);
}
.path-list {
  display: grid;
  gap: .75rem;
  margin: 1.25rem 0;
}
.contact-form label {
  display: block;
  color: var(--muted);
  margin: .8rem 0 .35rem;
  font-weight: 800;
  font-size: .86rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.admin-card input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255,255,255,.055);
  padding: .95rem 1rem;
}
.contact-form textarea { resize: vertical; }
.guide-highlight {
  position: relative;
  outline: 3px solid var(--gold) !important;
  outline-offset: 4px;
  box-shadow: 0 0 0 8px rgba(246,200,87,.12), 0 0 44px rgba(246,200,87,.24) !important;
}
.guide-inline-note {
  display: block;
  width: fit-content;
  max-width: min(360px, 100%);
  margin: .55rem 0 .7rem;
  border: 1px solid rgba(246,200,87,.34);
  border-radius: 14px;
  background: rgba(7,8,12,.92);
  color: var(--text);
  padding: .55rem .7rem;
  font-size: .78rem;
  line-height: 1.45;
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
}
.agent-panel[hidden],
.admin-modal[hidden] { display: none !important; }
.agent-panel.open { display: block; }
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(14px);
}
.admin-card {
  position: relative;
  width: min(540px, 100%);
  padding: 1.4rem;
}
.admin-close { position: absolute; top: .8rem; right: .8rem; }
.muted { color: var(--muted); }
.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation-duration: .001ms !important;
  scroll-behavior: auto !important;
  transition-duration: .001ms !important;
}
@media (max-width: 1180px) {
  .main-nav { display: flex; }
  .main-nav[hidden] { display: none !important; }
}
@media (max-width: 900px) {
  .story-layout,
  .brand-theatre,
  .contact-grid,
  .filter-panel { grid-template-columns: 1fr; }
  .filter-panel { align-items: stretch; flex-direction: column; }
}
@media (max-width: 640px) {
  .page-title-block { padding: 1.4rem; }
  .page-title-block h1 { font-size: clamp(2.25rem, 15vw, 3.4rem); }
  .header-actions { gap: .35rem; }
  .header-actions .ghost-button:not(.welcome-button) { display: none; }
  .filter-actions button { flex: 1; }
}

/* Founder lived-experience polish */
.founder-truth-panel {
  margin-bottom: clamp(1.4rem, 4vw, 3rem);
  border-color: rgba(246, 200, 87, 0.28);
}
.founder-truth-panel p:not(.eyebrow) {
  max-width: 82ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.82;
}
.founder-truth-panel h2 {
  max-width: 850px;
}

/* Founder mission learning-difference expansion */
.learning-difference-section {
  position: relative;
}

.founder-learning-panel {
  border-color: rgba(119, 255, 84, 0.22);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38), 0 0 46px rgba(119, 255, 84, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.founder-learning-panel h2 {
  max-width: 920px;
}

.founder-learning-panel p:first-of-type {
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.2rem);
}

/* --------------------------------------------------------------------------
   Final perfection layer: professional UI, accessibility, responsive repair.
-------------------------------------------------------------------------- */
:root {
  --focus-ring: 0 0 0 4px rgba(119, 255, 84, 0.20), 0 0 0 1px rgba(119, 255, 84, 0.75);
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -7;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.45));
}

main :where(p, li) {
  overflow-wrap: anywhere;
}

.site-header {
  isolation: isolate;
}

.brand-lockup,
.main-nav a,
.header-actions button,
.nav-toggle,
.agent-fab,
.agent-quick-actions button,
.primary-button,
.secondary-button,
.ghost-button,
.danger-button,
.filter-actions button,
.path-list button {
  min-height: 44px;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring) !important;
}

.main-nav a[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(246, 200, 87, 0.18), rgba(119, 255, 84, 0.14));
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle span {
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.hero-grid {
  min-height: auto;
}

.executive-hero-card {
  min-height: auto;
}

.executive-hero-card h1,
.page-title-block h1 {
  max-width: 1080px;
  text-wrap: balance;
}

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

.signal-card,
.feature-card,
.product-card,
.download-card,
.timeline-card,
.metric-card,
.step-card,
.qa-card {
  min-width: 0;
}

.feature-card,
.product-card {
  min-height: 0;
}

.product-card .product-logo,
.agent-presence img,
.agent-fab img,
.logo-stage img,
.brand-theatre img,
.founder-portrait-card img {
  aspect-ratio: 1 / 1;
}

.brand-banner {
  aspect-ratio: 2 / 1;
}

.agent-message.agent,
.agent-message.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.agent-message.user {
  align-self: flex-end;
}

.agent-panel.open {
  display: grid;
}

.agent-form button,
.agent-quick-actions button,
.filter-actions button,
.path-list button {
  min-width: 44px;
}

.guide-highlight {
  outline-color: var(--green) !important;
  box-shadow: 0 0 0 8px rgba(119, 255, 84, 0.13), 0 0 44px rgba(119, 255, 84, 0.28), 0 0 68px rgba(246, 200, 87, 0.16) !important;
}

.guide-inline-note {
  border-color: rgba(119, 255, 84, 0.40);
  color: #eaffdf;
}

.guide-inline-note::before {
  content: "↘";
  display: inline-grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  margin-right: 0.45rem;
  border-radius: 999px;
  background: rgba(119, 255, 84, 0.12);
  color: var(--green);
  font-weight: 900;
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  color: #ffd3db;
  font-size: 0.84rem;
  font-weight: 800;
}

[aria-invalid="true"] {
  border-color: rgba(255, 101, 124, 0.72) !important;
  box-shadow: 0 0 0 4px rgba(255, 101, 124, 0.14) !important;
}

.form-status {
  margin-top: 0.9rem;
}

.footer-line {
  align-items: flex-start;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

@media (min-width: 1181px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .main-nav {
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    max-height: calc(100vh - var(--header-height) - 1.5rem);
    overflow-y: auto;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .executive-visual {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .app-shell {
    width: min(100% - 1rem, var(--max-width));
  }

  .site-header {
    gap: 0.55rem;
  }

  .header-actions .welcome-button {
    display: inline-flex;
  }

  .signature-bar {
    border-radius: 24px;
  }

  .footer-line,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .brand-lockup span {
    max-width: 9.5rem;
  }

  .brand-lockup strong {
    white-space: normal;
    line-height: 1.05;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .header-actions .welcome-button {
    font-size: 0.68rem;
    max-width: 5.5rem;
    white-space: normal;
    line-height: 1.05;
  }

  .page-title-block,
  .executive-hero-card,
  .premium-panel,
  .feature-card,
  .product-card,
  .download-card,
  .contact-card,
  .step-card {
    border-radius: 22px;
  }

  .executive-visual .signal-row {
    grid-template-columns: 1fr;
  }

  .agent-fab span {
    display: none;
  }

  .agent-fab {
    padding: 0.48rem;
  }

  .agent-panel {
    width: calc(100vw - 0.75rem);
    max-height: calc(100vh - 5.7rem);
  }

  .agent-quick-actions {
    max-height: 136px;
  }
}


/* Final contact and image proportion repair */
.contact-shortcuts {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .85fr) minmax(260px, .75fr);
  align-items: stretch;
}
.contact-direct-panel {
  min-height: 100%;
}
.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin: 1.2rem 0;
}
.contact-action {
  display: grid;
  align-content: start;
  justify-items: start;
  min-height: 124px;
  padding: 1rem;
  white-space: normal;
  text-align: left;
}
.contact-action span {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-action strong {
  display: block;
  margin-top: .28rem;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.contact-action small {
  display: block;
  margin-top: .5rem;
  color: var(--muted);
  line-height: 1.45;
}
.contact-guidance-panel .clean-list {
  margin-top: 1rem;
}
.contact-form { display: none !important; }

/* Keep brand, mascot and banner artwork in their original proportions. */
.logo-stage img,
.executive-logo-stage img,
.founder-image-panel img,
.founder-portrait-card img,
.brand-theatre img,
.mission-logo-wall img,
.safespark-stage img,
.image-panel img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(560px, 68vh);
  object-fit: contain !important;
  aspect-ratio: auto !important;
}
.brand-lockup img,
.product-card .product-logo,
.agent-fab img,
.agent-presence img {
  object-fit: contain !important;
  object-position: center center;
  background: rgba(255,255,255,.045);
  aspect-ratio: auto !important;
}
.product-card .product-logo {
  padding: .45rem;
}
.agent-fab img {
  padding: .18rem;
}
.agent-presence img {
  padding: .28rem;
}
img[src*="4p3x-verse-banner"] {
  aspect-ratio: 1280 / 426 !important;
}
img[src*="safespark-logo"] {
  aspect-ratio: 4 / 3 !important;
}
img[src*="vexspark-guide"] {
  aspect-ratio: 2 / 3 !important;
}

@media (max-width: 980px) {
  .contact-shortcuts {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .contact-action-grid {
    grid-template-columns: 1fr;
  }
  .contact-action {
    min-height: 0;
  }
  .agent-fab img {
    width: 42px;
    height: 42px;
  }
}
