:root {
  --navy-950: #081529;
  --navy-900: #0c1f3d;
  --navy-800: #102a52;
  --navy-700: #163564;
  --navy-100: #e6ecf6;
  --navy-50: #f3f6fb;
  --gold-600: #9e7a38;
  --gold-500: #c19a52;
  --gold-400: #d0ac6b;
  --gold-300: #dfbf86;
  --gold-50: #faf6ec;
  --ink: #26303e;
  --muted: #5d6b80;
  --line: #e4e9f1;
  --bg-soft: #f6f8fc;
  --white: #ffffff;
  --danger: #b3261e;
  --success: #1e7d4f;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(12, 31, 61, 0.05), 0 4px 14px rgba(12, 31, 61, 0.06);
  --shadow-md: 0 12px 32px rgba(12, 31, 61, 0.1);
  --shadow-lg: 0 28px 60px rgba(12, 31, 61, 0.16);
  --shadow-gold: 0 12px 28px rgba(193, 154, 82, 0.35);
  --container: 1200px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.55rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--navy {
  background: var(--navy-900);
  color: #dfe7f4;
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy .lead {
  color: #b9c6dd;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 1rem;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.eyebrow--center::after {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.core-badge {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.22rem 0.55rem;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  vertical-align: middle;
  white-space: nowrap;
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0;
}

.section-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
  z-index: 2000;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn svg {
  flex: none;
}

.btn--gold {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--navy:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: var(--navy-200, #d4dcea);
  color: var(--navy-800);
}

.btn--outline:hover {
  border-color: var(--navy-800);
  background: var(--navy-50);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}

.btn--white:hover {
  background: var(--gold-50);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.02rem;
  border-radius: 10px;
}

.btn--sm {
  padding: 0.6rem 1.05rem;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(12, 31, 61, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  height: 46px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.brand-name .gold {
  color: var(--gold-600);
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.35rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav a.is-active {
  color: var(--navy-900);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: top 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--white);
  padding: 5.5rem 8% 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(4%);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu ul.primary {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.mobile-menu ul.primary a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.45rem;
  font-weight: 650;
  color: var(--navy-900);
  border-bottom: 1px solid var(--bg-soft);
}

.mobile-menu .mmenu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-menu .mmenu-meta {
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
  display: grid;
  gap: 0.4rem;
}

.mobile-menu .mmenu-meta a {
  color: var(--navy-800);
  font-weight: 600;
}

.hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--bg-soft);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58rem 32rem at 78% -12%, rgba(193, 154, 82, 0.12), transparent 60%),
    radial-gradient(46rem 30rem at 8% 110%, rgba(16, 42, 82, 0.1), transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero h1 {
  margin-bottom: 1.1rem;
}

.hero .hero-sub {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 1rem;
}

.hero p.hero-desc {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 2.2rem;
}

.hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
}

.hero-trust svg {
  flex: none;
  margin-top: 0.15rem;
  color: var(--gold-500);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.ops-console {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  position: relative;
  z-index: 1;
}

.console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.1rem;
}

.console-bar .dots {
  display: flex;
  gap: 0.4rem;
}

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

.console-bar .dots i:nth-child(1) { background: #e5a9a0; }
.console-bar .dots i:nth-child(2) { background: #e8cf90; }
.console-bar .dots i:nth-child(3) { background: #9bc3a4; }

.console-bar .console-title {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.console-bar .console-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 650;
  color: var(--navy-700);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.status-cell {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--navy-900);
}

.status-cell svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--gold-500);
}

.stage-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.stage {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #dfe7f4;
  background: var(--navy-800);
  padding: 0.55rem 0.2rem;
  border-radius: 6px;
}

.stage:last-child {
  background: var(--gold-500);
  color: var(--navy-950);
}

.console-chart {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.4rem, 1vw, 0.7rem);
  height: 9.5rem;
  padding: 0.9rem;
  background: var(--navy-950);
  border-radius: var(--radius-md);
  position: relative;
  margin-bottom: 1.1rem;
}

.console-chart::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 3.4rem;
  height: 0.55rem;
  background: var(--gold-500);
  border-radius: 8px;
  opacity: 0.9;
  transform: rotate(0deg);
}

.bar {
  flex: 1;
  border-radius: 5px 5px 3px 3px;
  background: linear-gradient(180deg, #3c5a92, #1d3a6b);
  height: 12%;
  transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar.gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
}

.chart-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.chart-side {
  display: grid;
  gap: 0.55rem;
}

.chart-side .trend {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--success);
}

.chart-side .trend-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.ops-queue {
  display: grid;
  gap: 0.5rem;
}

.queue-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}

.queue-row .q-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  color: var(--navy-700);
  font-weight: 650;
  min-width: 3.6rem;
}

.queue-row .q-name {
  flex: 1;
  color: var(--ink);
  font-weight: 550;
}

.queue-row .q-status {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.q-status.ok {
  color: var(--success);
  background: rgba(30, 125, 79, 0.1);
}

.q-status.work {
  color: var(--navy-700);
  background: rgba(16, 42, 82, 0.1);
}

.q-status.pending {
  color: var(--gold-600);
  background: rgba(193, 154, 82, 0.14);
}

.float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  box-shadow: var(--shadow-md);
}

.float-chip svg {
  color: var(--gold-500);
}

.float-chip--1 {
  top: -1rem;
  right: 0.8rem;
  animation: floaty 5.5s ease-in-out infinite;
}

.float-chip--2 {
  bottom: -1.1rem;
  left: -0.8rem;
  animation: floaty 6.5s ease-in-out infinite reverse;
}

.float-chip--2 svg {
  color: var(--success);
}

.stats-band {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #dfe7f4;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.stats-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

.stat {
  position: relative;
  padding-top: 1.1rem;
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.stat-value {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 750;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

.stat-label {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: #b9c6dd;
  line-height: 1.45;
  max-width: 14rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d7dfea;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  color: var(--navy-800);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

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

.card ul.feat li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--ink);
  line-height: 1.4;
}

.card ul.feat svg {
  flex: none;
  margin-top: 0.28rem;
  color: var(--gold-500);
}

.card ul.feat--single {
  grid-template-columns: 1fr;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--navy-800);
}

.card-link:hover {
  color: var(--gold-600);
}

.card-link:hover svg {
  transform: translateX(3px);
}

.card-link svg {
  transition: transform 0.2s ease;
}

.card--navy {
  background: var(--navy-900);
  border-color: rgba(255, 255, 255, 0.08);
  color: #cfd9ea;
}

.card--navy h3 {
  color: #fff;
}

.card--navy p {
  color: #aebdd6;
}

.card--navy .card-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--gold-400);
}

