:root {
  --background: #ffffff;
  --foreground: #020617;
  --card: #ffffff;
  --primary: #075985;
  --primary-hover: #0c4a6e;
  --primary-bright: #38bdf8;
  --secondary: #f1f5f9;
  --muted: #64748b;
  --muted-strong: #475569;
  --border: #e2e8f0;
  --ring: #0ea5e9;
  --success: #15803d;
  --danger: #b91c1c;
  --navy: #020617;
  --navy-card: #0f172a;
  --radius: 0.5rem;
  --radius-large: 1.25rem;
  --shell: 1180px;
  --shadow: 0 20px 60px -28px rgba(2, 6, 23, 0.42);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.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;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease-out;
}

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

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

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.88);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 0.65rem;
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 22px -10px rgba(56, 189, 248, 0.75);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand-mark circle {
  opacity: 0.28;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav > a:not(.button) {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease-out;
}

.site-nav > a:not(.button):hover {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius);
  background: transparent;
  color: #ffffff;
}

.nav-toggle svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease-out, border-color 180ms ease-out, transform 180ms ease-out, box-shadow 180ms ease-out;
}

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

.button svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 2.55rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.25);
  background: #ffffff;
  color: var(--navy);
}

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

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px -14px rgba(3, 105, 161, 0.9);
}

.button-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 18px 30px -16px rgba(3, 105, 161, 0.95);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--navy);
  color: #ffffff;
}

.hero::after {
  position: absolute;
  right: -18rem;
  bottom: -25rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 8rem rgba(14, 165, 233, 0.018), 0 0 0 16rem rgba(14, 165, 233, 0.014);
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 2.25rem;
  padding-block: 8.5rem 4.5rem;
}

.hero-copy {
  max-width: 590px;
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 58ch;
  margin: 1.75rem 0 0;
  color: #cbd5e1;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.text-link {
  color: #e0f2fe;
  font-size: 0.92rem;
  font-weight: 700;
  text-underline-offset: 0.3rem;
}

.availability {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.4rem;
  color: #94a3b8;
  font-size: 0.82rem;
}

.availability > span {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.12);
}

.availability p {
  margin: 0;
}

.availability strong {
  color: #e2e8f0;
}

.one-click-map {
  position: relative;
  width: 100%;
  min-height: 610px;
}

.map-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route {
  fill: none;
  stroke: rgba(56, 189, 248, 0.24);
  stroke-dasharray: 5 9;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.route-signal {
  fill: #7dd3fc;
  filter: drop-shadow(0 0 7px rgba(125, 211, 252, 0.9));
}

.map-node {
  position: absolute;
  z-index: 4;
  display: flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  color: #cbd5e1;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 14px 30px -18px rgba(2, 6, 23, 0.95);
  transition: color 180ms ease-out, border-color 180ms ease-out, background-color 180ms ease-out, transform 180ms ease-out;
}

.map-node:hover,
.map-node.is-active {
  border-color: rgba(125, 211, 252, 0.78);
  background: #0c4a6e;
  color: #ffffff;
  transform: translateY(-2px);
}

.map-node svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.node-contact { top: 12%; left: 2%; }
.node-flow { top: 10%; right: 0; }
.node-agenda { right: -1%; bottom: 18%; }
.node-history { bottom: 10%; left: 1%; }
.node-attendance { top: 2%; left: 50%; transform: translateX(-50%); }
.node-attendance:hover,
.node-attendance.is-active { transform: translateX(-50%) translateY(-2px); }

.conversation-window {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(100% - 11rem, 460px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1rem;
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 34px 80px -34px rgba(14, 165, 233, 0.48), 0 24px 55px -34px #000000;
  transform: translate(-50%, -46%);
}

.conversation-window::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(#cbd5e1 0.7px, transparent 0.7px);
  background-size: 14px 14px;
  content: "";
  opacity: 0.38;
}

.conversation-window header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.avatar {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #e0f2fe;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
}

.conversation-window header > span:nth-child(2) {
  display: grid;
  min-width: 0;
  line-height: 1.35;
}

.conversation-window header strong {
  font-size: 0.88rem;
}

.conversation-window header small {
  color: var(--muted);
  font-size: 0.7rem;
}

.online {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 700;
}

.online i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: currentColor;
}

.conversation-body {
  display: grid;
  min-height: 220px;
  align-content: center;
  gap: 0.75rem;
  padding: 1.35rem;
}

.message {
  width: fit-content;
  max-width: 80%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem 0.9rem 0.9rem 0.25rem;
  background: #ffffff;
  color: #334155;
  font-size: 0.82rem;
  box-shadow: 0 8px 20px -17px rgba(15, 23, 42, 0.8);
}

.message-team {
  justify-self: end;
  border-color: #bae6fd;
  border-radius: 0.9rem 0.9rem 0.25rem 0.9rem;
  background: #e0f2fe;
  color: #0c4a6e;
}

.conversation-window footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border);
  background: #f8fafc;
  color: var(--muted-strong);
  font-size: 0.68rem;
  font-weight: 600;
}

.one-click-label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
  font-weight: 800;
}

.one-click-label svg {
  width: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.context-section {
  padding: 7rem 0;
}

.context-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.section-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.section-heading h2,
.concept-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-heading p,
.concept-copy > p,
.contact-copy > p {
  max-width: 64ch;
  margin: 1.4rem 0 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.context-lines {
  border-top: 1px solid var(--border);
}

.context-lines article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--border);
}

