:root {
  color-scheme: dark;
  --bg: #050b0b;
  --bg-soft: #0a1514;
  --ink: #f4efe5;
  --muted: #aab8b2;
  --dim: #6e7e78;
  --line: rgba(235, 246, 234, 0.14);
  --panel: rgba(7, 18, 17, 0.78);
  --panel-strong: rgba(8, 20, 19, 0.95);
  --cyan: #47d5c8;
  --green: #88d987;
  --amber: #f4b247;
  --red: #ff6f61;
  --steel: #8aa09b;
  --radius: 8px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
  --content: 1180px;
  --pad: clamp(18px, 4vw, 56px);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(71, 213, 200, 0.12), transparent 28rem),
    linear-gradient(180deg, #050b0b 0%, #0a1715 48%, #050b0b 100%);
  font-size: 16px;
  line-height: 1.55;
}

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

button {
  font: inherit;
  color: inherit;
}

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

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(190px, auto) 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px var(--pad);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(3, 8, 8, 0.9), rgba(3, 8, 8, 0.34));
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.topbar.is-scrolled {
  border-color: var(--line);
  background: rgba(3, 9, 9, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(71, 213, 200, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(71, 213, 200, 0.42) 0 17%, transparent 18%),
    conic-gradient(from 90deg, transparent 0 18%, var(--amber) 19% 25%, transparent 26% 100%),
    rgba(5, 18, 17, 0.84);
  box-shadow: 0 0 28px rgba(71, 213, 200, 0.22);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(244, 239, 229, 0.32);
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 26px);
  color: rgba(244, 239, 229, 0.82);
  font-size: 0.94rem;
}

.nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--amber);
  transition: transform 160ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.langbar {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.lang,
.menu-button,
.refresh {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 229, 0.06);
  cursor: pointer;
}

.lang {
  min-width: 34px;
  min-height: 34px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
}

.lang.is-active,
.lang:hover,
.lang:focus-visible {
  color: #07100f;
  border-color: rgba(244, 178, 71, 0.7);
  background: var(--amber);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 116px var(--pad) 52px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.96) contrast(1.04);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 8, 8, 0.94) 0%, rgba(3, 8, 8, 0.78) 33%, rgba(3, 8, 8, 0.16) 72%),
    linear-gradient(180deg, rgba(3, 8, 8, 0.28) 0%, transparent 42%, rgba(3, 8, 8, 0.9) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(244, 239, 229, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 229, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 74%);
}

.hero-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
  gap: clamp(30px, 5vw, 72px);
}

.hero-copy {
  min-width: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(136, 217, 135, 0.14);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6.4vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(244, 239, 229, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #07100f;
  background: linear-gradient(135deg, var(--amber), #ffdc86);
  box-shadow: 0 12px 34px rgba(244, 178, 71, 0.24);
}

.btn-secondary,
.btn-quiet {
  color: var(--ink);
  border-color: rgba(244, 239, 229, 0.22);
  background: rgba(244, 239, 229, 0.08);
}

.btn-quiet {
  background: rgba(6, 16, 15, 0.38);
}

.status-console {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(244, 239, 229, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(9, 22, 20, 0.86), rgba(8, 14, 14, 0.78)),
    repeating-linear-gradient(180deg, transparent 0 11px, rgba(244, 239, 229, 0.032) 12px 13px);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.status-console::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -150px;
  width: 320px;
  height: 320px;
  transform: translateX(-50%);
  border: 1px solid rgba(71, 213, 200, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(71, 213, 200, 0.035), 0 0 0 88px rgba(71, 213, 200, 0.025);
  pointer-events: none;
}

.console-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid rgba(244, 178, 71, 0.38);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(244, 178, 71, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.status-badge.is-online {
  color: var(--green);
  border-color: rgba(136, 217, 135, 0.4);
  background: rgba(136, 217, 135, 0.1);
}

.status-badge.is-offline {
  color: var(--red);
  border-color: rgba(255, 111, 97, 0.4);
  background: rgba(255, 111, 97, 0.1);
}

.refresh {
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--muted);
}

.status-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 0;
}

.status-grid div {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 239, 229, 0.12);
}

.status-grid .status-name-row {
  padding-top: 2px;
}

.status-name-row dd {
  color: var(--amber);
  font-size: 1.02rem;
}

.status-grid dt {
  color: var(--dim);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-grid dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-weight: 800;
}

.status-message {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quick-strip {
  width: min(calc(100% - var(--pad) * 2), var(--content));
  margin: -1px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 229, 0.06);
  backdrop-filter: blur(16px);
}

.fact {
  min-width: 0;
  min-height: 108px;
  padding: clamp(16px, 2.4vw, 26px);
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.section {
  padding: clamp(76px, 10vw, 128px) var(--pad);
  background: var(--bg);
}

.intro {
  background:
    radial-gradient(circle at 84% 26%, rgba(198, 103, 63, 0.13), transparent 24rem),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.rules {
  background:
    linear-gradient(rgba(5, 13, 12, 0.88), rgba(5, 13, 12, 0.96)),
    repeating-linear-gradient(135deg, rgba(244, 239, 229, 0.05) 0 1px, transparent 1px 24px);
}

.vanilla {
  background:
    radial-gradient(circle at 16% 16%, rgba(244, 178, 71, 0.11), transparent 22rem),
    linear-gradient(180deg, #081211, #0e1815);
}

.contacts {
  background:
    linear-gradient(rgba(5, 13, 12, 0.78), rgba(5, 13, 12, 0.96)),
    url("assets/hero-submarine.png") center 72% / cover fixed;
}

.section-head,
.guide-grid,
.role-layout,
.rules-grid,
.systems,
.admin-grid {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.section-head {
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-head h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.8vw, 4.6rem);
  line-height: 0.98;
}

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

.step-card,
.rule-card,
.system-panel,
.terminal,
.admin-card,
.role-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 229, 0.055);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.22);
}

.step-card,
.rule-card {
  min-height: 260px;
  padding: clamp(20px, 3vw, 30px);
}

.step-card span,
.rule-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--amber);
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

