:root {
  color-scheme: dark;
  --bg: #040713;
  --bg-2: #080d1c;
  --surface: #111827;
  --surface-2: #151d30;
  --surface-3: #202941;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(180, 197, 255, 0.28);
  --text: #f4f7ff;
  --muted: #bdc5d9;
  --soft: rgba(255, 255, 255, 0.06);
  --primary: #c9d7ff;
  --violet: #8b5cf6;
  --indigo: #4f46e5;
  --cyan: #6bdcff;
  --pink: #f05cb6;
  --green: #4edea3;
  --danger: #ffb4ab;
  --ink: #071022;
  --radius: 8px;
  --header-offset: 72px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(ellipse at 75% 5%, rgba(107, 220, 255, 0.12), transparent 36%),
    linear-gradient(180deg, #040713 0%, #080d1c 42%, #03050d 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 86%);
  opacity: 0.45;
}

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

button,
input,
textarea {
  font: inherit;
}

section {
  scroll-margin-top: calc(var(--header-offset) + 16px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: var(--header-offset);
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(4, 7, 19, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 0 30px rgba(107, 220, 255, 0.22);
}

.brand span {
  display: grid;
}

.brand strong {
  color: var(--text);
  font-size: 16px;
  line-height: 18px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 16px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
  scrollbar-width: none;
}

nav::-webkit-scrollbar {
  display: none;
}

nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

nav a:hover {
  color: var(--text);
  border-color: var(--cyan);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-offset) - 38px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 70px max(20px, calc((100vw - var(--max)) / 2)) 62px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(112deg, rgba(139, 92, 246, 0.2), transparent 34%),
    linear-gradient(202deg, rgba(107, 220, 255, 0.15), transparent 46%),
    linear-gradient(180deg, rgba(4, 7, 19, 0.72), rgba(3, 5, 13, 0.94));
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 7, 19, 0.94) 0%, rgba(4, 7, 19, 0.72) 40%, rgba(4, 7, 19, 0.16) 78%),
    repeating-linear-gradient(110deg, transparent 0 32px, rgba(255, 255, 255, 0.035) 33px, transparent 34px);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(201, 215, 255, 0.58), transparent);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(710px, 100%);
}

.hero-copy.reveal {
  opacity: 1;
  transform: none;
}

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

