:root {
  color-scheme: dark;
  --bg: #07101d;
  --bg-deep: #02060b;
  --panel: #0f1b2c;
  --panel-strong: #14243a;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(120, 184, 255, 0.38);
  --text: #f4f7fb;
  --muted: #9aaabd;
  --blue: #3b82f6;
  --blue-light: #78b8ff;
  --green: #72e6b1;
  --yellow: #f2ce7b;
  --radius: 24px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 0, rgba(59, 130, 246, 0.16), transparent 29rem),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 18%, #091523 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #07101d;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(1440px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow,
.section-heading {
  max-width: 900px;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 11, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.brand {
  display: flex;
  width: clamp(210px, 18vw, 260px);
  min-width: 190px;
  flex: 0 0 auto;
  align-items: center;
  align-self: stretch;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  max-height: calc(var(--header-height) - 16px);
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.65vw, 28px);
  color: #c4cfdd;
  font-size: 0.875rem;
  font-weight: 750;
  white-space: nowrap;
}

.desktop-nav a,
.footer-column a,
.mobile-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-column a:hover,
.mobile-nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  background: #f8fafc;
  color: #091421;
}

.button-light:hover {
  background: #e5efff;
}

.button-primary {
  border-color: #4f91ff;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.24);
  color: #fff;
}

.button-primary:hover {
  background: #4b8df7;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: #eef4fb;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.075);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(7, 16, 29, 0.99);
}

.mobile-nav-inner {
  display: grid;
  padding-block: 12px 20px;
}

.mobile-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: #d7e1ed;
  font-weight: 740;
}

.hero {
  padding: clamp(76px, 10vw, 142px) 0 clamp(72px, 8vw, 116px);
  text-align: center;
}

.hero-inner {
  max-width: 1150px;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--blue-light);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
  color: #c6e0ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 1080px;
  margin: 28px auto 24px;
  font-size: clamp(3.5rem, 7.2vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.6;
}

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

.product-section {
  padding: 0 0 clamp(84px, 9vw, 132px);
}

.product-frame {
  overflow: hidden;
  border: 1px solid rgba(112, 166, 255, 0.27);
  border-radius: 30px;
  background: linear-gradient(180deg, #132034, #091321);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.frame-bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: #7f92aa;
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff7188;
}

.window-dots i:nth-child(2) {
  background: #f8c958;
}

.window-dots i:nth-child(3) {
  background: #5fd398;
}

.frame-spacer {
  width: 43px;
}

.product-app {
  display: grid;
  min-height: 560px;
  grid-template-columns: 230px minmax(0, 1fr);
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.12);
}

.product-sidebar strong {
  margin: 0 12px 15px;
  color: #65778e;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-sidebar span {
  padding: 11px 12px;
  border-radius: 10px;
  color: #93a4b8;
  font-size: 0.86rem;
}

.product-sidebar .active {
  background: rgba(59, 130, 246, 0.18);
  color: #fff;
}

.product-main {
  min-width: 0;
  padding: clamp(22px, 3vw, 42px);
}

.product-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
}

.product-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.health {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(114, 230, 177, 0.1);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 820;
}

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

.metric-grid article {
  min-width: 0;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.metric-grid span,
.evidence-head {
  color: #73879f;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin: 8px 0 2px;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.metric-grid small {
  color: #8698ae;
}

.evidence-table {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.evidence-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(76px, 0.7fr);
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}

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

.status-approved {
  color: var(--green);
}

.status-review {
  color: var(--yellow);
}

.illustration-note {
  margin: 14px 4px 0;
  color: #718399;
  font-size: 0.78rem;
  text-align: right;
}

.section {
  padding: clamp(82px, 9vw, 132px) 0;
  border-top: 1px solid rgba(148, 163, 184, 0.09);
}

.section-muted {
  background: rgba(4, 11, 19, 0.3);
}

.section h2,
.legal-hero h1 {
  margin: 16px 0 20px;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
  line-height: 1.68;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.feature-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.027), rgba(255, 255, 255, 0.008));
}

.feature-card > span {
  color: var(--blue-light);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 34px 0 10px;
  font-size: 1.28rem;
}

.feature-card p {
  margin: 0;
  color: #91a2b7;
}

.pricing-heading {
  margin-inline: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 48px;
}

.plan-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(24px, 2.2vw, 32px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.02);
}

