:root {
  --bg-deep: #050c1f;
  --bg-mid: #0a1d46;
  --bg-light: #12326f;
  --text: #eff5ff;
  --muted: #9eb0d4;
  --line: rgba(150, 184, 245, 0.24);
  --card: rgba(10, 22, 51, 0.75);
  --card-strong: rgba(10, 21, 44, 0.92);
  --accent: #2d8dff;
  --accent-soft: #66b3ff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 12% 4%, rgba(72, 137, 255, 0.22), transparent 62%),
    radial-gradient(900px 600px at 88% 0%, rgba(45, 141, 255, 0.2), transparent 66%),
    linear-gradient(145deg, var(--bg-deep) 0%, var(--bg-mid) 48%, var(--bg-light) 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 500px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-one {
  top: -200px;
  left: -140px;
  background: rgba(76, 140, 255, 0.28);
  animation: floatOrb 16s ease-in-out infinite;
}

.orb-two {
  bottom: -220px;
  right: -140px;
  background: rgba(33, 114, 255, 0.25);
  animation: floatOrb 20s ease-in-out infinite reverse;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(146, 176, 236, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(146, 176, 236, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, #000 25%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(4, 10, 25, 0.88);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: visible;
}

.brand {
  position: relative;
  width: 54px;
  height: 40px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: visible;
}

.brand::after {
  content: "";
  position: absolute;
  left: 62%;
  top: 56%;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -50%);
}

.brand img {
  position: absolute;
  left: 62%;
  top: 56%;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -50%);
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(19, 95, 245, 0.48));
  pointer-events: none;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.top-nav a {
  text-decoration: none;
  color: #d2def4;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.top-nav a:hover {
  color: #fff;
  background: rgba(86, 135, 229, 0.2);
}

.top-nav a.nav-placeholder {
  opacity: 0.78;
  cursor: not-allowed;
}

.top-nav a.nav-placeholder:hover {
  color: #d2def4;
  background: transparent;
}

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

.btn {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 15px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(130deg, #2c8bff 0%, #1d6df0 100%);
  border-color: rgba(141, 190, 255, 0.45);
  box-shadow: 0 8px 18px rgba(29, 109, 240, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(154, 202, 255, 0.55), 0 0 32px rgba(45, 141, 255, 0.75);
}

.btn-ghost {
  background: rgba(9, 18, 40, 0.7);
  border-color: rgba(151, 184, 244, 0.35);
}

.btn-ghost:hover {
  background: rgba(18, 31, 64, 0.86);
  border-color: rgba(171, 199, 247, 0.55);
}

.btn-soft {
  background: rgba(12, 25, 54, 0.58);
  border: 1px solid rgba(142, 179, 244, 0.45);
}

.btn-soft:hover {
  background: rgba(16, 35, 72, 0.9);
  box-shadow: 0 0 0 1px rgba(165, 200, 255, 0.6), 0 0 24px rgba(56, 137, 255, 0.5);
}

.lang-switch {
  position: relative;
}

.lang-placeholder {
  border: 1px solid rgba(147, 182, 241, 0.32);
  border-radius: 10px;
  background: rgba(13, 26, 51, 0.82);
  color: #e6f0ff;
  padding: 9px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font: 700 13px/1.2 "Manrope", "Segoe UI", sans-serif;
  cursor: pointer;
  min-width: 152px;
}

.lang-placeholder .left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-placeholder .lang-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(-4px);
}

.lang-placeholder .flag {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 15px;
}

.lang-placeholder .flag img {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 170px;
  border-radius: 10px;
  border: 1px solid rgba(147, 182, 241, 0.32);
  background: rgba(8, 18, 38, 0.98);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
  padding: 6px;
  display: none;
}

.lang-switch.open .lang-menu {
  display: grid;
  gap: 4px;
}

.lang-menu button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #eaf2ff;
  text-align: left;
  font-weight: 700;
  padding: 8px 10px;
  cursor: pointer;
}

.lang-menu button:hover {
  background: rgba(47, 118, 225, 0.32);
}

.hero {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  animation: slideUp 0.7s ease both;
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(96, 176, 255, 0.42);
  background: linear-gradient(145deg, rgba(14, 40, 86, 0.68), rgba(15, 34, 72, 0.5));
  box-shadow: 0 0 0 1px rgba(74, 154, 255, 0.18), 0 0 20px rgba(45, 141, 255, 0.28);
  text-shadow: 0 0 12px rgba(98, 180, 255, 0.45);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 5.2vw, 3.55rem);
  line-height: 1.14;
  padding-bottom: 0.06em;
  max-width: 14ch;
  font-weight: 800;
  letter-spacing: -0.018em;
  color: #eaf2ff;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-copy h1 {
    background: linear-gradient(106deg, #f5f9ff 0%, #d9e8ff 30%, #b6ceff 62%, #86acff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 16px rgba(126, 168, 255, 0.12);
  }
}

.lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.6;
  max-width: 56ch;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-preview {
  position: relative;
  min-height: 0;
  display: flex;
  justify-content: center;
  pointer-events: auto;
  user-select: none;
}

.preview-card {
  position: relative;
  width: min(100%, 460px);
  border-radius: 24px;
  border: 1px solid rgba(124, 177, 255, 0.36);
  background:
    radial-gradient(420px 220px at 50% -20%, rgba(66, 145, 255, 0.2), transparent 70%),
    linear-gradient(160deg, rgba(7, 23, 58, 0.93), rgba(8, 31, 80, 0.9));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 24px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: profileFloat 7.2s ease-in-out infinite;
}

.showcase-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.showcase-avatar-wrap {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, rgba(20, 49, 102, 0.95), rgba(24, 86, 172, 0.88));
  box-shadow: 0 0 26px rgba(45, 141, 255, 0.45);
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 112px;
  position: relative;
}

