:root {
  --bg: #0b0b0d;
  --bg-2: #111114;
  --surface: #17171b;
  --surface-2: #1d1d21;
  --ink: #f3efe6;
  --muted: #aaa398;
  --gold: #cba35a;
  --gold-2: #e7cf9a;
  --cyan: #67c7c1;
  --coral: #d97862;
  --line: rgba(203, 163, 90, 0.28);
  --line-soft: rgba(243, 239, 230, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Jost", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

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

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 500;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(11, 11, 13, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner,
.shell,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

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

.brand {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.brand span {
  color: var(--gold);
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 26px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  padding: 26px 0 23px;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--gold);
  color: var(--ink);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a:hover {
  color: var(--gold-2);
}

.breadcrumb span[aria-hidden="true"] {
  color: var(--gold);
}

.hero {
  min-height: 520px;
  display: grid;
  align-content: center;
  padding: 82px 0 94px;
}

.hero--media {
  min-height: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 64px;
}

.hero--media > *,
.section-head > *,
.cta-inner > *,
.grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-top: 18px;
  font-size: 64px;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 400;
}

.lede {
  max-width: 680px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button--solid {
  background: var(--gold);
  color: var(--bg);
}

.button--solid:hover {
  border-color: var(--gold-2);
  background: var(--gold-2);
}

.button--quiet {
  border-color: var(--line-soft);
  color: var(--ink);
}

.button--quiet:hover {
  border-color: var(--gold);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(231, 207, 154, 0.2);
  pointer-events: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 130px;
  padding: 25px 24px;
  border-right: 1px solid var(--line);
}

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

.stat strong {
  display: block;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 35px;
  font-weight: 500;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 88px 0;
  border-top: 1px solid var(--line-soft);
}

.section--compact {
  padding: 58px 0;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2 {
  max-width: 760px;
  font-size: 46px;
  line-height: 1.04;
}

.section-head p {
  max-width: 650px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease;
}

a.card:hover {
  transform: translateY(-3px);
  border-color: var(--line);
}

.card-body {
  padding: 28px;
}

.card-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.card h2,
.card h3 {
  font-size: 29px;
  line-height: 1.08;
}

.card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 15px;
}

.card-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-2);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.media--seo img {
  object-position: 50% 45%;
}

.media--speed img {
  object-position: 13% 83%;
}

.media--bot img {
  object-position: 90% 24%;
}

.media--vitals img {
  object-position: 88% 84%;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.post-meta time {
  color: var(--gold-2);
}

.feature-list,
.check-list,
.link-list {
  list-style: none;
  padding: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
}

.feature-list li {
  position: relative;
  padding: 18px 0 18px 30px;
  border-bottom: 1px solid var(--line-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.feature-list strong {
  display: block;
  font-weight: 400;
}

.feature-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.step {
  counter-increment: step;
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step::before {
  content: "0" counter(step);
  color: var(--gold);
  font-family: var(--display);
  font-size: 24px;
}

.step h3 {
  margin-top: 32px;
  font-size: 26px;
}

.step p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 14px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 24px;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: var(--body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.check-list {
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14px;
}

.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.note {
  padding: 24px 26px;
  border-left: 2px solid var(--gold);
  background: var(--surface);
  color: var(--muted);
}

.note strong {
  color: var(--ink);
  font-weight: 400;
}

.article-shell {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.article-header {
  padding: 64px 0 38px;
}

.article-header h1 {
  max-width: 820px;
  font-size: 58px;
}

.article-cover {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  aspect-ratio: 16 / 8;
  margin: 0 auto 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article {
  padding-bottom: 90px;
}

.article h2 {
  margin: 56px 0 18px;
  font-size: 38px;
  line-height: 1.1;
}

.article h3 {
  margin: 34px 0 12px;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 500;
}

.article p,
.article li {
  color: #cbc5ba;
  font-size: 17px;
}

.article p + p {
  margin-top: 20px;
}

.article ul,
.article ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.article li + li {
  margin-top: 10px;
}

.article a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.article blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--cyan);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.35;
}

.article table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-size: 15px;
}

.article th,
.article td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.article th {
  color: var(--gold-2);
  font-weight: 400;
}

.article td {
  color: var(--muted);
}

.faq {
  border-top: 1px solid var(--line-soft);
}

.faq details {
  border-bottom: 1px solid var(--line-soft);
}

.faq summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.2;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--gold);
  font-family: var(--body);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 760px;
  padding: 0 50px 24px 0;
  color: var(--muted);
}

.cta {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 36px;
  align-items: center;
}

.cta h2 {
  font-size: 43px;
  line-height: 1.05;
}

.cta p {
  max-width: 650px;
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  padding: 54px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.footer-about {
  max-width: 290px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-title {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.link-list li + li {
  margin-top: 8px;
}

.link-list a {
  color: var(--muted);
  font-size: 14px;
}

.link-list a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: #777168;
  font-size: 12px;
}

.accent-cyan {
  color: var(--cyan);
}

.accent-coral {
  color: var(--coral);
}

@media (max-width: 900px) {
  .header-inner {
    width: 100%;
    min-height: 70px;
    padding-left: 24px;
    flex-wrap: wrap;
    gap: 0;
  }

  .brand {
    padding-right: 20px;
  }

  .site-nav {
    flex: 1 1 100%;
    order: 2;
    justify-content: flex-start;
    border-top: 1px solid var(--line-soft);
  }

  .site-nav a {
    padding: 13px 0 12px;
  }

  .hero {
    min-height: 460px;
  }

  .hero--media {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  h1 {
    font-size: 48px;
  }

  .article-header h1 {
    font-size: 46px;
  }

  .stats,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat:nth-child(2),
  .step:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2),
  .step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-head,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .header-inner,
  .shell,
  .footer-inner,
  .article-shell,
  .article-cover {
    width: calc(100vw - 32px);
    max-width: 1180px;
  }

  .header-inner {
    width: 100%;
    padding-left: 16px;
  }

  .brand {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 66px 0 72px;
  }

  .hero--media {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .hero--media > div,
  .hero--media .hero-visual {
    width: 100%;
    max-width: 100%;
  }

  .hero--media .hero-visual {
    margin-top: 34px;
  }

  h1,
  .article-header h1 {
    font-size: 39px;
    overflow-wrap: break-word;
  }

  .lede {
    font-size: 17px;
    overflow-wrap: break-word;
  }

  .hero-actions .button,
  .inline-actions .button {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .section-head h2 {
    font-size: 37px;
  }

  .grid--2,
  .grid--3,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats,
  .steps {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2),
  .step,
  .step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child,
  .step:last-child {
    border-bottom: 0;
  }

  .article-cover {
    aspect-ratio: 4 / 3;
    margin-bottom: 54px;
  }

  .article h2 {
    font-size: 33px;
  }

  .article p,
  .article li {
    font-size: 16px;
  }

  .article table {
    display: block;
    overflow-x: auto;
  }

  .cta h2 {
    font-size: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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