:root {
  color-scheme: dark;
  --bg: #11070d;
  --bg-deep: #070409;
  --bg-band: #170b13;
  --surface: rgba(28, 16, 25, 0.78);
  --surface-strong: rgba(42, 22, 34, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 226, 196, 0.13);
  --line-strong: rgba(255, 226, 196, 0.22);
  --text: #fff4e8;
  --muted: rgba(255, 235, 214, 0.74);
  --muted-strong: rgba(255, 241, 224, 0.88);
  --accent: #ff7847;
  --accent-strong: #ffd88f;
  --accent-rose: #f45f82;
  --accent-plum: #7d5cff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius-card: 8px;
  --shell: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(255, 118, 72, 0.1) 0%, transparent 18rem),
    linear-gradient(135deg, rgba(125, 92, 255, 0.12) 0%, transparent 32rem),
    linear-gradient(180deg, var(--bg) 0%, #13070f 46%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 78%);
}

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

figure {
  margin: 0;
}

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

code {
  padding: 0.12rem 0.36rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 246, 233, 0.92);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #16080d;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.ambient {
  display: none;
}

.shell {
  width: calc(100% - 2rem);
  max-width: var(--shell);
  margin: 0 auto;
}

.site-header,
.site-footer,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(255, 226, 196, 0.1);
  background: rgba(10, 5, 9, 0.78);
  backdrop-filter: blur(18px);
}

.site-policy .site-header {
  position: relative;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.8rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
}

.brand-lockup img {
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(255, 216, 143, 0.3);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.site-nav,
.header-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a,
.footer-links a,
.text-link,
.inline-link {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.site-nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--accent-strong);
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover,
.inline-link:hover {
  color: var(--accent-strong);
}

.menu-toggle {
  position: relative;
  overflow: hidden;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  margin-left: auto;
  border: 1px solid rgba(255, 216, 143, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02)),
    rgba(20, 10, 17, 0.86);
  color: var(--accent-strong);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  inset: 0.25rem;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 216, 143, 0.22), transparent 58%);
  opacity: 0;
  transform: translate(-18%, -18%) scale(0.82);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 216, 143, 0.4);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(32, 14, 25, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.menu-toggle:hover::before {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.menu-toggle[aria-expanded="true"] {
  border-color: rgba(255, 216, 143, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 120, 71, 0.2), rgba(255, 216, 143, 0.045)),
    rgba(32, 14, 25, 0.94);
}

.menu-toggle[aria-expanded="true"]::before {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.menu-toggle-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.16rem;
  height: 0.9rem;
}

.menu-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px rgba(255, 216, 143, 0.25);
  transform-origin: center;
  transition:
    top 190ms ease,
    opacity 160ms ease,
    transform 220ms ease,
    width 180ms ease;
}

.menu-toggle-icon span:nth-child(1) {
  top: 0;
}

.menu-toggle-icon span:nth-child(2) {
  top: 50%;
  width: 72%;
  transform: translateY(-50%);
}

.menu-toggle-icon span:nth-child(3) {
  top: calc(100% - 2px);
  width: 88%;
}

.menu-toggle:hover .menu-toggle-icon span:nth-child(2),
.menu-toggle:hover .menu-toggle-icon span:nth-child(3),
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span {
  width: 100%;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0.2);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.74rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-rose) 56%, var(--accent-strong));
  color: #17070c;
}

.button-secondary {
  border-color: rgba(255, 216, 143, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted-strong);
}

.button-ghost {
  background: transparent;
  color: var(--muted);
}

.button-large {
  min-height: 3.15rem;
  padding-inline: 1.25rem;
}

.hero {
  padding: 5.2rem 0 2.3rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 2.2rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  align-content: center;
}

.hero h1,
.section-head h2,
.cta-panel h2,
.policy-hero h1,
.policy-section h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
}

.hero h1 {
  max-width: 9.7ch;
  font-size: 5.8rem;
}

