:root {
  --navy: #0d1f3c;
  --deep: #07101f;
  --teal: #2b8f8a;
  --coral: #d4512a;
  --gold: #e8981c;
  --cream: #ede8da;
  --paper: #faf5eb;
  --ink: #17233a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--cream);
  font-family: "Barlow", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 16, 31, 0.97);
  border-bottom: 2px solid rgba(43, 143, 138, 0.35);
}

.nav-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark,
h1,
h2,
h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
}

.brand-name {
  color: rgba(255, 255, 255, 0.68);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu-btn {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75);
  padding: 7px 12px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a,
.footer-links a,
.button,
button {
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links a {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0 33%, var(--coral) 33% 66%, var(--gold) 66%);
}

.partner-bar {
  background: rgba(43, 143, 138, 0.08);
  border-bottom: 1px solid rgba(43, 143, 138, 0.22);
  padding: 9px 0;
}

.partner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.partner-copy {
  color: rgba(255, 255, 255, 0.48);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.partner-copy.primary {
  color: var(--teal);
}

.partner-logo img {
  display: block;
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.button {
  display: inline-block;
  background: var(--coral);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  padding: 12px 22px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.button:hover {
  background: #b03f1e;
  transform: translateY(-1px);
}

.button.alt {
  background: var(--teal);
}

.button.alt:hover {
  background: #1a6b66;
}

.button.ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.button.ghost:hover {
  border-color: #fff;
}

.button.disabled,
.button.disabled:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  cursor: not-allowed;
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 76vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 22%, rgba(232, 152, 28, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(13, 31, 60, 0.96), rgba(7, 16, 31, 0.96));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 2px solid rgba(237, 232, 218, 0.12);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(46vw, 430px);
  aspect-ratio: 1;
  border: 2px solid rgba(237, 232, 218, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 86px 0 74px;
}

.eyebrow,
.page-head .eyebrow,
.section-label {
  color: var(--teal);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(64px, 10vw, 132px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.84;
}

h1 span,
h2 span {
  color: var(--gold);
}

.lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 2.1vw, 22px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.facts {
  background: var(--paper);
  color: var(--ink);
}

.fact-grid,
.cards,
.info-grid,
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fact-grid {
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 0;
}

.fact,
.card,
.info-card,
.tier,
.panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
}

.facts .fact {
  background: #fff;
  border-color: rgba(13, 31, 60, 0.08);
}

.fact b,
.info-card b {
  display: block;
  color: var(--coral);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fact strong,
.info-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 74px 0;
}

.section.paper {
  background: var(--paper);
  color: var(--ink);
}

.section h2,
.page-head h1 {
  margin: 8px 0 18px;
  color: #fff;
  font-size: clamp(46px, 7vw, 78px);
  font-weight: 900;
  line-height: 0.95;
}

.paper h2,
.paper h3,
.paper .card h3 {
  color: var(--navy);
}

.section p,
.card p,
.panel p,
.tier li,
.muted {
  color: rgba(255, 255, 255, 0.66);
}

.paper p,
.paper .card p {
  color: #5c687c;
}

.card h3,
.panel h3,
.tier h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
  line-height: 0.96;
}

.card {
  border-top: 4px solid var(--teal);
}

.card:nth-child(2n) {
  border-top-color: var(--coral);
}

.card:nth-child(3n) {
  border-top-color: var(--gold);
}

.page-head {
  padding: 58px 0 42px;
  background: var(--deep);
  border-bottom: 4px solid var(--teal);
}

.page-head p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.band {
  background: var(--coral);
  padding: 26px 0;
}

.band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.band strong {
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  padding: 10px 0;
}

.paper .list li {
  border-color: rgba(13, 31, 60, 0.12);
  color: #5c687c;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 24px;
}

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

th {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
}

td,
th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 11px 12px;
}

td {
  color: rgba(255, 255, 255, 0.78);
}

.filter-bar,
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.filter-btn,
.swatch-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 11px;
  padding: 8px 13px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.badge {
  display: inline-block;
  background: rgba(43, 143, 138, 0.18);
  color: #7ed6d1;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 3px 7px;
  text-transform: uppercase;
}

form,
.form-card {
  display: grid;
  gap: 13px;
}

.form-card {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

label {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font: inherit;
  padding: 11px 12px;
}

select option {
  background: var(--navy);
}

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

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

.total-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 13px;
  color: var(--gold);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.success {
  display: none;
  background: rgba(43, 143, 138, 0.1);
  border: 1px solid rgba(43, 143, 138, 0.28);
  color: #7ed6d1;
  padding: 14px 16px;
}

.stripe-placeholder {
  border-top: 4px solid var(--gold);
}

footer {
  background: #030810;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 42px 0;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  text-decoration: none;
}

.copyright {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(7, 16, 31, 0.99);
    border-bottom: 2px solid rgba(43, 143, 138, 0.35);
    padding: 12px 24px 18px;
  }

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

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .fact-grid,
  .cards,
  .info-grid,
  .tier-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 72px 0 62px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1140px);
  }

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

  h1 {
    font-size: 58px;
  }

  .section h2,
  .page-head h1 {
    font-size: 44px;
  }
}

.paper .form-card {
  background: #fff;
  border-color: rgba(13, 31, 60, 0.12);
  box-shadow: 0 18px 36px rgba(13, 31, 60, 0.08);
}

.paper .form-card label {
  color: rgba(13, 31, 60, 0.68);
}

.paper .form-card input,
.paper .form-card select,
.paper .form-card textarea {
  background: #fff;
  border-color: rgba(13, 31, 60, 0.18);
  color: var(--navy);
}

.paper .form-card input::placeholder,
.paper .form-card textarea::placeholder {
  color: rgba(13, 31, 60, 0.42);
}

.paper .form-card select option {
  background: #fff;
  color: var(--navy);
}

.page-head .eyebrow,
.section:not(.paper) .section-label {
  color: var(--gold);
}

.section:not(.paper) .info-card b,
.section:not(.paper) .fact b {
  color: #7ed6d1;
}

.section:not(.paper) .info-card strong,
.section:not(.paper) .fact strong {
  color: #fff;
}

.section:not(.paper) .info-card p,
.section:not(.paper) .panel p,
.section:not(.paper) .card p,
.section:not(.paper) .tier p {
  color: rgba(255, 255, 255, 0.76);
}

.section:not(.paper) .list li {
  color: rgba(255, 255, 255, 0.78);
}

.section:not(.paper) .panel h3,
.section:not(.paper) .card h3,
.section:not(.paper) .tier h3 {
  color: #fff;
}

.section.paper .section-label {
  color: var(--coral);
}
