:root {
  --red: #d91e18;
  --red-dark: #a80f0b;
  --red-deep: #6f0b08;
  --yellow: #ffc61a;
  --yellow-dark: #d99100;
  --cream: #fff4d9;
  --paper: #fff9ea;
  --paper-bright: #fffff8;
  --ink: #1d1a17;
  --muted: #665c50;
  --black: #171a1b;
  --black-soft: #222526;
  --chrome: #b8b3aa;
  --green: #74b82a;
  --line: rgba(29, 26, 23, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  color-scheme: light;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #5aa7ff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--paper-bright);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 120ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  padding: 22px 28px;
}

.nav-shell {
  display: flex;
  align-items: center;
  width: min(1460px, 100%);
  min-height: 62px;
  margin: 0 auto;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(255, 244, 217, 0.15);
  border-radius: 13px;
  background: rgba(17, 19, 20, 0.78);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 174px;
  flex: 0 0 auto;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font-family: "Oswald", sans-serif;
  color: rgba(255, 249, 234, 0.78);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 12px 0;
  transition: color 100ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-left: 30px;
  padding: 0 18px;
  border: 1px solid #ffdb5c;
  border-radius: 7px;
  background: var(--yellow);
  box-shadow: inset 0 -3px 0 var(--yellow-dark), 0 5px 16px rgba(255, 198, 26, 0.15);
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 870px;
  overflow: hidden;
  padding: 150px 30px 84px;
  background:
    radial-gradient(circle at 74% 35%, rgba(217, 30, 24, 0.3), transparent 36%),
    linear-gradient(125deg, #101213 0%, #1b1d1e 52%, #111314 100%);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -34%;
  left: -10%;
  height: 56%;
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.1) 25%, transparent 41%),
    linear-gradient(180deg, #96928b 0%, #373838 13%, #1b1d1e 16%, #121415 80%);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.7);
  content: "";
  transform: perspective(900px) rotateX(62deg);
  transform-origin: bottom;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.55;
}

.hero-glow-one {
  top: 18%;
  right: 7%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 198, 26, 0.16);
  box-shadow: inset 0 0 120px rgba(217, 30, 24, 0.2);
}

.hero-glow-two {
  top: 8%;
  left: -220px;
  width: 520px;
  height: 520px;
  background: rgba(217, 30, 24, 0.08);
  filter: blur(90px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(370px, 0.78fr) minmax(620px, 1.35fr);
  align-items: center;
  gap: clamp(50px, 5vw, 92px);
  width: min(1460px, 100%);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-bottom: 26px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-family: "Oswald", sans-serif;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow-red {
  color: var(--red);
}

.eyebrow-yellow {
  color: var(--yellow);
}

.hero h1,
.section-heading h2,
.showcase-heading h2,
.independence-copy h2,
.head-chef-copy h2,
.beta-copy h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(63px, 6.4vw, 104px);
}

.hero h1 em,
.section-heading h2 em,
.independence-copy h2 em,
.head-chef-copy h2 em {
  color: var(--yellow);
  font-family: "Kaushan Script", cursive;
  font-size: 0.72em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero-lede {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(255, 249, 234, 0.78);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 270px;
  min-height: 62px;
  padding: 10px 13px 10px 20px;
  overflow: hidden;
  border: 2px solid #ffdc66;
  border-radius: 9px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.button-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 28%),
    var(--yellow);
  box-shadow:
    inset 0 -5px 0 var(--yellow-dark),
    0 10px 25px rgba(255, 198, 26, 0.17);
  color: var(--ink);
}

.button-primary::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -32%;
  width: 24%;
  background: rgba(255, 255, 255, 0.38);
  content: "";
  filter: blur(12px);
  transform: skewX(-22deg);
  transition: left 420ms ease;
}

.button-primary:hover::after {
  left: 116%;
}

.button span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  opacity: 0.66;
}

.button strong {
  padding: 9px 11px;
  border: 1px solid rgba(29, 26, 23, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.27);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.text-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 249, 234, 0.42);
  color: rgba(255, 249, 234, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  margin-left: 5px;
  color: var(--yellow);
}