.card--navy .card-link {
  color: var(--gold-400);
}

.banner-note {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  background: var(--gold-50);
  border: 1px solid #efe3c4;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
}

.banner-note svg {
  color: var(--gold-600);
}

.banner-note p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink);
}

.banner-note strong {
  color: var(--navy-900);
}

.amazon-section {
  background: var(--navy-950);
  color: #c7d2e6;
  position: relative;
  overflow: hidden;
}

.amazon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(52rem 28rem at 85% 0%, rgba(193, 154, 82, 0.1), transparent 60%);
  pointer-events: none;
}

.amazon-section h2 {
  color: #fff;
}

.amazon-section .eyebrow {
  color: var(--gold-400);
}

.amazon-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.amazon-copy p {
  color: #b9c6dd;
  font-size: 1rem;
}

.amazon-flow {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.flow-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.flow-step {
  flex: 1;
  min-width: 6.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.8rem 0.7rem;
  text-align: center;
}

.flow-step .fs-num {
  display: block;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  margin-bottom: 0.25rem;
}

.flow-step .fs-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.flow-arrow {
  color: var(--gold-500);
  flex: none;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.tag {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 550;
  color: #dbe4f3;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.tag:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(193, 154, 82, 0.5);
}

.tag svg {
  flex: none;
  color: var(--gold-400);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.diff {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: transform 0.22s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.diff:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.diff .diff-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--gold-400);
  margin-bottom: 1.05rem;
}

.diff h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.diff p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d7dfea;
}

.case-card .case-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-600);
  margin-bottom: 0.7rem;
}

.case-card h3 {
  margin-bottom: 0.8rem;
}

