@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --bg-0: #05070f;
  --bg-1: #0a1222;
  --panel: rgba(13, 21, 38, 0.9);
  --panel-strong: rgba(10, 17, 32, 0.95);
  --card: rgba(17, 27, 49, 0.9);
  --line: rgba(108, 147, 218, 0.28);
  --line-strong: rgba(120, 194, 255, 0.5);
  --text: #f2f7ff;
  --muted: #98a8ca;
  --accent-cyan: #2ad3ff;
  --accent-green: #6dff8d;
  --accent-gold: #ffc74f;
  --accent-red: #ff5d7c;
  --shadow: 0 24px 52px rgba(1, 4, 10, 0.55);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: var(--text);
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% -4%, rgba(42, 211, 255, 0.19) 0%, transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(109, 255, 141, 0.14) 0%, transparent 26%),
    radial-gradient(circle at 50% 102%, rgba(255, 199, 79, 0.14) 0%, transparent 34%),
    linear-gradient(160deg, var(--bg-0), var(--bg-1));
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0) 23px,
      rgba(255, 255, 255, 0.015) 24px,
      rgba(255, 255, 255, 0) 25px
    );
  opacity: 0.35;
}

body::after {
  background: radial-gradient(circle at 50% 50%, rgba(8, 17, 34, 0) 0%, rgba(4, 6, 12, 0.55) 100%);
}

a {
  color: inherit;
}

.page {
  width: min(1160px, 94vw);
  margin: 0 auto;
  padding: 26px 0 62px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes emblem-pulse {
  0% {
    opacity: 0.26;
    transform: translateY(3px) scale(0.94);
  }

  50% {
    opacity: 0.72;
    transform: translateY(3px) scale(1.05);
  }

  100% {
    opacity: 0.26;
    transform: translateY(3px) scale(0.94);
  }
}

@keyframes brand-spectrum {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.page > * {
  opacity: 0;
  animation: rise-in 460ms ease forwards;
}

.page > *:nth-child(1) {
  animation-delay: 20ms;
}

.page > *:nth-child(2) {
  animation-delay: 70ms;
}

.page > *:nth-child(3) {
  animation-delay: 120ms;
}

.page > *:nth-child(4) {
  animation-delay: 170ms;
}

.page > *:nth-child(5) {
  animation-delay: 220ms;
}

.page > *:nth-child(6) {
  animation-delay: 270ms;
}

.page > *:nth-child(7) {
  animation-delay: 320ms;
}

.page > *:nth-child(8) {
  animation-delay: 370ms;
}

.page > *:nth-child(9) {
  animation-delay: 420ms;
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(8, 15, 28, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

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

.brand-emblem-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.brand-emblem-mask {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.brand-emblem-wrap::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(42, 211, 255, 0.38), rgba(42, 211, 255, 0.03) 68%, rgba(42, 211, 255, 0) 100%);
  pointer-events: none;
  transform-origin: center;
  animation: emblem-pulse 3.5s ease-in-out infinite;
}

.brand-emblem {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  transform: translateY(4px) scale(1.06);
  transform-origin: center;
}

.brand-text {
  min-width: 0;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  box-shadow: 0 0 16px rgba(109, 255, 141, 0.65);
}

.brand-title {
  margin: 0;
  font-family: "Orbitron", "Sora", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #edf6ff;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .brand-title {
    background:
      linear-gradient(
        120deg,
        #ffd87a 0%,
        #95ffc1 24%,
        #7ad9ff 48%,
        #bea8ff 72%,
        #ffd87a 100%
      );
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brand-spectrum 9s linear infinite;
  }
}

.brand-sub {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(118, 158, 225, 0.28);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(12, 20, 39, 0.9), rgba(14, 24, 45, 0.86));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.nav a {
  text-decoration: none;
  color: #c8d9f4;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  background: transparent;
  transition: transform 140ms ease, border-color 140ms ease, color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  border-color: rgba(104, 198, 255, 0.62);
  background: rgba(42, 211, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(184, 230, 255, 0.16);
  transform: translateY(-1px);
  outline: none;
}

.hero {
  margin-top: 22px;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 2px);
  padding: 28px;
  background:
    linear-gradient(130deg, rgba(8, 16, 31, 0.95) 0%, rgba(12, 21, 40, 0.95) 52%, rgba(18, 14, 38, 0.95) 100%),
    linear-gradient(45deg, rgba(42, 211, 255, 0.08), rgba(109, 255, 141, 0.08));
  box-shadow: var(--shadow);
}

.home-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 360px;
  background: transparent;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(4, 9, 18, 0.9) 0%, rgba(6, 11, 22, 0.84) 46%, rgba(7, 12, 23, 0.72) 100%),
    linear-gradient(45deg, rgba(42, 211, 255, 0.06), rgba(109, 255, 141, 0.05)),
    url("img/ggg.jpeg") center / cover no-repeat;
}

