:root {
  --black: #090909;
  --ink: #171713;
  --cream: #f4f0e7;
  --paper: #faf8f2;
  --gold: #d5ad58;
  --muted: #8e8b82;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.dark {
  background: var(--black);
  color: #f7f3e9;
}

.light {
  background: var(--paper);
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding: 0 5vw;
  display: flex;
  flex-direction: column;
}

nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff19;
  position: relative;
  z-index: 4;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.logo-mark {
  width: 38px;
  height: 25px;
  position: relative;
  display: block;
  overflow: hidden;
}

.logo-mark i {
  position: absolute;
  inset: 5px 1px -19px;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 0 0;
}

.logo-mark b {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  left: 17px;
  bottom: 1px;
  box-shadow: 0 0 15px var(--gold);
}

.navlinks {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: #cbc8c1;
}

.nav-cta {
  font-size: 13px;
  border: 1px solid #d5ad5877;
  padding: 11px 17px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: auto 0;
  padding: 80px 0 110px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 0 25px;
}

.gold {
  color: #e1bd6b;
}

.gold-dark {
  color: #9c762c;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.93;
  font-weight: 400;
  letter-spacing: -0.055em;
  margin-bottom: 34px;
}

h1 em {
  color: var(--gold);
  font-weight: 400;
}

.lede {
  max-width: 640px;
  font-size: 18px;
  color: #bab6ad;
  line-height: 1.7;
}

.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  padding: 17px 22px;
  font-size: 13px;
  font-weight: 700;
}

.gold-button {
  background: var(--gold);
  color: #111;
}

.dark-button {
  background: #111;
  color: white;
}

.text-link {
  font-size: 13px;
  border-bottom: 1px solid #ffffff44;
  padding: 12px 0;
}

.dark-link {
  border-color: #222;
  font-weight: 700;
}

