:root {
  --midnight: #0b1021;
  --deep-indigo: #111428;
  --panel: #171c33;
  --panel-elevated: #202744;
  --card: #1b203a;
  --search: #13182d;
  --soft-white: #f4f6fb;
  --paper: #ffffff;
  --ink: #17192a;
  --muted-ink: #60637a;
  --purple: #7c5dfa;
  --purple-strong: #6d4df3;
  --teal: #2ed3c6;
  --lavender: #b8b0e3;
  --rose: #ff89a8;
  --coral: #ff9f7c;
  --line-dark: rgba(244, 246, 251, 0.18);
  --line-light: rgba(17, 20, 40, 0.14);
  --shadow: 0 24px 70px rgba(8, 12, 28, 0.32);
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shell: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft-white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--purple);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(244, 246, 251, 0.12);
  background: rgba(11, 16, 33, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: var(--shell);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--soft-white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgba(124, 93, 250, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.nav-links .nav-disabled {
  padding: 9px 12px;
  color: rgba(244, 246, 251, 0.78);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 650;
  font-size: 0.95rem;
}

.nav-links .nav-disabled {
  color: rgba(244, 246, 251, 0.42);
  cursor: not-allowed;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a[aria-current="page"] {
  color: var(--paper);
  background: rgba(124, 93, 250, 0.18);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--soft-white);
  background: var(--panel);
  font: inherit;
  font-weight: 700;
}

.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--soft-white);
  background: var(--midnight);
}

.hero-stage {
  position: absolute;
  inset: 52px 0 auto;
  height: 400px;
  pointer-events: none;
  opacity: 0.72;
}

.hero-window {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  top: 54px;
  width: min(760px, 62vw);
  transform: rotate(-1deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 0 52px;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.slogan {
  max-width: 780px;
  margin: 26px 0 0;
  color: var(--teal);
  font-size: clamp(1.55rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 850;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(244, 246, 251, 0.84);
  font-size: 1.2rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow {
  color: var(--lavender);
}

.hero-actions,
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
}

.button-primary {
  color: var(--paper);
  background: var(--purple);
  box-shadow: 0 16px 34px rgba(124, 93, 250, 0.24);
}

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

.button-secondary {
  color: var(--soft-white);
  border-color: var(--line-dark);
  background: rgba(244, 246, 251, 0.08);
}

.button-secondary:hover,
.button-secondary:focus {
  background: rgba(244, 246, 251, 0.14);
}

.button-dark {
  color: var(--paper);
  background: var(--deep-indigo);
}

.button-dark:hover,
.button-dark:focus {
  background: var(--panel-elevated);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  display: inline-flex;
  padding: 7px 10px;
  color: rgba(244, 246, 251, 0.82);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(27, 32, 58, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section.compact {
  padding: 56px 0;
}

.section-light {
  color: var(--ink);
  background: var(--soft-white);
}

.section-light.alt {
  background: #eceef7;
}

.section-dark {
  color: var(--soft-white);
  background: var(--deep-indigo);
}

.split-section,
.feature-band,
.cta-band,
.download-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 56px;
  align-items: center;
}

.split-section h2,
.feature-band h2,
.section-heading h2,
.feature-row h2,
.info-panel h2,
.privacy-block h2,
.release-panel h2,
.screenshot-card h2,
.cta-band h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.split-section h2,
.feature-band h2,
.section-heading h2,
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-copy {
  color: var(--muted-ink);
  font-size: 1.08rem;
}

.section-dark .section-copy {
  color: rgba(244, 246, 251, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--purple-strong);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.left {
  max-width: 780px;
  margin-left: 0;
  text-align: left;
}

.section-heading p {
  color: var(--muted-ink);
}

.section-dark .section-heading p {
  color: rgba(244, 246, 251, 0.78);
}

.feature-grid {
  display: grid;
  gap: 18px;
}

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

.audience-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.audience-card h3 {
  margin: 0 0 10px;
  line-height: 1.15;
}

.audience-card p {
  margin: 0;
  color: var(--muted-ink);
}

.not-card {
  background: #f8f7fc;
}

.beta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.beta-strip h2,
.beta-page-grid h2,
.form-shell h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.beta-strip h2 {
  max-width: 880px;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

.beta-strip p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted-ink);
  font-size: 1.06rem;
}

.section-dark .beta-strip p {
  color: rgba(244, 246, 251, 0.78);
}

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

.beta-page-grid ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted-ink);
}

.form-shell {
  max-width: 900px;
}

.google-form-frame {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.google-form-frame iframe {
  display: block;
  width: 100%;
  min-height: 960px;
  border: 0;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted-ink);
  font-size: 0.95rem;
}

.workflow-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1fr);
  gap: 52px;
  align-items: start;
}