.promise-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 249, 234, 0.58);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.promise-row span {
  margin-right: 5px;
  color: var(--green);
  font-weight: 700;
}

.hero-product {
  position: relative;
  min-width: 0;
  padding: 54px 0 80px;
}

.product-halo {
  position: absolute;
  top: 0;
  right: 2%;
  bottom: 2%;
  left: 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 30, 24, 0.34), rgba(255, 198, 26, 0.1) 38%, transparent 68%);
  filter: blur(28px);
}

.plugin-frame {
  position: relative;
  z-index: 2;
  width: 112%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: #0d0e0f;
  box-shadow:
    0 65px 80px rgba(0, 0, 0, 0.52),
    0 16px 30px rgba(0, 0, 0, 0.38),
    0 0 0 7px rgba(255, 255, 255, 0.04);
  transform: perspective(1600px) rotateY(-4deg) rotateX(1deg) rotateZ(0.7deg);
  transform-origin: center left;
}

.plugin-frame-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 0 13px;
  border-bottom: 1px solid #3c4143;
  background: linear-gradient(#333638, #1c1e20);
  color: rgba(255, 255, 255, 0.62);
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plugin-frame img {
  width: 100%;
  height: auto;
}

.free-stamp {
  position: absolute;
  z-index: 4;
  right: -3%;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.48), transparent 28%),
    var(--yellow);
  box-shadow:
    inset 0 0 0 5px var(--yellow),
    inset 0 0 0 7px var(--ink),
    0 18px 30px rgba(0, 0, 0, 0.36);
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.free-stamp span,
.free-stamp small {
  position: absolute;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.free-stamp span {
  top: 27px;
}

.free-stamp strong {
  margin-top: 2px;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.free-stamp small {
  bottom: 25px;
}

.signal-badge {
  position: absolute;
  z-index: 3;
  bottom: 35px;
  left: 3%;
  display: flex;
  align-items: end;
  gap: 3px;
  min-width: 188px;
  height: 51px;
  padding: 11px 14px 12px;
  border: 1px solid #4b5052;
  border-radius: 8px;
  background: rgba(13, 15, 16, 0.95);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
  color: #b9ff57;
}

.signal-badge i {
  width: 4px;
  height: 10px;
  border-radius: 1px;
  background: #74b82a;
  box-shadow: 0 0 5px rgba(116, 184, 42, 0.6);
  animation: meter 900ms ease-in-out infinite alternate;
}

.signal-badge i:nth-child(2),
.signal-badge i:nth-child(7) {
  height: 15px;
  animation-delay: -300ms;
}

.signal-badge i:nth-child(3),
.signal-badge i:nth-child(6) {
  height: 24px;
  background: var(--yellow);
  animation-delay: -650ms;
}

.signal-badge i:nth-child(4) {
  height: 18px;
  animation-delay: -150ms;
}

.signal-badge i:nth-child(5) {
  height: 28px;
  background: #f04438;
  animation-delay: -480ms;
}

.signal-badge i:nth-child(8) {
  height: 8px;
  animation-delay: -800ms;
}

.signal-badge span {
  align-self: center;
  margin-left: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes meter {
  to {
    height: 8px;
    opacity: 0.6;
  }
}

.checker-edge {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22px;
  border-top: 2px solid rgba(255, 244, 217, 0.9);
  border-bottom: 2px solid rgba(255, 244, 217, 0.9);
  background-color: var(--cream);
  background-image:
    linear-gradient(45deg, var(--red) 25%, transparent 25%, transparent 75%, var(--red) 75%),
    linear-gradient(45deg, var(--red) 25%, transparent 25%, transparent 75%, var(--red) 75%);
  background-position: 0 0, 11px 11px;
  background-size: 22px 22px;
}

.feature-marquee {
  overflow: hidden;
  border-bottom: 1px solid #860d09;
  background: linear-gradient(180deg, var(--red), #c81712);
  color: var(--paper);
}

.feature-marquee > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 36px);
  width: max-content;
  min-width: 100%;
  padding: 18px 28px;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-marquee b {
  color: var(--yellow);
  font-size: 10px;
}

.section {
  position: relative;
  padding: clamp(88px, 9vw, 144px) 28px;
}

.section-cream {
  background:
    radial-gradient(circle at 5% 5%, rgba(217, 30, 24, 0.05), transparent 28%),
    linear-gradient(145deg, var(--cream), #f7e8c8);
}

.section-paper {
  background:
    linear-gradient(rgba(29, 26, 23, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 26, 23, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.section-shell {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 62px;
}

.section-heading h2,
.independence-copy h2,
.head-chef-copy h2 {
  font-size: clamp(52px, 6vw, 84px);
}

.section-heading h2 em,
.independence-copy h2 em {
  color: var(--red);
}

.section-heading > p {
  max-width: 540px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.module-card {
  position: relative;
  min-height: 300px;
  padding: 38px 34px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 248, 0.32);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.module-card:hover {
  z-index: 2;
  background: var(--paper-bright);
  box-shadow: 0 22px 46px rgba(82, 46, 20, 0.12);
  transform: translateY(-4px);
}

.module-card-featured::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 7px;
  background: var(--red);
  content: "";
}

.module-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
}

.module-number {
  position: absolute;
  top: 35px;
  right: 32px;
  color: rgba(29, 26, 23, 0.28);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.module-card h3 {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.module-card p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 8vw, 132px) 28px;
  background:
    radial-gradient(circle at 80% 15%, rgba(217, 30, 24, 0.2), transparent 30%),
    #151718;
  color: var(--paper);
}

.showcase::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.018) 79px 80px);
  content: "";
  pointer-events: none;
}

.showcase-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 40px 80px;
}

.showcase-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.showcase-heading h2 {
  font-size: clamp(60px, 7vw, 100px);
}

.showcase-heading > p:last-child {
  max-width: 540px;
  margin: 0 0 9px;
  color: rgba(255, 249, 234, 0.65);
  font-size: 18px;
  line-height: 1.7;
}

.gallery-tabs {
  display: flex;
  align-items: end;
  gap: 4px;
  margin-top: 58px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-tabs::-webkit-scrollbar {
  display: none;
}

.gallery-tab {
  position: relative;
  flex: 1 0 auto;
  min-height: 54px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 249, 234, 0.15);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #222526;
  color: rgba(255, 249, 234, 0.56);
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 120ms ease, background 120ms ease, min-height 120ms ease;
}

.gallery-tab:hover {
  color: var(--paper);
}

.gallery-tab.is-active {
  min-height: 63px;
  background: var(--red);
  color: white;
}

.gallery-tab.is-active::after {
  position: absolute;
  right: 18px;
  bottom: 10px;
  left: 18px;
  height: 2px;
  background: var(--yellow);
  content: "";
}

.gallery-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 234, 0.2);
  border-radius: 0 0 16px 16px;
  background: #0d0f10;
  box-shadow: var(--shadow);
}

.gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(30px, 4vw, 58px);
  border-right: 1px solid rgba(255, 249, 234, 0.12);
  background:
    linear-gradient(160deg, rgba(217, 30, 24, 0.14), transparent 46%),
    #202324;
}

.gallery-copy > p {
  margin: 0 0 15px;
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-copy h3 {
  margin: 0 0 18px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.03;
  text-transform: uppercase;
}

.gallery-copy span {
  color: rgba(255, 249, 234, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.gallery-screen {
  display: flex;
  align-items: center;
  padding: clamp(18px, 3vw, 44px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 30, 24, 0.17), transparent 48%),
    #0e1011;
}

.gallery-screen img {
  width: 112%;
  max-width: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.48);
  opacity: 1;
  transform: translateX(-2%);
  transition: opacity 120ms ease, transform 160ms ease;
}

.gallery-screen img.is-changing {
  opacity: 0;
  transform: translateX(0) scale(0.99);
}

.preview-note {
  margin: 14px 0 0;
  color: rgba(255, 249, 234, 0.4);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.independence-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.independence-copy > p:last-child {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.promise-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 23px 4px;
  border-bottom: 1px solid var(--line);
}

.promise-list strong {
  font-family: "Oswald", sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.phase-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 90px;
  padding: 34px 38px;
  border: 1px solid #4e5355;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
    var(--black);
  box-shadow: 0 20px 50px rgba(29, 26, 23, 0.2);
  color: var(--paper);
}

.phase-icon {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(255, 249, 234, 0.16);
  border-radius: 12px;
  background: #0c0e0f;
}

.phase-icon img {
  width: 58px;
  height: 58px;
  filter: brightness(0) saturate(100%) invert(83%) sepia(92%) saturate(907%) hue-rotate(339deg) brightness(102%) contrast(102%);
}

.phase-kicker {
  margin: 0 0 8px;
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.phase-panel h3 {
  margin: 0 0 8px;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.phase-panel div > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 249, 234, 0.58);
  font-size: 14px;
}

.phase-status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 249, 234, 0.16);
  border-radius: 6px;
  background: #0d0f10;
  color: #cfff86;
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.phase-status i,
.console-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 7px rgba(116, 184, 42, 0.8);
}

