:root {
  --navy-950: #07111f;
  --navy-900: #0a1424;
  --navy-850: #0d1829;
  --navy-800: #101d31;
  --navy-700: #14233a;
  --gold-600: #c9a84c;
  --gold-500: #dec06f;
  --ivory: #f5f4ef;
  --muted: #8994a7;
  --muted-strong: #aab1bd;
  --line: rgba(201, 168, 76, 0.16);
  --line-cool: rgba(245, 244, 239, 0.08);
  --green: #3cc986;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--ivory);
  font-family: Barlow, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 68px;
  padding-left: 60px;
  background: rgba(7, 17, 31, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  width: 248px;
  text-decoration: none;
}

.brand img {
  width: 212px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.desktop-nav a,
.mobile-nav a,
.nav-action {
  text-decoration: none;
}

.desktop-nav > a,
.mobile-nav > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 0 18px;
  border-bottom: 2px solid transparent;
  color: rgba(245, 244, 239, 0.56);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.desktop-nav > a:hover,
.mobile-nav > a:hover,
.desktop-nav > a.is-active,
.mobile-nav > a.is-active {
  color: var(--gold-600);
}

.desktop-nav > a.is-active {
  border-bottom-color: var(--gold-600);
}

.desktop-nav .nav-action,
.mobile-nav .nav-action {
  min-width: 188px;
  margin-left: 16px;
  background: var(--gold-600);
  color: var(--navy-950);
  border-bottom-color: transparent;
}

.desktop-nav .nav-action:hover,
.mobile-nav .nav-action:hover,
.button-primary:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}

.desktop-nav .nav-action.is-active,
.mobile-nav .nav-action.is-active {
  color: var(--navy-950);
  border-bottom-color: transparent;
}

.menu-button {
  display: none;
  flex: 0 0 68px;
  height: 68px;
  width: 68px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ivory);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 68px;
  right: 0;
  left: 0;
  z-index: 45;
  display: none;
  flex-direction: column;
  padding: 8px 24px 24px;
  background: rgba(7, 17, 31, 0.99);
  border-bottom: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav > a {
  justify-content: flex-start;
  min-width: 0;
  min-height: 48px;
  padding: 0 12px;
  border-bottom: 0;
  border-left: 3px solid transparent;
}

.mobile-nav > a.is-active {
  border-left-color: var(--gold-600);
}

.mobile-nav .nav-action {
  justify-content: center;
  min-height: 52px;
  margin: 12px 0 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 68px 0 0;
  background:
    radial-gradient(circle at 76% 44%, rgba(20, 35, 58, 0.5), transparent 36%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 68px 0 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(245, 244, 239, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 244, 239, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.96));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 8%;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 150px 60px 180px;
}

.hero-copy {
  max-width: 620px;
  min-width: 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--gold-600);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-600);
}

.hero .section-label {
  opacity: 0.86;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.stat-strip dt,
.price-box strong,
.ribbon {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0;
  color: rgba(245, 244, 239, 0.72);
  font-size: 82px;
  font-weight: 800;
  line-height: 0.92;
}

h1 span {
  display: block;
}

h1 span,
h2 span,
em {
  color: var(--gold-600);
  font-style: normal;
}

h2 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 800;
  line-height: 0.95;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.08;
}

.hero-panel {
  max-width: 650px;
  min-width: 0;
  color: rgba(245, 244, 239, 0.66);
}

.hero-panel .lead {
  color: rgba(245, 244, 239, 0.8);
  font-size: 17px;
}

.hero-panel p {
  margin-bottom: 18px;
}

.outcome-list,
.line-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.outcome-list {
  display: grid;
  gap: 18px;
  margin: 32px 0 36px;
}

.outcome-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

.outcome-list i {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 1px solid rgba(60, 201, 134, 0.25);
  grid-row: 1 / span 2;
}

.outcome-list i::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(42deg);
}

