:root {
  color-scheme: dark;
  --bg: #070917;
  --bg-deep: #040612;
  --bg-panel: rgba(18, 22, 49, 0.72);
  --bg-panel-strong: rgba(27, 31, 69, 0.84);
  --bg-panel-soft: rgba(118, 85, 210, 0.12);
  --line: rgba(174, 153, 255, 0.18);
  --line-strong: rgba(196, 172, 255, 0.34);
  --text: #f4f0ff;
  --text-soft: #c5c2dc;
  --muted: #8f93b5;
  --violet: #9c6cff;
  --violet-soft: #c7a7ff;
  --purple: #6f4ae9;
  --cyan: #69d6ff;
  --mint: #78e9ce;
  --rose: #ff7da6;
  --amber: #f7c979;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shadow-violet: 0 0 34px rgba(156, 108, 255, 0.36);
  --radius: 8px;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(8, 10, 25, 0.2), rgba(4, 6, 18, 0.92)),
    linear-gradient(135deg, #080b1e 0%, #0c0f24 45%, #080713 100%);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(160, 132, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 132, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.84), transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 82, 225, 0.18), transparent 32%),
    radial-gradient(circle at 82% 28%, rgba(67, 203, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(7, 9, 23, 0.18), rgba(7, 9, 23, 0.96));
}

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

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

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

.lang {
  display: none;
}

html[data-lang="pl"] .lang-pl,
html[data-lang="en"] .lang-en {
  display: contents;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 99;
  transform: translateY(-140%);
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #101632;
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(184, 164, 255, 0.12);
  background: rgba(6, 8, 22, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: calc(100vw - 28px);
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-soft);
  font-size: 14px;
  min-width: 0;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

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

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch button {
  min-width: 42px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.language-switch button.is-active {
  background: linear-gradient(135deg, rgba(156, 108, 255, 0.9), rgba(105, 214, 255, 0.28));
  color: var(--white);
  box-shadow: var(--shadow-violet);
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  max-width: 100%;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button {
  background: linear-gradient(135deg, #8f5cff, #c29dff 52%, #5bd5ff);
  color: #090916;
  font-weight: 760;
  box-shadow: 0 14px 36px rgba(119, 85, 220, 0.34);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.08);
  background: transparent;
  color: var(--text-soft);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.button:focus-visible,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(199, 167, 255, 0.55);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  padding: 96px 0 66px;
  border-bottom: 1px solid rgba(184, 164, 255, 0.1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(7, 9, 23, 0.98) 0%, rgba(7, 9, 23, 0.88) 42%, rgba(7, 9, 23, 0.34) 72%, rgba(7, 9, 23, 0.64) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-screenshot {
  position: absolute;
  z-index: 5;
  right: 8px;
  top: 118px;
  width: min(610px, 45vw);
  max-width: none;
  margin: 0;
  padding: 6px;
  border: 1px solid rgba(199, 167, 255, 0.2);
  border-radius: 14px;
  background: rgba(14, 17, 40, 0.36);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5), 0 0 70px rgba(139, 92, 246, 0.2);
  filter: brightness(1.18) contrast(1.04) saturate(1.08) drop-shadow(0 34px 72px rgba(0, 0, 0, 0.5));
  opacity: 0.92;
  pointer-events: none;
}

.hero-screenshot img {
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 10px;
}

.hero-mark {
  position: absolute;
  z-index: 1;
  right: min(8vw, 110px);
  bottom: 68px;
  width: min(390px, 34vw);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 0 42px rgba(156, 108, 255, 0.46));
  opacity: 0.72;
  animation: float-mark 7s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 40px));
  max-width: calc(100vw - 28px);
  margin: 0 auto;
  padding-bottom: 26px;
}

.hero-copy {
  max-width: 710px;
  position: relative;
  z-index: 6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--violet-soft);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  box-shadow: var(--shadow-violet);
}

.hero h1,
.section-heading h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 76px;
  max-width: 640px;
  text-shadow: 0 12px 52px rgba(0, 0, 0, 0.6);
}

.hero-logo {
  width: min(480px, 72vw);
  max-width: 100%;
}

.hero-logo img {
  width: 100%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 22px 58px rgba(0, 0, 0, 0.58));
}

.accent {
  color: var(--violet-soft);
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 19px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  max-width: 710px;
  margin-top: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 17, 39, 0.68);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.proof-item {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  display: block;
  color: var(--white);
  font-weight: 760;
}

.proof-label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 12px;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 34px;
  margin: 8px auto 0;
  background: linear-gradient(180deg, var(--violet), transparent);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  max-width: calc(100vw - 28px);
  margin: 0 auto;
  padding: 96px 0;
}

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

.section-heading h2 {
  font-size: 48px;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intake-panel {
  padding: 26px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.role-card {
  min-height: 248px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.role-card img,
.feature-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 22px rgba(156, 108, 255, 0.38));
}

.role-card h3,
.feature-card h3,
.workflow-card h3,
.audience-card h3,
.contact-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.32;
}

.role-card p,
.feature-card p,
.workflow-card p,
.audience-card p,
.contact-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(20, 23, 53, 0.4), rgba(6, 8, 21, 0.92)),
    rgba(10, 12, 28, 0.78);
  box-shadow: var(--shadow);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
}

.visual-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.caption-chip {
  padding: 12px;
  border: 1px solid rgba(199, 167, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 7, 20, 0.72);
  color: var(--text-soft);
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.workflow-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 164, 255, 0.1);
  border-bottom: 1px solid rgba(184, 164, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(12, 15, 35, 0.58), rgba(7, 9, 23, 0.86)),
    url("../visuals/workflow-bridge.jpg") center bottom 40px / min(1060px, 90vw) auto no-repeat;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 36px;
  padding-bottom: 280px;
}