.showcase-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.showcase-avatar-fallback {
  font-size: 2rem;
  font-weight: 800;
  color: #f6fbff;
}

.showcase-avatar-decoration {
  position: absolute;
  inset: -14%;
  width: 128%;
  height: 128%;
  object-fit: contain;
  transform: translateY(0);
  pointer-events: none;
  z-index: 2;
}

.showcase-name {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: #edf5ff;
}

.showcase-bio {
  margin: 0;
  color: #c8dcfb;
  line-height: 1.4;
  text-align: center;
  font-size: 1.03rem;
  max-width: 32ch;
}

.showcase-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  max-width: min(100%, 380px);
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 186, 255, 0.3);
  background: rgba(10, 25, 57, 0.74);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
}

.showcase-badge {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.showcase-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.showcase-discord-bindings {
  width: 100%;
  display: grid;
  gap: 10px;
}

.showcase-binding {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(133, 190, 255, 0.34);
  background: rgba(14, 32, 68, 0.78);
  padding: 10px;
}

.showcase-binding-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(36, 108, 224, 0.62), rgba(73, 169, 255, 0.56));
  flex: 0 0 40px;
  overflow: visible;
}

.showcase-binding-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.showcase-binding-icon.has-avatar {
  background: transparent;
}

.showcase-binding-avatar-shell {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: inline-flex;
}

.showcase-binding-icon img.is-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: none;
  display: block;
}

.showcase-binding-avatar-decoration {
  position: absolute;
  inset: -16%;
  width: 132%;
  height: 132%;
  object-fit: contain;
  transform: translateY(6%);
  pointer-events: none;
  z-index: 2;
}

.showcase-binding-meta {
  min-width: 0;
  display: grid;
  gap: 2px;
  text-align: left;
}

.showcase-binding-meta strong {
  color: #eef6ff;
  font-size: 0.92rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase-binding-meta span {
  color: #a8c3ea;
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase-server-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(124, 180, 255, 0.38);
  background: rgba(9, 25, 58, 0.9);
  color: #e4f0ff;
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 40px;
}

.showcase-server-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-binding-server .showcase-binding-meta span {
  font-size: 0.79rem;
}

.showcase-join-btn {
  margin-left: auto;
  min-width: 54px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(129, 189, 255, 0.45);
  background: rgba(18, 47, 96, 0.86);
  color: #e6f1ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.preview-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  width: 100%;
}

.preview-social-chip {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(127, 185, 255, 0.34);
  background: linear-gradient(150deg, rgba(17, 44, 92, 0.88), rgba(24, 88, 176, 0.8));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 16px rgba(47, 130, 243, 0.3);
}

.preview-social-chip img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1) saturate(0.95);
}

.showcase-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.showcase-link-chip {
  border-radius: 999px;
  border: 1px solid rgba(128, 186, 255, 0.3);
  background: rgba(11, 29, 66, 0.75);
  color: #d8eaff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 11px;
}

.showcase-meta {
  margin-top: 2px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #c2d9fb;
  font-size: 0.92rem;
  font-weight: 700;
}

.showcase-meta .separator {
  opacity: 0.64;
}

.showcase-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.showcase-meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.9;
}

.discord-state {
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #95abc7;
  box-shadow: 0 0 12px rgba(149, 171, 199, 0.55);
  flex: 0 0 10px;
}

.discord-state.on {
  background: #56e08f;
  box-shadow: 0 0 16px rgba(86, 224, 143, 0.85);
}

@keyframes profileFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

section {
  margin-top: 58px;
}

.section-title-wrap h2,
.about-block h2,
.cta-strip h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.2;
}

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

.feature-card {
  border-radius: 16px;
  border: 1px solid rgba(145, 177, 244, 0.24);
  background: var(--card);
  padding: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 10px 0 0;
  color: #b4c3e2;
  line-height: 1.58;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 185, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(139, 191, 255, 0.56), 0 0 34px rgba(45, 141, 255, 0.72);
}

.image-host-landing {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card-strong);
  padding: 22px;
  display: grid;
}

.image-host-copy {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  grid-template-areas:
    "kicker body"
    "title body"
    "title body";
  column-gap: 28px;
  row-gap: 2px;
  align-items: start;
  text-align: left;
}