.workflow-intro h2,
.workflow-step h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.workflow-intro p,
.workflow-copy > p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 1.06rem;
}

.section-dark .workflow-copy > p {
  color: rgba(244, 246, 251, 0.78);
}

.workflow-stack {
  display: grid;
  gap: 64px;
}

.guide-split {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: center;
}

.guide-split.reverse {
  direction: rtl;
}

.guide-split.reverse > * {
  direction: ltr;
}

.guide-split h2,
.guide-process-step h3,
.concept-card h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.guide-split h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.guide-split p,
.concept-card p,
.step-copy p,
.guide-detail-list p {
  color: var(--muted-ink);
}

.section-dark .guide-split p,
.section-dark .step-copy p {
  color: rgba(244, 246, 251, 0.78);
}

.guide-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.guide-image.dark-frame {
  border-color: var(--line-dark);
  background: var(--panel);
}

.guide-image img {
  width: 100%;
  height: auto;
}

.guide-image.portrait {
  width: min(100%, 460px);
  justify-self: center;
}

.guide-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.guide-image-grid.uneven {
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  align-items: center;
}

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

.concept-card {
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.concept-card h2 {
  font-size: 1.35rem;
}

.concept-card p {
  margin-bottom: 0;
}

.guide-process-step {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.guide-process-step.reverse {
  direction: rtl;
}

.guide-process-step.reverse > * {
  direction: ltr;
}

.step-copy {
  display: grid;
  gap: 12px;
}

.step-copy .feature-number {
  margin-bottom: 0;
}

.step-copy h3 {
  color: var(--soft-white);
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
}

.step-copy p {
  margin: 0;
}

.guide-detail-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.guide-detail-list div {
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}

.guide-detail-list h3 {
  margin: 0 0 4px;
  color: var(--purple-strong);
  font-size: 1rem;
}

.guide-detail-list p {
  margin: 0;
}

.workflow-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 46px;
  align-items: center;
}

.workflow-step.reverse {
  direction: rtl;
}

.workflow-step.reverse > * {
  direction: ltr;
}

.workflow-copy {
  display: grid;
  gap: 18px;
}

.workflow-details {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.workflow-details div {
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(244, 246, 251, 0.06);
}

.workflow-details h3 {
  margin: 0 0 4px;
  color: var(--teal);
  font-size: 0.95rem;
}

.workflow-details p {
  margin: 0;
  color: rgba(244, 246, 251, 0.74);
}

.workflow-shot {
  min-height: 420px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(124, 93, 250, 0.12), rgba(46, 211, 198, 0.06)),
    var(--panel);
  box-shadow: var(--shadow);
}

.shot-title {
  margin-bottom: 18px;
  color: var(--soft-white);
  font-weight: 850;
  font-size: 1.2rem;
}

.shot-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  color: rgba(244, 246, 251, 0.78);
  background: rgba(244, 246, 251, 0.08);
}

.shot-row.selected {
  border-color: rgba(124, 93, 250, 0.54);
  background: rgba(124, 93, 250, 0.2);
}

.shot-row strong {
  color: var(--soft-white);
}

.shot-button {
  width: 44%;
  height: 42px;
  margin: 28px 0 0 auto;
  border-radius: var(--radius-sm);
  background: var(--purple);
}

.revision-shot,
.reviewer-shot {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
}