.hero h1,
.section h2,
.legal-document h1 {
  margin: 0;
  color: var(--text);
  font-size: 82px;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.section h2,
.legal-document h1 {
  font-size: 46px;
  line-height: 1.08;
}

.lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions,
.contact,
.feedback-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:disabled {
  cursor: progress;
  opacity: 0.62;
  transform: none;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.button.primary {
  background: linear-gradient(135deg, #f4f7ff, #c9d7ff);
  border-color: transparent;
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(201, 215, 255, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.055);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.052);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

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

.hero-scene canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 360ms ease;
}

.hero-scene.three-ready canvas {
  opacity: 1;
}

.static-hero {
  position: absolute;
  inset: 0;
  opacity: 0.95;
  transition: opacity 240ms ease;
}

.static-hero::before,
.static-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.static-hero::before {
  background:
    linear-gradient(108deg, transparent 0 18%, rgba(107, 220, 255, 0.12) 19%, transparent 20% 42%, rgba(240, 92, 182, 0.1) 43%, transparent 44%),
    repeating-linear-gradient(108deg, transparent 0 54px, rgba(107, 220, 255, 0.1) 55px, transparent 56px);
  opacity: 0.48;
}

.static-hero::after {
  background:
    radial-gradient(circle at 77% 52%, rgba(107, 220, 255, 0.16), transparent 20%),
    linear-gradient(180deg, transparent, rgba(4, 7, 19, 0.58));
  opacity: 0.72;
}

.hero-scene.three-ready .static-hero {
  opacity: 0;
  visibility: hidden;
}

.static-core {
  position: absolute;
  right: max(290px, calc((100vw - var(--max)) / 2 + 360px));
  top: 21%;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  color: var(--text);
  transform: rotate(-12deg);
  animation: corePulse 7s ease-in-out infinite;
}

.static-core::before,
.static-core::after,
.static-core span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(107, 220, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.static-core::after {
  inset: 22px;
  border-color: rgba(240, 92, 182, 0.38);
  transform: rotate(42deg);
}

.static-core span {
  inset: 44px;
  border-color: rgba(139, 92, 246, 0.48);
}

.static-core strong {
  position: relative;
  z-index: 1;
  font-size: 44px;
  text-shadow: 0 0 22px rgba(107, 220, 255, 0.6);
}

.static-phone {
  position: absolute;
  right: max(26px, calc((100vw - var(--max)) / 2 + 28px));
  bottom: -18px;
  width: 306px;
  height: 592px;
  transform: rotate(-9deg);
  animation: phoneDrift 8s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 13px;
  border: 1px solid rgba(201, 215, 255, 0.26);
  border-radius: 34px;
  background: linear-gradient(145deg, #050816, #172033 56%, #050816);
  box-shadow:
    0 0 44px rgba(139, 92, 246, 0.32),
    0 28px 76px rgba(0, 0, 0, 0.58);
}

.phone-speaker {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 76px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 46px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  background:
    linear-gradient(160deg, rgba(139, 92, 246, 0.28), rgba(6, 14, 32, 0.2) 32%),
    linear-gradient(180deg, #080b18, #111827);
}

.screen-top {
  display: flex;
  justify-content: space-between;
  color: var(--text);
  font-size: 13px;
}

.screen-card {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
}

.screen-card small {
  color: var(--cyan);
  font-weight: 850;
}

.screen-card p {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 850;
}

.screen-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.screen-row span,
.screen-card.mini {
  display: block;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.screen-row span:nth-child(2) {
  background: rgba(139, 92, 246, 0.22);
}

.screen-row span:nth-child(3) {
  background: rgba(107, 220, 255, 0.16);
}

.screen-card.mini {
  height: 180px;
}

.screen-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.screen-nav i {
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.screen-nav i:nth-child(2) {
  background: linear-gradient(90deg, var(--violet), var(--pink));
}

.static-panel {
  position: absolute;
  min-width: 132px;
  padding: 10px 12px;
  border: 1px solid rgba(107, 220, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(8, 13, 28, 0.68);
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 0 28px rgba(107, 220, 255, 0.14);
  animation: panelDrift 9s ease-in-out infinite;
}

@keyframes corePulse {
  0%,
  100% {
    transform: rotate(-12deg) scale(1);
  }
  50% {
    transform: rotate(-6deg) scale(1.05);
  }
}

@keyframes phoneDrift {
  0%,
  100% {
    transform: rotate(-9deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-7deg) translate3d(-8px, -10px, 0);
  }
}

@keyframes panelDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, -6px, 0);
  }
}

.panel-one {
  right: max(366px, calc((100vw - var(--max)) / 2 + 440px));
  top: 52%;
}

.panel-two {
  right: max(72px, calc((100vw - var(--max)) / 2 + 90px));
  top: 20%;
}

.panel-three {
  right: max(220px, calc((100vw - var(--max)) / 2 + 270px));
  bottom: 16%;
}

.section {
  position: relative;
  padding: 88px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 60%);
}

.section p,
.section li {
  color: var(--muted);
}

.section-intro {
  max-width: 720px;
}

.company-section,
.product,
.tau-section,
.security-section,
.news-section,
.auth-section,
.feedback,
.development-section,
.legal-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  align-items: start;
  gap: 44px;
}

.feature-grid,
.signal-grid,
.steps,
.security-list,
.legal-grid,
.legal-stack,
.news-panel,
.news-list,
.suggestions-inbox {
  display: grid;
  gap: 12px;
}

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

article,
.steps div,
.auth-form,
.feedback-form,
.news-form,
.session-panel,
.inbox-empty,
.legal-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.035)),
    rgba(17, 24, 39, 0.74);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

article h3,
.steps h3,
.legal-card h2,
.legal-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

article p,
.steps p,
.legal-card p {
  margin: 0;
}

.feature-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 16px;
  border-radius: 999px;
}

