:root {
  --bg: #050607;
  --bg-2: #0a0c10;
  --text: #d8d8d3;
  --text-strong: #d1d1cc;
  --muted: #989da8;
  --line: #d9dee82e;
  --line-strong: #d9dee852;
  --line-subtle: #d9dee81a;
  --line-faint: #d9dee814;
  --panel: #0c0e12c7;
  --panel-solid: #0d1015;
  --purple: #4b2376;
  --blue: #3b7cff;
  --telegram-button-bg: #54a9eb;
  --red: #ff2c5f;
  --alpha-clear: #00000000;
  --current-color: #f2f2ee;
  --logo-text: #d1d1cc;
  --button-text: #f2f2ee;
  --button-border: #4b2376b8;
  --header-bg-start: #050607eb;
  --header-bg-end: #05060700;
  --page-bg-overlay: #00000041;
  --mobile-menu-bg: #050607f5;
  --nav-text: #f2f2eed1;
  --button-bg-ghost: #080a0d66;
  --button-bg-ghost-strong: #080a0db8;
  --button-text-ghost: #f2f2eee0;
  --hero-orbit-border: #506ab447;
  --hero-orbit-start: #111522;
  --hero-orbit-mid: #07090f;
  --hero-orbit-end: #020307;
  --hero-orbit-shadow: #000000c7;
  --hero-statement: #f2f2eed6;
  --noise-dot: #ffffff47;
  --accent-dim: #3b7cff47;
  --accent-node-border: #4b23769e;
  --feature-glass-bg: #0c0e128c;
  --feature-glass-border: #d9dee826;
  --feature-glass-shine: #ffffff0a;
  --feature-glass-shadow: #00000040;
  --glass-inner-padding: 29px;
  --glass-item-padding: clamp(14px, 1.45vw, 20px);
  
  --font: "Outfit", system-ui, sans-serif;
  --brand-font: "BBH Hegarty", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--bg);
  background-image: linear-gradient(var(--page-bg-overlay), var(--page-bg-overlay)), url("assets/clear.png");
  background-position: center, center;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
  color: var(--text);
  font-family: var(--font);
  font-weight: 800;
  font-synthesis-weight: none;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  filter: blur(10px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

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

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.mobile-fixed-bg {
  display: none;
}

.site-noise {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(circle, var(--noise-dot) 0 1px, var(--alpha-clear) 1px);
  background-size: 150px 170px;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px clamp(18px, 3vw, 44px);
  background: linear-gradient(180deg, var(--header-bg-start), var(--header-bg-end));
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--logo-text);
  font-family: var(--brand-font);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 0.95;
}

.nav {
  position: fixed;
  top: 35px;
  left: 50%;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(4, 92px);
  align-items: center;
  justify-items: center;
  gap: clamp(12px, 2vw, 28px);
  transform: translate(-50%, -50%);
  color: var(--nav-text);
  font-size: 16px;
  font-weight: 650;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  line-height: 1;
}

.nav a[href="#faq"] {
  transform: translateY(1px);
}