.head-chef {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 28px;
  background:
    radial-gradient(circle at 12% 45%, rgba(217, 30, 24, 0.2), transparent 30%),
    linear-gradient(145deg, #211d19, #111313 70%);
  color: var(--paper);
}

.head-chef::after {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 360px;
  height: 360px;
  border: 38px solid rgba(255, 198, 26, 0.04);
  border-radius: 50%;
  content: "";
}

.head-chef-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.chef-console {
  position: relative;
  z-index: 2;
  padding: 15px;
  border: 1px solid #6c6c68;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 18% 78%, rgba(255, 255, 255, 0.13)),
    linear-gradient(135deg, #c9c6bd, #6d6b67 48%, #a4a19a);
  box-shadow: 0 45px 70px rgba(0, 0, 0, 0.48);
  transform: rotate(-1.2deg);
}

.console-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px 16px;
  color: #24211e;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-topline small {
  font-size: 8px;
  letter-spacing: 0.16em;
}

.console-screen {
  min-height: 330px;
  padding: clamp(28px, 5vw, 58px);
  border: 3px solid #282a2a;
  border-radius: 10px;
  background:
    linear-gradient(rgba(92, 103, 104, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 103, 104, 0.09) 1px, transparent 1px),
    #0b1112;
  background-size: 22px 22px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.85);
}

.console-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b9ff57;
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.console-screen > p {
  margin: 36px 0;
  color: #edf8e6;
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 2.7vw, 38px);
  font-weight: 400;
  line-height: 1.35;
}

.console-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.console-actions span {
  padding: 9px 12px;
  border: 1px solid #4e5959;
  border-radius: 5px;
  color: #b7c2bf;
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-actions span:first-child {
  border-color: var(--yellow-dark);
  background: rgba(255, 198, 26, 0.1);
  color: var(--yellow);
}

.console-footer {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 14px 8px 2px;
  color: #2b2926;
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.head-chef-copy {
  position: relative;
  z-index: 2;
}

.head-chef-copy > p:not(.eyebrow, .chef-boundary) {
  margin: 30px 0 0;
  color: rgba(255, 249, 234, 0.7);
  font-size: 18px;
  line-height: 1.75;
}

.head-chef-copy h2 em {
  color: var(--yellow);
}

.chef-boundary {
  margin: 22px 0 0;
  padding: 19px 0 19px 22px;
  border-left: 3px solid var(--red);
  color: rgba(255, 249, 234, 0.56);
  font-size: 14px;
  line-height: 1.7;
}

.chef-pill {
  display: inline-flex;
  margin-top: 28px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 198, 26, 0.4);
  border-radius: 5px;
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.merch-section {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 11vw, 170px) 28px;
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 30, 24, 0.22), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(255, 198, 26, 0.1), transparent 24%),
    #121415;
  color: var(--paper);
}

.merch-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.merch-heading h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(60px, 7vw, 102px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.merch-heading h2 em {
  color: var(--yellow);
  font-family: "Kaushan Script", cursive;
  font-size: 0.72em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}

.merch-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 249, 234, 0.64);
  font-size: 17px;
  line-height: 1.7;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.merch-card {
  grid-column: span 6;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 234, 0.14);
  border-radius: 16px;
  background: #1b1e1f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.merch-card-hero,