.hero-glow {
  position: absolute;
  width: 70vw;
  height: 70vw;
  right: -20vw;
  bottom: -52vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #d6aa4c 0,
    #4d3815 18%,
    #0b0b0b 47%,
    transparent 68%
  );
  filter: blur(5px);
  opacity: 0.9;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(#fff1 1px, transparent 1px),
    linear-gradient(90deg, #fff1 1px, transparent 1px);
  background-size: 75px 75px;
  mask-image: linear-gradient(to bottom, transparent, black);
}

.hero-note {
  position: absolute;
  right: 5vw;
  bottom: 36px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #928b7c;
}

.hero-note span {
  color: var(--gold);
}

.hero-note i {
  width: 35px;
  height: 1px;
  background: #ffffff25;
}

.intro,
.product-section,
.custom {
  padding: 120px 7vw;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10vw;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.split > div > p,
.section-head > p,
.custom > div > p {
  color: #66645d;
  font-size: 17px;
  line-height: 1.75;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  border-top: 1px solid #d7d2c8;
  margin-top: 42px;
  padding-top: 28px;
}

.mini-grid article {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-grid span {
  font-size: 13px;
  line-height: 1.6;
  color: #77736a;
}

.product-section {
  background: var(--cream);
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 12vw;
  align-items: end;
  margin-bottom: 65px;
}

.section-head h2 {
  margin-bottom: 0;
}

.product-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #e7e0d2;
  min-height: 650px;
}

.report-stack {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 600px;
}

.report-page {
  position: absolute;
  width: 55%;
  aspect-ratio: 0.72;
  background: #f7f4ec;
  color: #151515;
  padding: 7%;
  box-shadow: 0 25px 80px #0008;
}

.report-page.front {
  left: 17%;
  top: 11%;
  transform: rotate(-3deg);
  z-index: 2;
}

.report-page.back {
  right: -8%;
  top: 20%;
  transform: rotate(8deg);
  background: #d9d0bd;
}

.report-page small {
  letter-spacing: 0.18em;
  font-size: 8px;
  color: #997127;
}

.report-page h3 {
  font-family: Georgia, serif;
  font-size: 31px;
  margin-top: 48%;
}

.report-page p {
  font-size: 10px;
  color: #686359;
  line-height: 1.5;
}

.report-page span {
  position: absolute;
  bottom: 6%;
  font-size: 9px;
}

.gold-rule {
  width: 35px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.chart {
  height: 45%;
  margin-top: 40%;
  background:
    linear-gradient(
      135deg,
      transparent 35%,
      #bd913c 36% 38%,
      transparent 39%
    ),
    linear-gradient(#1111 1px, transparent 1px);
  background-size: 100% 100%, 100% 18px;
}

.product-copy {
  padding: 9%;
  align-self: center;
}

.product-copy h3 {
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 400;
  margin: 25px 0;
}

.product-copy p,
.product-copy li {
  color: #5e5a52;
  line-height: 1.7;
}

.product-copy ul {
  padding: 20px 0;
  list-style: none;
}

.product-copy li {
  border-top: 1px solid #c9c0b1;
  padding: 12px 0;
}

.product-copy li::before {
  content: "✦";
  color: #a97c28;
  margin-right: 12px;
}

.pill {
  font-size: 10px;
  letter-spacing: 0.17em;
  border: 1px solid #a97c28;
  color: #8a651f;
  padding: 8px 10px;
}

.process {
  padding: 120px 7vw;
}

.process .section-head > p {
  color: #99958c;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ffffff22;
}

.steps article {
  padding: 38px 6% 30px 0;
  border-right: 1px solid #ffffff22;
}

.steps article + article {
  padding-left: 8%;
}

.steps span {
  color: var(--gold);
  font-size: 11px;
}

.steps h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  margin: 55px 0 15px;
}

.steps p {
  color: #99958c;
  font-size: 14px;
  line-height: 1.7;
}

.custom {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12vw;
  align-items: end;
}

.custom h2 {
  margin: 0;
}

.cta {
  text-align: center;
  padding: 130px 10vw;
  background: radial-gradient(
    circle at 50% 120%,
    #4e3817,
    #090909 45%
  );
}

.cta h2 {
  max-width: 900px;
  margin: 0 auto 25px;
}

.cta > p:not(.eyebrow) {
  color: #aaa69c;
}

.cta .button {
  margin-top: 25px;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 55px 5vw 28px;
  border-top: 1px solid #ffffff1c;
}

footer > p {
  color: #8c887f;
  text-align: center;
  margin: 0;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 12px;
}

footer small {
  grid-column: 1 / -1;
  border-top: 1px solid #ffffff12;
  padding-top: 25px;
  color: #66635e;
}

/* Product page */

.product-hero {
  min-height: 78svh;
  padding: 0 5vw 8vw;
  background: radial-gradient(
    circle at 80% 60%,
    #443015,
    #090909 42%
  );
}

.product-hero .hero-copy {
  padding-bottom: 30px;
}

.product-hero h1 {
  max-width: 1000px;
  font-size: clamp(54px, 6vw, 94px);
}

.product-hero .lede {
  max-width: 720px;
}

.details {
  padding: 110px 7vw;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #d8d2c7;
  margin-top: 55px;
}

.details-grid article {
  background: var(--paper);
  padding: 38px;
}

.details-grid span {
  color: #987126;
  font-size: 11px;
}

.details-grid h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin: 25px 0 12px;
}

.details-grid p {
  color: #67635b;
  line-height: 1.65;
}

.faq {
  padding: 110px 7vw;
}

.faq-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 9vw;
  border-top: 1px solid #d8d2c7;
  padding: 25px 0;
}

.faq-row h3 {
  font-size: 16px;
}

.faq-row p {
  color: #66635c;
  line-height: 1.65;
}

/* Mobile styling */

@media (max-width: 800px) {
  nav {
    height: 74px;
  }

  .navlinks {
    display: none;
  }

  .nav-cta {
    font-size: 0;
    padding: 10px 12px;
  }

  .nav-cta::before {
    content: "Beta";
    font-size: 12px;
  }

  .hero {
    padding: 0 22px;
    min-height: 780px;
  }

  .hero-copy {
    padding: 90px 0 120px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .lede {
    font-size: 16px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-note {
    left: 22px;
    right: auto;
  }

  .hero-glow {
    width: 140vw;
    height: 140vw;
    right: -70vw;
    bottom: -70vw;
  }

  .intro,
  .product-section,
  .custom,
  .process,
  .details,
  .faq {
    padding: 80px 22px;
  }

  .split,
  .section-head,
  .custom {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .report-stack {
    min-height: 480px;
  }

  .product-copy {
    padding: 45px 25px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps article,
  .steps article + article {
    border-right: 0;
    border-bottom: 1px solid #ffffff22;
    padding: 30px 0;
  }

  .steps h3 {
    margin: 20px 0 10px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .product-section .section-head > p {
    display: none;
  }

  .report-page {
    width: 62%;
  }

  .report-page.front {
    left: 11%;
  }

  .cta {
    padding: 90px 22px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  footer > p {
    text-align: left;
  }

  footer > div {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  footer small {
    grid-column: auto;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .faq-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-hero {
    min-height: 760px;
    padding: 0 22px 70px;
  }
}