.case-card .case-scope {
  color: var(--muted);
  font-size: 0.94rem;
  border-left: 3px solid var(--navy-100);
  padding-left: 0.9rem;
  margin-bottom: 1rem;
}

.case-card .case-cap-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}

.chip--gold {
  color: var(--gold-600);
  background: var(--gold-50);
  border-color: #efe3c4;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.85fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.story p {
  color: #4a5668;
}

.story p.lead-paragraph {
  font-size: 1.08rem;
  color: var(--navy-800);
}

.founder-card {
  position: sticky;
  top: 6rem;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founder-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--navy-800);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-body {
  padding: 1.5rem 1.6rem 1.7rem;
}

.founder-body .founder-name {
  font-size: 1.25rem;
  font-weight: 750;
  color: #fff;
  margin-bottom: 0.2rem;
}

.founder-body .founder-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.founder-body .founder-company {
  font-size: 0.8rem;
  color: #9fb0cc;
  margin-bottom: 1rem;
}

.founder-body .btn {
  width: 100%;
}

.founder-card--compact {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.founder-card--compact .founder-photo {
  width: 210px;
  flex: none;
  aspect-ratio: 3 / 4;
}

.founder-card--compact .founder-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.6rem 1.5rem;
}

.founder-card--compact .founder-body .btn {
  width: auto;
  margin-top: 1rem;
}

.founder-card--home {
  padding: 1.6rem;
}

.founder-photo--home {
  width: 100%;
  max-width: 240px;
  margin: 0 0 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.founder-mini-body .founder-name {
  font-size: 1.15rem;
  font-weight: 750;
  color: #fff;
}

.founder-mini-body .founder-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.02em;
}

.founder-mini-body .card-link {
  margin-top: 0.9rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.card--stat {
  padding: 1.2rem;
  text-align: center;
}

.card--stat .mini-val {
  font-size: 1.6rem;
  font-weight: 750;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.card--stat .mini-val .gold-text {
  font-size: 0.9em;
}

.card--stat .mini-lbl {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 0.2rem;
}

.tool-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.tool-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.8rem;
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tool-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d7dfea;
}

.tool-pill svg {
  color: var(--gold-500);
}

.tool-pill--stacked {
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}

.tool-pill--stacked .tool-main {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.tool-pill--stacked .tool-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  position: relative;
  counter-reset: step;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--navy-100));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-node {
  width: 3.1rem;
  height: 3.1rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  font-weight: 750;
  color: var(--navy-900);
  background: radial-gradient(circle at 30% 25%, #fff, #eef2f9);
}

.process-node em {
  font-style: normal;
  color: var(--gold-500);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.engage-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}

.engage-card .engage-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--gold-400);
  margin-bottom: 1.05rem;
}

.engage-card h3 {
  margin-bottom: 0.45rem;
}

.engage-card p {
  color: var(--muted);
  font-size: 0.93rem;
  flex: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.testimonial-card .t-quote-icon {
  color: var(--gold-400);
}

.testimonial-card p {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-card .t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-100);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--navy-700);
}

.testimonial-card .t-name {
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--navy-900);
}

.testimonial-card .t-role {
  font-size: 0.8rem;
  color: var(--muted);
}

.cta-panel {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: 24px;
  padding: clamp(2.8rem, 6vw, 4.5rem);
  text-align: center;
  color: #dfe7f4;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40rem 20rem at 50% -20%, rgba(193, 154, 82, 0.16), transparent 60%);
  pointer-events: none;
}

.cta-panel h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-panel .lead {
  color: #b9c6dd;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2.2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.site-footer {
  background: var(--navy-950);
  color: #a7b5ce;
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand img.brand-logo {
  height: 46px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 22rem;
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-400) !important;
  margin-top: 0.8rem;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}

.footer-nav li,
.footer-services li {
  margin-bottom: 0.55rem;
}

.footer-nav a,
.footer-services a,
.footer-contact a {
  color: #a7b5ce;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-services a:hover,
.footer-contact a:hover {
  color: var(--gold-400);
}

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
}