.step-card h3,
.rule-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.step-card p,
.rule-card p,
.system-panel li,
.admin-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.role-layout {
  display: grid;
  grid-template-columns: minmax(180px, 270px) minmax(0, 1fr);
  gap: 22px;
}

.role-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.role-tab {
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(244, 239, 229, 0.04);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.role-tab.is-active,
.role-tab:hover,
.role-tab:focus-visible {
  color: var(--ink);
  border-color: rgba(244, 178, 71, 0.48);
  background: rgba(244, 178, 71, 0.12);
}

.role-detail {
  min-height: 350px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.52fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  padding: clamp(22px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(71, 213, 200, 0.09), transparent 44%),
    linear-gradient(180deg, rgba(244, 239, 229, 0.08), rgba(244, 239, 229, 0.035));
}

.role-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(71, 213, 200, 0.38);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.role-detail h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.96;
}

.role-detail p {
  color: rgba(244, 239, 229, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.role-detail ul,
.system-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-detail li,
.system-panel li {
  padding-left: 18px;
  border-left: 2px solid var(--amber);
}

.systems {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(310px, 0.64fr);
  gap: 22px;
}

.system-panel,
.terminal {
  min-height: 330px;
  padding: clamp(20px, 4vw, 34px);
}

.system-panel h3 {
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.terminal {
  background: #030807;
}

.terminal-bar {
  display: flex;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 239, 229, 0.12);
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.terminal-bar span:nth-child(2) {
  background: var(--amber);
}

.terminal-bar span:nth-child(3) {
  background: var(--green);
}

.terminal ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  color: #9fe6dc;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.9rem;
  list-style: none;
}

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

.admin-card {
  min-height: 290px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(5, 12, 12, 0.78);
  backdrop-filter: blur(18px);
}

.admin-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(244, 178, 71, 0.4);
  border-radius: 999px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-card h3 {
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.admin-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(71, 213, 200, 0.32);
  border-radius: var(--radius);
  color: var(--cyan);
  font-weight: 900;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px var(--pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #040a09;
}

.footer p {
  margin: 0;
}

.text-link {
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: right;
}

.text-link b {
  color: var(--amber);
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

.toast {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(6, 16, 15, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

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

html[dir="rtl"] .nav a::after {
  transform-origin: right;
}

html[dir="rtl"] .role-tab {
  text-align: right;
}

html[dir="rtl"] .role-detail li,
html[dir="rtl"] .system-panel li {
  padding-right: 18px;
  padding-left: 0;
  border-right: 2px solid var(--amber);
  border-left: 0;
}

html[dir="rtl"] .text-link {
  text-align: left;
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: minmax(190px, auto) auto auto;
  }

  .menu-button {
    display: block;
    order: 3;
  }

  .langbar {
    order: 2;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--pad);
    right: var(--pad);
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(4, 12, 12, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    backdrop-filter: blur(18px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 12px;
  }
}

@media (max-width: 940px) {
  .hero-inner,
  .role-layout,
  .systems {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .quick-strip,
  .guide-grid,
  .rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .role-tab {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .topbar {
    grid-template-columns: 1fr auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand small {
    display: none;
  }

  .menu-button {
    position: absolute;
    top: 13px;
    right: var(--pad);
    z-index: 3;
  }

  html[dir="rtl"] .menu-button {
    right: auto;
    left: var(--pad);
  }

  .langbar {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  html[dir="rtl"] .langbar {
    justify-content: flex-end;
  }

  .hero {
    padding-top: 126px;
    padding-bottom: 38px;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 8, 8, 0.95) 0%, rgba(3, 8, 8, 0.7) 66%, rgba(3, 8, 8, 0.18) 100%),
      linear-gradient(180deg, rgba(3, 8, 8, 0.34) 0%, transparent 36%, rgba(3, 8, 8, 0.94) 100%);
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .lead {
    max-width: 35ch;
    margin-bottom: 24px;
    font-size: 1rem;
  }

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

  .status-console {
    padding: 18px;
  }

  .status-console::after {
    display: none;
  }

  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
  }

  .status-grid div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .quick-strip,
  .guide-grid,
  .rules-grid,
  .role-detail,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

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

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

  .text-link {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .status-grid,
  .role-list {
    grid-template-columns: 1fr;
  }

  .lang {
    min-width: 31px;
  }
}

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

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