@font-face {
  font-family: "Chakra Petch";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/chakra-500.woff2") format("woff2");
}

@font-face {
  font-family: "Chakra Petch";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/chakra-600.woff2") format("woff2");
}

@font-face {
  font-family: "Chakra Petch";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/chakra-700.woff2") format("woff2");
}

@font-face {
  font-family: "Chakra Petch";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/chakra-italic-600.woff2") format("woff2");
}

@font-face {
  font-family: "Chakra Petch";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/chakra-italic-700.woff2") format("woff2");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/sora-latin.woff2") format("woff2");
}

:root {
  --bg: #05060f;
  --text: #eef4ff;
  --muted: #9aafd0;
  --soft: #c5d4ee;
  --green: #3dff8a;
  --green-deep: #14c45c;
  --cyan: #7af7ff;
  --line: rgba(255, 255, 255, 0.08);
  --header: 72px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

::selection {
  background: var(--green);
  color: #04210f;
}

#stars,
.vignette {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#stars {
  z-index: 0;
}

.vignette {
  z-index: 0;
  background:
    radial-gradient(900px 520px at 88% -10%, rgba(150, 70, 255, 0.28), transparent 60%),
    radial-gradient(760px 480px at -8% 18%, rgba(40, 110, 255, 0.18), transparent 58%),
    radial-gradient(820px 460px at 70% 110%, rgba(40, 190, 255, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 18% 78%, rgba(0, 0, 0, 0.45));
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 20;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--green);
  color: #04210f;
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  height: var(--header);
  background: rgba(5, 6, 15, 0.45);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}

.header.is-scrolled {
  background: rgba(5, 6, 15, 0.82);
  border-bottom-color: var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(61, 255, 138, 0.45);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: "Chakra Petch", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-tick {
  color: var(--green);
  font-family: "Chakra Petch", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 12px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  text-decoration: none;
  color: var(--soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.nav-social {
  display: flex;
  gap: 8px;
  margin-left: 6px;
}

.icon-btn,
.nav-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}

.icon-btn:hover,
.nav-toggle:hover {
  border-color: rgba(61, 255, 138, 0.6);
  color: var(--green);
}

.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-toggle .show-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .show-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .show-close {
  display: block;
}

.icon {
  width: 22px;
  height: 22px;
  display: block;
  flex: none;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

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

.btn-primary {
  color: #04210f;
  background: linear-gradient(180deg, #d8ffe8 0%, #5dff9a 28%, #1ad86a 100%);
  box-shadow: 0 0 24px rgba(61, 255, 138, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-primary:hover {
  box-shadow: 0 0 32px rgba(61, 255, 138, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-ghost {
  color: var(--text);
  background: rgba(8, 16, 32, 0.45);
  border: 1px solid rgba(122, 247, 255, 0.35);
}

.btn-ghost:hover {
  border-color: rgba(122, 247, 255, 0.7);
  box-shadow: 0 0 22px rgba(62, 224, 255, 0.18);
}

.btn .short {
  display: none;
}

main {
  position: relative;
  z-index: 1;
  padding-top: var(--header);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header));
  display: flex;
  align-items: center;
  padding: 36px 0 56px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(61, 255, 138, 0.7);
  animation: ping 1.8s ease-out infinite;
}

h1,
h2,
h3 {
  font-family: "Chakra Petch", "Arial Narrow", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h1 {
  margin: 12px 0 0;
  font-size: clamp(42px, 5vw, 68px);
}

h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.wordmark {
  margin: 8px 0 16px;
  font-family: "Chakra Petch", "Arial Narrow", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(64px, 7.2vw, 108px);
  line-height: 0.84;
  letter-spacing: -0.045em;
  filter: drop-shadow(0 10px 22px rgba(20, 170, 90, 0.28));
}

.wordmark .cur {
  font-style: normal;
  font-size: 0.48em;
  color: var(--cyan);
  margin-right: 0.04em;
  vertical-align: 0.45em;
}

.wordmark .e,
.wordmark .slash {
  color: #f4f8ff;
}

.wordmark .pump {
  color: var(--green);
  background-image: linear-gradient(180deg, #ffffff 0%, #d7ffe8 16%, #3dff8a 52%, #12b85a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: #e7f0ff;
}

.support {
  margin: 10px 0 0;
  max-width: 42ch;
  color: var(--muted);
}

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

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}

.facts div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(8, 12, 22, 0.88);
  border: 1px solid var(--line);
}

.facts dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.facts dd {
  margin: 4px 0 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.hud {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
  color: #8ea0c4;
  font-family: "Chakra Petch", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.hud-track {
  position: relative;
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hud-fill {
  display: block;
  height: 100%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #3ee0ff, var(--green));
  animation: hud 1.7s ease-in-out infinite;
}

.visual {
  display: flex;
  justify-content: center;
}

.portal {
  position: relative;
  width: min(100%, 460px);
  padding: 4px;
  border-radius: 32px;
  animation: float 5.5s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(20, 60, 180, 0.28);
}

.portal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from var(--spin), #3dff8a, #3ee0ff, #b06bff, #3dff8a);
  animation: spin 7s linear infinite;
}

.portal::after {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: 46px;
  background: conic-gradient(from var(--spin), rgba(61, 255, 138, 0.7), transparent 38%, rgba(62, 224, 255, 0.7), transparent 72%);
  filter: blur(16px);
  animation: spin 7s linear infinite;
}

.portal img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 28px;
}

@property --spin {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.streaks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.streaks span {
  position: absolute;
  left: -30%;
  height: 2px;
  width: 24vw;
  background: linear-gradient(90deg, transparent, rgba(122, 247, 255, 0.1), #7af7ff, #3dff8a, transparent);
  opacity: 0.7;
  animation: streak 3.2s linear infinite;
}

.streaks span:nth-child(1) { top: 16%; }
.streaks span:nth-child(2) { top: 28%; width: 14vw; animation-duration: 4.1s; animation-delay: 0.4s; opacity: 0.4; }
.streaks span:nth-child(3) { top: 47%; width: 30vw; animation-duration: 2.6s; animation-delay: 0.8s; }
.streaks span:nth-child(4) { top: 63%; width: 16vw; animation-duration: 3.6s; animation-delay: 0.2s; opacity: 0.45; }
.streaks span:nth-child(5) { top: 76%; animation-duration: 2.9s; animation-delay: 1.1s; }
.streaks span:nth-child(6) { top: 88%; width: 12vw; animation-duration: 4.4s; animation-delay: 0.6s; opacity: 0.35; }

.horizon {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -48%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(40, 120, 255, 0.28), rgba(8, 16, 40, 0.05) 42%, transparent 70%);
  box-shadow: inset 0 18px 40px rgba(62, 224, 255, 0.16);
  pointer-events: none;
}

.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(61, 255, 138, 0.04);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  color: #d5e4f8;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee-group .tick {
  color: var(--green);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.sep {
  width: 6px;
  height: 6px;
  background: var(--green);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--green);
}

.section {
  position: relative;
  z-index: 1;
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 28px;
}

.sub {
  margin: 14px 0 0;
  max-width: 52ch;
  color: var(--soft);
  font-size: 17px;
}

.pillars {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.pillar {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px 18px;
  align-items: center;
  padding: 22px 4px;
  border-top: 1px solid var(--line);
}

.pillar:last-child {
  border-bottom: 1px solid var(--line);
}

.idx {
  font-family: "Chakra Petch", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 32px;
  color: rgba(122, 247, 255, 0.22);
  -webkit-text-stroke: 1px rgba(122, 247, 255, 0.75);
}

.pillar h3,
.step h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.pillar h3 .icon,
.step-ico {
  color: var(--green);
}

.pillar p,
.step p {
  margin: 0;
  color: var(--soft);
}

.step p a,
.fine a {
  color: var(--cyan);
  text-underline-offset: 3px;
}

.banner {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(122, 247, 255, 0.22);
  box-shadow: 0 24px 80px rgba(30, 70, 200, 0.22);
}

.banner img {
  display: block;
  width: 100%;
}

.buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: start;
}

.steps {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 22px;
}

.step-ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(61, 255, 138, 0.08);
  border: 1px solid rgba(61, 255, 138, 0.28);
}

.step-kicker {
  margin: 0 0 4px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.terminal {
  position: sticky;
  top: 96px;
  border-radius: 20px;
  background: rgba(6, 10, 22, 0.82);
  border: 1px solid rgba(62, 224, 255, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--line);
}

.dots {
  display: flex;
  gap: 6px;
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}

.dots i:nth-child(1) { background: #ff5f7a; }
.dots i:nth-child(2) { background: #ffd15c; }
.dots i:nth-child(3) { background: var(--green); }

.terminal dl {
  margin: 0;
  padding: 6px 16px 4px;
}

.terminal dl > div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.terminal dt {
  color: var(--muted);
  font-size: 13px;
  padding-top: 2px;
}

.terminal dd {
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.mint {
  display: block;
  font-family: "Cascadia Mono", "Segoe UI Mono", ui-monospace, monospace;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.45;
  color: #d8ffe8;
  word-break: break-all;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(61, 255, 138, 0.4);
  border-radius: 999px;
  background: transparent;
  color: #c8ffe0;
  cursor: pointer;
  font-size: 13px;
}

.copy-btn:hover,
.copy-btn.is-copied {
  background: rgba(61, 255, 138, 0.12);
  color: var(--green);
}

.terminal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.terminal-actions .btn {
  width: 100%;
}

.fine {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 124px;
  padding: 20px;
  border-radius: 20px;
  text-decoration: none;
  background: rgba(8, 12, 22, 0.9);
  border: 1px solid var(--line);
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.channel:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 255, 138, 0.45);
  box-shadow: 0 16px 40px rgba(20, 80, 180, 0.18);
}

.channel-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 16px;
  color: #04210f;
  background: linear-gradient(180deg, #e7fff2, var(--green));
}

.channel-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}

.channel-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.channel-title {
  font-family: "Chakra Petch", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.channel-copy {
  color: var(--muted);
  font-size: 14px;
}

.channel-arrow {
  margin-left: auto;
  color: var(--soft);
}

.close-wrap {
  padding-top: 10px;
}

.close-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 24px;
  background:
    radial-gradient(480px 160px at 0% 50%, rgba(61, 255, 138, 0.16), transparent 70%),
    radial-gradient(420px 160px at 100% 0%, rgba(62, 224, 255, 0.14), transparent 72%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(122, 247, 255, 0.2);
}

.close-inner p {
  margin: 12px 0 0;
  max-width: 46ch;
  color: var(--soft);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 8px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.domain {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: "Chakra Petch", sans-serif;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links a {
  color: var(--soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  color: #7f93b5;
  font-size: 13px;
}

@keyframes ping {
  70% { box-shadow: 0 0 0 8px rgba(61, 255, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 255, 138, 0); }
}

@keyframes hud {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(280%); }
}

@keyframes float {
  50% { transform: translateY(-10px); }
}

@keyframes spin {
  to { --spin: 360deg; }
}

@keyframes streak {
  to { transform: translateX(140vw); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 10px;
    right: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 16px;
    background: #0b1020;
    border: 1px solid rgba(122, 247, 255, 0.16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px;
  }

  .nav-social {
    margin: 4px 0 0;
    padding: 4px 8px 6px;
  }

  .header {
    position: fixed;
  }

  .hero-grid,
  .buy-grid,
  .channels,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .terminal {
    position: static;
  }

  .is-compact .long {
    display: none;
  }

  .is-compact .short {
    display: inline;
  }
}

@media (max-width: 900px) {
  .streaks {
    display: none;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(1120px, calc(100% - 28px));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 0;
    padding: 28px 0 40px;
  }

  .brand-name {
    font-size: 13px;
  }

  .wordmark {
    font-size: clamp(58px, 18vw, 84px);
  }

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

  .pillar {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .channel {
    align-items: flex-start;
  }

  .channel-title {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 12px;
  }

  .header-inner {
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
