:root {
  --bg: #070707;
  --bg-soft: #0b0b0b;
  --surface: #101010;
  --surface-raised: #151515;
  --surface-hover: #1a1a1a;
  --text: #f1ede8;
  --text-soft: #c8c1ba;
  --muted: #8f8882;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #9b4b40;
  --accent-soft: #c17a68;
  --accent-dark: #4f2522;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --shell: 1180px;
  --header-height: 72px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(155, 75, 64, 0.10), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

::selection {
  background: var(--accent);
  color: #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  animation: grid-drift 28s linear infinite;
}

.ambient-orbit {
  position: absolute;
  width: 42rem;
  aspect-ratio: 1;
  border: 1px solid rgba(155, 75, 64, 0.13);
  border-radius: 50%;
  filter: blur(0.2px);
}

.ambient-orbit::before,
.ambient-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: inherit;
  border-radius: inherit;
}

.ambient-orbit::after {
  inset: 31%;
}

.ambient-orbit-one {
  top: -24rem;
  right: -12rem;
  animation: orbit-rotate 38s linear infinite;
}

.ambient-orbit-two {
  bottom: -28rem;
  left: -18rem;
  animation: orbit-rotate 46s linear infinite reverse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 7, 7, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 850;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(0.45) brightness(0.72) contrast(1.15);
  transition: filter 250ms ease, transform 250ms ease, border-color 250ms ease;
}

.brand:hover img {
  border-color: rgba(193, 122, 104, 0.45);
  filter: saturate(0.75) brightness(0.85) contrast(1.1);
  transform: rotate(-3deg) scale(1.04);
}

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

.site-nav a {
  position: relative;
  padding: 24px 0 21px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 1px;
  background: var(--accent-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  color: var(--text);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - var(--header-height)));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.82) 48%, rgba(7, 7, 7, 0.28) 100%),
    linear-gradient(180deg, transparent 45%, var(--bg) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 104px 0 136px;
}

.hero-content h1 {
  max-width: 770px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.068em;
  font-weight: 820;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.75;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--accent-soft);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.button {
  position: relative;
  isolation: isolate;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 190px;
  padding: 12px 16px 12px 19px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 780;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.12) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translateX(130%);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
}

.button-primary:hover {
  border-color: var(--accent-soft);
  background: #a85548;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
  border-color: rgba(193, 122, 104, 0.5);
  background: rgba(155, 75, 64, 0.08);
}

.hero-art {
  position: absolute;
  inset: 0 0 0 46%;
  overflow: hidden;
}

.hero-art img {
  position: absolute;
  top: 50%;
  right: clamp(-140px, -8vw, -40px);
  width: min(720px, 70vw);
  max-width: none;
  opacity: 0.32;
  filter: saturate(0.2) brightness(0.42) contrast(1.3);
  transform: translateY(-50%) scale(1.05);
  animation: hero-float 10s ease-in-out infinite;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 66% 50%, rgba(155, 75, 64, 0.20), transparent 38%);
  animation: pulse-soft 7s ease-in-out infinite;
}

.hero-scan {
  position: absolute;
  z-index: 2;
  top: -20%;
  right: 0;
  left: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(193, 122, 104, 0.055), transparent);
  animation: scan 9s linear infinite;
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-index > div {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.hero-index > div:last-child {
  border-right: 0;
}

.hero-index strong {
  color: var(--accent-soft);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.hero-index span {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 680;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #090909;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 13px 0;
  animation: ticker-move 32s linear infinite;
}

.ticker-track span {
  color: #77716c;
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  position: relative;
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}

.split-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(48px, 8vw, 110px);
}

.section-label .line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-main h2,
.section-top h2,
.statement h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.section-lead {
  max-width: 790px;
  margin-bottom: 48px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
}

.principles {
  border-top: 1px solid var(--line);
}

.principle {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: padding-left 220ms ease, background 220ms ease, transform 120ms ease;
}

.principle:hover {
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(155, 75, 64, 0.08), transparent 52%);
}

.principle-number {
  color: var(--accent-soft);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.principle h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.principle p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-featured,
.products-section,
.partners-section {
  background: linear-gradient(180deg, #090909, var(--bg));
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}

.section-top h2 {
  margin-bottom: 0;
}

.section-note {
  max-width: 330px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover {
  border-color: var(--accent-soft);
  color: var(--text);
}

.text-link:hover span {
  transform: translateX(4px);
}

.product-list,
.partner-list {
  display: grid;
  gap: 14px;
}

.product-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) minmax(280px, 1.5fr) auto;
  gap: 32px;
  align-items: start;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(155, 75, 64, 0.14), transparent 28%),
    var(--surface);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 120ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 260ms ease;
}