.nav a,
.ghost-button,
.primary-button {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.nav a:hover {
  color: var(--text-strong);
}

.header-actions {
  position: absolute;
  top: 18px;
  right: clamp(18px, 3vw, 44px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .ghost-button {
  border-color: var(--feature-glass-border);
  background: linear-gradient(135deg, var(--feature-glass-shine), var(--feature-glass-bg));
  box-shadow: 0 18px 48px var(--feature-glass-shadow);
  backdrop-filter: blur(9px) saturate(150%);
}

.ghost-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 70px;
  padding: 0 24px;
  border: 1px solid var(--line);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.ghost-button {
  background: var(--button-bg-ghost);
  color: var(--button-text-ghost);
}

.primary-button {
  gap: 16px;
  border-color: var(--button-border);
  background: var(--purple);
  color: var(--button-text);
}

.telegram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 70px;
  padding: 0 24px;
  border: 1px solid #75d8ff91;
  background: var(--telegram-button-bg);
  color: #ffffff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.primary-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--current-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.ghost-button:hover,
.primary-button:hover,
.telegram-button:hover {
  transform: translateY(-2px);
}

.telegram-button:hover {
  border-color: #a3e8ff;
  background: #2aaeea;
}

.compact {
  min-height: 48px;
}

.menu-button {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: var(--current-color);
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-button span:first-child {
  transform: translate(-50%, calc(-50% - 8px));
}

.menu-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: var(--current-color);
  transform: translate(-50%, calc(-50% + 8px));
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.menu-open .menu-button span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.2);
}

body.menu-open .menu-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.section-shell {
  position: relative;
  padding-inline: clamp(18px, 7vw, 108px);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding-top: 110px;
  padding-bottom: 38px;
  overflow: hidden;
}

.hero::before {
  content: "";
  display: none;
  position: absolute;
  top: 12%;
  right: -18%;
  width: min(64vw, 880px);
  aspect-ratio: 1.38;
  border: 1px solid var(--hero-orbit-border);
  border-radius: 50%;
  background:
    linear-gradient(145deg, var(--hero-orbit-start) 0%, var(--hero-orbit-mid) 54%, var(--hero-orbit-end) 100%);
  box-shadow: inset 42px 18px 90px var(--hero-orbit-shadow);
}

.hero-lines {
  display: none;
}

.hero-lines span {
  position: absolute;
  right: -9%;
  width: 66vw;
  height: 1px;
  transform-origin: right center;
}

.line-red {
  top: 28%;
  background: linear-gradient(90deg, var(--alpha-clear), var(--red), var(--alpha-clear));
  transform: rotate(-18deg);
}

.line-blue {
  top: 60%;
  background: linear-gradient(90deg, var(--alpha-clear), var(--blue), var(--alpha-clear));
  transform: rotate(8deg);
}

.line-dim {
  top: 78%;
  background: linear-gradient(90deg, var(--alpha-clear), var(--accent-dim), var(--alpha-clear));
  transform: rotate(-4deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  align-items: end;
}

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

.logo-title {
  display: grid;
  justify-items: center;
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: var(--logo-text);
  font-family: var(--brand-font);
  font-size: clamp(74px, 12vw, 180px);
  font-weight: 800;
  line-height: 0.69; 
  letter-spacing: -5px;
  text-align: center;
}

.hero-statement {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--hero-statement);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.hero-actions .primary-button {
  min-width: 248px;
  min-height: 58px;
  font-size: 18px;
}

.assurance {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  font-variation-settings: "wght" 500;
}

.status-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1280px;
  margin-top: clamp(34px, 6vh, 74px);
  padding: var(--glass-inner-padding);
  border: 1px solid var(--feature-glass-border);
  border-radius: 70px;
  background: linear-gradient(135deg, var(--feature-glass-shine), var(--feature-glass-bg));
  box-shadow: 0 24px 80px var(--feature-glass-shadow);
  backdrop-filter: blur(9px) saturate(150%);
  overflow: hidden;
}

.status-rail article {
  min-width: 0;
  padding: var(--glass-item-padding);
  border: 0;
}

.status-rail article + article {
  padding-left: var(--glass-item-padding);
}

.status-rail article:last-child {
  border-right: 0;
}

.status-rail span,
.section-title span,
.client-copy span {
  display: block;
  color: var(--purple);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-rail strong {
  display: block;
  margin-top: 12px;
  color: var(--text-strong);
  font-size: 22px;
}

.status-rail p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  font-variation-settings: "wght" 500;
  line-height: 1.36;
}

.principles,
.pricing {
  padding-top: 86px;
  padding-bottom: 86px;
}

.section-title {
  display: grid;
  gap: 14px;
}

.section-title h2,
.client-copy h2,
.final-call h2 {
  max-width: 900px;
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.95;
}

.section-title h2 em {
  font-style: italic;
}

.principle-list {
  display: grid;
  gap: 4px;
  margin-top: 38px;
  padding: var(--glass-inner-padding);
  border: 1px solid var(--feature-glass-border);
  border-radius: 70px;
  background: linear-gradient(135deg, var(--feature-glass-shine), var(--feature-glass-bg));
  box-shadow: 0 24px 80px var(--feature-glass-shadow);
  backdrop-filter: blur(9px) saturate(150%);
  overflow: hidden;
}

.principle-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: baseline;
  padding: var(--glass-item-padding);
  border: 0;
}

.principle-list h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

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

.management-panel article {
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  gap: 30px;
  min-height: 250px;
  padding: clamp(22px, 3.5vw, 46px);
}

.management-panel article + article {
  border-left: 1px solid var(--feature-glass-border);
}

.management-label {
  display: block;
  margin-bottom: 18px;
  color: var(--purple);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.management-panel h3 {
  max-width: 440px;
  font-size: clamp(30px, 4vw, 54px);
}

.management-panel p {
  max-width: 430px;
  margin-top: 18px;
}

.management-panel .primary-button,
.management-panel .telegram-button {
  justify-self: start;
}

.client-copy p,
.plan-table p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: "wght" 500;
  line-height: 1.42;
}

.principle-list p {
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: "wght" 500;
  line-height: 1.42;
}

.clients {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
  padding-top: 80px;
  padding-bottom: 96px;
}

.client-copy > span {
  margin-bottom: 18px;
}

.client-copy p {
  max-width: 620px;
  margin-top: 20px;
}

.client-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  padding: var(--glass-inner-padding);
  border: 1px solid var(--feature-glass-border);
  border-radius: 70px;
  background: linear-gradient(135deg, var(--feature-glass-shine), var(--feature-glass-bg));
  box-shadow: 0 24px 80px var(--feature-glass-shadow);
  backdrop-filter: blur(9px) saturate(150%);
  overflow: hidden;
}