.hero-text,
.section-copy,
.detail-list li,
.feature-card p,
.flow-list p,
.trust-grid p,
.cta-copy,
.footer-copy,
.footer-meta,
.policy-copy,
.policy-list li,
.policy-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 57ch;
  margin: 1.35rem 0 0;
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions,
.operator-links,
.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin: 1.75rem 0 1.25rem;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-signals li {
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(255, 226, 196, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 241, 224, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-stage {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  min-height: 34rem;
  border: 1px solid rgba(255, 226, 196, 0.12);
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(39, 23, 35, 0.72), rgba(18, 8, 15, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform:
    perspective(1200px)
    rotateX(calc(var(--pointer-y) * -1.2deg))
    rotateY(calc(var(--pointer-x) * 1.6deg));
  transition: transform 160ms ease;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 216, 143, 0.1), transparent 28%, rgba(125, 92, 255, 0.1)),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 100% 3.2rem;
}

.brand-frame {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
}

.hero-banner {
  width: 100%;
  aspect-ratio: 3 / 1.35;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 226, 196, 0.14);
  border-radius: var(--radius-card);
}

.product-shot figcaption {
  color: rgba(255, 235, 214, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

.brand-frame figcaption {
  display: none;
}

.hero-product {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 226, 196, 0.16);
  border-radius: var(--radius-card);
  background: rgba(9, 5, 9, 0.88);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-product-main {
  right: 1.1rem;
  bottom: 1.1rem;
  width: 55%;
  aspect-ratio: 0.9;
}

.hero-product-secondary {
  left: 1.1rem;
  bottom: 1.1rem;
  width: 38%;
  aspect-ratio: 0.82;
}

.hero-metric {
  position: absolute;
  left: 1.1rem;
  top: 56%;
  z-index: 3;
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 216, 143, 0.24);
  border-radius: var(--radius-card);
  background: rgba(11, 5, 10, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.hero-metric span {
  color: rgba(255, 235, 214, 0.72);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-metric strong {
  color: var(--accent-strong);
  font-size: 1.08rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 226, 196, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip p {
  margin: 0;
  padding: 0.78rem;
  border: 1px solid rgba(255, 226, 196, 0.1);
  border-radius: var(--radius-card);
  background: rgba(10, 5, 9, 0.38);
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 5.5rem 0 0;
}

.section-band {
  margin-top: 5.2rem;
  padding: 4.2rem 0;
  border-block: 1px solid rgba(255, 226, 196, 0.08);
  background:
    linear-gradient(135deg, rgba(125, 92, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.split-intro,
.studio-layout,
.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.section-head {
  display: grid;
  gap: 0.75rem;
}

.section-head-centered {
  max-width: 48rem;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.eyebrow,
.panel-label,
.showcase-number,
.footer-heading {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head h2,
.cta-panel h2,
.policy-hero h1 {
  font-size: 3.55rem;
}

.policy-section h2 {
  font-size: 2.35rem;
}

.section-copy {
  max-width: 58ch;
  margin: 0;
  font-size: 1rem;
}

.celebration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.feature-card,
.trust-grid article,
.policy-card,
.operator-aside,
.privacy-grid article,
.browser-shot,
.product-shot {
  border: 1px solid rgba(255, 226, 196, 0.12);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--surface);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.feature-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 1.2rem;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 216, 143, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card-large {
  min-height: 0;
  background:
    linear-gradient(145deg, rgba(255, 120, 71, 0.18), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--surface);
}

.feature-card-wide {
  grid-column: auto;
  min-height: 0;
}

.card-mark {
  display: inline-block;
  margin-bottom: 1.7rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card h3,
.flow-list h3,
.trust-grid h3,
.showcase-copy h3,
.signature-grid h3,
.operator-points h3,
.privacy-grid h3,
.policy-card h3 {
  margin: 0 0 0.72rem;
  font-size: 1.28rem;
  line-height: 1.18;
}

.feature-card-large h3 {
  max-width: none;
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.28rem;
  line-height: 1.18;
}

.feature-card p,
.flow-list p,
.trust-grid p,
.policy-card p,
.signature-grid p,
.operator-points p,
.privacy-grid p,
.footer-meta p {
  margin: 0;
}

.studio-copy {
  position: sticky;
  top: 6.2rem;
  display: grid;
  gap: 1rem;
}

.detail-list,
.aside-list,
.policy-list {
  margin: 0;
  padding-left: 1.05rem;
}

.detail-list li,
.aside-list li,
.policy-list li {
  margin-bottom: 0.58rem;
}

.studio-stack {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 1rem;
  align-items: start;
}

.product-shot {
  overflow: hidden;
  padding: 0.62rem;
}

.product-shot img {
  width: 100%;
  border-radius: 6px;
  background: rgba(7, 4, 8, 0.86);
}

.product-shot figcaption {
  padding: 0.7rem 0.1rem 0.1rem;
}

.product-shot-tall {
  grid-row: span 2;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 100%;
  padding: 1.15rem;
  border: 1px solid rgba(255, 226, 196, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.045);
}

.flow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 216, 143, 0.28), rgba(244, 95, 130, 0.22));
  color: var(--accent-strong);
  font-weight: 800;
}

.trust-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

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

.trust-grid article {
  min-height: 12rem;
  padding: 1.2rem;
}

.section-cta {
  padding-bottom: 5rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.6rem;
  align-items: end;
  padding: 1.45rem;
  border: 1px solid rgba(255, 216, 143, 0.22);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 120, 71, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(46, 24, 36, 0.96), rgba(18, 8, 15, 0.94));
  box-shadow: var(--shadow);
}

.cta-copy {
  max-width: 54ch;
  margin: 1rem 0 0;
}

.site-footer {
  padding: 0 0 2.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.65fr));
  gap: 1.5rem;
  padding: 2rem 0 1.4rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 38ch;
  margin: 0;
}

.footer-heading {
  margin-bottom: 0.9rem;
}

.footer-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

[data-reveal].reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.policy-main {
  padding: 3.2rem 0 5rem;
}

.policy-hero {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.45rem;
  border: 1px solid rgba(255, 226, 196, 0.14);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 120, 71, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(42, 22, 34, 0.92), rgba(17, 7, 13, 0.92));
  box-shadow: var(--shadow);
}

.policy-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  color: rgba(255, 235, 214, 0.72);
  font-size: 0.92rem;
}

.policy-breadcrumbs span[aria-current="page"] {
  color: var(--text);
}

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

.policy-card {
  padding: 1.2rem;
}

.policy-section {
  padding-top: 3rem;
}

.policy-section h2 {
  margin-bottom: 0.9rem;
}

.policy-copy {
  max-width: 68ch;
  margin: 0 0 1rem;
}

.policy-meta {
  margin: -0.15rem 0 0;
  color: rgba(255, 235, 214, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
}

.help-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.help-quicklinks a {
  padding: 0.62rem 0.86rem;
  border: 1px solid rgba(255, 226, 196, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 239, 220, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.help-quicklinks a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 226, 196, 0.22);
  background: rgba(255, 255, 255, 0.075);
  color: var(--accent-strong);
}

.inline-link,
.text-link {
  color: var(--accent-strong);
  font-weight: 800;
}

.operator-layout,
.privacy-layout,
.feature-layout,
.showcase-row,
.showcase-row-reverse,
.signature-grid,
.operator-points,
.privacy-grid {
  display: grid;
  gap: 1rem;
}

.browser-shot {
  padding: 0.62rem;
  overflow: hidden;
}

.browser-shot img {
  width: 100%;
  border-radius: 6px;
}

.browser-shot figcaption {
  padding: 0.8rem 0.1rem 0.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.browser-chrome {
  display: flex;
  gap: 0.35rem;
  padding: 0.2rem 0.25rem 0.65rem;
}

.browser-chrome span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

#celebration-system,
#studio,
#how-it-works,
#privacy,
#showcase,
#features,
#operators,
#overview,
#get-started,
#commands,
#media,
#anniversaries,
#reliability,
#faq {
  scroll-margin-top: 6.5rem;
}

@media (max-width: 1120px) {
  .hero {
    padding-top: 4rem;
  }

  .split-intro,
  .studio-layout,
  .trust-layout,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 4.8rem;
  }

  .hero-stage {
    width: 100%;
  }

  .studio-copy {
    position: static;
  }

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

  .feature-card-large,
  .feature-card-wide {
    grid-column: auto;
  }

  .section-head h2,
  .cta-panel h2,
  .policy-hero h1 {
    font-size: 3rem;
  }

  .cta-panel {
    align-items: start;
  }

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

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    max-width: 44rem;
    margin: 0 auto;
  }
}

@media (max-width: 840px) {
  .header-inner {
    min-height: 4.4rem;
    padding: 0.7rem 0;
  }

  .js-ready .menu-toggle {
    display: inline-flex;
  }

  .js-ready .header-menu {
    position: absolute;
    top: calc(100% - 0.15rem);
    right: 0;
    z-index: 130;
    display: grid;
    width: min(18rem, calc(100vw - 1rem));
    margin-left: 0;
    padding: 0.85rem;
    border: 1px solid rgba(255, 226, 196, 0.14);
    border-radius: var(--radius-card);
    background: linear-gradient(145deg, rgb(34, 18, 28), rgb(10, 5, 9));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    transform-origin: top right;
  }

  .js-ready .header-menu:not(.is-open) {
    display: none;
  }

  .js-ready .header-menu.is-open {
    animation: menu-pop 180ms ease;
  }

  .js-ready .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .js-ready .site-nav a {
    width: 100%;
    padding: 0.72rem 0.82rem;
    border: 1px solid rgba(255, 226, 196, 0.1);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.045);
  }

  .js-ready .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .js-ready .header-actions .button {
    width: 100%;
  }

  .hero {
    padding: 2.2rem 0 1.8rem;
  }

  .hero-layout {
    gap: 1.35rem;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero-stage {
    display: grid;
    min-height: 0;
    gap: 0.8rem;
    padding: 0.85rem;
    transform: none;
  }

  .hero-stage::before {
    display: none;
  }

  .brand-frame,
  .hero-product,
  .hero-metric {
    position: static;
  }

  .brand-frame {
    gap: 0.55rem;
  }

  .brand-frame figcaption {
    display: block;
    color: rgba(255, 235, 214, 0.76);
    font-size: 0.88rem;
    font-weight: 700;
  }

  .hero-banner {
    aspect-ratio: 16 / 9;
  }

  .hero-product-main,
  .hero-product-secondary {
    width: 100%;
    aspect-ratio: auto;
  }

  .hero-product {
    display: none;
  }

  .hero-product img {
    height: auto;
    object-fit: contain;
  }

  .hero-metric {
    justify-items: start;
  }

  .trust-strip,
  .studio-stack,
  .trust-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 4rem;
  }

  .section-band {
    margin-top: 4rem;
    padding: 3.3rem 0;
  }

  .section-head-centered {
    text-align: left;
  }

  .section-head h2,
  .cta-panel h2,
  .policy-hero h1 {
    font-size: 2.55rem;
  }

  .policy-section h2 {
    font-size: 2rem;
  }

  .product-shot-tall {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 1.1rem);
  }

  .site-header {
    background: rgba(10, 5, 9, 0.9);
  }

  .brand-lockup {
    gap: 0.65rem;
  }

  .brand-lockup img {
    width: 2.38rem;
    height: 2.38rem;
  }

  .brand-lockup span {
    font-size: 1.15rem;
  }

  .menu-toggle {
    width: 2.72rem;
    height: 2.72rem;
  }

  .hero {
    padding-top: 1.55rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 2.82rem;
  }

  .hero-text,
  .section-copy {
    max-width: none;
    font-size: 0.98rem;
  }

  .hero-actions,
  .cta-actions,
  .policy-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .hero-signals li {
    width: 100%;
    text-align: center;
  }

  .celebration-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-large,
  .feature-card-wide {
    min-height: auto;
    padding: 1.1rem;
  }

  .feature-card-large h3 {
    max-width: none;
    font-size: 2rem;
  }

  .section,
  .section-cta,
  .policy-main {
    padding-top: 3.25rem;
  }

  .section-band {
    margin-top: 3.25rem;
    padding: 2.8rem 0;
  }

  .section-head h2,
  .cta-panel h2,
  .policy-hero h1 {
    font-size: 2.25rem;
  }

  .policy-section h2 {
    font-size: 1.75rem;
  }

  .flow-list li,
  .trust-grid article,
  .policy-card,
  .cta-panel,
  .policy-hero {
    padding: 1.05rem;
  }

  .help-quicklinks a {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    padding: 1.7rem 0 1.2rem;
    gap: 1.2rem;
  }

  .footer-meta {
    font-size: 0.88rem;
  }
}

@media (max-width: 520px) {
  .shell {
    width: calc(100% - 1.1rem);
    max-width: 360px;
    margin-left: 0.55rem;
    margin-right: 0.55rem;
  }
}

@media (max-width: 420px) {
  .shell {
    width: calc(100% - 0.9rem);
  }

  .hero h1 {
    font-size: 2.52rem;
  }

  .button {
    min-height: 2.85rem;
    padding-inline: 0.9rem;
  }

  .trust-strip p {
    font-size: 0.88rem;
  }
}

@keyframes menu-pop {
  from {
    opacity: 0;
    transform: translateY(-0.35rem) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-stage,
  .button:hover,
  .help-quicklinks a:hover {
    transform: none;
  }
}