.product-card:hover {
  border-color: rgba(193, 122, 104, 0.34);
  box-shadow: var(--shadow);
}

.product-card:hover::after {
  transform: scaleY(1);
  transform-origin: top;
}

.product-heading h3 {
  margin-bottom: 6px;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  letter-spacing: -0.04em;
}

.product-type {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 5px rgba(193, 122, 104, 0.08);
  animation: status-pulse 2.8s ease-in-out infinite;
}

.product-description {
  margin-bottom: 22px;
  color: var(--text-soft);
  line-height: 1.72;
}

.compatibility {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compatibility li,
.keyword-grid span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.72rem;
  font-weight: 650;
}

.card-actions {
  min-width: 156px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text-soft);
  background: #0c0c0c;
  font-size: 0.78rem;
  font-weight: 740;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.card-actions a::after {
  content: "↗";
  color: var(--accent-soft);
}

.card-actions a:hover {
  border-color: rgba(193, 122, 104, 0.42);
  background: var(--surface-hover);
  color: var(--text);
  transform: translateX(3px);
}

.empty-state {
  padding: 36px;
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  text-align: center;
}

.statement {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 50%, rgba(155, 75, 64, 0.12), transparent 26rem),
    #090909;
}

.statement::before {
  content: "S";
  position: absolute;
  top: 50%;
  right: 3vw;
  color: rgba(255, 255, 255, 0.018);
  font-size: min(46vw, 640px);
  font-weight: 900;
  line-height: 0.7;
  transform: translateY(-50%);
}

.statement-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.statement h2 {
  margin-bottom: 30px;
}

.statement blockquote {
  margin-bottom: 10px;
  color: var(--text-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-style: italic;
}

.statement cite {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.28), var(--bg)),
    radial-gradient(circle at 76% 30%, rgba(155, 75, 64, 0.13), transparent 28rem);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 110px 0 76px;
}

.page-hero h1,
.discord-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.page-hero p:not(.eyebrow),
.discord-hero p:not(.eyebrow):not(.availability) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.8;
}

.page-hero-mark {
  position: absolute;
  right: -1vw;
  bottom: -0.17em;
  color: rgba(255, 255, 255, 0.022);
  font-size: clamp(8rem, 23vw, 21rem);
  font-weight: 950;
  line-height: 0.72;
  letter-spacing: -0.08em;
  user-select: none;
  animation: mark-drift 10s ease-in-out infinite;
}

.product-list-full .product-card {
  min-height: 240px;
}

.detail-band {
  background: #090909;
}

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

.keyword-grid span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-align: center;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.keyword-grid span:hover {
  border-color: rgba(193, 122, 104, 0.38);
  color: var(--text-soft);
  transform: translateY(-2px);
}

.partner-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(280px, 1.45fr) auto;
  gap: 32px;
  align-items: center;
  padding: 28px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(155, 75, 64, 0.12), transparent 28%),
    var(--surface);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 120ms ease;
}

.partner-card:hover {
  border-color: rgba(193, 122, 104, 0.34);
  box-shadow: var(--shadow);
}

.partner-card h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.partner-category {
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 830;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.partner-description {
  margin-bottom: 0;
  color: var(--text-soft);
}

.partner-card .card-actions {
  min-width: 128px;
}

.discord-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.discord-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(7, 7, 7, 0.84) 50%, rgba(7, 7, 7, 0.42) 100%),
    radial-gradient(circle at 75% 50%, rgba(155, 75, 64, 0.14), transparent 30rem);
}

.discord-hero-inner {
  position: relative;
  z-index: 3;
  padding: 120px 0;
}

.discord-hero h1 {
  max-width: 820px;
}

.discord-hero p:not(.eyebrow):not(.availability) {
  margin-bottom: 32px;
}

.availability {
  max-width: 650px;
  margin: 22px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--accent-dark);
  color: var(--muted);
  font-size: 0.82rem;
}

.discord-rings {
  position: absolute;
  top: 50%;
  right: -4vw;
  width: min(630px, 60vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
}

.discord-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(193, 122, 104, 0.14);
  border-radius: 50%;
  animation: ring-pulse 7s ease-in-out infinite;
}