.merch-card-cards {
  display: grid;
  grid-column: span 12;
  grid-template-columns: minmax(380px, 1.08fr) minmax(360px, 0.92fr);
}

.merch-card-hero {
  border-color: rgba(255, 198, 26, 0.34);
}

.merch-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #0d0f10;
  background-size: 30px 30px;
}

.merch-card-hero .merch-art,
.merch-card-cards .merch-art {
  min-height: 460px;
}

.merch-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.merch-copy {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 4vw, 54px);
}

.merch-number {
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.merch-copy h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.merch-copy > p:not(.merch-number) {
  margin: 20px 0 0;
  color: rgba(255, 249, 234, 0.68);
  line-height: 1.7;
}

.merch-copy ul {
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 249, 234, 0.58);
  font-size: 13px;
  line-height: 1.65;
  list-style: none;
}

.merch-copy li {
  position: relative;
  padding: 7px 0 7px 19px;
  border-bottom: 1px solid rgba(255, 249, 234, 0.08);
}

.merch-copy li::before {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--yellow);
  content: "✦";
  font-size: 9px;
}

.merch-copy li em {
  color: var(--yellow);
  font-family: "Kaushan Script", cursive;
  font-style: normal;
}

.merch-state {
  display: inline-flex;
  margin-top: 28px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 198, 26, 0.32);
  border-radius: 5px;
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.beta-section {
  position: relative;
  padding: clamp(100px, 10vw, 150px) 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 198, 26, 0.25), transparent 32%),
    linear-gradient(150deg, #d91e18, #a80f0b 72%);
  color: var(--paper);
}

.beta-section::after {
  position: absolute;
  right: -18%;
  bottom: -55%;
  left: -18%;
  height: 70%;
  border-radius: 50%;
  background: rgba(74, 4, 2, 0.18);
  content: "";
}

.checker-edge-top {
  top: 0;
  bottom: auto;
}

.beta-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1fr);
  align-items: center;
  gap: clamp(64px, 8vw, 126px);
  width: min(1320px, 100%);
  margin: 0 auto;
}

.beta-copy > img {
  width: min(520px, 92%);
  margin: 0 0 36px;
}

.beta-kicker,
.beta-form-kicker {
  margin: 0 0 20px;
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.beta-copy h2 {
  font-size: clamp(60px, 6.6vw, 96px);
  text-shadow: 0 5px 0 rgba(103, 7, 3, 0.5);
}

.beta-copy > p:not(.beta-kicker) {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 249, 234, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.beta-points {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 249, 234, 0.82);
  font-size: 14px;
  list-style: none;
}

.beta-points span {
  margin-right: 9px;
  color: var(--yellow);
  font-weight: 800;
}

.beta-card {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 249, 234, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), transparent 40%),
    #171a1b;
  box-shadow: 0 34px 70px rgba(74, 4, 2, 0.42);
}

.beta-form-kicker {
  margin-bottom: 12px;
  font-size: 10px;
}

.beta-card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.beta-form-intro,
.beta-success > p:not(.beta-form-kicker) {
  margin: 17px 0 0;
  color: rgba(255, 249, 234, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.beta-form-error {
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 198, 26, 0.5);
  border-radius: 6px;
  background: rgba(255, 198, 26, 0.09);
  color: #ffe895;
  font-size: 13px;
}

.beta-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.beta-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 249, 234, 0.78);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.beta-form label > span {
  color: rgba(255, 249, 234, 0.42);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.beta-form input,
.beta-form select,
.beta-form textarea {
  width: 100%;
  min-height: 47px;
  padding: 10px 12px;
  border: 1px solid #4e5355;
  border-radius: 6px;
  background: #0d0f10;
  color: var(--paper);
  font: 15px/1.4 "Nunito Sans", system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

.beta-form textarea {
  min-height: 104px;
  resize: vertical;
}

.beta-form input::placeholder,
.beta-form textarea::placeholder {
  color: rgba(255, 249, 234, 0.32);
}

.beta-form input:focus,
.beta-form select:focus,
.beta-form textarea:focus {
  border-color: var(--yellow);
  outline: 2px solid rgba(255, 198, 26, 0.22);
  outline-offset: 1px;
}

.beta-form .beta-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
}

.beta-form .beta-consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--yellow);
}

