@font-face {
  font-family: "Architype Aubette";
  src: url("assets/fonts/aubette-archi-type-normal.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --page: #171717;
  --black: #000;
  --panel: #050505;
  --panel-soft: #242424;
  --bar: #575757;
  --bar-dark: #3f3f3f;
  --text: #f6f3ee;
  --muted: #d7d1c8;
  --soft: #aaa39a;
  --gold: #dfb936;
  --gold-dark: #7a6419;
  --gold-glow: rgba(223, 185, 54, .62);
  --blue: #0376b7;
  --line: rgba(255, 255, 255, .12);
  --shadow: rgba(0, 0, 0, .46);
  --max: 1120px;
  --wide: 1260px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  line-height: 1.55;
  padding-bottom: 74px;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

strong {
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 12px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 3vw, 14px);
  min-width: 0;
  max-width: 100%;
  width: fit-content;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, .12));
}

.brand-wordmark {
  display: block;
  min-width: 0;
  max-width: 100%;
  font-family: "Architype Aubette", "Arial Black", Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(15px, 5.4vw, 22px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
  text-transform: uppercase;
}

.button,
.sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #17130a;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .26);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  padding: 13px 20px;
}

.hero {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: calc(100svh - 100px);
  background:
    radial-gradient(ellipse at 28% 48%, rgba(239, 206, 118, .26) 0%, rgba(133, 104, 36, .14) 27%, transparent 56%),
    radial-gradient(ellipse at 72% 30%, rgba(255, 255, 255, .08) 0%, transparent 38%),
    linear-gradient(115deg, #030303 0%, #11100d 44%, #1b1b1b 100%);
  padding: 22px 18px 42px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(104deg, transparent 0 22%, rgba(255, 255, 255, .07) 22.2% 22.8%, transparent 23%),
    linear-gradient(104deg, transparent 0 47%, rgba(223, 185, 54, .13) 47.2% 47.8%, transparent 48%),
    linear-gradient(250deg, transparent 0 72%, rgba(255, 255, 255, .05) 72.2% 72.8%, transparent 73%);
  opacity: .78;
  pointer-events: none;
}

.hero-media,
.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-media,
.hero-copy,
.hero-text,
.spec-strip {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.hero-media {
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 350px;
  margin-bottom: -8px;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(90vw, 450px);
  height: min(118vw, 560px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(239, 206, 118, .52) 0%, rgba(217, 174, 67, .28) 28%, rgba(255, 255, 255, .08) 48%, transparent 72%);
  filter: blur(14px);
  opacity: .86;
}

.hero-media img {
  width: min(92vw, 405px);
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: brightness(1.16) contrast(1.08) drop-shadow(0 34px 36px rgba(0, 0, 0, .82)) drop-shadow(0 0 28px rgba(239, 206, 118, .3));
  opacity: 1;
}

.hero-copy {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

h1,
.hero-copy > h1 {
  max-width: 14ch;
  font-size: clamp(34px, 10vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy > h1,
.hero-text p,
.spec-strip span {
  overflow-wrap: break-word;
}

.hero-text {
  display: grid;
  gap: 14px;
}

.hero-text p,
.lead-copy p,
.section-kicker {
  color: var(--muted);
  font-size: 15px;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.spec-strip span {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 54px;
  border: 1px solid rgba(223, 185, 54, .34);
  border-radius: 8px;
  background: rgba(0, 0, 0, .42);
  color: #fff6d7;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  padding: 10px;
}

.hero-button {
  justify-self: center;
  width: min(100%, 390px);
  max-width: 100%;
}

.section {
  padding: 46px clamp(18px, 5vw, 32px);
}

section[id] {
  scroll-margin-top: 156px;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(1100px, 100%);
}

.dark-section,
.use-section,
.feedback-section {
  background: var(--page);
}

.section h2 {
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.unique-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.gold-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 185, 54, .22), transparent 32%),
    linear-gradient(145deg, #060606, #202020 56%, #090909);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .28);
  text-align: left;
  padding: 26px 22px;
}

.gold-card h3 {
  color: #fff;
  font-size: clamp(22px, 6vw, 27px);
  line-height: 1.14;
}

.gold-card p {
  color: #eee4ce;
  font-size: 15px;
  font-weight: 400;
}

.gold-card p strong {
  font-weight: 900;
}

.power-section {
  background:
    linear-gradient(180deg, #0a0a0a, #171717);
}

.power-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.power-card {
  display: grid;
  align-items: start;
  gap: 14px;
  border: 1px solid rgba(223, 185, 54, .22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0 0, rgba(3, 118, 183, .22), transparent 28%),
    linear-gradient(145deg, #050505, #1e1e1e);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .24);
  padding: 24px 20px;
}

.power-icon {
  display: inline-block;
  color: #f7d963;
  font-size: .88em;
  font-weight: 900;
  line-height: 1;
  margin-right: .38em;
  vertical-align: .02em;
}

.power-icon-x {
  color: #ff6961;
}

.power-icon-phi {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1em;
}

.power-card h3 {
  color: #fff;
  font-size: 23px;
  line-height: 1.16;
}

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

.use-section h2 {
  max-width: 980px;
  margin: 0 auto 26px;
  text-align: left;
}

.use-list {
  display: grid;
  gap: 14px;
}

.use-row {
  display: grid;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .11);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 185, 54, .16), transparent 30%),
    var(--black);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
  padding: 28px 22px;
}

.use-row h3 {
  font-size: clamp(23px, 7vw, 32px);
  line-height: 1.12;
  text-align: left;
}

.use-row p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  text-align: left;
}

.lead-copy {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.subheading {
  margin-top: 36px;
  font-size: clamp(28px, 8vw, 36px);
  line-height: 1.15;
}

.accordion-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.accordion-list > details {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .42);
  background: transparent;
  scroll-margin-top: 128px;
}

.accordion-list > details:first-child {
  border-top: 1px solid rgba(0, 0, 0, .42);
}

.accordion-list > details summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  background: var(--bar);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  list-style: none;
  padding: 11px 14px;
}

.accordion-list > details summary::-webkit-details-marker {
  display: none;
}

.accordion-list > details summary::after {
  content: "+";
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: .65;
}

.accordion-list > details[open] summary::after {
  content: "-";
}

.accordion-list > details[open] summary {
  background: var(--bar-dark);
}

.study-accordion[open] {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.accordion-body {
  background: #292929;
  color: #eee;
  padding: 20px 20px 24px;
}

.accordion-body ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.accordion-body li {
  color: #eee;
  font-size: 15px;
}

.centered-button {
  display: flex;
  width: min(100%, 390px);
  margin: 24px auto 0;
}

.research-section {
  background: var(--black);
}

.research-section .lead-copy p {
  color: #e5e0d8;
}

.research-list .accordion-body {
  background: #050505;
}

.research-list .accordion-body li {
  color: #eee;
}

.testimonials-section {
  background: var(--black);
}

.testimonials-section h2,
.testimonials-section .section-kicker {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-kicker {
  margin-top: 14px;
}

.testimonial-carousel {
  position: relative;
  width: min(780px, 100%);
  margin-top: 28px;
  margin-inline: auto;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonial-track {
  display: flex;
  transition: transform .42s ease;
  will-change: transform;
}

.testimonial-slide {
  position: relative;
  display: grid;
  align-content: space-between;
  flex: 0 0 100%;
  gap: 22px;
  min-height: 370px;
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 185, 54, .24), transparent 31%),
    linear-gradient(145deg, #060606, #202020 58%, #080808);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .26);
  padding: 26px 22px;
  scrollbar-width: thin;
}

.testimonial-slide::before {
  content: "\201C";
  position: absolute;
  top: -34px;
  right: 18px;
  color: rgba(223, 185, 54, .16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 130px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-slide blockquote {
  position: relative;
  z-index: 1;
  color: #f1ece2;
  font-size: 16px;
  line-height: 1.58;
  margin: 0;
}

.testimonial-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 16px;
}

.testimonial-meta span {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.testimonial-meta .testimonial-location {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.testimonial-meta cite {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.testimonial-read {
  position: relative;
  z-index: 1;
  justify-self: start;
  border: 1px solid rgba(223, 185, 54, .38);
  border-radius: 999px;
  background: rgba(223, 185, 54, .12);
  color: #ffe47b;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  padding: 10px 14px;
}

.testimonial-reader-open {
  overflow: hidden;
}

.testimonial-full-panel {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  align-items: center;
  background: rgba(0, 0, 0, .78);
  padding: max(16px, env(safe-area-inset-top)) 18px max(16px, env(safe-area-inset-bottom));
}

.testimonial-full-panel[hidden] {
  display: none;
}

.testimonial-full-content {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(100%, 720px);
  max-height: min(78svh, 760px);
  margin-inline: auto;
  border: 1px solid rgba(223, 185, 54, .38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 185, 54, .18), transparent 28%),
    linear-gradient(145deg, #050505, #1d1d1d 58%, #080808);
  box-shadow: 0 26px 62px rgba(0, 0, 0, .58);
  padding: 26px 20px 22px;
}

.testimonial-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 0;
  line-height: 0;
}

.testimonial-close::before,
.testimonial-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.testimonial-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.testimonial-full-kicker,
.testimonial-full-location {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.testimonial-full-kicker {
  color: #f4cc3e;
  text-transform: uppercase;
}

.testimonial-full-content h3 {
  max-width: calc(100% - 46px);
  color: #fff;
  font-size: clamp(25px, 7vw, 38px);
  line-height: 1.12;
}

.testimonial-full-scroll {
  display: grid;
  gap: 18px;
  max-height: 48svh;
  overflow-y: auto;
  border-block: 1px solid rgba(255, 255, 255, .12);
  padding-block: 16px;
  scrollbar-width: thin;
}

.testimonial-full-scroll section {
  display: grid;
  gap: 8px;
}

.testimonial-full-scroll h4 {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.testimonial-full-scroll p {
  color: #f1ece2;
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-line;
}

.testimonial-full-content cite {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.testimonial-controls {
  display: grid;
  grid-template-columns: clamp(48px, 13vw, 56px) minmax(0, 1fr) clamp(48px, 13vw, 56px);
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonial-arrow,
.testimonial-dots button {
  border: 1px solid rgba(223, 185, 54, .4);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.testimonial-arrow {
  display: grid;
  place-items: center;
  width: clamp(48px, 13vw, 56px);
  height: clamp(48px, 13vw, 56px);
  border-radius: 50%;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
}

.testimonial-arrow::before {
  content: "\2190";
  display: block;
  font-size: clamp(28px, 7vw, 34px);
  line-height: 1;
  transform: translateY(-1px);
}

.testimonial-arrow[data-carousel-next]::before {
  content: "\2192";
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  padding-block: 6px;
  scrollbar-width: none;
}

.testimonial-dots::-webkit-scrollbar {
  display: none;
}

.testimonial-dots button {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  padding: 0;
}

.testimonial-dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.request-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 15%, rgba(239, 206, 118, .36), transparent 32%),
    linear-gradient(160deg, #d8bd3d 0%, #8a7620 44%, #141414 44.2%, #050505 100%);
  color: #fff;
}

.request-section::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background:
    linear-gradient(110deg, transparent 0 26%, rgba(0, 0, 0, .08) 26% 27%, transparent 27%),
    radial-gradient(circle at 12% 78%, rgba(255, 255, 255, .28), transparent 16%);
  pointer-events: none;
}

.request-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(223, 185, 54, .28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0 0, rgba(223, 185, 54, .18), transparent 32%),
    linear-gradient(145deg, #050505, #111 55%, #060606);
  box-shadow: 0 26px 54px rgba(0, 0, 0, .4);
  padding: 32px 22px;
}

.request-panel h2 {
  font-size: clamp(31px, 8vw, 44px);
  line-height: 1.15;
  text-align: center;
}

.request-section {
  padding-bottom: 130px;
}

.request-panel {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 920px;
}

.request-copy {
  display: grid;
  gap: 16px;
  text-align: center;
}

.price-card {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(223, 185, 54, .36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 185, 54, .18), rgba(255, 255, 255, .04)),
    rgba(0, 0, 0, .42);
  color: #fff;
  padding: 18px;
}

.price-card span,
.price-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.price-card strong {
  color: #f4cc3e;
  font-size: clamp(34px, 11vw, 52px);
  line-height: 1;
}

.request-mode-panels p[hidden],
[data-purchase-only][hidden] {
  display: none;
}

.request-copy p {
  color: #eee;
  font-size: 15px;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.request-type {
  display: grid;
  gap: 10px;
  border: 0;
  margin: 0;
  padding: 0;
}

.request-type legend {
  color: #f4f4f4;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  margin-bottom: 2px;
}

.request-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  padding: 14px;
}

.request-option:has(input:checked) {
  border-color: rgba(223, 185, 54, .72);
  background: rgba(223, 185, 54, .13);
  box-shadow: inset 0 0 0 1px rgba(223, 185, 54, .2);
}

.request-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.request-option span {
  display: grid;
  gap: 3px;
}

.request-option strong {
  color: #fff;
  font-size: 15px;
}

.request-option small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.field-grid {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #f4f4f4;
  font-size: 13px;
  font-weight: 850;
  text-align: left;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: #f8f8f8;
  color: #161616;
  font-size: 15px;
  padding: 11px 12px;
}

.lead-form .request-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.lead-form .request-option input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  border-radius: 50%;
  padding: 0;
}

.lead-form textarea {
  resize: vertical;
}

.turnstile-wrap {
  min-height: 65px;
  overflow: hidden;
}

.turnstile-wrap[hidden] {
  display: none;
}

.form-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.form-status[data-tone="error"] {
  color: #ffdf9a;
}

.privacy-note {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-button {
  width: 100%;
  color: #221900;
}

.form-button:disabled {
  cursor: wait;
  opacity: .7;
}

.thank-you-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 360px;
  border: 1px solid rgba(223, 185, 54, .34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 185, 54, .2), transparent 34%),
    rgba(255, 255, 255, .055);
  text-align: center;
  padding: 28px 22px;
}

.thank-you-panel[hidden] {
  display: none;
}

.request-copy[hidden],
.lead-form[hidden] {
  display: none;
}

.request-panel.is-submitted {
  max-width: 640px;
}

.thank-you-kicker {
  color: #f4cc3e;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.thank-you-panel h3 {
  color: #fff;
  font-size: clamp(28px, 8vw, 38px);
  line-height: 1.12;
}

.thank-you-panel p {
  color: var(--muted);
}

.secondary-button {
  justify-self: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(223, 185, 54, .38);
  box-shadow: none;
}

.social-section {
  background:
    radial-gradient(circle at 50% 0, rgba(223, 185, 54, .18), transparent 32%),
    #050505;
  padding-bottom: 120px;
}

.social-inner {
  display: grid;
  gap: 16px;
  max-width: 760px;
  text-align: center;
}

.social-inner .eyebrow,
.social-inner h2,
.social-inner p {
  margin-inline: auto;
}

.social-links {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  padding: 14px 20px;
}

.social-link.primary-social {
  border-color: rgba(223, 185, 54, .52);
  background: var(--gold);
  color: #181100;
}

.social-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link.primary-social svg {
  stroke: none;
}

.sticky-cta {
  position: fixed;
  z-index: 50;
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 50px;
  color: #17130a;
  transition: opacity .2s ease, transform .2s ease;
}

.sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}

@media (max-width: 380px) {
  .site-header {
    padding-inline: 10px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-wordmark {
    font-size: clamp(15px, 5.4vw, 20px);
  }

  .button,
  .sticky-cta {
    font-size: 13px;
  }

  .gold-card {
    padding-inline: 18px;
  }
}

@media (min-width: 780px) {
  body {
    padding-bottom: 0;
  }

  .sticky-cta {
    display: none;
  }

  .site-header {
    align-items: center;
    padding: 14px max(28px, calc((100vw - var(--wide)) / 2));
  }

  .brand-logo {
    width: 86px;
    height: 86px;
  }

  .brand-wordmark {
    font-size: 30px;
  }

  .hero {
    grid-template-columns: minmax(280px, .95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: 40px;
    min-height: 790px;
    padding: 58px max(38px, calc((100vw - var(--wide)) / 2));
  }

  .hero-media {
    min-height: 670px;
  }

  .hero-media::before {
    width: min(36vw, 560px);
    height: min(48vw, 690px);
  }

  .hero-media img {
    width: min(38vw, 560px);
    max-height: 720px;
  }

  .hero-copy {
    grid-template-columns: minmax(0, 1fr);
    max-width: 610px;
  }

  .hero-copy h1,
  .spec-strip,
  .hero-button {
    grid-column: 1 / -1;
  }

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

  .hero-text {
    align-self: start;
  }

  .hero-text h2 {
    font-size: 18px;
  }

  .section {
    padding: 58px max(32px, calc((100vw - var(--max)) / 2));
  }

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

  .gold-card {
    min-height: 360px;
    padding: 32px 28px;
  }

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

  .use-list {
    gap: 18px;
  }

  .use-row {
    width: min(100%, 980px);
    min-height: 0;
    margin-inline: auto;
    border-radius: 8px;
    padding: 34px 38px;
  }

  .use-row h3,
  .use-row p {
    text-align: left;
  }

  .feedback-section,
  .research-section {
    padding-top: 44px;
  }

  .accordion-list > details summary {
    min-height: 42px;
    padding-inline: 18px;
  }

  .accordion-body {
    padding: 20px 34px 28px;
  }

  .testimonial-slide {
    min-height: 430px;
    max-height: 560px;
    padding: 34px 32px;
  }

  .request-section {
    padding-block: 92px;
  }

  .request-section {
    padding-bottom: 220px;
  }

  .social-links {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    max-width: 680px;
    margin-inline: auto;
  }

  .request-panel {
    padding: 44px 52px;
  }

  .request-panel {
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
    align-items: start;
    gap: 34px;
  }

  .request-panel.is-submitted {
    grid-template-columns: minmax(0, 1fr);
  }

  .request-copy,
  .request-panel h2 {
    text-align: left;
  }

  .price-card {
    padding: 22px;
  }

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

  .request-type legend {
    grid-column: 1 / -1;
  }

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

@media (min-width: 1100px) {
  .hero-copy > h1 {
    font-size: 58px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .section h2 {
    font-size: 48px;
  }

  .testimonial-slide blockquote {
    font-size: 17px;
  }
}
