:root {
  color-scheme: dark;
  --bg: #020711;
  --bg-2: #050b18;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --card-line: rgba(255, 255, 255, 0.13);
  --card-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.034));
  --card-surface-strong: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04));
  --shadow-card: 0 24px 80px rgba(0, 0, 0, 0.24);
  --shadow-card-hover: 0 28px 96px rgba(0, 0, 0, 0.34), 0 0 36px rgba(0, 170, 255, 0.1);
  --text: rgba(248, 251, 255, 0.96);
  --muted: rgba(220, 232, 255, 0.62);
  --dim: rgba(220, 232, 255, 0.42);
  --gold: #f8cc5e;
  --gold-2: #c9922e;
  --blue: #00aaff;
  --green: #41f39b;
  --red: #ff6f6f;
  --max: 1240px;
  --font-ui: "Inter", "Manrope", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --font-display: "Inter Tight", "Inter", "Manrope", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --tail-glow-blue: rgba(24, 144, 255, 0.28);
  --tail-glow-blue-soft: rgba(0, 88, 180, 0.14);
  --tail-glow-gold: rgba(216, 180, 90, 0.16);
  --tail-glow-gold-soft: rgba(255, 218, 130, 0.1);
  --tail-glow-min-opacity: 0.42;
  --tail-glow-max-opacity: 0.68;
  --tail-glow-opacity: 0.56;
  --tail-glow-hover-opacity: 0.7;
  --tail-glow-duration: 6.8s;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: auto;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% -4%, rgba(0, 170, 255, 0.2), transparent 28%),
    radial-gradient(circle at 80% 0, rgba(248, 204, 94, 0.14), transparent 28%),
    linear-gradient(180deg, #020711, #050b18 44%, #020711);
  color: var(--text);
  font-family: var(--font-ui);
  font-feature-settings:
    "liga" 1,
    "kern" 1,
    "calt" 1;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow-x: clip;
}

#top,
section[id] {
  scroll-margin-top: 88px;
}

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: rgba(248, 204, 94, 0.32);
  color: #fff;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.container.narrow {
  width: min(820px, calc(100% - 44px));
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 7, 18, 0.9);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(2, 7, 17, 0.94);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.header-inner {
  display: flex;
  width: min(var(--max), calc(100% - 44px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: auto;
}

.brand {
  display: flex;
  min-width: fit-content;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(0, 170, 255, 0.45))
    drop-shadow(0 0 8px rgba(248, 204, 94, 0.18));
}

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

.brand-text strong {
  color: #fff;
  font-size: 18px;
  font-weight: 860;
  letter-spacing: 0;
}

.brand-text span {
  background: linear-gradient(135deg, #fff, var(--gold) 50%, var(--gold-2));
  background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(218, 230, 255, 0.48);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 4px;
}

.nav-item,
.nav-link {
  position: relative;
  display: flex;
  height: 42px;
  align-items: center;
}

.nav-item > button,
.nav-link {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 13px;
  color: rgba(245, 248, 255, 0.72);
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
}

.nav-item:hover > button,
.nav-item:focus-within > button,
.nav-link:hover {
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
}

.nav-item i {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.75;
  transform: translateY(-1px) rotate(45deg);
  transform-origin: center;
}

.nav-item:hover i {
  transform: translateY(2px) rotate(225deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 390px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 170, 255, 0.12), transparent 32%),
    rgba(5, 10, 22, 0.965);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.46);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  visibility: hidden;
  backdrop-filter: blur(24px);
}

.dropdown::before {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-label {
  display: block;
  padding: 8px 10px 12px;
  color: rgba(245, 248, 255, 0.46);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dropdown-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.dropdown-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-1px);
}

.dropdown-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.17), rgba(248, 204, 94, 0.14));
  place-items: center;
}

.dropdown-icon::after {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 14px rgba(0, 170, 255, 0.45);
  content: "";
}