.plan-card.featured {
  border-color: rgba(96, 165, 250, 0.72);
  background:
    radial-gradient(circle at 50% 0, rgba(59, 130, 246, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(24, 69, 135, 0.46), rgba(12, 24, 42, 0.96));
  box-shadow: 0 28px 72px rgba(37, 99, 235, 0.17);
}

.plan-label {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.69rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-label-muted {
  background: rgba(59, 130, 246, 0.16);
  color: #bddaff;
}

.plan-card h3 {
  min-height: 2.5em;
  margin: 18px 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.22;
}

.plan-summary {
  min-height: 6.5em;
  margin: 0;
  color: #92a3b8;
  line-height: 1.5;
}

.price {
  display: flex;
  min-height: 76px;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0;
}

.price strong {
  font-size: clamp(2.55rem, 4.2vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.price span {
  color: #8799af;
  font-size: 0.92rem;
  font-weight: 620;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  color: #c7d2df;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: '✓';
  font-weight: 900;
}

.plan-note {
  margin: auto 0 16px;
  color: #9ec9ff;
  font-size: 0.78rem;
  font-weight: 740;
  line-height: 1.45;
  text-align: center;
}

.plan-button {
  width: 100%;
  min-height: 54px;
}

.pricing-disclaimer {
  max-width: 860px;
  margin: 24px auto 0;
  color: #718399;
  font-size: 0.82rem;
  text-align: center;
}

.roadmap-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0, rgba(59, 130, 246, 0.2), transparent 36%),
    linear-gradient(135deg, #101d31, #0a1422);
}

.roadmap-panel h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
}

.roadmap-panel p:not(.kicker) {
  color: #9bacc0;
  font-size: 1.08rem;
}

.roadmap-list {
  display: grid;
  gap: 12px;
}

.roadmap-list article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.roadmap-list strong,
.roadmap-list span {
  display: block;
}

.roadmap-list span {
  margin-top: 3px;
  color: #8fa0b5;
}

.contact-section {
  background: linear-gradient(180deg, rgba(5, 12, 21, 0.3), rgba(4, 10, 18, 0.74));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.7rem);
}

.contact-facts {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-facts p {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 16px 18px;
  border-left: 3px solid rgba(120, 184, 255, 0.7);
  background: rgba(255, 255, 255, 0.02);
}

.contact-facts span {
  color: var(--muted);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 20px;
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(20, 36, 58, 0.9), rgba(11, 24, 40, 0.95));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

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

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #dfe8f3;
  font-size: 0.88rem;
  font-weight: 740;
}

.form-field > input,
.form-field > select,
.form-field > textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 11px;
  background: #091523;
  color: #f4f7fb;
}

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

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

.form-field > input::placeholder,
.form-field > textarea::placeholder {
  color: #718399;
}

.form-field > :is(input, select, textarea):focus {
  border-color: var(--blue-light);
  outline: 2px solid rgba(120, 184, 255, 0.18);
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 11px !important;
  color: #aebdce !important;
  font-weight: 520 !important;
  line-height: 1.55;
}

.consent input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.consent a {
  color: #a9d1ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.captcha-wrap {
  min-height: 72px;
}

altcha-widget {
  display: block;
  width: 100%;
  max-width: 360px;
  --altcha-border-color: #40516a;
  --altcha-color-base: #0b1726;
  --altcha-color-base-content: #f4f7fb;
  --altcha-color-neutral: #40516a;
  --altcha-color-neutral-content: #dfe8f3;
  --altcha-color-primary: #3b82f6;
  --altcha-color-primary-content: #ffffff;
  --altcha-color-success: #2fa873;
  --altcha-color-success-content: #ffffff;
  --altcha-input-background-color: #091523;
  --altcha-max-width: 320px;
}

.form-actions {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 16px;
}

.form-actions .button {
  flex: 0 0 auto;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  margin: 0;
  color: #b8c6d6;
  font-size: 0.9rem;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #ff9dac;
}

.site-footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
  background: #03080f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.6fr) repeat(3, minmax(120px, 0.7fr));
  gap: 48px;
}

.footer-logo {
  display: block;
  width: min(340px, 100%);
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 14px 0 0;
  color: #8192a8;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 5px;
}

.footer-column a {
  color: #8fa0b5;
  font-size: 0.89rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: #65778e;
  font-size: 0.82rem;
}

.footer-bottom a:hover {
  color: #fff;
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  padding: clamp(72px, 9vw, 124px) 0 60px;
  text-align: center;
}

.legal-hero h1 {
  margin-inline: auto;
}

.legal-hero .lead {
  max-width: 720px;
  margin-inline: auto;
}

.legal-meta {
  margin: 20px 0 0;
  color: #7890aa;
  font-size: 0.84rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 clamp(90px, 10vw, 140px);
}

.legal-content section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 1.14rem;
}

.legal-content p,
.legal-content li {
  color: #aebdce;
  line-height: 1.75;
}

.legal-content a {
  color: #aad2ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-callout {
  padding: 20px 22px !important;
  border: 1px solid var(--line-strong) !important;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.07);
}

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

  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

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

  .plan-card h3,
  .plan-summary {
    min-height: 0;
  }
}

@media (max-width: 960px) {
  .product-app {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .product-sidebar {
    padding-inline: 14px;
  }

  .roadmap-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 42px;
  }

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

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 76px;
  }

  .shell {
    width: min(100% - 28px, 1440px);
  }

  .brand {
    width: min(222px, 58vw);
    min-width: 0;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

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

  .frame-bar {
    padding-inline: 14px;
    font-size: 0.61rem;
    letter-spacing: 0.08em;
  }

  .frame-spacer {
    display: none;
  }

  .product-app {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    display: none;
  }

  .product-main {
    padding: 18px 14px;
  }

  .product-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .metric-grid article {
    padding: 16px;
  }

  .evidence-row {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr) minmax(66px, 0.8fr);
    gap: 8px;
    padding: 13px 10px;
    font-size: 0.7rem;
  }

  .evidence-head {
    font-size: 0.58rem;
  }

  .illustration-note {
    text-align: left;
  }

  .feature-grid,
  .pricing-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .plan-card {
    padding: 24px;
  }

  .roadmap-panel {
    padding: 26px 20px;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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