:root {
  color-scheme: light;
  --ink: #171412;
  --ink-soft: #473d37;
  --paper: #fbfaf7;
  --ivory: #f3eadf;
  --line: rgba(23, 20, 18, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);
  --red: #9b2534;
  --red-strong: #bd3444;
  --gold: #bd9142;
  --green: #2f7d68;
  --glass: rgba(255, 255, 255, 0.68);
  --glass-dark: rgba(23, 20, 18, 0.58);
  --shadow: 0 24px 70px rgba(23, 20, 18, 0.18);
  --shadow-soft: 0 18px 55px rgba(23, 20, 18, 0.12);
  --max: 1160px;
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(47, 125, 104, 0.08), transparent 28%),
    linear-gradient(315deg, rgba(155, 37, 52, 0.07), transparent 32%),
    var(--paper);
  color: var(--ink);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

.skip-link:focus {
  z-index: 20;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 14px 0 auto;
  padding: 0 1rem;
  pointer-events: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.site-header.is-scrolled {
  transform: translateY(-5px);
}

.nav-shell {
  position: relative;
  width: min(100% - 2rem, var(--max));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.42rem 0.5rem 0.42rem 0.42rem;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 22px 70px rgba(23, 20, 18, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  pointer-events: auto;
  -webkit-backdrop-filter: blur(26px) saturate(1.24);
  backdrop-filter: blur(26px) saturate(1.24);
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  min-height: 58px;
  border-color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(23, 20, 18, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.nav-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(102deg, transparent 0%, rgba(255, 255, 255, 0.56) 42%, transparent 78%);
  opacity: 0.46;
  pointer-events: none;
  transform: translateX(-26%);
  transition: transform 640ms ease, opacity 220ms ease;
}

.nav-shell:hover::before,
.nav-shell:focus-within::before {
  opacity: 0.72;
  transform: translateX(24%);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 50px;
  gap: 0.62rem;
  padding: 0 0.78rem 0 0.34rem;
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  text-decoration: none;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  border-color: rgba(23, 20, 18, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(23, 20, 18, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.64);
  transform: translateY(-1px);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(23, 20, 18, 0.13);
}

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

.brand-word {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.site-menu {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.16rem;
  min-width: 0;
  padding: 0.24rem;
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 999px;
  background: rgba(23, 20, 18, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.site-menu a,
.nav-more summary {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0 0.76rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(23, 20, 18, 0.68);
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-more {
  position: relative;
}

.nav-more summary {
  list-style: none;
}

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

.nav-more summary::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.38rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.68;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-more[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-more-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  min-width: 190px;
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(23, 20, 18, 0.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  backdrop-filter: blur(24px) saturate(1.18);
}

.nav-more:not([open]) .nav-more-panel {
  display: none;
}

.nav-more-panel a {
  justify-content: flex-start;
}

.site-menu a:hover,
.site-menu a:focus-visible,
.site-menu a.is-current,
.nav-more summary:hover,
.nav-more summary:focus-visible,
.nav-more[open] > summary {
  border-color: rgba(23, 20, 18, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(23, 20, 18, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.site-menu a.is-current,
.nav-more.is-current > summary {
  border-color: rgba(23, 20, 18, 0.18);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 20, 18, 0.18);
}

.site-menu .nav-cta {
  flex: 0 0 auto;
  min-width: 104px;
  min-height: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(155, 37, 52, 0.32);
}

.site-menu .nav-cta:hover,
.site-menu .nav-cta:focus-visible,
.site-menu .nav-cta.is-current {
  border-color: rgba(155, 37, 52, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    var(--red-strong);
  color: #fff;
  box-shadow: 0 16px 36px rgba(155, 37, 52, 0.36);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 20, 18, 0.1);
  border-radius: 999px;
  background: rgba(23, 20, 18, 0.055);
  color: var(--ink);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle[aria-expanded="true"] {
  border-color: rgba(23, 20, 18, 0.16);
  background: rgba(255, 255, 255, 0.68);
  transform: translateY(-1px);
}

.nav-toggle span[aria-hidden="true"] {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 96px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 4.25rem;
  background: var(--ink);
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center right;
}

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.94) 0%, rgba(11, 10, 9, 0.82) 34%, rgba(11, 10, 9, 0.22) 76%),
    linear-gradient(0deg, rgba(11, 10, 9, 0.42), rgba(11, 10, 9, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  max-width: 640px;
  justify-self: center;
  transform: translateX(calc((min(100vw, var(--max)) - 100vw) / 2));
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: 5.4rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
}

.glass-panel,
.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
}

.glass-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.glass-card:hover,
.glass-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 22px 62px rgba(23, 20, 18, 0.15);
}

[data-parallax].glass-card:hover,
[data-parallax].glass-card:focus-within {
  transform: translate3d(0, calc(var(--parallax-y, 0px) - 2px), 0);
}

.roast-strip {
  max-width: 620px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  margin: 0 0 1.2rem;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.roast-strip.glass-panel {
  background: rgba(255, 255, 255, 0.11);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
}

.roast-label {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.55rem;
  border-radius: 6px;
  background: rgba(189, 145, 66, 0.18);
  color: #f2d49e;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.roast-strip strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

.roast-strip button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
}

.hero-actions,
.plan .button {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.05rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(155, 37, 52, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-strong);
}

.button-secondary {
  border-color: rgba(23, 20, 18, 0.22);
  background: #fff;
  color: var(--ink);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 600px;
  margin: 2rem 0 0;
}

.hero-metrics div {
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics dt {
  font-size: 1.55rem;
  font-weight: 950;
}

.hero-metrics dd {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.trust-strip {
  width: min(100% - 2rem, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  transform: translateY(-36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 0.8rem;
  background: #fff;
  color: var(--ink-soft);
  font-weight: 850;
  text-align: center;
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4rem 0;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.studio-copy p,
.join-section p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.tabs,
.billing-toggle {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.tab,
.billing-toggle button {
  min-height: 42px;
  padding: 0 1rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 850;
}

.tab.is-active,
.billing-toggle button.is-active {
  background: var(--ink);
  color: #fff;
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.drop-card,
.plan,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.drop-card {
  min-height: 385px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(23, 20, 18, 0.08);
}

.drop-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.drop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.drop-card:hover .drop-media img,
.drop-card:focus-within .drop-media img {
  transform: scale(1.035);
}

.drop-body {
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
}

.drop-body p {
  color: var(--ink-soft);
}

.drop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 0.65rem;
  border-radius: 6px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.gag-section {
  padding-top: 2rem;
}

.gag-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.scroll-shell {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.scroll-meta {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(23, 20, 18, 0.1);
}

.scroll-meta strong {
  font-size: 1.05rem;
  font-weight: 950;
}

.scroll-meta span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 850;
}

.gag-scroll,
.testimonial-scroll {
  max-height: min(66svh, 640px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 1rem;
  scrollbar-gutter: stable both-edges;
  -webkit-overflow-scrolling: touch;
}

.gag-scroll::-webkit-scrollbar,
.testimonial-scroll::-webkit-scrollbar {
  width: 12px;
}

.gag-scroll::-webkit-scrollbar-track,
.testimonial-scroll::-webkit-scrollbar-track {
  background: rgba(23, 20, 18, 0.06);
  border-radius: 999px;
}

.gag-scroll::-webkit-scrollbar-thumb,
.testimonial-scroll::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(155, 37, 52, 0.55);
  background-clip: padding-box;
}

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

.gag-card {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(23, 20, 18, 0.07);
}

.gag-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
}

.gag-card h3 {
  font-size: 1.2rem;
}

.gag-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.history-section {
  padding-top: 2rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.timeline article {
  min-height: 260px;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(23, 20, 18, 0.07);
}

.timeline time {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0 0.65rem;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 950;
}

.timeline h3 {
  font-size: 1.15rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.presence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.presence-strip div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  background: var(--ivory);
}

.presence-strip strong {
  font-size: 1.8rem;
  line-height: 1;
}

.presence-strip span {
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-weight: 800;
}

.section-dark {
  width: 100%;
  max-width: none;
  margin-top: 2rem;
  padding: 5rem max(1rem, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}

.studio-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.studio-copy {
  padding-right: 2rem;
}

.studio-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.metric-tile,
.activity-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.metric-tile {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
}

.metric-label {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.metric-tile strong {
  display: block;
  margin: 0.25rem 0 1rem;
  font-size: 3rem;
  line-height: 1;
}

.bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.bar::after {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.bar-red::after {
  background: var(--red-strong);
}

.activity-panel {
  grid-column: 2 / 4;
  display: grid;
}

.activity-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.1rem;
  border-top: 1px solid var(--line-dark);
}

.activity-row:first-child {
  border-top: 0;
}

.activity-row span {
  color: rgba(255, 255, 255, 0.72);
}

.product-section {
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.product-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(243, 234, 223, 0.48)),
    rgba(255, 255, 255, 0.64);
}

.product-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
}

.product-card h3 {
  font-size: 1.35rem;
}

.product-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(218px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.billing-toggle {
  margin: 0 auto;
  display: flex;
  width: max-content;
}

.plan {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.plan-featured {
  border-color: rgba(155, 37, 52, 0.36);
  box-shadow: 0 20px 55px rgba(155, 37, 52, 0.13);
}

.plan-kicker {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 0 0 0.35rem;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 950;
}

.plan-cadence {
  min-height: 2.25rem;
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 850;
}

.plan ul {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.plan li {
  display: flex;
  gap: 0.5rem;
}

.plan li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  margin-top: 0.53rem;
  border-radius: 50%;
  background: var(--green);
}

.plan .button {
  margin-top: auto;
}

.testimonial-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-scroll {
  align-content: start;
}

.testimonial-wall figure {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(23, 20, 18, 0.07);
}

.testimonial-wall figure:nth-child(2n) {
  background: var(--ivory);
}

blockquote {
  margin: 0;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.32;
  font-weight: 830;
}

figcaption {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-weight: 800;
}

.blog-section {
  padding-top: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(23, 20, 18, 0.07);
}

.feature-post {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(155, 37, 52, 0.12), rgba(189, 145, 66, 0.16)),
    #fff;
}

.post-meta {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: clamp(1.08rem, 1.18vw, 1.28rem);
  line-height: 1.08;
}

.blog-card p:not(.post-meta) {
  color: var(--ink-soft);
}

.blog-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 950;
  text-decoration: none;
}

.blog-card a:hover,
.blog-card a:focus-visible {
  text-decoration: underline;
}

.lab-section {
  padding-top: 2rem;
}

.lab-layout {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.lab-layout > .glass-card {
  min-height: 255px;
  padding: 1.15rem;
}

.denial-machine,
.checkbox-gauntlet {
  grid-column: span 3;
}

.route-terminal,
.approval-scanner,
.coupon-trap {
  grid-column: span 2;
}

.lab-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

.lab-actions button {
  min-height: 44px;
  border: 1px solid rgba(23, 20, 18, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.lab-actions button:hover,
.lab-actions button:focus-visible {
  border-color: rgba(155, 37, 52, 0.4);
  background: #fff;
  transform: translateY(-1px);
}

.checkbox-gauntlet {
  display: grid;
  gap: 0.75rem;
}

.checkbox-gauntlet label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-weight: 800;
}

.checkbox-gauntlet input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  accent-color: var(--red);
}

.route-terminal,
.coupon-trap {
  display: flex;
  flex-direction: column;
}

.route-terminal code,
.coupon-trap code {
  min-height: 54px;
  display: flex;
  align-items: center;
  margin: 0.2rem 0 1rem;
  padding: 0.85rem;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.route-terminal .button,
.coupon-trap .button {
  margin-top: auto;
}

.approval-scanner {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.approval-scanner label {
  font-weight: 950;
}

.approval-scanner input[type="range"] {
  width: 100%;
  height: 12px;
  appearance: none;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--red) var(--audacity, 37%), rgba(23, 20, 18, 0.12) 0);
}

.approval-scanner input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  appearance: none;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 6px 18px rgba(23, 20, 18, 0.22);
}

.approval-scanner input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 6px 18px rgba(23, 20, 18, 0.22);
}

.approval-scanner p,
.denial-machine p:not(.post-meta),
.checkbox-gauntlet p:not(.post-meta),
.coupon-trap h3 {
  color: var(--ink-soft);
}

.maze-section {
  padding-top: 2rem;
}

.maze-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.maze-map,
.maze-console,
.labyrinth-sitemap details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(23, 20, 18, 0.07);
}

.maze-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  padding: 1rem;
}

.maze-map button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 0.75rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.maze-map button:hover,
.maze-map button:focus-visible {
  border-color: rgba(155, 37, 52, 0.42);
  background: var(--ivory);
  transform: translateX(2px);
}

.maze-console {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(23, 20, 18, 0.92), rgba(58, 36, 36, 0.92)),
    var(--ink);
  color: #fff;
}

.maze-console h3 {
  font-size: 2rem;
}

.maze-console p:not(.post-meta):not(.maze-verdict) {
  color: rgba(255, 255, 255, 0.76);
}

.maze-console .post-meta {
  color: #f2d49e;
}

.maze-progress {
  height: 14px;
  margin: auto 0 1rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.maze-progress span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: var(--red-strong);
  transition: width 240ms ease;
}

.maze-verdict {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.labyrinth-sitemap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.labyrinth-sitemap details {
  min-height: 220px;
  padding: 1rem;
}

.labyrinth-sitemap summary {
  cursor: pointer;
  font-weight: 950;
}

.labyrinth-sitemap a {
  display: block;
  margin-top: 0.75rem;
  color: var(--red);
  font-weight: 850;
  text-decoration: none;
}

.labyrinth-sitemap a:hover,
.labyrinth-sitemap a:focus-visible {
  text-decoration: underline;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.drop-card,
.plan,
.testimonial-wall figure,
.blog-card,
.faq-list details,
.join-section,
.gag-card.glass-card,
.timeline article.glass-card,
.maze-map.glass-card,
.labyrinth-sitemap details {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  backdrop-filter: blur(16px) saturate(1.12);
}

.maze-console.glass-card {
  border-color: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.join-section {
  width: min(100% - 2rem, var(--max));
  margin: 1rem auto 4rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  backdrop-filter: blur(16px) saturate(1.12);
}

.join-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.join-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 850;
}

.join-form label:nth-child(3),
.join-form button,
.form-note {
  grid-column: 1 / -1;
}

.join-form input,
.join-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 0.85rem;
  background: var(--paper);
  color: var(--ink);
}

.join-form input:focus,
.join-form select:focus {
  outline: 3px solid rgba(189, 145, 66, 0.28);
  border-color: var(--gold);
}

.join-form .is-invalid {
  border-color: var(--red);
  outline: 3px solid rgba(155, 37, 52, 0.18);
}

.form-note {
  min-height: 1.5rem;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.site-footer {
  width: min(100% - 2rem, var(--max));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  max-width: 360px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

@supports not (backdrop-filter: blur(1px)) {
  .glass-panel,
  .glass-card,
  .drop-card,
  .plan,
  .testimonial-wall figure,
  .blog-card,
  .faq-list details,
  .join-section,
  .scroll-shell {
    background: rgba(255, 255, 255, 0.94);
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-menu {
    position: fixed;
    inset: 80px 1rem auto;
    max-height: calc(100svh - 98px);
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 0.5rem;
    overflow: auto;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
      rgba(255, 255, 255, 0.88);
    box-shadow: 0 26px 76px rgba(23, 20, 18, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    -webkit-backdrop-filter: blur(26px) saturate(1.18);
    backdrop-filter: blur(26px) saturate(1.18);
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.85, 0.22, 1);
    z-index: 3;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 18px;
  }

  .site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-menu a,
  .nav-more summary {
    justify-content: center;
    min-height: 46px;
  }

  .nav-more {
    grid-column: 1 / -1;
  }

  .nav-more-panel {
    position: static;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.35rem;
    border-color: rgba(23, 20, 18, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: none;
  }

  .nav-more-panel a {
    justify-content: center;
  }

  .site-menu .nav-cta {
    width: 100%;
    margin: 0;
    min-height: 48px;
  }

  .hero {
    min-height: calc(100svh - 84px);
    padding-top: 118px;
  }

  .hero-content {
    transform: none;
  }

  .trust-strip,
  .drop-grid,
  .gag-grid,
  .timeline,
  .presence-strip,
  .testimonial-wall,
  .blog-grid,
  .product-grid,
  .lab-layout,
  .maze-layout,
  .labyrinth-sitemap,
  .pricing-grid,
  .join-section,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .feature-post {
    grid-column: auto;
  }

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

  .studio-copy {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .activity-panel {
    grid-column: 1 / -1;
  }

  .denial-machine,
  .checkbox-gauntlet,
  .route-terminal,
  .approval-scanner,
  .coupon-trap {
    grid-column: auto;
  }

  .timeline article,
  .testimonial-wall figure,
  .blog-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    inset: 8px 0 auto;
    padding: 0 0.5rem;
  }

  .nav-shell,
  .section,
  .trust-strip,
  .join-section,
  .site-footer {
    width: min(100% - 1rem, var(--max));
  }

  .hero {
    min-height: calc(100svh - 72px);
    padding-top: 108px;
    padding-bottom: 2rem;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 10, 9, 0.92), rgba(11, 10, 9, 0.44)),
      linear-gradient(0deg, rgba(11, 10, 9, 0.62), rgba(11, 10, 9, 0.2));
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .studio-copy p,
  .join-section p {
    font-size: 1rem;
  }

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

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

  .roast-strip button {
    width: 100%;
  }

  .hero-metrics {
    display: none;
  }

  .trust-strip {
    transform: none;
    margin-top: 0.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .tabs {
    width: 100%;
    overflow-x: auto;
  }

  .tab {
    flex: 1 0 auto;
  }

  .drop-grid,
  .gag-grid,
  .timeline,
  .presence-strip,
  .testimonial-wall,
  .blog-grid,
  .product-grid,
  .lab-layout,
  .maze-layout,
  .labyrinth-sitemap,
  .pricing-grid {
    gap: 0.75rem;
  }

  .drop-card,
  .gag-card {
    min-height: auto;
  }

  .scroll-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .gag-scroll,
  .testimonial-scroll {
    max-height: 72svh;
    padding: 0.75rem;
    scrollbar-gutter: auto;
  }

  .studio-layout,
  .join-form {
    grid-template-columns: 1fr;
  }

  .section-dark {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .join-section {
    padding: 1rem;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.25rem 0;
  }

  .toast {
    right: 0.5rem;
    left: 0.5rem;
    max-width: none;
  }
}

@media (max-height: 720px) and (max-width: 760px) {
  .hero-metrics {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  [data-parallax],
  [data-parallax].glass-card:hover,
  [data-parallax].glass-card:focus-within,
  .glass-card:hover,
  .glass-card:focus-within {
    transform: none;
  }

}