.discord-rings i:nth-child(2) {
  inset: 18%;
  animation-delay: -2.2s;
}

.discord-rings i:nth-child(3) {
  inset: 36%;
  animation-delay: -4.4s;
}

.discord-rings::after {
  content: "";
  position: absolute;
  inset: 43%;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 120px 35px rgba(155, 75, 64, 0.18);
  animation: core-pulse 3.6s ease-in-out infinite;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.community-grid article {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: border-color 220ms ease, background 220ms ease, transform 120ms ease;
}

.community-grid article:hover {
  border-color: rgba(193, 122, 104, 0.32);
  background: var(--surface-raised);
}

.community-grid article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.community-grid h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.community-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 54px 0 28px;
  background: #050505;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) auto auto;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-inner > div > p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 26px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 680;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.copyright {
  margin-bottom: 0;
  color: #615c58;
  font-size: 0.75rem;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2, .7, .2, 1), transform 700ms cubic-bezier(.2, .7, .2, 1);
}

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

.product-card.reveal,
.partner-card.reveal {
  transform: perspective(1200px) translateY(24px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .7, .2, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.product-card.reveal.is-visible,
.partner-card.reveal.is-visible {
  transform: perspective(1200px) translateY(0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

@keyframes grid-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(72px, 72px, 0); }
}

@keyframes orbit-rotate {
  to { transform: rotate(360deg); }
}

@keyframes hero-float {
  0%, 100% { transform: translateY(-50%) scale(1.05) rotate(-1deg); }
  50% { transform: translateY(-52%) scale(1.08) rotate(1deg); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.55; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes scan {
  from { transform: translateY(-140%); }
  to { transform: translateY(520%); }
}

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

@keyframes status-pulse {
  0%, 100% { opacity: 0.65; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes mark-drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-14px); }
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.22; transform: scale(0.96); }
  50% { opacity: 0.72; transform: scale(1.03); }
}

@keyframes core-pulse {
  0%, 100% { transform: scale(0.86); opacity: 0.65; }
  50% { transform: scale(1.12); opacity: 1; }
}

@media (max-width: 980px) {
  :root {
    --header-height: 66px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-art {
    inset: 0 0 0 35%;
  }

  .hero-art img {
    right: -190px;
    width: 650px;
    opacity: 0.24;
  }

  .split-layout {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 48px;
  }

  .product-card,
  .partner-card {
    grid-template-columns: minmax(150px, 0.55fr) minmax(280px, 1.45fr);
  }

  .product-card .card-actions,
  .partner-card .card-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .product-card .card-actions a,
  .partner-card .card-actions a {
    min-width: 140px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 100px 0 190px;
  }

  .hero-content h1 {
    max-width: 560px;
    font-size: clamp(2.65rem, 13vw, 4.3rem);
  }

  .hero-art {
    inset: 0;
  }

  .hero-art img {
    top: 44%;
    right: -260px;
    width: 610px;
    opacity: 0.17;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(7, 7, 7, 0.98), rgba(7, 7, 7, 0.75));
  }

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

  .hero-index > div {
    min-height: 48px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-index > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-label .line {
    width: 120px;
  }

  .section-main h2,
  .section-top h2,
  .statement h2 {
    font-size: clamp(2rem, 9vw, 3.3rem);
  }

  .section-top {
    align-items: start;
    flex-direction: column;
  }

  .section-note {
    max-width: none;
    text-align: left;
  }

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

  .product-card,
  .partner-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .product-card .card-actions,
  .partner-card .card-actions {
    grid-column: auto;
  }

  .product-card .card-actions a,
  .partner-card .card-actions a {
    flex: 1 1 145px;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero-inner {
    padding: 100px 0 60px;
  }

  .page-hero h1,
  .discord-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .page-hero-mark {
    right: -10vw;
    font-size: 38vw;
  }

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

  .discord-hero {
    min-height: 720px;
  }

  .discord-rings {
    top: 72%;
    right: -170px;
    width: 520px;
    opacity: 0.6;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-nav {
    justify-content: start;
  }
}

@media (max-width: 480px) {
  .brand span {
    font-size: 0.9rem;
  }

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

  .hero-content {
    padding-top: 82px;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .product-card,
  .partner-card,
  .community-grid article {
    border-radius: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
