/* Spinz × Focused blueprint — local only (not deployed) */

:root {
  --bg: #0b0a09;
  --bg-elevated: #141210;
  --surface: #1a1714;
  --text: #f4efe6;
  --text-muted: #a89f92;
  --cream: #f0e4d2;
  --accent: #d4a574;
  --line: rgba(240, 228, 210, 0.12);
  --line-strong: rgba(240, 228, 210, 0.22);
  --wash: rgba(11, 10, 9, 0.55);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 2px;
  --nav-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cream);
  color: var(--bg);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.section-lede {
  margin: 0.85rem 0 0;
  max-width: 28rem;
  color: var(--text-muted);
}

.section-head {
  margin-bottom: 2.75rem;
}

.text-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.text-link:hover {
  border-color: var(--accent);
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.nav.is-scrolled {
  background: rgba(11, 10, 9, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.logo img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
}

.nav-links {
  display: none;
  gap: 0.15rem;
  margin-left: 1.5rem;
}

.nav-links a {
  position: relative;
  padding: 0.45rem 0.7rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  overflow: hidden;
}

.nav-links a span {
  display: inline-block;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-cta {
  margin-left: auto;
  display: none;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--cream);
  color: var(--bg);
}

.menu-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0;
}

.menu-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-bars {
  width: 1.15rem;
  display: grid;
  gap: 5px;
}

.menu-bars i {
  display: block;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease);
}

.menu-btn[aria-expanded="true"] .menu-bars i:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-bars i:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 40;
  display: grid;
  align-content: start;
  gap: 0.25rem;
  padding: 1.5rem;
  background: rgba(11, 10, 9, 0.96);
  backdrop-filter: blur(16px);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.9rem 0.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.35rem;
  font-family: var(--font-display);
}

body.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.35) 0%, rgba(11, 10, 9, 0.2) 35%, rgba(11, 10, 9, 0.78) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11, 10, 9, 0.55) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2.5rem) 0 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  min-height: 100svh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

.focus-mark {
  width: 0.7rem;
  height: 0.7rem;
  border-left: 1.5px solid var(--cream);
  border-bottom: 1.5px solid var(--cream);
}

.brand-lockup {
  margin: 0;
  display: grid;
  gap: 0.15rem;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(4.5rem, 16vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-lede {
  margin: 0 0 1.5rem;
  max-width: 22rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--cream);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cream);
  color: var(--bg);
}

.btn-primary:hover {
  background: #fff8ee;
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--cream);
  background: rgba(11, 10, 9, 0.35);
}

.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(11, 10, 9, 0.55);
}

.btn-muted {
  border-color: var(--line);
  color: var(--text-muted);
  cursor: default;
}

.btn-muted:hover {
  transform: none;
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.about {
  padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.statement {
  margin: 0 0 3.5rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4.5vw, 3.15rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--cream) 20%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}

.about-visual {
  position: relative;
  width: min(100%, 22rem);
  margin-inline: auto;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.cylinder-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 286 / 400;
  perspective: 1100px;
  perspective-origin: 50% 48%;
  cursor: grab;
}

.cylinder-stage.is-dragging {
  cursor: grabbing;
}

.cylinder-ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: translateZ(0) rotateY(0deg);
  will-change: transform;
}

.cylinder-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(58%, 10.5rem);
  aspect-ratio: 286 / 622;
  margin: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0a0a0a;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(240, 228, 210, 0.04);
}

.cylinder-card__hit {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: inherit;
}

.cylinder-card__hit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cylinder-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
  -webkit-user-drag: none;
  background: #0a0a0a;
}

.about-visual.is-flat .cylinder-stage {
  perspective: none;
  aspect-ratio: 286 / 622;
  max-width: 14rem;
  margin-inline: auto;
  cursor: default;
}

.about-visual.is-flat .cylinder-ring {
  transform: none !important;
}