.line-icon {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--primary);
}

.line-icon svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.context-lines h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.context-lines p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.context-lines article > strong {
  align-self: center;
  color: var(--primary);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: uppercase;
}

.concept-section {
  overflow: hidden;
  padding: 6rem 0;
  background: #f1f5f9;
}

.concept-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

.one-symbol {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
}

.one-symbol::before,
.one-symbol::after {
  position: absolute;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  content: "";
}

.one-symbol::before {
  width: 400px;
  height: 400px;
}

.one-symbol::after {
  width: 290px;
  height: 290px;
}

.one-symbol svg {
  position: relative;
  z-index: 2;
  width: 250px;
  fill: var(--primary);
}

.one-symbol circle {
  fill: #ffffff;
  stroke: #bae6fd;
  stroke-width: 4;
}

.one-symbol svg path:last-child {
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.concept-copy {
  max-width: 650px;
}

.concept-copy ul {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.concept-copy li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #334155;
  font-weight: 600;
}

.concept-copy li svg {
  width: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.contact-section {
  padding: 7rem 0;
  background: #e0f2fe;
}

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

.contact-copy {
  padding-top: 1.5rem;
}

.contact-copy a {
  color: var(--primary);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  color: #0c4a6e;
}

.contact-note > svg {
  width: 1.5rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-note span {
  display: grid;
}

.contact-note small {
  color: #475569;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(148, 163, 184, 0.52);
  border-radius: var(--radius-large);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label:not(.consent-field):not(.honeypot) {
  display: grid;
  gap: 0.42rem;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 400;
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out;
}

.contact-form input {
  min-height: 2.85rem;
  padding: 0 0.8rem;
}

.contact-form textarea {
  min-height: 8.5rem;
  padding: 0.7rem 0.8rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ring);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.16);
}

.contact-form [aria-invalid="true"] {
  border-color: var(--danger);
}

.captcha-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px 44px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f8fafc;
}

.captcha-block > div {
  display: grid;
  line-height: 1.35;
}

.captcha-block > div span,
.captcha-block > small {
  color: var(--muted);
  font-size: 0.75rem;
}

.captcha-block > div strong {
  margin-top: 0.2rem;
  color: var(--foreground);
  font-size: 0.88rem;
}

.captcha-block > label {
  display: block !important;
}

.captcha-block > small {
  grid-column: 1 / -1;
}

.icon-button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted-strong);
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--ring);
  color: var(--primary);
}

.icon-button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 0.82rem;
}

.consent-field input {
  width: 1rem;
  min-height: 1rem;
  margin-top: 0.16rem;
  flex: 0 0 auto;
  accent-color: var(--primary);
}

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

.form-footer {
  display: flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.form-status {
  margin: 0 auto 0 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 600;
}

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

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

.site-footer {
  padding: 2.25rem 0;
  background: var(--navy);
  color: #cbd5e1;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.brand-footer {
  color: #ffffff;
}

.footer-inner > p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.82rem;
}

.footer-inner > div {
  display: grid;
  justify-items: end;
  gap: 0.25rem;
  font-size: 0.78rem;
}

.footer-inner > div a {
  color: #e0f2fe;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-inner > div small {
  color: #94a3b8;
}

@media (max-width: 1050px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  }

  .one-click-map {
    transform: scale(0.92);
    transform-origin: center right;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
    background: #020617;
  }

  .site-nav.is-open {
    display: grid;
    gap: 0.25rem;
  }

  .site-nav > a:not(.button) {
    padding: 0.7rem 0;
  }

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

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 8.5rem;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .one-click-map {
    width: min(100%, 680px);
    margin-inline: auto;
    transform: none;
  }

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

  .section-heading {
    position: static;
    max-width: 700px;
  }

  .contact-copy {
    max-width: 680px;
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding-block: 7.6rem 4rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .one-click-map {
    display: grid;
    min-height: auto;
    grid-template-columns: repeat(5, minmax(100px, 1fr));
    gap: 0.6rem;
    margin-top: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0.25rem 1.5rem;
    scrollbar-width: thin;
  }

  .map-routes {
    display: none;
  }

  .map-node {
    position: static;
    min-width: 100px;
    justify-content: center;
    transform: none !important;
  }

  .conversation-window {
    position: relative;
    top: auto;
    left: auto;
    width: min(calc(100vw - 2.5rem), 500px);
    grid-column: 1 / -1;
    grid-row: 1;
    transform: none;
  }

  .conversation-body {
    min-height: 190px;
  }

  .context-section,
  .contact-section {
    padding: 5rem 0;
  }

  .concept-section {
    padding: 4.5rem 0;
  }

  .context-layout {
    gap: 2.5rem;
  }

  .context-lines article {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .context-lines article > strong {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .concept-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .one-symbol {
    min-height: 310px;
  }

  .one-symbol::before {
    width: 300px;
    height: 300px;
  }

  .one-symbol::after {
    width: 220px;
    height: 220px;
  }

  .one-symbol svg {
    width: 180px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .captcha-block {
    grid-template-columns: minmax(0, 1fr) 72px 44px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inner > div {
    justify-items: start;
  }
}

@media (max-width: 420px) {
  .conversation-window footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .captcha-block {
    grid-template-columns: 1fr 44px;
  }

  .captcha-block > div {
    grid-column: 1 / -1;
  }

  .captcha-block > label {
    grid-column: 1;
  }
}

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

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

  .route-signal {
    display: none;
  }
}