.client-card {
  display: grid;
  grid-template-columns: minmax(128px, 0.36fr) minmax(0, 1fr);
  gap: 12px clamp(14px, 2vw, 26px);
  align-items: start;
  min-height: 76px;
  padding: var(--glass-item-padding);
  border: 0;
  border-radius: 8px;
  background: var(--alpha-clear);
}

.client-brand-mark {
  grid-row: span 2;
  display: grid;
  justify-items: start;
  gap: 12px;
}

.client-brand-mark span {
  color: var(--text-strong);
  font-size: 28px;
  line-height: 1.08;
}

.client-logo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 16px 34px #0000004d;
}

.client-card strong {
  color: var(--text-strong);
  font-size: 20px;
  line-height: 1.25;
}

.client-card p {
  grid-column: 2;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  font-variation-settings: "wght" 500;
  line-height: 1.42;
}

.plan-table {
  display: grid;
  gap: 4px;
  margin-top: 38px;
  padding: var(--glass-inner-padding);
  border: 1px solid var(--feature-glass-border);
  border-radius: 70px;
  background: linear-gradient(135deg, var(--feature-glass-shine), var(--feature-glass-bg));
  box-shadow: 0 24px 80px var(--feature-glass-shadow);
  backdrop-filter: blur(9px) saturate(150%);
  overflow: hidden;
}

.plan-table article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 180px;
  gap: 24px;
  align-items: center;
  padding: var(--glass-item-padding);
  border: 0;
}

.plan-table article.selected {
  color: var(--text-strong);
}

.plan-table h3 {
  margin: 0 0 8px;
  color: var(--text-strong);
  font-size: 34px;
  line-height: 1;
}

.plan-table strong {
  color: var(--text-strong);
  font-size: 34px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(340px, 0.64fr);
  gap: clamp(30px, 7vw, 96px);
  padding-top: 70px;
  padding-bottom: 76px;
}

.final-call .primary-button {
  margin-top: 28px;
}

.brand-inline {
  font-family: var(--brand-font);
  font-weight: 800;
}

.faq-list {
  --faq-inline: clamp(28px, 4vw, 46px);
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.4vw, 28px) 0;
  border: 1px solid var(--feature-glass-border);
  border-radius: 70px;
  background: linear-gradient(135deg, var(--feature-glass-shine), var(--feature-glass-bg));
  box-shadow: 0 24px 80px var(--feature-glass-shadow);
  backdrop-filter: blur(9px) saturate(150%);
  overflow: hidden;
}

.faq-list details {
  border: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 20px var(--faq-inline);
  color: var(--text-strong);
  font-size: 20px;
  line-height: 1.22;
  list-style: none;
  outline: none;
}

.faq-list summary:focus-visible {
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.faq-list summary::-webkit-details-marker,
.faq-list summary::marker {
  display: none;
  content: "";
}

.faq-list summary::before {
  content: "";
  width: 0;
  height: 0;
  margin-top: 0.38em;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  opacity: 0.86;
  transition: transform 260ms ease;
}

.faq-list details[open] summary::before {
  transform: rotate(90deg);
}

.faq-answer {
  display: block;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    height 300ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height, opacity, transform;
}

.faq-answer > p {
  min-height: 0;
  padding: 0 var(--faq-inline) 22px calc(var(--faq-inline) + 28px);
}

.faq-list details[open] .faq-answer {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 7vw, 108px) 44px;
  color: var(--muted);
  font-weight: 500;
}