.footer-contact svg {
  flex: none;
  margin-top: 0.2rem;
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.footer-bottom .legal {
  display: flex;
  gap: 1.4rem;
}

.footer-bottom a {
  color: #a7b5ce;
}

.footer-bottom a:hover {
  color: var(--gold-400);
}

.page-hero {
  background: var(--navy-950);
  color: #d6dfef;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(46rem 24rem at 85% -10%, rgba(193, 154, 82, 0.12), transparent 60%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.9rem;
}

.page-hero .lead {
  color: #b9c6dd;
  max-width: 44rem;
}

.page-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.1rem;
}

.page-hero .breadcrumb a {
  color: var(--gold-400);
}

.page-hero .breadcrumb span {
  color: #8fa1c0;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.service-detail .detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
}

.service-detail .detail-card h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.service-detail .detail-card h3 svg {
  color: var(--gold-500);
}

.service-detail .detail-card > p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-detail ul.feat {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1.2rem;
  margin-top: 1rem;
}

.service-detail ul.feat li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--line);
}

.service-detail ul.feat svg {
  flex: none;
  margin-top: 0.3rem;
  color: var(--gold-500);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

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

.form-grid .field--full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-900);
}

.field label .req {
  color: var(--gold-600);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.78rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(193, 154, 82, 0.18);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  background: #fff8f7;
}

.field .error-msg {
  display: none;
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 550;
}

.field.invalid .error-msg {
  display: block;
}

.form-success {
  display: none;
  background: rgba(30, 125, 79, 0.08);
  border: 1px solid rgba(30, 125, 79, 0.25);
  color: var(--success);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  font-weight: 550;
  font-size: 0.93rem;
  margin-top: 1.2rem;
}

.form-success.is-visible {
    display: block;
    }
    
    .form-error {
    display: none;
    background: rgba(179, 38, 30, 0.07);
    border: 1px solid rgba(179, 38, 30, 0.28);
    color: var(--danger);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.2rem;
    }
    
    .form-error.is-visible {
    display: block;
    }
    
    .form-error a {
    color: var(--danger);
    font-weight: 600;
    text-decoration: underline;
    }
    
    .btn:disabled {
    cursor: not-allowed;
    opacity: 0.75;
    }
    
    .hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.form-footnote {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.form-note {
  background: var(--gold-50);
  border: 1px solid #efe3c4;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.contact-info {
  display: grid;
  gap: 1.1rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.info-card .info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.8rem 0;
}

.info-card .info-row + .info-row {
  border-top: 1px solid var(--bg-soft);
}

.info-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy-50);
  color: var(--navy-800);
  display: grid;
  place-items: center;
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.1rem;
}

.info-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy-900);
  word-break: break-word;
}

.info-value a {
  color: var(--navy-900);
}

.info-value a:hover {
  color: var(--gold-600);
}

.info-actions {
  display: grid;
  gap: 0.8rem;
}

.info-actions .btn {
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.d-none {
  display: none !important;
}

hr.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

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

@media (max-width: 1080px) {
  .nav ul {
    gap: 1.3rem;
  }

  .nav-cta {
    padding: 0.72rem 1.1rem;
    font-size: 0.9rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.6rem;
  }

  .tool-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 940px) {
  .nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

  .hero-visual {
    max-width: 34rem;
  }

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

  .diff-grid,
  .engage-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    text-align: left;
    align-items: start;
  }

  .process-node {
    margin: 0;
  }

  .amazon-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .founder-card {
    position: static;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

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

  .flow-step {
    min-width: 8rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .founder-card--compact {
    flex-direction: column;
    align-items: center;
  }

  .founder-card--compact .founder-photo {
    width: 100%;
    max-width: 280px;
  }

  .founder-card--compact .founder-body {
    align-items: center;
    text-align: center;
    padding: 1.4rem 1.4rem 1.6rem;
  }

  .founder-card--compact .founder-body .btn {
    margin-top: 0.9rem;
  }

  .brand-logo {
    height: 36px;
  }

  .card-grid,
  .diff-grid,
  .engage-grid,
  .testimonial-grid,
  .stats-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .tool-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .flow-line {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-card {
    padding: 1.4rem;
  }

  .card {
    padding: 1.4rem;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .ops-console {
    padding: 1rem;
  }

  .status-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .status-cell {
    padding: 0.65rem 0.75rem;
  }

  .stage-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .header-inner {
    min-height: 66px;
  }
}