.feature-dot.violet {
  background: var(--violet);
}

.feature-dot.cyan {
  background: var(--cyan);
}

.feature-dot.pink {
  background: var(--pink);
}

.feature-dot.green {
  background: var(--green);
}

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

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--cyan);
  font-weight: 850;
}

.security-list {
  grid-template-columns: 1fr;
}

.legal-summary {
  align-items: center;
}

.legal-summary .button {
  justify-self: start;
}

.contact {
  justify-content: space-between;
}

.contact h2 {
  margin-bottom: 12px;
}

.feedback-form,
.auth-form,
.news-form,
.session-panel {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  max-width: 560px;
  margin-top: 0;
}

.auth-panel {
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.feedback-form label,
.news-form label,
.auth-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 800;
}

.feedback-form input,
.feedback-form textarea,
.news-form input,
.news-form textarea,
.auth-form input {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 7, 19, 0.84);
  color: var(--text);
  resize: vertical;
}

.feedback-form input:focus,
.feedback-form textarea:focus,
.news-form input:focus,
.news-form textarea:focus,
.auth-form input:focus {
  outline: 2px solid rgba(139, 92, 246, 0.48);
  border-color: transparent;
}

.feedback-form .button,
.auth-form .button,
.news-form .button,
.session-panel .button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

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

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

.news-actions {
  display: grid;
  gap: 10px;
  max-width: 270px;
  margin-top: 24px;
}

.news-meta,
.suggestion-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.news-type {
  color: var(--cyan);
  font-weight: 850;
  text-transform: uppercase;
}

.news-item h3 {
  margin: 0;
  font-size: 24px;
}

.news-message,
.suggestion-message {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.news-admin-actions {
  display: flex;
  justify-content: flex-end;
}

.news-admin-actions .button {
  min-height: 40px;
}

.inbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.inbox-toolbar span,
.suggestion-item strong {
  color: var(--text);
  font-weight: 850;
}

.inbox-empty {
  margin: 0;
}

.hidden-field {
  display: none;
}

.legal-page {
  background: #040713;
}

.legal-main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 92px;
}

.legal-document {
  display: grid;
  gap: 18px;
}

.legal-document header {
  display: grid;
  gap: 12px;
  max-width: 900px;
  padding-bottom: 20px;
}

.updated {
  margin: 0;
  color: var(--primary);
  font-weight: 800;
}

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