.beta-form button {
  min-height: 54px;
  padding: 10px 20px;
  border: 2px solid #ffdc66;
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 28%),
    var(--yellow);
  box-shadow: inset 0 -4px 0 var(--yellow-dark);
  color: var(--ink);
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.beta-form button:hover {
  filter: brightness(1.06);
}

.beta-form-note {
  margin: -4px 0 0;
  color: rgba(255, 249, 234, 0.4);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.beta-success {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.beta-success > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 28px;
  font-weight: 800;
}

.beta-success > a {
  margin-top: 28px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 249, 234, 0.45);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
}

footer {
  padding: 30px 28px;
  border-top: 1px solid #3e4243;
  background: #101213;
  color: rgba(255, 249, 234, 0.5);
}

.footer-shell {
  display: flex;
  align-items: center;
  gap: 30px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.footer-shell > a {
  width: 150px;
  flex: 0 0 auto;
}

.footer-shell p,
.footer-shell span {
  margin: 0;
  font-size: 12px;
}

.footer-shell span {
  margin-left: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1180px) {
  .hero {
    padding-top: 140px;
  }

  .hero-grid {
    grid-template-columns: minmax(330px, 0.75fr) minmax(540px, 1.25fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(60px, 7vw, 82px);
  }

  .plugin-frame {
    width: 118%;
  }

  .gallery-stage {
    min-height: 480px;
  }
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding-bottom: 96px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 710px;
  }

  .hero h1 {
    font-size: clamp(70px, 11vw, 100px);
  }

  .hero-product {
    width: 94%;
    margin: 0 auto;
  }

  .plugin-frame {
    width: 100%;
    transform: rotate(0.7deg);
  }

  .section-heading,
  .showcase-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .showcase-heading .eyebrow {
    grid-column: auto;
    margin-bottom: -10px;
  }

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

  .gallery-stage {
    grid-template-columns: 1fr;
  }

  .gallery-copy {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 249, 234, 0.12);
  }

  .gallery-screen img {
    width: 100%;
    transform: none;
  }

  .independence-grid,
  .head-chef-grid,
  .beta-shell,
  .merch-heading {
    grid-template-columns: 1fr;
  }

  .merch-card-hero,
  .merch-card-cards {
    grid-template-columns: 1fr;
  }

  .merch-card-hero .merch-art,
  .merch-card-cards .merch-art {
    min-height: 390px;
  }

  .head-chef-grid {
    gap: 80px;
  }

  .beta-shell {
    gap: 58px;
  }

  .chef-console {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px;
  }

  .nav-shell {
    min-height: 56px;
    padding: 7px 7px 7px 9px;
  }

  .brand-link {
    width: 132px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    margin-left: auto;
    padding: 0 13px;
    font-size: 10px;
  }

  .hero {
    padding: 112px 18px 80px;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(55px, 18vw, 78px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .button {
    width: 100%;
    max-width: 360px;
  }

  .promise-row {
    gap: 10px 17px;
  }

  .hero-product {
    width: 112%;
    margin: -10px -6% 0;
    padding-bottom: 96px;
  }

  .plugin-frame-bar {
    height: 25px;
  }

  .free-stamp {
    right: 5px;
    bottom: 20px;
    width: 104px;
    height: 104px;
  }

  .free-stamp span {
    top: 19px;
    font-size: 8px;
  }

  .free-stamp strong {
    font-size: 28px;
  }

  .free-stamp small {
    bottom: 19px;
    font-size: 8px;
  }

  .signal-badge {
    bottom: 30px;
    left: 2px;
    min-width: 166px;
    transform: scale(0.9);
    transform-origin: bottom left;
  }

  .feature-marquee {
    overflow-x: auto;
  }

  .feature-marquee > div {
    justify-content: flex-start;
  }

  .section,
  .showcase,
  .head-chef,
  .merch-section,
  .beta-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-heading h2,
  .independence-copy h2,
  .head-chef-copy h2,
  .merch-heading h2 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .section-heading > p,
  .independence-copy > p:last-child,
  .head-chef-copy > p:not(.eyebrow, .chef-boundary) {
    font-size: 16px;
  }

  .module-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: 260px;
  }

  .gallery-tabs {
    margin-right: -18px;
    padding-right: 18px;
  }

  .gallery-tab {
    min-width: 130px;
  }

  .gallery-stage {
    min-height: 0;
  }

  .gallery-copy {
    min-height: 245px;
  }

  .gallery-screen {
    padding: 10px;
  }

  .gallery-screen img {
    border-radius: 6px;
  }

  .promise-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .phase-panel {
    grid-template-columns: 1fr;
    margin-top: 64px;
    padding: 28px;
  }

  .phase-status {
    justify-self: start;
  }

  .merch-heading {
    gap: 26px;
  }

  .merch-card,
  .merch-card-hero,
  .merch-card-cards {
    grid-column: span 12;
  }

  .merch-art,
  .merch-card-hero .merch-art,
  .merch-card-cards .merch-art {
    min-height: 330px;
  }

  .chef-console {
    padding: 9px;
    transform: none;
  }

  .console-screen {
    min-height: 290px;
    padding: 30px 24px;
  }

  .console-screen > p {
    font-size: 24px;
  }

  .console-topline {
    font-size: 14px;
  }

  .console-footer {
    gap: 14px;
  }

  .beta-copy > img {
    margin-bottom: 22px;
  }

  .beta-copy h2 {
    font-size: clamp(56px, 18vw, 82px);
  }

  .beta-card {
    padding: 30px 22px;
  }

  .beta-form-grid {
    grid-template-columns: 1fr;
  }

  .beta-success {
    min-height: 380px;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-shell span {
    margin-left: 0;
  }
}

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

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

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

/* THE HIDDEN KITCHEN section: append to site.css.
   Also add `.kitchen-card h3` to the existing uppercase Oswald heading
   group if preferred; it is self-contained below.
   Responsive: add `.kitchen-grid { grid-template-columns: 1fr; }` inside
   the existing 960px media query. */

.kitchen-secret {
  background:
    radial-gradient(circle at 88% 10%, rgba(217, 30, 24, 0.24), transparent 34%),
    radial-gradient(circle at 8% 90%, rgba(255, 198, 26, 0.08), transparent 30%),
    linear-gradient(160deg, #191214 0%, #120f10 58%, #16100f 100%);
  color: var(--paper);
}

.kitchen-secret .section-heading > p {
  color: rgba(255, 249, 234, 0.66);
}

.kitchen-secret h2 em {
  color: var(--yellow);
}

.kitchen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.kitchen-card {
  padding: 38px 36px 34px;
  border: 1px solid rgba(255, 249, 234, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 26%),
    #1d1a18;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4);
}

.kitchen-card-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.kitchen-card-head img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
}

.kitchen-kicker {
  margin: 0 0 6px;
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kitchen-card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.kitchen-card > p {
  margin: 0 0 20px;
  color: rgba(255, 249, 234, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

.kitchen-card > p strong {
  color: var(--paper);
}

.kitchen-controls {
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px solid rgba(255, 249, 234, 0.14);
  list-style: none;
}

.kitchen-controls li {
  display: grid;
  grid-template-columns: minmax(96px, 0.42fr) 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255, 249, 234, 0.14);
}

.kitchen-controls strong {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kitchen-controls span {
  color: rgba(255, 249, 234, 0.6);
  font-size: 13px;
  line-height: 1.6;
}

.kitchen-readout {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 249, 234, 0.18);
  border-radius: 8px;
  background: #0d0f10;
  color: #cfff86;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.kitchen-readout b {
  color: var(--yellow);
}

.kitchen-coming {
  margin-bottom: 0 !important;
  padding-top: 4px;
  color: rgba(255, 249, 234, 0.56);
  font-size: 13px;
  line-height: 1.7;
}

.kitchen-pill {
  display: inline-flex;
  margin-right: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 198, 26, 0.4);
  border-radius: 5px;
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Subpages: update check, support and release admin */

.subpage-hero {
  position: relative;
  padding: 158px 28px 78px;
  background:
    radial-gradient(circle at 84% 0%, rgba(217, 30, 24, 0.26), transparent 36%),
    radial-gradient(circle at 8% 100%, rgba(255, 198, 26, 0.08), transparent 30%),
    #151718;
  color: var(--paper);
}

.subpage-hero .section-shell {
  width: min(1100px, 100%);
}

.subpage-hero h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.subpage-lede {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 249, 234, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.subpage-section {
  padding: clamp(64px, 7vw, 104px) 28px;
}

.subpage-shell {
  display: grid;
  gap: 36px;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.release-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-bright);
  box-shadow: 0 24px 55px rgba(82, 46, 20, 0.1);
}

.release-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.release-panel h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-transform: uppercase;
}

.release-meta {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.release-title {
  margin: 28px 0 0;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.release-notes {
  max-width: 740px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  white-space: pre-line;
}

.release-panel > .button {
  margin-top: 28px;
}

.artifact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.artifact .button {
  width: 100%;
  min-width: 0;
}

.artifact-checksum {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artifact-checksum code {
  display: block;
  margin-top: 6px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(29, 26, 23, 0.05);
  font: 11px/1.5 ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-transform: none;
}

.artifact-signature {
  margin: 9px 0 0;
  font-size: 13px;
}

.artifact-signature a,
.support-link {
  border-bottom: 2px solid var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

.support-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
}

.support-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 0;
}

.support-panel h3 {
  margin: 0 0 8px;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.support-panel div > p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 249, 234, 0.58);
  font-size: 14px;
}

.support-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.support-actions .nav-cta {
  margin-left: 0;
}

.support-grid .module-card h3 {
  text-transform: none;
}

.admin-body {
  background: #151718;
  color: var(--paper);
}

.admin-shell {
  display: grid;
  gap: 26px;
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 64px 20px 110px;
}

.admin-head h1 {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.admin-head p:last-child {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 249, 234, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.admin-card h3 {
  overflow-wrap: anywhere;
}

.admin-status-published {
  color: #cfff86;
}

.admin-status-withdrawn {
  color: rgba(255, 249, 234, 0.45);
}

.admin-meta {
  margin: 14px 0 0;
  color: rgba(255, 249, 234, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.admin-artifacts {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.admin-artifacts li {
  padding: 12px 14px;
  border: 1px solid #4e5355;
  border-radius: 6px;
  background: #0d0f10;
  font-size: 12px;
}

.admin-artifacts code {
  display: block;
  margin: 6px 0;
  color: rgba(255, 249, 234, 0.55);
  font: 10px/1.5 ui-monospace, "SF Mono", Menlo, monospace;
  overflow-wrap: anywhere;
}

.admin-artifacts a {
  margin-right: 12px;
  border-bottom: 1px solid var(--yellow);
  color: var(--yellow);
  font-weight: 700;
}

.admin-details {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #4e5355;
  border-radius: 6px;
}

.admin-details summary {
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-details .beta-form {
  margin-top: 18px;
}

.admin-inline-form {
  display: inline-block;
  margin: 18px 12px 0 0;
}

.admin-inline-form button {
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid #ffdb5c;
  border-radius: 7px;
  background: var(--yellow);
  box-shadow: inset 0 -3px 0 var(--yellow-dark);
  color: var(--ink);
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-inline-form .admin-danger {
  border-color: #6a6f71;
  background: #222526;
  box-shadow: none;
  color: rgba(255, 249, 234, 0.8);
}

.admin-empty {
  color: rgba(255, 249, 234, 0.62);
}

@media (max-width: 760px) {
  .subpage-hero {
    padding: 132px 20px 56px;
  }

  .subpage-section {
    padding: 56px 20px 72px;
  }

  .support-panel {
    grid-template-columns: 1fr;
  }
}

/* Off Menu gallery tab: quiet, conspiratorial */
.gallery-tab-secret {
  color: var(--brand-yellow, #ffc61a);
  font-style: italic;
  border-bottom: 1px dashed currentColor;
}
.gallery-tab-secret::before {
  content: "\2726\00a0";
  font-style: normal;
  opacity: 0.7;
}
.gallery-tab-secret[aria-pressed="true"] {
  font-style: normal;
}
