/* =====================================================================
   Marketplace Launchpad — base design system
   Tokens, typography, layout primitives and shared components.
   Page-specific styles live in their own files (marketing.css, pricing.css …)
   and must build on these tokens rather than introducing new colors.
   ===================================================================== */

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* brand — the logo's navy and orange (MPLP logo, 2026-09-25) */
  --navy-950: #011a31;
  --navy-900: #03284a;
  --navy-800: #0c3a64;
  --navy-700: #1a4a78;
  --navy-600: #2d5d8e;
  /* accent scale: 500 is the logo orange; 600/700 are deeper so text on white meets WCAG AA */
  --accent-700: #b8420a;
  --accent-600: #c2410c;
  --accent-500: #fe7619;
  --accent-400: #ff9340;
  --accent-300: #ffb57f;
  --accent-100: #ffe3cf;
  --accent-50: #fff4eb;
  --grad: linear-gradient(120deg, #fe7619 0%, #ff9340 100%);
  /* text on --grad fills is navy: white on the logo orange is too low-contrast to read */
  --on-accent: #03284a;
  --grad-navy: radial-gradient(1200px 600px at 85% -10%, rgba(254, 118, 25, 0.22), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(45, 93, 142, 0.55), transparent 60%), #03284a;

  /* neutrals */
  --ink: #0b1a2e;
  --text: #34455d;
  --muted: #5f718a;
  --faint: #8595ab;
  --line: #e2e8f1;
  --line-strong: #cdd7e4;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-softer: #fafcfe;

  /* status */
  --green-700: #067a52;
  --green-600: #0f9f6e;
  --green-50: #e8f8f1;
  --amber-700: #9a5b00;
  --amber-50: #fff5e1;
  --red-700: #b42318;
  --red-50: #fdeceb;

  /* shape & depth */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(0, 23, 53, 0.06);
  --shadow-sm: 0 1px 2px rgba(0, 23, 53, 0.05), 0 2px 6px rgba(0, 23, 53, 0.06);
  --shadow: 0 12px 32px -14px rgba(0, 23, 53, 0.2), 0 4px 10px -6px rgba(0, 23, 53, 0.08);
  --shadow-lg: 0 32px 64px -24px rgba(0, 23, 53, 0.38), 0 10px 24px -12px rgba(0, 23, 53, 0.16);
  --ring: 0 0 0 3px rgba(254, 118, 25, 0.35);

  /* type */
  --font-display: 'Montserrat', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* layout */
  --container: 1180px;
  --container-narrow: 780px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 72px;
  --section-y: clamp(64px, 9vw, 112px);

  color-scheme: light;
}

/* ---------- reset & base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img,
svg {
  max-width: 100%;
}
img {
  height: auto;
  display: block;
}
a {
  color: var(--accent-600);
  text-decoration: none;
}
a:hover {
  color: var(--accent-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
:focus-visible {
  outline: 2px solid var(--accent-600);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection {
  background: var(--accent-100);
  color: var(--navy-900);
}
hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 750;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}
h3 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 1.05rem;
  letter-spacing: 0;
}
p {
  margin: 0 0 1em;
  text-wrap: pretty;
}
p:last-child {
  margin-bottom: 0;
}
strong {
  color: var(--ink);
  font-weight: 650;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  vertical-align: -0.2em;
}

/* ---------- layout primitives ---------- */

.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: calc(var(--container-narrow) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section-y);
}
.section-tight {
  padding-block: clamp(40px, 6vw, 72px);
}
.section-soft {
  background: var(--bg-soft);
}
.section-dark {
  background: var(--grad-navy);
  color: #c9d6ea;
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark strong {
  color: #fff;
}
.section-dark .lead {
  color: #c9d6ea;
}
.section-dark .eyebrow {
  color: var(--accent-300);
}
.section-dark a:not(.btn) {
  color: var(--accent-300);
}

.grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 28px);
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.split-reverse > :first-child {
  order: 2;
}
@media (max-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
  }
  .split-reverse > :first-child {
    order: 0;
  }
}