.outcome-list strong {
  display: block;
  grid-column: 2;
  color: rgba(245, 244, 239, 0.78);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.outcome-list small {
  display: block;
  grid-column: 2;
  margin-top: 2px;
  color: rgba(245, 244, 239, 0.46);
  font-size: 14px;
  line-height: 1.35;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 220px;
  padding: 16px 26px;
  border: 1px solid var(--line);
  color: var(--gold-600);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--gold-600);
  color: var(--navy-950);
  border-color: var(--gold-600);
}

.button-secondary {
  background: rgba(10, 20, 36, 0.32);
}

.button-secondary:hover {
  border-color: rgba(222, 192, 111, 0.55);
  color: var(--gold-500);
}

.stat-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border-top: 1px solid var(--line-cool);
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(6px);
}

.stat-strip div {
  min-height: 100px;
  padding: 26px 40px 20px;
  border-right: 1px solid var(--line-cool);
}

.stat-strip div:last-child {
  border-right: 0;
}

.stat-strip dt {
  color: var(--gold-600);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.stat-strip dd {
  margin: 6px 0 0;
  color: rgba(245, 244, 239, 0.42);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 118px 60px;
  border-top: 1px solid rgba(245, 244, 239, 0.045);
}

.section-dark {
  background: var(--navy-950);
}

.section-mid {
  background: var(--navy-900);
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(245, 244, 239, 0.024) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.42;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-number {
  position: absolute;
  top: 78px;
  right: 60px;
  z-index: 1;
  color: rgba(201, 168, 76, 0.16);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 132px;
  font-weight: 800;
  line-height: 1;
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-head p:last-child {
  color: rgba(245, 244, 239, 0.62);
}

.problem-grid,
.included-grid,
.guarantee-grid {
  display: grid;
  gap: 1px;
  background: rgba(245, 244, 239, 0.08);
  border: 1px solid rgba(245, 244, 239, 0.08);
  box-shadow: var(--shadow);
}

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

.problem-grid article,
.included-grid article,
.guarantee-grid article,
.pricing-lead,
.flow-block,
.assessment-form {
  background: rgba(13, 24, 41, 0.92);
}

.problem-grid article,
.included-grid article,
.guarantee-grid article {
  min-height: 260px;
  padding: 34px;
}

.problem-grid span,
.included-grid span,
.guarantee-grid span,
.pricing-lead span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-600);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.problem-grid p,
.included-grid p,
.guarantee-grid p,
.pricing-lead p,
.flow-block li {
  color: rgba(245, 244, 239, 0.6);
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 48px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.statement p {
  margin-bottom: 0;
  color: var(--muted-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-style: italic;
  line-height: 1.25;
}

.statement strong {
  color: var(--ivory);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.flow-block {
  min-height: 460px;
  padding: 42px;
  border: 1px solid var(--line-cool);
}

.flow-receive {
  background: rgba(16, 29, 49, 0.94);
}

.line-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(245, 244, 239, 0.08);
}

.line-list li {
  min-height: 58px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(245, 244, 239, 0.08);
}

.flow-divider {
  position: relative;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line-cool);
  border-bottom: 1px solid var(--line-cool);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), var(--gold-600) calc(50% - 1px), var(--gold-600) calc(50% + 1px), transparent calc(50% + 1px));
}

.flow-divider span {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid var(--gold-600);
  background: var(--navy-950);
  color: var(--gold-600);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 36px;
  align-items: stretch;
  margin-bottom: 1px;
  border: 1px solid rgba(245, 244, 239, 0.08);
  box-shadow: var(--shadow);
}

.pricing-lead > div:first-child {
  padding: 42px;
}

.price-box {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 38px;
  background: rgba(201, 168, 76, 0.08);
  border-left: 1px solid var(--line);
}

.price-box strong {
  color: var(--gold-600);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.9;
}

.price-box small {
  margin-top: 12px;
  color: rgba(245, 244, 239, 0.58);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.included-grid article {
  min-height: 300px;
}

.included-grid article strong,
.guarantee-grid article strong {
  display: block;
  margin-top: 28px;
  color: var(--gold-600);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.ribbon {
  margin: 48px 0 0;
  color: rgba(245, 244, 239, 0.72);
  font-size: 44px;
  font-weight: 800;
  text-align: center;
}

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

.guarantee-grid article {
  min-height: 360px;
}

.quote-panel {
  max-width: 920px;
  margin: 54px auto 0;
  text-align: center;
}

.quote-panel blockquote {
  margin: 0;
  color: rgba(245, 244, 239, 0.75);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-style: italic;
  line-height: 1.28;
}

.quote-panel figcaption {
  margin-top: 18px;
  color: var(--gold-600);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.contact-wrap > div > p:not(.section-label) {
  color: rgba(245, 244, 239, 0.64);
}

.capacity-note {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.capacity-note strong {
  color: var(--ivory);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.capacity-note span {
  color: rgba(245, 244, 239, 0.58);
}

.contact-actions {
  margin-top: 28px;
}

.assessment-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(245, 244, 239, 0.08);
  box-shadow: var(--shadow);
}

.assessment-form label {
  display: grid;
  gap: 8px;
}

.assessment-form span {
  color: var(--gold-600);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(245, 244, 239, 0.12);
  border-radius: 0;
  background: rgba(7, 17, 31, 0.68);
  color: var(--ivory);
  outline: 0;
  padding: 12px 14px;
}

.assessment-form textarea {
  resize: vertical;
}

.assessment-form input:focus,
.assessment-form select:focus,
.assessment-form textarea:focus {
  border-color: var(--gold-600);
}

.assessment-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-500);
  font-size: 14px;
}

.site-footer {
  display: grid;
  gap: 28px;
  justify-items: center;
  padding: 56px 32px;
  background: var(--navy-950);
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-brand img {
  width: 236px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
}

.site-footer a {
  color: rgba(245, 244, 239, 0.58);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--gold-600);
}

.site-footer p {
  margin: 0;
  color: rgba(245, 244, 239, 0.4);
  font-size: 14px;
}

@media (max-width: 1160px) {
  .site-header {
    padding-left: 32px;
  }

  .brand {
    width: 220px;
  }

  .brand img {
    width: 188px;
  }

  .desktop-nav > a {
    min-width: 94px;
    padding: 0 12px;
  }

  .desktop-nav .nav-action {
    min-width: 168px;
    margin-left: 8px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: center;
    min-height: auto;
    padding: 140px 42px 150px;
  }

  .hero-copy,
  .hero-panel {
    width: 100%;
    max-width: 760px;
  }

  h1 {
    font-size: 74px;
  }

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

  .flow-divider {
    min-height: 128px;
    background:
      linear-gradient(180deg, transparent calc(50% - 1px), var(--gold-600) calc(50% - 1px), var(--gold-600) calc(50% + 1px), transparent calc(50% + 1px));
  }

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

@media (max-width: 880px) {
  .site-header {
    padding-left: 24px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 122px 24px 34px;
  }

  .hero-copy,
  .hero-panel {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 42px;
  }

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

  .stat-strip div {
    min-height: 96px;
    padding: 24px;
  }

  .section {
    padding: 86px 24px;
  }

  .section-number {
    top: 48px;
    right: 24px;
    font-size: 86px;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .problem-grid,
  .included-grid,
  .guarantee-grid,
  .pricing-lead,
  .statement,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .pricing-lead {
    gap: 0;
  }

  .price-box {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .quote-panel blockquote {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand {
    width: 190px;
  }

  .brand img {
    width: 164px;
  }

  .hero-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-copy,
  .hero-panel {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    min-width: 0;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line-cool);
  }

  .problem-grid article,
  .included-grid article,
  .guarantee-grid article,
  .pricing-lead > div:first-child,
  .flow-block,
  .assessment-form {
    padding: 26px;
  }

  .price-box {
    padding: 30px 26px;
  }

  .price-box strong {
    font-size: 58px;
  }

  .statement p {
    font-size: 25px;
  }

  .statement strong {
    font-size: 24px;
  }

  .contact-wrap {
    gap: 34px;
  }

  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}
