:root {
  --bg-deep: #08131b;
  --bg-ocean: #102433;
  --bg-surface: rgba(10, 20, 28, 0.78);
  --bg-surface-strong: rgba(11, 19, 27, 0.9);
  --bg-soft: rgba(255, 255, 255, 0.08);
  --card-fill: rgba(255, 255, 255, 0.085);
  --card-fill-strong: rgba(255, 255, 255, 0.13);
  --text-main: #f6f8fb;
  --text-soft: #c6d3dc;
  --text-muted: #94a8b6;
  --brand: #47a8d0;
  --brand-strong: #1f7ea7;
  --brand-seafoam: #7acac7;
  --brand-sand: #d7c4a1;
  --line: rgba(255, 255, 255, 0.16);
  --line-bright: rgba(255, 255, 255, 0.34);
  --glow: rgba(255, 255, 255, 0.42);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: min(1160px, calc(100vw - 40px));
  --nav-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(71, 168, 208, 0.22), transparent 32%),
    radial-gradient(circle at top right, rgba(122, 202, 199, 0.14), transparent 26%),
    linear-gradient(180deg, #0d1822 0%, #09131c 54%, #081118 100%);
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 48%),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.06), transparent 18%);
  mix-blend-mode: screen;
  opacity: 0.85;
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(4, 10, 15, 0.88), rgba(4, 10, 15, 0.48));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__bar {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 12px 34px rgba(0, 0, 0, 0.28);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__name {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.brand__tag {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  transform: translateY(-1px);
}

.section {
  padding: 92px 0;
}

.section--tight {
  padding: 72px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

@keyframes pillHueCycle {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pillTextShift {
  0% {
    color: #9de8ff;
    text-shadow: 0 0 10px rgba(117, 212, 240, 0.22);
  }
  35% {
    color: #8ff2cf;
    text-shadow: 0 0 12px rgba(136, 240, 200, 0.22);
  }
  68% {
    color: #70ceff;
    text-shadow: 0 0 10px rgba(74, 185, 255, 0.2);
  }
  100% {
    color: #9de8ff;
    text-shadow: 0 0 10px rgba(117, 212, 240, 0.22);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(10, 21, 31, 0.86), rgba(14, 33, 43, 0.72)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(117, 212, 240, 0.28);
  color: #9de8ff;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(10, 31, 43, 0.14);
  animation: pillTextShift 9s ease-in-out infinite;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #76d3ff, #88f0c8, #4ab9ff);
  background-size: 200% 200%;
  box-shadow: 0 0 18px rgba(122, 202, 199, 0.6);
  animation: pillHueCycle 7s ease-in-out infinite;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1,
h2 {
  font-family: "Marcellus", Georgia, serif;
}

h1 {
  font-size: clamp(1.55rem, 2.55vw, 2.85rem);
  max-width: 11ch;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.18rem, 1.8vw, 1.9rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 18px;
  color: var(--text-soft);
}

.lead {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  max-width: 64ch;
  color: #dde7ee;
}

.hero {
  position: relative;
  padding: 56px 0 84px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 13ch;
  line-height: 1.02;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__backdrop::before,
.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero__backdrop::before {
  background:
    linear-gradient(125deg, rgba(5, 11, 16, 0.32), rgba(5, 11, 16, 0.72)),
    url("../images/hero-shaperoom-1.png") center center / cover no-repeat;
  opacity: 0.34;
  transform: scale(1.05);
}

.hero__backdrop::after {
  background:
    radial-gradient(circle at 72% 28%, rgba(122, 202, 199, 0.12), transparent 24%),
    radial-gradient(circle at 20% 14%, rgba(215, 196, 161, 0.14), transparent 26%);
}

.hero__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button {
  color: #041019;
  background: linear-gradient(135deg, #dffaff, #8fd5e0 55%, #69b9d6);
  box-shadow: 0 18px 50px rgba(54, 145, 178, 0.3);
}

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

.button-secondary {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-ghost {
  color: var(--brand-seafoam);
  background: transparent;
  border-color: rgba(122, 202, 199, 0.28);
}

.button--full {
  width: 100%;
}

.meta-strip,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(10, 21, 31, 0.8), rgba(14, 31, 40, 0.66)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(117, 212, 240, 0.22);
  color: #9ae7ff;
  font-size: 0.92rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: pillTextShift 9s ease-in-out infinite;
}

.chrome-card,
.content-panel,
.legal-card,
.support-card,
.faq-card,
.mock-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.chrome-card::before,
.content-panel::before,
.legal-card::before,
.support-card::before,
.faq-card::before,
.mock-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.46),
    rgba(255, 255, 255, 0.14)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.9;
}

.chrome-card::after,
.content-panel::after,
.legal-card::after,
.support-card::after,
.faq-card::after,
.mock-panel::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 45%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: rotate(20deg);
  animation: sheen 11s linear infinite;
  pointer-events: none;
}

@keyframes sheen {
  from {
    transform: translateX(-160%) rotate(20deg);
  }
  to {
    transform: translateX(340%) rotate(20deg);
  }
}

.hero-card {
  padding: 16px;
}

.hero-stack {
  display: grid;
  gap: 18px;
}

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

.hero-gallery__stage {
  position: relative;
}

.hero-gallery__panel {
  display: grid;
  gap: 12px;
}

.hero-gallery__slide {
  margin: 0;
  max-width: 258px;
  margin-inline: auto;
}

.hero-gallery__details {
  display: grid;
  gap: 6px;
  text-align: left;
}

.hero-gallery__copy {
  display: grid;
  gap: 4px;
  padding: 0 4px;
}

.hero-gallery__label {
  color: var(--brand-seafoam);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-gallery__copy p {
  margin: 0;
  color: #e1ebf2;
  font-size: 0.82rem;
  line-height: 1.36;
}

.hero-gallery__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 4px;
}

.hero-gallery__button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 78px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  font-size: 0.84rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-gallery__button:hover,
.hero-gallery__button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-gallery__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.hero-gallery__dot {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-gallery__dot,
.hero-gallery__button {
  cursor: pointer;
}

.hero-gallery__dot.is-active {
  transform: scale(1.12);
  background: var(--brand-seafoam);
  border-color: rgba(255, 255, 255, 0.42);
}

.phone-frame {
  position: relative;
  border-radius: 36px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(240, 245, 249, 0.16), rgba(86, 103, 119, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 22px 70px rgba(0, 0, 0, 0.28);
}

.phone-frame__notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 22px;
  border-radius: 0 0 18px 18px;
  background: rgba(8, 14, 20, 0.96);
  z-index: 2;
}

.phone-screen {
  position: relative;
  min-height: 540px;
  padding: 28px 20px 22px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 11, 16, 0.28), rgba(5, 11, 16, 0.52)),
    url("../images/hero-shaperoom-2.png") center center / cover no-repeat;
}

.phone-screen--surfer {
  background:
    linear-gradient(180deg, rgba(5, 11, 16, 0.28), rgba(5, 11, 16, 0.52)),
    url("../images/hero-shaperoom-3.png") center center / cover no-repeat;
}

.phone-screen--image {
  min-height: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  background: #08131b;
  aspect-ratio: 368 / 800;
}

.phone-screen__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-ui {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  width: fit-content;
  border-radius: 999px;
  color: #091720;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(188, 225, 233, 0.92));
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.phone-card {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 18px 34px rgba(8, 18, 26, 0.14);
}

.phone-card--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.phone-card h3,
.phone-card p {
  color: #091720;
}

.phone-stat {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.phone-stat strong {
  font-size: 1.34rem;
  color: #07141c;
}

.phone-bottom-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.phone-bottom-tabs span {
  display: block;
  padding: 10px 0;
  border-radius: 14px;
  text-align: center;
  font-size: 0.73rem;
  color: #102433;
  background: rgba(255, 255, 255, 0.7);
}

.app-status {
  padding-top: 0;
}

.app-status .content-panel,
.content-panel {
  padding: 28px;
}

.status-grid,
.feature-grid,
.role-grid,
.support-grid,
.legal-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.support-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.legal-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.6fr));
}

.stat-card,
.feature-card,
.role-card,
.support-card,
.legal-card {
  padding: 24px;
}

.stat-card strong,
.feature-card strong {
  display: block;
  font-size: 1.65rem;
  margin-bottom: 6px;
  color: white;
}

.feature-card p,
.role-card p,
.support-card p,
.legal-card p {
  margin-bottom: 0;
}

.feature-card ul,
.role-card ul,
.support-card ul,
.legal-content ul,
.legal-content ol {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.feature-card li,
.role-card li,
.support-card li,
.legal-content li {
  margin-bottom: 10px;
}

.role-card__header,
.support-card__header,
.legal-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.role-card__badge,
.support-card__badge,
.legal-card__badge {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background:
    linear-gradient(135deg, rgba(10, 21, 31, 0.84), rgba(14, 31, 41, 0.68)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(117, 212, 240, 0.22);
  color: #9de8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: pillTextShift 9s ease-in-out infinite;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}

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

.workflow-step {
  padding: 22px;
  min-height: 100%;
}

.workflow-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-seafoam);
  font-weight: 700;
}

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

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--text-main);
}

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

.faq-item[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item__body {
  padding: 0 20px 20px;
}

.legal-page,
.support-page {
  padding-top: 48px;
}

.legal-sidebar,
.support-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 18px);
  padding: 24px;
}

.legal-sidebar nav,
.support-sidebar nav {
  display: grid;
  gap: 10px;
}

.legal-sidebar a,
.support-sidebar a {
  color: var(--text-soft);
  padding: 10px 12px;
  border-radius: 12px;
}

.legal-sidebar a:hover,
.support-sidebar a:hover,
.legal-sidebar a:focus-visible,
.support-sidebar a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.legal-content,
.support-content {
  padding: 28px;
}

.legal-content section + section,
.support-content section + section {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-content h2,
.support-content h2 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}

.legal-content h3,
.support-content h3 {
  margin-top: 0;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  color: white;
}

.microcopy {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.support-kicker {
  margin-bottom: 14px;
  color: var(--brand-seafoam);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.support-highlight {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-highlight strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 1.05rem;
}

.support-note-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.support-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-note strong {
  display: block;
  margin-bottom: 6px;
  color: white;
}

.inline-link {
  color: var(--brand-seafoam);
  text-decoration: underline;
  text-decoration-color: rgba(122, 202, 199, 0.36);
  text-underline-offset: 3px;
}

.site-footer {
  padding: 72px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(5, 10, 15, 0), rgba(4, 9, 14, 0.78));
}

.site-footer h3 {
  margin-bottom: 12px;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer-list a,
.footer-list span {
  color: var(--text-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.utility-note {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(122, 202, 199, 0.18);
  background: rgba(122, 202, 199, 0.08);
  color: #d6f0ee;
}

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

@media (max-width: 1100px) {
  .hero__grid,
  .showcase-layout,
  .support-grid,
  .legal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .legal-sidebar,
  .support-sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  :root {
    --content-width: min(100vw - 28px, 100%);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    background: rgba(6, 12, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero__grid,
  .role-grid,
  .feature-grid,
  .status-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2rem, 8.6vw, 2.85rem);
  }

  .hero h1 {
    max-width: 10.5ch;
    line-height: 1.01;
  }

  .section,
  .section--tight {
    padding: 70px 0;
  }

  .hero-gallery__controls {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-gallery__dots {
    order: -1;
    width: 100%;
  }

  .hero-gallery__details {
    text-align: left;
  }
}

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

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