.dropdown-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.dropdown-card small {
  color: rgba(218, 230, 255, 0.52);
  font-size: 12px;
  line-height: 1.35;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  position: relative;
  z-index: 5;
}

.language-toggle {
  display: inline-flex;
  height: 38px;
  align-items: center;
  gap: 7px;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 2px;
  color: #f5e6c8;
  cursor: pointer;
  font-size: 13px;
  font-weight: 820;
  line-height: 1;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.language-toggle:hover,
.language-switcher.is-open .language-toggle {
  background: transparent;
  box-shadow: none;
}

.language-toggle i {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.72;
  transform: translateY(-1px) rotate(45deg);
  transform-origin: center;
  transition: transform 160ms ease;
}

.language-switcher.is-open .language-toggle i {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 246px;
  max-height: min(420px, calc(100vh - 120px));
  overflow: auto;
  border: 1px solid rgba(248, 204, 94, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 0, rgba(0, 170, 255, 0.12), transparent 12rem),
    rgba(5, 10, 18, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  visibility: hidden;
  backdrop-filter: blur(16px);
}

.language-switcher.is-open .language-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  display: grid;
  min-height: 40px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 11px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 10px;
  color: rgba(245, 248, 255, 0.78);
  cursor: pointer;
  text-align: left;
  transition:
    background 150ms ease,
    color 150ms ease;
}

.language-option:hover,
.language-option:focus-visible {
  outline: 0;
  background: rgba(248, 204, 94, 0.08);
  color: #d8b45a;
}

.language-option.is-active {
  color: #d8b45a;
  font-weight: 820;
}

.language-flag {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.22),
    0 5px 12px rgba(0, 0, 0, 0.18);
  line-height: 1;
  vertical-align: middle;
}

.language-toggle b {
  display: inline-flex;
  min-width: 18px;
  align-items: center;
  justify-content: center;
}

.language-option .language-flag {
  justify-self: center;
}

.flag-gb {
  background-image: url("assets/flags/gb.svg");
}

.flag-ru {
  background-image: url("assets/flags/ru.svg");
}

.flag-ua {
  background-image: url("assets/flags/ua.svg");
}

.flag-cz {
  background-image: url("assets/flags/cz.svg");
}

.flag-es {
  background-image: url("assets/flags/es.svg");
}

.flag-it {
  background-image: url("assets/flags/it.svg");
}

.flag-de {
  background-image: url("assets/flags/de.svg");
}

.flag-pt {
  background-image: url("assets/flags/pt.svg");
}

.flag-vi {
  background-image: url("assets/flags/vi.svg");
}

.flag-fr {
  background-image: url("assets/flags/fr.svg");
}

.language-label {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-code {
  color: rgba(220, 232, 255, 0.48);
  font-size: 11px;
  font-weight: 820;
}

.login-link {
  display: flex;
  height: 38px;
  align-items: center;
  padding: 0 8px;
  color: rgba(245, 248, 255, 0.72);
  font-size: 14px;
  font-weight: 760;
}

.login-link:hover {
  color: #fff;
}

.header-cta,
.gold-btn,
.glass-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 820;
  transition:
    filter 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.header-cta::before,
.gold-btn::before,
.glass-btn::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 44%);
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.header-cta,
.gold-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-2) 48%, #ffe08a);
  box-shadow:
    0 0 0 1px rgba(255, 224, 138, 0.28) inset,
    0 18px 52px rgba(248, 204, 94, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.22);
  color: #05070d;
}