.legal-stack {
  grid-template-columns: 1fr;
  max-width: 940px;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-card li + li {
  margin-top: 6px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

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

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

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

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

  .hero-scene canvas {
    display: none;
  }

  .static-hero {
    opacity: 0.44;
  }
}

@media (max-width: 1100px) {
  .hero h1,
  .section h2,
  .legal-document h1 {
    font-size: 58px;
  }

  .section h2,
  .legal-document h1 {
    font-size: 38px;
  }

  .company-section,
  .product,
  .tau-section,
  .security-section,
  .news-section,
  .auth-section,
  .feedback,
  .development-section,
  .legal-summary {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .signal-grid,
  .steps,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .static-phone {
    right: -28px;
    opacity: 0.6;
  }

  .static-core {
    right: 250px;
    opacity: 0.72;
  }
}

@media (max-width: 820px) {
  :root {
    --header-offset: 102px;
  }

  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    min-height: var(--header-offset);
    padding: 10px 16px 8px;
  }

  nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
    white-space: nowrap;
    mask-image: linear-gradient(90deg, #000 0 calc(100% - 34px), transparent);
  }

  nav a {
    padding: 4px 0 7px;
  }

  .hero {
    min-height: calc(100svh - var(--header-offset));
    padding-top: 38px;
    padding-bottom: 44px;
  }

  .hero-scene canvas {
    display: none;
  }

  .hero-scene.three-ready .static-hero,
  .static-hero {
    opacity: 1;
    visibility: visible;
    contain: layout paint;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 7, 19, 0.94), rgba(4, 7, 19, 0.76) 50%, rgba(4, 7, 19, 0.52)),
      linear-gradient(90deg, rgba(4, 7, 19, 0.96), rgba(4, 7, 19, 0.64) 58%, rgba(4, 7, 19, 0.18)),
      repeating-linear-gradient(110deg, transparent 0 32px, rgba(255, 255, 255, 0.028) 33px, transparent 34px);
  }

  .static-hero::before {
    opacity: 0.34;
    background:
      repeating-linear-gradient(104deg, transparent 0 48px, rgba(107, 220, 255, 0.13) 49px, transparent 50px),
      linear-gradient(118deg, transparent 0 44%, rgba(139, 92, 246, 0.16) 45%, transparent 58%);
  }

  .static-hero::after {
    opacity: 0.76;
    background:
      radial-gradient(circle at 82% 46%, rgba(107, 220, 255, 0.2), transparent 26%),
      radial-gradient(circle at 78% 70%, rgba(240, 92, 182, 0.12), transparent 30%),
      linear-gradient(180deg, transparent 0 45%, rgba(4, 7, 19, 0.58) 72%, rgba(4, 7, 19, 0.88));
  }

  .hero-copy {
    width: calc(100vw - 40px);
    max-width: 560px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
  }

  .lead {
    width: 100%;
    max-width: 100%;
    font-size: 17px;
  }

  .hero-actions,
  .hero-proof {
    max-width: 100%;
  }

  .static-phone {
    right: -54px;
    bottom: 12px;
    width: 232px;
    height: 450px;
    opacity: 0.48;
    transform: rotate(-8deg);
    will-change: transform;
  }

  .static-core {
    right: 26px;
    top: auto;
    bottom: 204px;
    width: 132px;
    height: 132px;
    opacity: 0.44;
    will-change: transform;
  }

  .static-panel {
    opacity: 0.3;
    transform: scale(0.86);
  }

  .panel-one {
    right: 152px;
    top: 62%;
  }

  .panel-two {
    right: 18px;
    top: 19%;
  }

  .panel-three {
    right: 92px;
    bottom: 8%;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-offset: 100px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  nav {
    font-size: 13px;
  }

  .hero h1,
  .section h2,
  .legal-document h1 {
    font-size: 42px;
  }

  .section h2,
  .legal-document h1 {
    font-size: 30px;
  }

  .hero {
    align-items: start;
    padding-top: 30px;
  }

  .hero-proof span {
    min-height: 30px;
    font-size: 12px;
  }

  .hero-actions,
  .legal-actions,
  .contact {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .button,
  .legal-summary .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    flex: 0 1 auto;
    min-height: 46px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .static-phone {
    right: -70px;
    bottom: 6px;
    width: 214px;
    height: 414px;
    opacity: 0.44;
  }

  .static-core {
    right: -4px;
    bottom: 170px;
    width: 120px;
    height: 120px;
    opacity: 0.38;
  }

  .static-panel {
    opacity: 0.24;
    transform: scale(0.76);
  }

  .panel-one {
    right: 126px;
    top: 66%;
  }

  .panel-two {
    right: -8px;
    top: 16%;
  }

  .panel-three {
    display: none;
  }

  article,
  .steps div,
  .auth-form,
  .feedback-form,
  .news-form,
  .session-panel,
  .inbox-empty,
  .legal-card {
    padding: 15px;
  }

  .news-meta,
  .suggestion-meta,
  .inbox-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    width: min(100% - 32px, var(--max));
    padding-top: 42px;
  }
}