.site-footer p {
  margin: 0;
  font-weight: 400;
  font-family: var(--font);
}

@media (max-width: 1040px) {
  .hero-grid,
  .clients,
  .faq {
    grid-template-columns: 1fr;
  }

  .status-rail {
    grid-template-columns: 1fr;
  }

  .status-rail article,
  .status-rail article + article {
    padding: 18px;
    border-right: 0;
  }

  .status-rail article:last-child {
    border-bottom: 0;
  }

  .principle-list article,
  .client-card,
  .plan-table article {
    grid-template-columns: 1fr;
  }

  .management-panel {
    grid-template-columns: 1fr;
  }

  .management-panel article + article {
    border-left: 0;
    border-top: 1px solid var(--feature-glass-border);
  }

  .client-brand-mark {
    grid-row: auto;
  }

  .client-card p {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  body {
    background-image: none;
  }

  .mobile-fixed-bg {
    position: fixed;
    top: -240px;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: calc(var(--mobile-bg-height, 100vh) + 480px);
    min-height: calc(100lvh + 480px);
    z-index: 0;
    pointer-events: none;
    background-color: var(--bg);
    background-image: linear-gradient(var(--page-bg-overlay), var(--page-bg-overlay)), url("assets/clear.png");
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    transform: translateZ(0);
    will-change: transform;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header .nav,
  .site-header .header-actions {
    position: fixed;
    left: 18px;
    right: 18px;
    width: calc(100% - 36px);
    max-width: none;
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    border: 1px solid var(--line);
    background: var(--mobile-menu-bg);
    backdrop-filter: blur(16px);
    transform: translateY(-10px);
    transition:
      opacity 240ms ease,
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
  }

  .site-header .nav {
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    justify-items: stretch;
    gap: 0;
    grid-template-columns: 1fr;
    transform: translateY(-10px);
    padding: 10px;
    border-radius: 8px 8px 0 0;
  }

  .nav a {
    padding: 15px;
  }

  .header-actions {
    top: 272px;
    flex-direction: column;
    padding: 14px;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    transform: translateY(-18px);
  }

  .header-actions a {
    width: 100%;
  }

  body.menu-open .site-header .nav,
  body.menu-open .site-header .header-actions {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .menu-button {
    display: block;
  }

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

@media (max-width: 560px) {
  :root {
    --glass-inner-padding: 16px;
    --glass-item-padding: 14px;
  }

  body {
    min-width: 0;
    min-height: 100svh;
  }

  .site-header {
    padding-inline: 14px;
  }

  .site-header .nav,
  .site-header .header-actions {
    left: 14px;
    right: 14px;
    width: calc(100% - 28px);
  }

  .section-shell {
    padding-inline: 14px;
  }

  .logo-title {
    justify-self: center;
    justify-items: center;
    width: 100%;
    max-width: 360px;
    font-size: clamp(66px, 21.5vw, 86px);
    letter-spacing: 0;
    line-height: 0.7;
    transform: none;
  }

  .logo-title span {
    display: block;
    width: 100%;
    text-align: center;
  }

  .logo-title span:last-child {
    padding-left: 0;
  }

  .hero-statement {
    font-size: 20px;
    line-height: 1.16;
  }

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

  .status-rail,
  .principle-list,
  .client-board,
  .plan-table,
  .faq-list {
    border-radius: 28px;
  }

  .status-rail strong,
  .client-card strong {
    font-size: 20px;
  }

  .client-copy p,
  .principle-list p,
  .plan-table p,
  .faq-list p {
    font-size: 16px;
  }

  .section-title h2,
  .client-copy h2,
  .final-call h2 {
    font-size: 36px;
    line-height: 1;
  }

  .management-panel article {
    min-height: 0;
  }

  .management-panel article:first-child {
    order: 2;
    border-top: 1px solid var(--feature-glass-border);
  }

  .management-panel article + article {
    order: 1;
    border-top: 0;
  }

  .management-panel h3 {
    font-size: 30px;
  }

  .plan-table h3,
  .plan-table strong {
    font-size: 28px;
  }

  .faq-list {
    --faq-inline: 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .logo-title {
    font-size: 68px;
  }

  .logo-title span:last-child {
    padding-left: 0;
  }
}

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .faq-answer {
    height: auto;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-answer > p {
    overflow: visible;
  }
}