.header-cta {
  height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.gold-btn,
.glass-btn {
  min-height: 52px;
  padding: 0 22px;
}

.glass-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(4, 9, 20, 0.52);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 16px 44px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.header-cta:hover,
.gold-btn:hover,
.glass-btn:hover {
  border-color: rgba(248, 204, 94, 0.28);
  filter: brightness(1.055);
  transform: translateY(-1px);
}

.header-cta:focus-visible,
.gold-btn:focus-visible,
.glass-btn:focus-visible,
.nav-link:focus-visible,
.language-toggle:focus-visible,
.mobile-menu-btn:focus-visible {
  outline: 2px solid rgba(248, 204, 94, 0.72);
  outline-offset: 3px;
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.mobile-menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  z-index: 999;
  visibility: hidden;
  overflow: auto;
  padding: 22px;
  background: rgba(2, 7, 17, 0.985);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 190ms ease,
    transform 190ms ease,
    visibility 190ms ease;
  backdrop-filter: blur(22px);
}

.mobile-drawer.is-open {
  display: block;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav {
  display: grid;
  max-width: 520px;
  gap: 10px;
  margin: auto;
}

.mobile-language-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(248, 204, 94, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px 14px;
}

.mobile-language-row > span {
  color: rgba(245, 248, 255, 0.58);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-language-row .language-menu {
  right: 0;
  left: auto;
  width: min(246px, calc(100vw - 56px));
}

.mobile-nav a {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 17px 16px;
  font-size: 18px;
  font-weight: 760;
}

.mobile-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-2) 48%, #ffe08a) !important;
  color: #05070d !important;
  text-align: center;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(800px, calc(100vh - 112px));
  background-color: #020711;
  background-image: url("assets/hero-whale-premium.png");
  background-image: image-set(
    url("assets/hero-whale-premium.webp") type("image/webp"),
    url("assets/hero-whale-premium.png") type("image/png")
  );
  background-position: center right;
  background-size: cover;
  contain: paint;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, 0.99), rgba(2, 7, 17, 0.82) 38%, rgba(2, 7, 17, 0.22) 68%, rgba(2, 7, 17, 0.46)),
    linear-gradient(180deg, rgba(2, 7, 17, 0.08), rgba(2, 7, 17, 0.38) 72%, rgba(2, 7, 17, 0.96));
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("assets/hero-tail-premium-glow-clean.png");
  background-position: inherit;
  background-repeat: no-repeat;
  background-size: inherit;
  content: "";
  filter: none;
  opacity: var(--tail-glow-opacity);
  transform: scale(0.998);
  transform-origin: 68% 48%;
  transition:
    opacity 650ms ease,
    transform 700ms var(--ease-soft);
  will-change: opacity, transform;
}

.hero:hover::after,
.hero:focus-within::after {
  opacity: var(--tail-glow-hover-opacity);
  transform: scale(1.002);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, 0.78), transparent 46%),
    radial-gradient(circle at 72% 38%, rgba(0, 170, 255, 0.13), transparent 32rem),
    radial-gradient(circle at 42% 66%, rgba(248, 204, 94, 0.09), transparent 28rem);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: min(800px, calc(100vh - 112px));
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.58fr);
  align-items: center;
  gap: 30px;
  padding: 72px 0 78px;
}

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

.live-pill,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 9px 12px;
  color: rgba(245, 248, 255, 0.72);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-pill i,
.terminal-top b::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 0 6px rgba(65, 243, 155, 0.1),
    0 0 18px rgba(65, 243, 155, 0.55);
  content: "";
}

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

h1,
h2,
h3,
.brand-text strong,
.price,
.hero-stats strong {
  font-family: var(--font-display);
}

h1 {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: clamp(44px, 6.4vw, 82px);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-copy p,
.section-head p,
.preview-card p,
.problem-grid p,
.feature-grid p,
.faq-list p,
.site-footer p,
.final-panel p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.hero-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 18px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.hero-stats article,
.terminal-card,
.preview-card,
.problem-grid article,
.feature-grid article,
.risk-panel,
.price-card,
.faq-list details,
.final-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-line);
  background: var(--card-surface);
  box-shadow: var(--shadow-card);
}

.hero-stats article::before,
.preview-card::before,
.problem-grid article::before,
.feature-grid article::before,
.risk-panel::before,
.price-card::before,
.faq-list details::before,
.final-panel::before,
.exchange-grid article::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 138, 0.38), rgba(0, 170, 255, 0.22), transparent);
  content: "";
  pointer-events: none;
}