.workflow-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 11, 28, 0.78);
  backdrop-filter: blur(12px);
}

.workflow-card::before {
  content: attr(data-step);
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(199, 167, 255, 0.44);
  border-radius: 50%;
  color: var(--violet-soft);
  background: rgba(156, 108, 255, 0.16);
}

.signal-line {
  height: 2px;
  margin: 42px 0 0;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent);
  background-size: 220% 100%;
  animation: signal 5s linear infinite;
  opacity: 0.78;
}

.feature-grid,
.audience-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card,
.audience-card,
.security-card,
.contact-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.security-card {
  min-height: 180px;
}

.security-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.security-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.author-section {
  border-top: 1px solid rgba(184, 164, 255, 0.1);
  border-bottom: 1px solid rgba(184, 164, 255, 0.1);
  background: linear-gradient(180deg, rgba(16, 19, 43, 0.42), rgba(7, 9, 23, 0.82));
}

.author-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  padding: 28px;
}

.author-photo {
  align-self: stretch;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(156, 108, 255, 0.12));
}

.author-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.author-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.08;
}

.author-copy p {
  color: var(--text-soft);
}

.author-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.author-points div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
}

.contact-section {
  padding-bottom: 112px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
}

.contact-card {
  min-height: auto;
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 0%, rgba(156, 108, 255, 0.24), transparent 34%),
    radial-gradient(circle at 92% 20%, rgba(67, 203, 255, 0.12), transparent 30%);
}

.contact-logo,
.contact-card-lead,
.contact-list {
  position: relative;
  z-index: 1;
}

.contact-logo {
  width: min(282px, 100%);
  height: auto;
  margin-bottom: 26px;
  filter: drop-shadow(0 0 24px rgba(156, 108, 255, 0.24));
}

.contact-card-lead {
  max-width: 360px;
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-method {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(199, 167, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(199, 167, 255, 0.48);
  background: rgba(156, 108, 255, 0.12);
}

.contact-method-label {
  color: var(--violet-soft);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--white);
  font-size: 21px;
  line-height: 1.25;
  word-break: break-word;
}

.contact-form {
  padding: 26px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.full {
  grid-column: 1 / -1;
}

.field label,
.checkbox {
  color: var(--text-soft);
  font-size: 13px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 8, 22, 0.72);
  color: var(--white);
  outline: none;
}

.field input,
.field select {
  min-height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
  padding: 13px 14px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(199, 167, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(156, 108, 255, 0.14);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--violet);
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
}

.form-status.is-ok {
  color: var(--mint);
}

.form-status.is-error {
  color: var(--rose);
}

.honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid rgba(184, 164, 255, 0.12);
  background: rgba(4, 6, 18, 0.94);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
}

.footer-logo {
  width: 182px;
  margin-bottom: 18px;
}

.footer-copy {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 12px 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.legal-hero {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 34px;
}

.legal-hero h1 {
  font-size: 54px;
}

.legal-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 96px;
}

.legal-block {
  margin-top: 18px;
  padding: 28px;
}

.legal-block h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.legal-block p,
.legal-block li {
  color: var(--text-soft);
}

.legal-block ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 20px;
  z-index: 80;
  display: none;
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(8, 11, 28, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cookie-options {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.cookie-options.is-visible {
  display: block;
}

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

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

@keyframes signal {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 220% 0;
  }
}

@keyframes float-mark {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .nav {
    align-items: flex-start;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(7, 9, 23, 0.96) 0%, rgba(7, 9, 23, 0.84) 58%, rgba(7, 9, 23, 0.44) 100%);
  }

  .hero-screenshot {
    right: -230px;
    top: 108px;
    width: 650px;
    opacity: 0.76;
  }

  .two-column,
  .contact-layout,
  .author-card {
    grid-template-columns: 1fr;
  }

  .author-card {
    padding: 20px;
  }

  .author-photo img {
    max-height: 460px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.06);
  }

  .workflow-grid,
  .feature-grid,
  .audience-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(calc(100% - 28px), var(--max));
    gap: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    position: relative;
    padding-right: 82px;
  }

  .brand img {
    width: 134px;
  }

  .language-switch button {
    min-width: 32px;
    min-height: 30px;
  }

  .nav-actions {
    position: absolute;
    top: 16px;
    right: 0;
    margin-left: 0;
  }

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

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .nav-actions .button-secondary {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 56px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(7, 9, 23, 0.94) 0%, rgba(7, 9, 23, 0.72) 58%, rgba(7, 9, 23, 0.98) 100%);
    opacity: 0.68;
  }

  .hero-mark {
    display: none;
  }

  .hero-screenshot {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 620px);
    margin: 34px auto 0;
    opacity: 0.9;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-proof,
  .role-grid,
  .workflow-grid,
  .feature-grid,
  .audience-grid,
  .security-grid,
  .form-grid,
  .footer-inner,
  .visual-caption,
  .author-points {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 340px;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section {
    width: min(calc(100% - 28px), var(--max));
    padding: 68px 0;
  }

  .section-heading h2,
  .author-copy h2,
  .legal-hero h1 {
    font-size: 34px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    width: auto;
    max-width: calc(100vw - 28px);
    padding: 16px;
    transform: none;
  }

  .workflow-grid {
    padding-bottom: 220px;
  }

  .workflow-section {
    background:
      linear-gradient(180deg, rgba(12, 15, 35, 0.58), rgba(7, 9, 23, 0.92)),
      url("../visuals/workflow-bridge.jpg") center bottom 30px / 780px auto no-repeat;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

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