.version-column,
.version-editor,
.review-list-preview,
.review-report-preview {
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(11, 16, 33, 0.48);
}

.version-card,
.review-list-preview span {
  display: block;
  height: 46px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  background: rgba(244, 246, 251, 0.1);
}

.version-card {
  padding: 13px 12px;
  color: rgba(244, 246, 251, 0.76);
  font-size: 0.9rem;
  font-weight: 750;
}

.version-card.active,
.review-list-preview .active {
  background: rgba(124, 93, 250, 0.3);
}

.shot-line {
  width: 76%;
  height: 14px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: rgba(244, 246, 251, 0.13);
}

.shot-line.wide {
  width: 96%;
}

.shot-line.short {
  width: 48%;
}

.shot-line.title {
  width: 58%;
  height: 26px;
  margin-bottom: 28px;
}

.reviewer-shot {
  grid-template-columns: 130px minmax(0, 1fr);
}

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

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

.feature-card,
.info-panel,
.privacy-block,
.release-panel,
.screenshot-card {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.section-dark .feature-card {
  border-color: var(--line-dark);
  background: var(--card);
}

.feature-card,
.info-panel,
.privacy-block,
.release-panel {
  padding: 24px;
}

.feature-card h3,
.info-panel h2,
.privacy-block h2,
.release-panel h2,
.screenshot-card h2 {
  margin-top: 0;
}

.feature-card p,
.info-panel p,
.privacy-block p,
.release-panel p,
.screenshot-card p {
  margin-bottom: 0;
  color: var(--muted-ink);
}

.section-dark .feature-card p {
  color: rgba(244, 246, 251, 0.75);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--teal);
  font-weight: 900;
}

.feature-band-copy p {
  color: var(--muted-ink);
}

.context-preview {
  display: grid;
  gap: 12px;
}

.context-row {
  padding: 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.context-row.active {
  border-color: rgba(124, 93, 250, 0.42);
  background: rgba(124, 93, 250, 0.1);
}

.context-row.muted {
  background: #f8f7fc;
}

.context-row strong,
.context-row span {
  display: block;
}

.context-row span {
  margin-top: 4px;
  color: var(--muted-ink);
}

.page-hero {
  padding: 64px 0 52px;
  color: var(--soft-white);
  background: var(--midnight);
}

.page-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.15rem, 4.6vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 760px;
  color: rgba(244, 246, 251, 0.78);
  font-size: 1.04rem;
}

.page-hero a:not(.button) {
  color: var(--teal);
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 22px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: 42px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}

.feature-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-row p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 1.06rem;
}

.context-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.context-type-grid span {
  padding: 14px 16px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-weight: 800;
}

.privacy-layout,
.release-layout,
.install-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.privacy-block code {
  display: block;
  margin-top: 16px;
  padding: 14px;
  overflow-x: auto;
  color: var(--deep-indigo);
  background: #eceef7;
  border-radius: var(--radius-sm);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.download-heading {
  align-items: end;
}

.download-heading .button {
  justify-self: end;
}

.muted {
  color: var(--muted-ink);
}

.asset-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.asset-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: #f7f6fc;
}

.asset-link:hover,
.asset-link:focus {
  border-color: rgba(124, 93, 250, 0.5);
  background: rgba(124, 93, 250, 0.1);
}

.asset-link strong,
.asset-link span {
  display: block;
}

.asset-link strong {
  margin-bottom: 2px;
}

.asset-link span {
  color: var(--muted-ink);
  font-size: 0.9rem;
}

.recommended-badge {
  padding: 5px 8px;
  color: var(--deep-indigo);
  background: rgba(46, 211, 198, 0.26);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 850;
}

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

.screenshot-card {
  overflow: hidden;
}

.screenshot-frame {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin: 0;
  padding: 12px;
  background: var(--midnight);
  border-bottom: 1px solid var(--line-light);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 46px rgba(8, 12, 28, 0.26);
}

.portrait-frame img {
  width: min(100%, 420px);
}

.screenshot-card h2,
.screenshot-card p {
  padding: 0 22px;
}