.hero-stats article {
  border-radius: 8px;
  padding: 18px;
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 860;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(218, 230, 255, 0.52);
  font-size: 12px;
}

.handoff-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: -1px;
  background:
    linear-gradient(90deg, rgba(0, 170, 255, 0.08), transparent 18%, transparent 82%, rgba(248, 204, 94, 0.07)),
    linear-gradient(180deg, rgba(2, 7, 17, 0.9), rgba(5, 11, 24, 0.98));
}

.handoff-strip::before {
  position: absolute;
  inset: -42px 0 auto;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(2, 7, 17, 0.96));
  content: "";
  pointer-events: none;
}

.handoff-grid {
  display: grid;
  min-height: 132px;
  grid-template-columns: minmax(260px, 0.9fr) repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.handoff-intro,
.handoff-step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px;
}

.handoff-step {
  border-left: 1px solid rgba(255, 255, 255, 0.085);
}

.handoff-intro span {
  color: rgba(248, 204, 94, 0.78);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.handoff-intro strong {
  max-width: 360px;
  margin-top: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.12;
}

.handoff-step span {
  color: rgba(0, 170, 255, 0.8);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.handoff-step b {
  margin-top: 10px;
  color: rgba(248, 251, 255, 0.92);
  font-size: 15px;
  font-weight: 840;
}

.handoff-step p {
  max-width: 260px;
  margin: 8px 0 0;
  color: rgba(220, 232, 255, 0.58);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.5;
}

.terminal-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0, rgba(0, 170, 255, 0.18), transparent 32%),
    radial-gradient(circle at 86% 6%, rgba(248, 204, 94, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.052);
  padding: 22px;
  transform: translateY(72px);
}

.terminal-top,
.terminal-metrics,
.table-row,
.section-head.split,
.card-top,
.final-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.terminal-top strong {
  display: block;
  font-size: 18px;
}

.terminal-top span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.terminal-top b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(65, 243, 155, 0.16);
  border-radius: 999px;
  background: rgba(65, 243, 155, 0.08);
  padding: 8px 10px;
  color: #afffd7;
  font-size: 11px;
  font-weight: 820;
}

.terminal-metrics {
  margin-top: 20px;
}

.terminal-metrics article {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  padding: 14px;
}

.terminal-metrics span {
  display: block;
  color: rgba(218, 230, 255, 0.42);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.terminal-metrics strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
}

.spread-chart {
  display: flex;
  height: 134px;
  align-items: end;
  gap: 10px;
  border-radius: 8px;
  margin-top: 22px;
  background: rgba(0, 0, 0, 0.2);
  padding: 18px;
}

.spread-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #1ce8ff, var(--blue), rgba(248, 204, 94, 0.78));
  box-shadow: 0 0 22px rgba(0, 170, 255, 0.2);
}