.image-host-copy .kicker {
  grid-area: kicker;
  align-self: end;
  justify-self: start;
  width: max-content;
}

.image-host-copy h2 {
  grid-area: title;
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
  line-height: 1.18;
}

.image-host-list {
  grid-area: body;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 68ch;
}

.image-host-list li {
  position: relative;
  padding-left: 18px;
  color: #bfd4f2;
  line-height: 1.6;
}

.image-host-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  left: 0;
  top: 10px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(45, 141, 255, 0.8);
}

.about-block {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card-strong);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-list li {
  position: relative;
  padding-left: 18px;
  color: #bfd0ef;
  line-height: 1.55;
}

.about-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  left: 0;
  top: 10px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(45, 141, 255, 0.8);
}

.cta-strip {
  border-radius: 16px;
  border: 1px solid rgba(147, 182, 241, 0.32);
  background: linear-gradient(145deg, rgba(9, 20, 44, 0.92), rgba(15, 41, 86, 0.86));
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-footer {
  margin-top: 56px;
  margin-bottom: 26px;
  padding: 14px 0 4px;
  border-top: 1px solid rgba(137, 173, 239, 0.22);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
}

.copyright {
  margin: 0;
  color: #b4c2df;
  font-size: 0.93rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  margin-left: auto;
  white-space: nowrap;
  justify-content: flex-end;
  flex: 0 0 auto;
  overflow: visible;
}

.footer-links a {
  text-decoration: none;
  color: #e9f1ff;
  border: 1px solid rgba(148, 180, 244, 0.38);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  border-color: rgba(138, 190, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(146, 196, 255, 0.58), 0 0 24px rgba(45, 141, 255, 0.56);
  transform: translateY(-1px);
}

.footer-links .lang-switch {
  position: relative;
  flex: 0 0 auto;
}

.footer-links .lang-placeholder {
  min-width: 0;
  border-radius: 999px;
  border-color: rgba(148, 180, 244, 0.38);
  background: rgba(16, 40, 88, 0.45);
  padding: 6px 10px;
  font: 700 0.83rem/1.15 "Manrope", "Segoe UI", sans-serif;
  color: #e9f1ff;
  white-space: nowrap;
}

.footer-links .lang-placeholder:hover {
  border-color: rgba(138, 190, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(146, 196, 255, 0.58), 0 0 24px rgba(45, 141, 255, 0.56);
}

.footer-links .lang-menu {
  top: auto;
  bottom: calc(100% + 8px);
  right: 0;
  z-index: 30;
}

@media (max-width: 1220px) {
  .site-footer {
    gap: 8px;
  }

  .copyright {
    font-size: 0.88rem;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-links a,
  .footer-links .lang-placeholder {
    padding: 6px 9px;
    font-size: 0.8rem;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(24px, 18px, 0);
  }
}

@media (max-width: 1020px) {
  .site-header {
    flex-wrap: wrap;
  }

  .top-nav {
    order: 3;
    width: 100%;
    margin: 0;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    justify-content: flex-start;
  }

  .preview-card {
    width: 100%;
    animation: none;
  }

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

  .brand::after {
    width: 92px;
    height: 92px;
    left: 62%;
    top: 56%;
  }

  .brand img {
    width: 92px;
    height: 92px;
    left: 62%;
    top: 56%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1180px, calc(100% - 22px));
  }

  .site-header {
    align-items: stretch;
  }

  .brand {
    align-self: flex-start;
  }

  .header-actions {
    order: 2;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 6px;
    row-gap: 0;
  }

  .top-nav {
    order: 3;
  }

  .btn {
    flex: 1 1 calc(50% - 3px);
    min-width: 0;
    padding: 7px 8px;
    font-size: 0.76rem;
    border-radius: 8px;
    min-height: 34px;
    white-space: nowrap;
  }

  .header-actions .btn-ghost {
    min-width: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .about-block {
    grid-template-columns: 1fr;
  }

  .image-host-landing {
    padding: 18px;
  }

  .image-host-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "body";
    gap: 10px;
  }

  .image-host-copy .kicker,
  .image-host-copy h2,
  .image-host-list {
    grid-column: 1;
    grid-row: auto;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .copyright {
    white-space: normal;
  }

  .footer-links {
    margin-left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    justify-content: stretch;
  }

  .footer-links .lang-switch,
  .footer-links a {
    width: 100%;
  }

  .footer-links a,
  .footer-links .lang-placeholder {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    padding: 9px 12px;
  }

  .footer-links .lang-placeholder .left {
    justify-content: center;
  }

  .footer-links .lang-menu {
    left: 0;
    right: auto;
    width: 100%;
  }

  .preview-card {
    padding: 14px;
  }

  .showcase-avatar-wrap {
    width: 92px;
    height: 92px;
    flex-basis: 92px;
  }

  .showcase-name {
    font-size: 1.72rem;
  }

  .preview-social-chip {
    width: 38px;
    height: 38px;
  }

  .showcase-binding {
    padding: 9px;
  }

  .showcase-link-chip {
    font-size: 0.78rem;
    padding: 6px 10px;
  }

}