.home-hero::after {
  content: "";
  position: absolute;
  top: -66px;
  right: -44px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  z-index: 0;
  background: radial-gradient(circle, rgba(42, 211, 255, 0.2) 0%, rgba(42, 211, 255, 0.05) 45%, rgba(0, 0, 0, 0) 74%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.62);
}

.kicker {
  margin: 0;
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Orbitron", "Sora", sans-serif;
  line-height: 1.12;
}

h1 {
  margin-top: 10px;
  font-size: clamp(2rem, 5vw, 3.3rem);
  letter-spacing: 0.01em;
}

.lead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 68ch;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-subrow {
  margin: 10px 0 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #c3d4f2;
  font-size: 0.86rem;
}

.cta-subrow a {
  color: #d6e6ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(145, 194, 255, 0.42);
}

.cta-subrow a:hover,
.cta-subrow a:focus-visible {
  color: #f5fbff;
  border-bottom-color: rgba(190, 224, 255, 0.75);
  outline: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 11px;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 150ms ease, filter 150ms ease, box-shadow 150ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  outline: none;
}

.btn-primary {
  color: #04141c;
  background: linear-gradient(135deg, var(--accent-gold), #ffd98a 34%, var(--accent-green) 100%);
  box-shadow: 0 10px 26px rgba(255, 199, 79, 0.24);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(132, 162, 219, 0.5);
  background: rgba(15, 27, 53, 0.75);
}

.stat-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(128, 179, 245, 0.38);
  background: rgba(13, 24, 47, 0.84);
  padding: 6px 10px;
  color: #c4d3ef;
  font-size: 0.78rem;
}

.inline-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.inline-list li {
  margin: 6px 0;
}

.section {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 20px;
  box-shadow: var(--shadow);
}

.section h2 {
  font-size: 1.52rem;
  letter-spacing: 0.02em;
}

.section p {
  margin: 8px 0 0;
  color: var(--muted);
}

.grid {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  border: 1px solid rgba(116, 160, 234, 0.28);
  background:
    linear-gradient(160deg, rgba(17, 28, 53, 0.92), rgba(13, 22, 44, 0.92));
  border-radius: 13px;
  padding: 14px;
}