.terminal-table {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.table-row {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 11px 12px;
  color: rgba(245, 248, 255, 0.78);
  font-size: 12px;
}

.table-row > * {
  flex: 1;
}

.table-head {
  color: rgba(218, 230, 255, 0.42);
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.table-row em {
  color: var(--green);
  font-style: normal;
  font-weight: 860;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-style: normal;
  font-weight: 820;
}

.badge.good {
  border: 1px solid rgba(65, 243, 155, 0.18);
  background: rgba(65, 243, 155, 0.1);
  color: #afffd7;
}

.badge.warn {
  border: 1px solid rgba(248, 204, 94, 0.2);
  background: rgba(248, 204, 94, 0.12);
  color: #ffe08a;
}

.badge.danger {
  border: 1px solid rgba(255, 111, 111, 0.2);
  background: rgba(255, 111, 111, 0.1);
  color: #ffc2c2;
}

.section {
  padding: 96px 0;
}

@supports (content-visibility: auto) {
  .section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 780px;
  }
}

.section-head {
  margin-bottom: 30px;
}

.section-head.center {
  display: grid;
  justify-items: center;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.final-panel h2 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 1;
}

.section-head p {
  max-width: 720px;
  margin: 16px 0 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 58px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 110px;
}

.problem-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.problem-grid article,
.feature-grid article {
  min-height: 214px;
  border-radius: 8px;
  padding: 24px;
}

.problem-grid strong,
.feature-grid b {
  color: var(--gold);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.problem-grid h3,
.feature-grid h3,
.preview-card h3,
.price-card h3 {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 820;
  line-height: 1.16;
}

.problem-grid p,
.feature-grid p,
.preview-card p {
  margin-bottom: 0;
}

.solution,
.risk,
.faq {
  background:
    radial-gradient(circle at 14% 0, rgba(0, 170, 255, 0.13), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.preview-card {
  border-radius: 8px;
  padding: 24px;
}

.preview-card.wide {
  grid-row: span 2;
}

.card-top span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.signal-strip span {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  padding: 12px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
}

.signal-strip b {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 18px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-left: 18px;
}

.timeline i {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 2px;
  width: 2px;
  background: linear-gradient(var(--blue), var(--gold));
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.risk-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 44px;
  align-items: center;
}

.risk-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  border-radius: 8px;
  padding: 26px;
}

.risk-score {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px solid rgba(248, 204, 94, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(248, 204, 94, 0.16), transparent 66%),
    rgba(0, 0, 0, 0.18);
  text-align: center;
}

.risk-score span,
.risk-score b {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.risk-score strong {
  color: var(--gold);
  font-size: 76px;
  font-weight: 860;
  line-height: 1;
}

.risk-list {
  display: grid;
  align-content: center;
  gap: 12px;
}

.risk-list p {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  margin: 0;
  background: rgba(0, 0, 0, 0.16);
  padding: 14px;
  color: var(--muted);
}

.arbitrage-types {
  text-align: center;
}

.type-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.type-cloud span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px 16px;
  color: #e7eef8;
  font-weight: 820;
}

.exchanges {
  background:
    radial-gradient(circle at 76% 10%, rgba(248, 204, 94, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.exchange-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.exchange-grid article {
  display: grid;
  position: relative;
  overflow: hidden;
  min-height: 178px;
  align-content: space-between;
  gap: 16px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card-surface);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.exchange-name {
  color: #fff;
  font-size: 24px;
  font-weight: 860;
}

.exchange-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.source-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.source-strip span {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  padding: 10px 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  --card-offset: 0px;
  position: relative;
  display: flex;
  min-height: 372px;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 8px;
  padding: 26px;
}

.price-card.featured {
  --card-offset: -10px;
  border-color: rgba(248, 204, 94, 0.38);
  transform: translateY(var(--card-offset));
}

.plan-badge {
  display: inline-flex;
  border: 1px solid rgba(248, 204, 94, 0.22);
  border-radius: 999px;
  background: rgba(248, 204, 94, 0.14);
  padding: 7px 10px;
  color: #ffe08a;
  font-size: 11px;
  font-weight: 820;
}

.price {
  margin: 20px 0 18px;
  color: #fff;
  font-size: 34px;
  font-weight: 860;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  width: 100%;
  flex: 1;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.price-card > .gold-btn,
.price-card > .glass-btn {
  width: 100%;
  margin-top: auto;
}

.price-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.price-card li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "/";
  font-weight: 820;
}

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

.faq-list details {
  border-radius: 8px;
  padding: 0 22px;
}

.faq-list summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 820;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  font-size: 24px;
  font-weight: 820;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-bottom: 22px;
}

.final-cta {
  padding: 68px 0 104px;
}

.final-panel {
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 16%, rgba(0, 170, 255, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(248, 204, 94, 0.14), rgba(255, 255, 255, 0.04));
  padding: 32px;
}

.final-panel img {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 170, 255, 0.38));
}

.final-panel h2 {
  max-width: 700px;
  font-size: clamp(30px, 4vw, 48px);
}

.final-panel p {
  max-width: 680px;
  margin: 14px 0 0;
}

.site-footer {
  border-top: 1px solid #1f2937;
  background: #0b0f14;
  padding: 120px 0 40px;
}

.footer-grid {
  display: grid;
  max-width: 1280px;
  grid-template-columns: minmax(300px, 1.55fr) repeat(3, minmax(120px, 1fr));
  gap: clamp(36px, 6vw, 92px);
}

.footer-brand-block {
  max-width: 320px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 170, 255, 0.28));
}

.footer-brand span {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-brand small {
  color: #9aa4b2;
  font-size: 13px;
  font-weight: 650;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer a {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  color: #9aa4b2;
  font-size: 13px;
  font-weight: 650;
  line-height: 28px;
  transition: color 180ms ease;
}

.footer-column a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  outline: none;
}

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

.site-footer p {
  margin: 18px 0 0;
  color: #9aa4b2;
  font-size: 13px;
  line-height: 1.65;
}

.footer-social-row {
  display: flex;
  max-width: 1280px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid rgba(31, 41, 55, 0.72);
}

.footer-social-row > span {
  color: #9aa4b2;
  font-size: 13px;
  font-weight: 650;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(154, 164, 178, 0.3);
  border-radius: 999px;
  color: #9aa4b2;
  line-height: 1;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  max-width: 1280px;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  color: #9aa4b2;
  font-size: 13px;
  font-weight: 650;
}

@keyframes cwHeroRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes cwTerminalFloat {
  from {
    opacity: 0;
    transform: translate3d(0, 96px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 72px, 0);
  }
}

@keyframes cwBarGrow {
  from {
    opacity: 0.35;
    transform: scaleY(0.18);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes cwLivePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 5px rgba(65, 243, 155, 0.08),
      0 0 14px rgba(65, 243, 155, 0.48);
  }

  50% {
    transform: scale(1.12);
    box-shadow:
      0 0 0 9px rgba(65, 243, 155, 0.03),
      0 0 24px rgba(65, 243, 155, 0.76);
  }
}

@keyframes tailGlowBreath {
  0%,
  100% {
    opacity: var(--tail-glow-min-opacity);
    transform: scale(0.997);
  }

  50% {
    opacity: var(--tail-glow-max-opacity);
    transform: scale(1.001);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero::after {
    animation: tailGlowBreath var(--tail-glow-duration) ease-in-out infinite;
  }

  .hero-copy > * {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    animation: cwHeroRise 900ms var(--ease-out) forwards;
  }

  .hero-copy > *:nth-child(2) {
    animation-delay: 80ms;
  }

  .hero-copy > *:nth-child(3) {
    animation-delay: 160ms;
  }

  .hero-copy > *:nth-child(4) {
    animation-delay: 240ms;
  }

  .hero-copy > *:nth-child(5) {
    animation-delay: 320ms;
  }

  .hero-stats article {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    animation: cwHeroRise 820ms var(--ease-out) forwards;
  }

  .hero-stats article:nth-child(1) {
    animation-delay: 420ms;
  }

  .hero-stats article:nth-child(2) {
    animation-delay: 500ms;
  }

  .hero-stats article:nth-child(3) {
    animation-delay: 580ms;
  }

  .hero .terminal-card {
    opacity: 0;
    animation: cwTerminalFloat 980ms var(--ease-soft) 300ms forwards;
  }

  .reveal {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition:
      opacity 760ms var(--ease-out),
      transform 760ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(var(--card-offset, 0px));
  }

  :is(
      .preview-card,
      .problem-grid article,
      .feature-grid article,
      .risk-panel,
      .risk-list p,
      .signal-strip span,
      .exchange-grid article,
      .price-card,
      .faq-list details,
      .final-panel,
      .hero-stats article
    ) {
    transition:
      transform 220ms var(--ease-out),
      border-color 220ms ease,
      box-shadow 220ms ease,
      background 220ms ease,
      filter 220ms ease;
  }

  :is(
      .preview-card,
      .problem-grid article,
      .feature-grid article,
      .risk-panel,
      .risk-list p,
      .signal-strip span,
      .exchange-grid article,
      .price-card,
      .faq-list details,
      .final-panel,
      .hero-stats article
    ):hover {
    border-color: rgba(248, 204, 94, 0.22);
    background: var(--card-surface-strong);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
  }

  .price-card.featured:hover,
  :is(
      .preview-card,
      .problem-grid article,
      .feature-grid article,
      .risk-panel,
      .risk-list p,
      .signal-strip span,
      .exchange-grid article,
      .price-card,
      .faq-list details,
      .final-panel,
      .hero-stats article
    ).reveal.is-visible:hover {
    transform: translateY(calc(var(--card-offset, 0px) - 3px));
  }

  .spread-chart span {
    transform-origin: bottom;
    animation: cwBarGrow 900ms var(--ease-out) both;
    animation-delay: calc(var(--bar-index, 0) * 52ms);
  }

  .live-pill i,
  .terminal-top b::before {
    animation: cwLivePulse 2.8s ease-in-out infinite;
  }
}

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

  .hero::after {
    animation: none !important;
    opacity: 0.52;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-grid,
  .handoff-grid,
  .split-layout,
  .risk-grid {
    grid-template-columns: 1fr;
  }

  .handoff-grid {
    padding: 8px 0;
  }

  .handoff-intro,
  .handoff-step {
    padding: 22px 0;
  }

  .handoff-step {
    border-top: 1px solid rgba(255, 255, 255, 0.085);
    border-left: 0;
  }

  .terminal-card {
    max-width: 720px;
  }

  .sticky-copy {
    position: static;
  }

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

  .pricing-grid {
    align-items: stretch;
  }

  .price-card.featured {
    --card-offset: 0px;
    transform: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 64px;
  }
}

@media (max-width: 760px) {
  .container,
  .container.narrow,
  .header-inner {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    height: 68px;
  }

  .mobile-drawer {
    inset-top: 68px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    --tail-glow-min-opacity: 0.38;
    --tail-glow-max-opacity: 0.58;
    --tail-glow-opacity: 0.5;
    --tail-glow-hover-opacity: 0.6;
    background-position: 58% center;
  }

  .hero-grid {
    min-height: min(760px, calc(100svh - 118px));
    align-content: center;
    gap: 28px;
    padding: 42px 0 54px;
  }

  .handoff-strip::before {
    height: 30px;
    inset-top: -30px;
  }

  .handoff-grid {
    min-height: 0;
  }

  .handoff-intro strong {
    max-width: 100%;
    font-size: 21px;
  }

  .handoff-step p {
    max-width: 100%;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy p,
  .section-head p,
  .preview-card p,
  .problem-grid p,
  .feature-grid p,
  .faq-list p,
  .site-footer p,
  .final-panel p {
    font-size: 16px;
  }

  .hero-stats,
  .preview-grid,
  .signal-strip,
  .feature-grid,
  .exchange-grid,
  .pricing-grid,
  .risk-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 82px 0 34px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-brand-block {
    max-width: 100%;
  }

  .terminal-metrics {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 26px;
  }

  .hero-stats article {
    padding: 12px;
  }

  .hero-stats strong {
    font-size: 20px;
  }

  .hero-stats span {
    font-size: 11px;
    line-height: 1.25;
  }

  .hero .terminal-card {
    display: none;
  }

  .terminal-top,
  .section-head.split,
  .final-panel,
  .footer-social-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-social-row {
    margin-top: 34px;
  }

  .table-head {
    display: none;
  }

  .table-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section {
    padding: 72px 0;
  }

  .preview-card.wide {
    grid-row: auto;
  }

  .final-panel {
    display: flex;
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    font-size: 15px;
  }

  h1 {
    font-size: 36px;
  }

  .gold-btn,
  .glass-btn {
    width: 100%;
  }
}