.stack > * + * {
  margin-top: 16px;
}
.stack-sm > * + * {
  margin-top: 8px;
}
.stack-lg > * + * {
  margin-top: 32px;
}
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cluster-center {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.875rem;
}
.nowrap {
  white-space: nowrap;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  top: 12px;
  color: #fff;
}
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- type helpers ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
}
.gradient-text {
  /* deeper orange on light backgrounds so large headings keep >= 3:1 contrast */
  background: linear-gradient(120deg, #c2410c 0%, #f26b12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-dark .gradient-text,
.cta-band .gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.section-head {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head-center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  margin-bottom: 0.4em;
}

/* ---------- buttons ---------- */

.btn {
  --btn-pad-y: 12px;
  --btn-pad-x: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn:disabled,
.btn[aria-disabled='true'] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.btn .icon {
  width: 1.05em;
  height: 1.05em;
}
.btn-primary {
  background: var(--grad);
  color: var(--on-accent);
  box-shadow: 0 8px 20px -8px rgba(254, 118, 25, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  color: var(--on-accent);
  box-shadow: 0 12px 26px -8px rgba(254, 118, 25, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-secondary {
  background: #fff;
  color: var(--navy-900);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  color: var(--navy-900);
  border-color: var(--navy-600);
}
.btn-dark {
  background: var(--navy-900);
  color: #fff;
}
.btn-dark:hover {
  background: var(--navy-800);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--navy-900);
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.45);
}
.btn-white:hover {
  color: var(--accent-600);
}
.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}
.btn-danger {
  background: #fff;
  color: var(--red-700);
  border-color: #f1b8b3;
}
.btn-danger:hover {
  color: var(--red-700);
  background: var(--red-50);
}
.btn-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent-600);
  font-weight: 600;
}
.btn-link:hover {
  transform: none;
  text-decoration: underline;
}
.btn-sm {
  --btn-pad-y: 8px;
  --btn-pad-x: 14px;
  font-size: 0.9rem;
}
.btn-lg {
  --btn-pad-y: 16px;
  --btn-pad-x: 28px;
  font-size: 1.05rem;
  border-radius: 12px;
}
.btn-block {
  display: flex;
  width: 100%;
}

/* ---------- badges, pills ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.5;
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.badge-blue {
  background: var(--accent-50);
  color: var(--accent-700);
  border-color: #ffd2b0;
}
.badge-green {
  background: var(--green-50);
  color: var(--green-700);
  border-color: #bfe9d6;
}
.badge-amber {
  background: var(--amber-50);
  color: var(--amber-700);
  border-color: #f4dba8;
}
.badge-red {
  background: var(--red-50);
  color: var(--red-700);
  border-color: #f4c3be;
}
.badge-gradient {
  background: var(--grad);
  color: var(--on-accent);
  border: 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: var(--shadow-xs);
}
.pill .icon {
  color: var(--accent-600);
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-sm);
}
.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
a.card {
  display: block;
  color: inherit;
}
a.card:hover {
  text-decoration: none;
  color: inherit;
}
.card h3 {
  margin-bottom: 0.4em;
}
.icon-tile {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-50);
  color: var(--accent-600);
  margin-bottom: 18px;
  border: 1px solid #ffdcc2;
}
.icon-tile .icon {
  width: 24px;
  height: 24px;
}
.icon-tile-dark {
  background: rgba(255, 181, 127, 0.12);
  border-color: rgba(255, 181, 127, 0.25);
  color: var(--accent-300);
}

/* ---------- lists ---------- */

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.checklist .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  padding: 3px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-600);
  stroke-width: 3;
}
.section-dark .checklist .icon {
  background: rgba(15, 159, 110, 0.18);
  color: #5fe0b0;
}
.trust-line {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.92rem;
  color: var(--muted);
}
.trust-line li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-line .icon {
  color: var(--green-600);
  stroke-width: 3;
  width: 1em;
  height: 1em;
}
.section-dark .trust-line {
  color: #b9c8de;
}
.section-dark .trust-line .icon {
  color: #5fe0b0;
}

/* ---------- notices ---------- */

.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.notice > .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.notice-success {
  background: var(--green-50);
  border-color: #bfe9d6;
}
.notice-success > .icon {
  color: var(--green-600);
}
.notice-error {
  background: var(--red-50);
  border-color: #f4c3be;
}
.notice-error > .icon {
  color: var(--red-700);
}
.notice-warning {
  background: var(--amber-50);
  border-color: #f4dba8;
}
.notice-warning > .icon {
  color: var(--amber-700);
}
.notice-info {
  background: var(--accent-50);
  border-color: #ffd2b0;
}
.notice-info > .icon {
  color: var(--accent-600);
}

/* ---------- forms ---------- */