.about-visual.is-flat .cylinder-card {
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  transform: none !important;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.about-visual.is-flat .cylinder-card.is-front {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(6px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  max-height: min(92vh, 48rem);
  outline: none;
}

.lightbox.is-wide .lightbox__dialog {
  width: min(100%, 64rem);
  max-height: min(92vh, 44rem);
}

.lightbox__img {
  width: 100%;
  height: auto;
  max-height: min(88vh, 46rem);
  object-fit: contain;
  border-radius: 1.25rem;
  border: 1px solid var(--line-strong);
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.lightbox.is-wide .lightbox__img {
  max-height: min(86vh, 42rem);
  border-radius: 0.85rem;
}

.lightbox__close {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(11, 10, 9, 0.9);
  color: var(--cream);
  font-size: 1.35rem;
  line-height: 1;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  border-color: var(--accent);
  outline: none;
}

body.lightbox-open {
  overflow: hidden;
}

.about-copy p {
  margin: 0 0 1rem;
  max-width: 34rem;
  color: var(--text-muted);
}

.about-copy p:first-of-type + p {
  color: var(--text);
}

/* Features */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.feature-index {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding-top: 0.35rem;
}

.feature-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--cream);
}

.feature-body p {
  margin: 0;
  max-width: 36rem;
  color: var(--text-muted);
}

/* Showcase */
.showcase {
  padding-top: 0;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.showcase-grid {
  display: grid;
  gap: 1.25rem;
  width: min(100% - 1.5rem, calc(var(--max) + 6rem));
  max-width: none;
  margin-inline: auto;
}

.shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.shot-lifestyle {
  width: 100%;
}

.shot-lifestyle img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 1024 / 576;
  object-fit: cover;
  object-position: center 40%;
}

/* Platforms */
.platforms {
  padding-top: clamp(2rem, 4vw, 3.25rem);
}

.platforms .section-head {
  margin-bottom: 2rem;
}

.platform-row {
  display: grid;
  gap: 1rem;
}

.platform {
  display: grid;
  gap: 0.55rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(26, 23, 20, 0.9), rgba(11, 10, 9, 0.4));
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

a.platform:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.platform strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
}

.platform p {
  margin: 0;
  color: var(--text-muted);
  max-width: 22rem;
}

.platform-action {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.platform-soon {
  opacity: 0.72;
}

.platform-soon .platform-action {
  color: var(--text-muted);
}

/* Command Center · Web App */
.command-center {
  padding-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 165, 116, 0.07), transparent 55%),
    var(--bg);
}

.features {
  padding-top: clamp(3.25rem, 6vw, 5rem);
}

.cc-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cc-intro {
  max-width: 36rem;
}

.cc-intro .display {
  margin-top: 0.15rem;
}

.cc-intro .section-lede {
  margin-top: 0.75rem;
}

.cc-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(240, 228, 210, 0.03);
}

.cc-shot__hit {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
}

.cc-shot__hit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cc-shot img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.cc-shot__expand {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(11, 10, 9, 0.78);
  color: var(--cream);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.cc-details {
  display: grid;
  gap: 1.25rem;
  justify-items: start;
}

.cc-details > p {
  margin: 0;
  max-width: 40rem;
  color: var(--text-muted);
}

.cc-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cc-points li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.cc-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--accent);
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.35rem;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0.85rem 0 0.35rem;
  max-width: 36rem;
  color: var(--text-muted);
}

.faq-item a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CTA band */
.cta-band {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
  padding: 5rem 1.25rem;
  overflow: hidden;
}

.cta-media {
  position: absolute;
  inset: 0;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.cta-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.55), rgba(11, 10, 9, 0.82));
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 36rem;
}

.cta-inner p {
  margin: 0.85rem auto 1.5rem;
  color: var(--cream);
}

.cta-inner .hero-ctas {
  justify-content: center;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 0;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
}

.footer-brand {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
}

.footer-note,
.footer-mail {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-mail {
  display: inline-block;
  margin-top: 0.65rem;
}

.footer-mail:hover {
  color: var(--cream);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.footer-cols a {
  display: block;
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-cols a:hover {
  color: var(--cream);
}

.footer-mark {
  margin: 3rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: rgba(240, 228, 210, 0.08);
  user-select: none;
  overflow: hidden;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(0, -1.5%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover { transform: none; }
  .cylinder-ring {
    transition: none !important;
  }
}

/* Desktop */
@media (min-width: 768px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .about-grid {
    grid-template-columns: minmax(16rem, 24rem) 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-visual {
    margin-inline: 0;
    width: min(100%, 24rem);
  }

  .feature-row {
    grid-template-columns: 4.5rem 1fr;
    gap: 1.5rem;
    padding: 1.9rem 0;
  }

  .showcase-grid {
    width: min(100% - 2.5rem, calc(var(--max) + 8rem));
  }

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

  .cc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 42%);
    grid-template-rows: auto auto;
    gap: 1.25rem 2.25rem;
    align-items: center;
  }

  .cc-intro {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }

  .cc-details {
    grid-column: 1;
    grid-row: 2;
    align-content: start;
  }

  .cc-shot {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    max-height: min(52vh, 22rem);
  }

  .cc-shot img {
    max-height: min(52vh, 22rem);
    object-fit: cover;
    object-position: left top;
  }

  .faq-layout {
    grid-template-columns: minmax(12rem, 18rem) 1fr;
    gap: 3rem;
    align-items: start;
  }

  .footer-top {
    grid-template-columns: 1.2fr 1fr;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-bottom: 4.5rem;
  }

  .hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }

  .hero-lede {
    margin-bottom: 0;
    max-width: 18rem;
  }

  .statement {
    max-width: 22ch;
  }
}