.card h3 {
  font-size: 1.02rem;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card .meta {
  margin-top: 10px;
  color: #9ed6ff;
  font-size: 0.82rem;
}

.card code {
  color: #c7f4ff;
  font-size: 0.88em;
}

.card-priority {
  border-color: rgba(109, 255, 141, 0.55);
  background:
    linear-gradient(160deg, rgba(22, 42, 52, 0.94), rgba(13, 30, 42, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(109, 255, 141, 0.08),
    0 0 26px rgba(109, 255, 141, 0.12);
}

.card-priority h3 {
  color: #dcffe8;
}

.roadmap-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.phase-card {
  position: relative;
  overflow: hidden;
}

.phase-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(109, 255, 141, 0.13) 0%, rgba(109, 255, 141, 0.03) 45%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.phase-card .phase-tag {
  margin: -2px 0 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(132, 193, 255, 0.48);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  color: #d2eaff;
  background: rgba(25, 42, 75, 0.7);
}

.media-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.media-frame {
  border-radius: 10px;
  border: 1px solid rgba(112, 166, 245, 0.36);
  overflow: hidden;
  background: #02050c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.demo-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 290px;
  background: #000;
}

.audio-player-card {
  display: grid;
  gap: 12px;
}

.section .audio-demos-lead {
  margin: 8px 0 18px;
}

.audio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audio-status {
  margin: 0;
  color: #cde4ff;
  font-size: 0.86rem;
}

.audio-player {
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(13, 22, 43, 0.96), rgba(15, 27, 50, 0.96));
  color-scheme: dark;
  accent-color: var(--accent-cyan);
  overflow: hidden;
}

.audio-player::-webkit-media-controls-enclosure {
  border-radius: 10px;
  border: 1px solid rgba(92, 148, 231, 0.32);
  background: linear-gradient(160deg, rgba(13, 22, 43, 0.96), rgba(15, 27, 50, 0.96));
}

.audio-player::-webkit-media-controls-panel {
  background: transparent;
}

.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display {
  color: #dbe9ff;
}

.shot-placeholder {
  border: 1px dashed rgba(111, 157, 234, 0.38);
  border-radius: 10px;
  min-height: 120px;
  display: grid;
  place-items: center;
  color: #95a7c8;
  background: rgba(13, 24, 46, 0.8);
}

.notice {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(110, 206, 255, 0.54);
  color: #d4f4ff;
  background: rgba(24, 61, 90, 0.38);
}

.buy-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.checkout-form {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.field-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #c8ddff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-input {
  width: 100%;
  border: 1px solid rgba(116, 165, 236, 0.42);
  border-radius: 10px;
  background: rgba(10, 20, 39, 0.88);
  color: var(--text);
  padding: 10px 11px;
  font-size: 0.9rem;
  font-family: inherit;
}

.field-input::placeholder {
  color: #8ea4c8;
}

.field-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8db6f1 50%),
    linear-gradient(135deg, #8db6f1 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 13px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field-input:focus-visible {
  outline: none;
  border-color: rgba(109, 255, 141, 0.72);
  box-shadow: 0 0 0 2px rgba(109, 255, 141, 0.15);
}

.checkout-form .btn {
  width: 100%;
  margin-top: 2px;
}

.checkout-status {
  min-height: 1.3em;
}

.checkout-order,
.checkout-license {
  color: #a9e2ff;
}

.status-ok {
  color: #9ed6ff;
}

.status-error {
  color: #ff9aad;
}

.faq-grid {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.qa {
  border: 1px solid rgba(112, 162, 237, 0.33);
  border-radius: 11px;
  background: var(--panel-strong);
  padding: 10px 12px;
}

.qa summary {
  cursor: pointer;
  font-weight: 700;
  color: #e8f2ff;
}

.qa p {
  margin-top: 8px;
}

.footer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.footer a {
  color: var(--muted);
}

.table {
  margin-top: 10px;
  width: 100%;
  border-collapse: collapse;
  color: var(--muted);
}

.table th,
.table td {
  border-bottom: 1px solid rgba(112, 156, 232, 0.25);
  text-align: left;
  padding: 9px 6px;
  font-size: 0.94rem;
}

.table th {
  color: var(--text);
  font-weight: 700;
}

.guide-page {
  width: min(960px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 18px;
  background:
    linear-gradient(170deg, rgba(35, 43, 58, 0.88), rgba(25, 34, 49, 0.86)),
    radial-gradient(circle at 90% -20%, rgba(73, 190, 218, 0.09), rgba(0, 0, 0, 0) 46%);
  border: 1px solid rgba(117, 146, 197, 0.28);
}

.guide-page h2 {
  margin: 0 0 4px;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.1;
  color: #e7edf8;
  text-align: left;
}

.guide-philosophy {
  margin-top: 10px;
  border: 2px solid rgba(73, 190, 218, 0.82);
  border-radius: 12px;
  background: rgba(37, 45, 56, 0.86);
  padding: 10px 12px;
  text-align: center;
}

.guide-philosophy-title {
  margin: 0;
  color: rgb(73, 190, 218);
  font-size: 1.1rem;
  font-weight: 700;
}

.guide-philosophy-sub {
  margin: 6px 0 0;
  color: #d0d8e8;
  font-size: 0.9rem;
  line-height: 1.25;
}

.guide-step {
  margin-top: 12px;
  border: 1px solid rgba(118, 147, 194, 0.24);
  border-radius: 11px;
  background: rgba(25, 34, 49, 0.64);
  padding: 12px 12px 11px;
}

.guide-step-head {
  display: flex;
  gap: 8px;
  align-items: center;
}

.guide-step-head h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  color: #dce5f7;
}

.guide-step-badge {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  flex: 0 0 auto;
}

.guide-badge-yellow {
  color: #2c2a1f;
  background: rgb(216, 180, 46);
}

.guide-badge-purple {
  color: #f5ecff;
  background: rgb(148, 96, 186);
}

.guide-subtitle {
  margin: 8px 0 0;
  color: #c0cade;
  font-size: 0.95rem;
  line-height: 1.22;
}

.guide-hint {
  margin: 6px 0 0;
  color: #9da9c1;
  font-size: 0.9rem;
  line-height: 1.22;
}

.guide-rand-grid {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.guide-rand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
}

.guide-rand-desc {
  color: rgb(176, 172, 162);
  font-size: 0.91rem;
  line-height: 1.2;
}

.guide-pill {
  appearance: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  border: 1px solid transparent;
  padding: 4px 11px;
  min-width: 88px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.guide-pill:focus {
  outline: none;
}

.guide-pill-cyan {
  background: rgba(33, 120, 138, 0.98) !important;
  border-color: rgba(74, 195, 226, 0.96) !important;
  color: #deffff !important;
}

.guide-pill-green {
  background: rgba(52, 126, 69, 0.98) !important;
  border-color: rgba(122, 212, 139, 0.96) !important;
  color: #e6ffe9 !important;
}

.guide-pill-purple {
  background: rgba(99, 61, 138, 0.98) !important;
  border-color: rgba(176, 124, 232, 0.96) !important;
  color: #f5e7ff !important;
}

.guide-pill-amber {
  background: rgba(126, 96, 34, 0.98) !important;
  border-color: rgba(223, 180, 80, 0.96) !important;
  color: #fff1d4 !important;
}

.guide-pill-rose {
  background: rgba(131, 58, 84, 0.98) !important;
  border-color: rgba(214, 117, 160, 0.96) !important;
  color: #ffe5ef !important;
}

.guide-pill-bank {
  background: rgba(126, 96, 34, 0.98) !important;
  border-color: rgba(223, 180, 80, 0.96) !important;
  color: #fff1d4 !important;
}

.guide-pill-song {
  background: rgba(52, 126, 69, 0.98) !important;
  border-color: rgba(122, 212, 139, 0.96) !important;
  color: #e6ffe9 !important;
}

.guide-inline-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-track-row {
  margin-top: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.guide-icon-pill {
  min-width: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 7px;
  font-size: 0.94rem;
}

.guide-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  vertical-align: middle;
  margin: 0 6px 1px;
}

.guide-dot-yellow {
  background: rgba(223, 180, 80, 0.95);
  box-shadow: 0 0 8px rgba(223, 180, 80, 0.45);
}

.guide-dot-green {
  background: rgba(122, 212, 139, 0.95);
  box-shadow: 0 0 8px rgba(122, 212, 139, 0.45);
}

@media (max-width: 760px) {
  .page {
    width: min(1160px, 95vw);
    padding-top: 18px;
  }

  .header {
    padding: 12px;
  }

  .brand-emblem-wrap {
    width: 46px;
    height: 46px;
  }

  .brand-title {
    font-size: 0.94rem;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

  .hero,
  .section {
    padding: 16px;
  }

  .home-hero {
    min-height: 0;
  }

  .btn {
    width: 100%;
  }

  .guide-step-head h3 {
    font-size: 0.96rem;
  }

  .guide-pill {
    min-width: 0;
  }

  .guide-rand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .guide-rand-desc {
    font-size: 0.84rem;
  }

  .guide-page {
    width: 100%;
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page > * {
    opacity: 1;
    animation: none;
  }

  .brand-emblem-wrap::after {
    animation: none;
  }

  .brand-title {
    animation: none;
  }

  .btn,
  .nav a {
    transition: none;
  }
}