.screenshot-card h2 {
  margin-top: 22px;
}

.screenshot-card p {
  padding-bottom: 24px;
}

.wide-card {
  grid-column: 1 / -1;
}

.mock-window {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--deep-indigo);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mock-titlebar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: var(--panel);
}

.mock-titlebar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(244, 246, 251, 0.32);
}

.mock-toolbar {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.mock-pill {
  width: 112px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(244, 246, 251, 0.1);
}

.mock-pill.short {
  width: 72px;
}

.mock-pill.accent {
  background: rgba(124, 93, 250, 0.34);
}

.mock-layout {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) 154px;
  gap: 14px;
  padding: 16px;
}

.mock-sidebar,
.mock-editor,
.mock-context {
  min-height: 380px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: var(--panel);
}

.mock-label,
.mock-list,
.mock-context-card,
.mock-title-line,
.mock-subtitle-line,
.mock-status,
.mock-prose {
  border-radius: var(--radius-sm);
  background: rgba(244, 246, 251, 0.12);
}

.mock-label {
  width: 62%;
  height: 16px;
  margin-bottom: 16px;
}

.mock-list {
  height: 34px;
  margin-bottom: 10px;
}

.mock-list.active,
.mock-context-card.selected {
  background: rgba(124, 93, 250, 0.35);
}

.mock-editor-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.mock-title-line {
  width: 220px;
  height: 24px;
  margin-bottom: 10px;
}

.mock-subtitle-line {
  width: 160px;
  height: 14px;
}

.mock-status {
  width: 74px;
  height: 28px;
  background: rgba(46, 211, 198, 0.24);
}

.mock-prose {
  width: 86%;
  height: 13px;
  margin-bottom: 13px;
}

.mock-prose.long {
  width: 96%;
}

.mock-prose.medium {
  width: 70%;
}

.mock-context-card {
  height: 72px;
  margin-bottom: 12px;
}

.site-footer {
  color: rgba(244, 246, 251, 0.74);
  background: var(--midnight);
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  gap: 16px;
}

.footer-inner a,
.footer-inner .footer-disabled {
  color: rgba(244, 246, 251, 0.82);
  text-decoration: none;
  font-weight: 700;
}

.footer-inner .footer-disabled {
  color: rgba(244, 246, 251, 0.42);
  cursor: not-allowed;
}

.footer-inner a:hover,
.footer-inner a:focus {
  color: var(--paper);
}

@media (max-width: 920px) {
  .nav {
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
    background: var(--panel);
  }

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

  .hero {
    min-height: 520px;
  }

  .hero-stage {
    inset: 88px 0 auto;
    height: 520px;
  }

  .hero-window {
    visibility: hidden;
  }

  .hero-content {
    padding-top: 78px;
  }

  .split-section,
  .feature-band,
  .beta-strip,
  .beta-page-grid,
  .cta-band,
  .download-heading,
  .workflow-intro,
  .workflow-step,
  .guide-split,
  .guide-process-step,
  .guide-image-grid,
  .guide-image-grid.uneven,
  .concept-grid,
  .feature-row,
  .privacy-layout,
  .release-layout,
  .install-grid,
  .audience-grid,
  .feature-grid.two,
  .feature-grid.three,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .beta-strip .button {
    justify-self: start;
  }

  .download-heading .button {
    justify-self: start;
  }

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

  .workflow-step.reverse {
    direction: ltr;
  }

  .guide-split.reverse,
  .guide-process-step.reverse {
    direction: ltr;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(100vw - 28px, 1160px);
  }

  .brand span {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-content h1 {
    font-size: clamp(2.55rem, 14vw, 4.4rem);
  }

  .hero-stage {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    padding: 64px 0 72px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }

  .section {
    padding: 54px 0;
  }

  .context-type-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
  }

  .footer-inner div {
    flex-wrap: wrap;
  }

  .asset-link {
    grid-template-columns: 1fr;
  }

  .screenshot-frame {
    min-height: 0;
    padding: 8px;
  }
}