.form {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
.field {
  display: grid;
  gap: 6px;
}
.field > label,
.field-label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.field .optional {
  font-weight: 400;
  color: var(--faint);
}
input[type='text'],
input[type='email'],
input[type='password'],
input[type='tel'],
input[type='url'],
input[type='search'],
input[type='number'],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f718a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-600);
  box-shadow: var(--ring);
}
input::placeholder,
textarea::placeholder {
  color: var(--faint);
}
.field-hint {
  font-size: 0.84rem;
  color: var(--muted);
}
.field-error {
  font-size: 0.84rem;
  color: var(--red-700);
  font-weight: 550;
}
.field-invalid input,
.field-invalid select,
.field-invalid textarea {
  border-color: var(--red-700);
}
.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.93rem;
}
.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent-600);
  flex: none;
}
.inline-form {
  display: inline;
  margin: 0;
}

/* ---------- tables ---------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.table th,
.table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--bg-softer);
  font-weight: 650;
}
.table tr:last-child td {
  border-bottom: 0;
}

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(226, 232, 241, 0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  flex: none;
}
.brand:hover {
  text-decoration: none;
  color: var(--navy-900);
}
.brand img {
  width: auto;
  height: 36px;
}
.brand-words {
  display: grid;
  line-height: 1;
  font-family: var(--font-display);
  gap: 3px;
}
.brand-top {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--logo-navy);
}
.brand-bottom {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.47em;
  text-transform: uppercase;
  color: var(--logo-orange);
}
.brand-light,
.brand-light:hover {
  color: #fff;
}
.brand-light .brand-top {
  color: #fff;
}
.nav-main {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}
.nav-main a,
.nav-plain {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 560;
  font-size: 0.95rem;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
.nav-main a:hover,
.nav-plain:hover {
  color: var(--navy-900);
  background: var(--bg-soft);
  text-decoration: none;
}
.nav-main a[aria-current='page'],
.nav-plain[aria-current='page'] {
  color: var(--accent-600);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-mobile {
  display: none;
  margin-left: auto;
}
.nav-mobile summary {
  list-style: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--navy-900);
}
.nav-mobile summary::-webkit-details-marker {
  display: none;
}
.nav-mobile summary .icon {
  width: 22px;
  height: 22px;
}
.nav-mobile .icon-close,
.nav-mobile[open] .icon-open {
  display: none;
}
.nav-mobile[open] .icon-close {
  display: block;
}
.nav-mobile-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 12px var(--gutter) 20px;
}
.nav-mobile-panel nav {
  display: grid;
}
.nav-mobile-panel nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}
.nav-mobile-panel nav a[aria-current='page'] {
  color: var(--accent-600);
}
.nav-mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 16px;
}
@media (max-width: 920px) {
  .nav-main,
  .nav-actions {
    display: none;
  }
  .nav-mobile {
    display: block;
  }
}
.site-header-minimal {
  position: static;
  background: #fff;
}
.header-secure {
  margin: 0 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 550;
}
.header-secure .icon {
  color: var(--green-600);
}

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 96px) clamp(40px, 6vw, 64px);
  background: radial-gradient(900px 380px at 50% -40%, rgba(255, 147, 64, 0.16), transparent 70%),
    linear-gradient(180deg, var(--accent-50) 0%, #fff 100%);
  text-align: center;
}
.page-hero h1 {
  max-width: 900px;
  margin-inline: auto;
}
.page-hero .lead {
  max-width: 720px;
  margin-inline: auto;
}
.page-hero-left {
  text-align: left;
}
.page-hero-left h1,
.page-hero-left .lead {
  margin-inline: 0;
}

/* ---------- FAQ ---------- */

.faq {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-inline: auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq-item[open] {
  border-color: #ffd2b0;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.04rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-chevron {
  color: var(--accent-600);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 22px 20px;
  color: var(--text);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--grad-navy);
  color: #c9d6ea;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 90% 0%, rgba(254, 118, 25, 0.28), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(255, 147, 64, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: clamp(48px, 7vw, 80px);
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 0.3em;
  max-width: 640px;
}
.cta-band p {
  font-size: 1.1rem;
  max-width: 560px;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: none;
}
@media (max-width: 860px) {
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--navy-950);
  color: #9fb1ca;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-block: 64px 48px;
}
.footer-brand p {
  margin: 18px 0 20px;
  max-width: 340px;
}
.site-footer h3 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}
.site-footer nav a {
  color: #9fb1ca;
}
.site-footer nav a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #7489a6;
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
.site-footer-minimal {
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--muted);
}
.site-footer-minimal .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 20px;
}
.site-footer-minimal nav {
  display: flex;
  gap: 18px;
}
.site-footer-minimal a {
  color: var(--muted);
}

/* ---------- error pages ---------- */

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: var(--section-y);
}
.error-code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
  margin-bottom: 12px;
}
