/* ============================================================
   DIAL DESIGNS — Shared Components
   ============================================================ */

/* ── Navigation ──────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(9, 9, 15, 0.88);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border-subtle);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-w);
  margin-inline: auto;
  padding-inline: var(--content-pad);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--text-base);
  font-weight: var(--w-bold);
  color: var(--text-1);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.nav__logo-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--w-black);
  color: var(--ink-950);
  letter-spacing: 0;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-1);
}

.nav__link {
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  color: var(--text-3);
  transition: color var(--ease-fast), background var(--ease-fast);
  white-space: nowrap;
}

.nav__link:hover  { color: var(--text-1); background: var(--bg-raised); }
.nav__link.active { color: var(--text-1); background: var(--bg-raised); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
  border-radius: var(--r-md);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform var(--ease-normal), opacity var(--ease-normal);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-4);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 199;
}

.nav__mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav__links    { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border-subtle);
  padding-block: var(--s-16) var(--s-12);
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--s-12);
  margin-bottom: var(--s-12);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: var(--text-3);
  margin-top: var(--s-4);
  max-width: 280px;
  line-height: 1.65;
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  color: var(--text-2);
  margin-bottom: var(--s-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__col ul  { display: flex; flex-direction: column; gap: var(--s-3); }
.footer__col a   { font-size: var(--text-sm); color: var(--text-3); transition: color var(--ease-fast); }
.footer__col a:hover { color: var(--text-1); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-6);
  border-top: 1px solid var(--border-subtle);
  font-size: var(--text-sm);
  color: var(--text-4);
}

.footer__social { display: flex; gap: var(--s-4); }
.footer__social a { color: var(--text-4); transition: color var(--ease-fast); }
.footer__social a:hover { color: var(--text-1); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--s-4); text-align: center; }
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-6);
  border-radius: var(--r-lg);
  font-size: var(--text-base);
  font-weight: var(--w-semibold);
  font-family: var(--font-sans);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--ease-fast), border-color var(--ease-fast),
              color var(--ease-fast), transform var(--ease-fast), box-shadow var(--ease-fast);
  cursor: pointer;
}

.btn:active { transform: translateY(1px) !important; }

.btn-lg { padding: var(--s-4) var(--s-8); font-size: var(--text-lg); border-radius: var(--r-xl); }
.btn-sm { padding: var(--s-2) var(--s-4); font-size: var(--text-sm); border-radius: var(--r-md); }

.btn-primary {
  background: var(--accent);
  color: var(--ink-950);
}
.btn-primary:hover {
  background: var(--brand-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--brand-glow);
}

.btn-secondary {
  background: var(--bg-raised);
  color: var(--text-1);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--bg-overlay);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-3);
  padding-inline: var(--s-3);
}
.btn-ghost:hover { color: var(--text-1); background: var(--bg-raised); }

.btn-sigil    { background: var(--sigil-500);  color: #fff; border-color: transparent; }
.btn-sigil:hover    { background: var(--sigil-400);  transform: translateY(-1px); box-shadow: 0 4px 20px var(--sigil-glow); }

.btn-sheekbot { background: var(--sheek-500); color: #fff; border-color: transparent; }
.btn-sheekbot:hover { background: var(--sheek-400); transform: translateY(-1px); box-shadow: 0 4px 20px var(--sheek-glow); }

.btn-aram     { background: var(--aram-500);  color: #031a0c; border-color: transparent; }
.btn-aram:hover     { background: var(--aram-400);  transform: translateY(-1px); box-shadow: 0 4px 20px var(--aram-glow); }

.btn-gtarp    { background: var(--gtarp-500); color: #1a0e00; border-color: transparent; }
.btn-gtarp:hover    { background: var(--gtarp-400); transform: translateY(-1px); box-shadow: 0 4px 20px var(--gtarp-glow); }

/* ── Badge ────────────────────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 3px var(--s-3);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--bg-raised);
  color: var(--text-3);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.badge-brand    { background: rgba(124,108,252,.12); color: var(--brand-300); border-color: rgba(124,108,252,.28); }
.badge-sigil    { background: var(--sigil-glow);  color: var(--sigil-400);  border-color: rgba(255,45,71,.28); }
.badge-sheekbot { background: var(--sheek-glow);  color: var(--sheek-400);  border-color: rgba(168,85,247,.28); }
.badge-aram     { background: var(--aram-glow);   color: var(--aram-400);   border-color: rgba(34,197,94,.28); }
.badge-gtarp    { background: var(--gtarp-glow);  color: var(--gtarp-400);  border-color: rgba(245,158,11,.28); }

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding-block: clamp(var(--s-20), 14vw, var(--s-32));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% -5%,
    var(--hero-glow, rgba(124,108,252,.12)), transparent 70%);
  pointer-events: none;
}

.hero__eyebrow { display: inline-flex; margin-bottom: var(--s-6); }

.hero__title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: var(--w-black);
  letter-spacing: -0.04em;
  line-height: 1.0;
  max-width: 18ch;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--brand-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(var(--text-base), 2.5vw, var(--text-xl));
  color: var(--text-3);
  max-width: 50ch;
  margin-top: var(--s-6);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-6);
  margin-top: var(--s-10);
  padding-top: var(--s-8);
  border-top: 1px solid var(--border-subtle);
  font-size: var(--text-sm);
  color: var(--text-4);
}

/* ── Product cards (home page) ───────────────────────────── */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-12);
}

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: border-color var(--ease-normal), box-shadow var(--ease-normal), transform var(--ease-normal);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%,
    var(--product-glow, transparent), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--ease-normal);
}

.product-card:hover {
  border-color: var(--product-accent, var(--border));
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card:hover::before { opacity: 1; }

.product-card__badges { display: flex; flex-wrap: wrap; gap: var(--s-2); }

.product-card__name {
  font-size: var(--text-3xl);
  font-weight: var(--w-black);
  letter-spacing: -0.04em;
  color: var(--text-1);
  line-height: 1;
}

.product-card__tagline {
  font-size: var(--text-sm);
  color: var(--text-3);
  line-height: 1.6;
}

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.product-card__features li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--text-sm);
  color: var(--text-2);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.product-card__features li:last-child { border-bottom: none; }

.product-card__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--product-accent, var(--accent));
  flex-shrink: 0;
}

.product-card__actions {
  display: flex;
  gap: var(--s-3);
  padding-top: var(--s-2);
}

/* ── Feature grid ─────────────────────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-12);
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  transition: border-color var(--ease-normal), transform var(--ease-normal);
}

.feature-card:hover {
  border-color: var(--feature-accent, var(--border));
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: var(--feature-bg, var(--bg-raised));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-4);
  color: var(--feature-accent, var(--accent));
}

.feature-card h3 { font-size: var(--text-base); font-weight: var(--w-semibold); margin-bottom: var(--s-2); }
.feature-card p  { font-size: var(--text-sm); color: var(--text-3); line-height: 1.6; }

/* ── Download grid ────────────────────────────────────────── */

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.download-btn {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: background var(--ease-normal), border-color var(--ease-normal), transform var(--ease-normal), box-shadow var(--ease-normal);
  cursor: pointer;
  text-decoration: none;
}

.download-btn:hover {
  background: var(--bg-raised);
  border-color: var(--sigil-500);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px var(--sigil-glow);
}

.download-btn.recommended {
  border-color: var(--sigil-500);
  background: rgba(255, 45, 71, .06);
}

.download-btn__icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--text-3); }

.download-btn__text  { display: flex; flex-direction: column; gap: 2px; }
.download-btn__os    { font-size: var(--text-xs); color: var(--text-4); text-transform: uppercase; letter-spacing: .06em; }
.download-btn__label { font-size: var(--text-base); font-weight: var(--w-semibold); color: var(--text-1); }
.download-btn__size  { font-size: var(--text-xs); color: var(--text-4); }

/* ── Changelog ────────────────────────────────────────────── */

.changelog { display: flex; flex-direction: column; gap: var(--s-10); }

.changelog-entry {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--s-8);
  padding-bottom: var(--s-10);
  border-bottom: 1px solid var(--border-subtle);
}
.changelog-entry:last-child { border-bottom: none; padding-bottom: 0; }

.changelog-version { font-size: var(--text-sm); font-weight: var(--w-bold); color: var(--text-1); font-family: var(--font-mono); }
.changelog-date    { font-size: var(--text-xs); color: var(--text-4); margin-top: var(--s-1); }

.changelog-body h4 { font-size: var(--text-base); font-weight: var(--w-semibold); margin-bottom: var(--s-4); }
.changelog-body ul { display: flex; flex-direction: column; gap: var(--s-2); }
.changelog-body li {
  font-size: var(--text-sm);
  color: var(--text-3);
  padding-left: var(--s-5);
  position: relative;
  line-height: 1.6;
}
.changelog-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sigil-500);
}

@media (max-width: 540px) {
  .changelog-entry { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* ── Stats row ────────────────────────────────────────────── */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--s-6);
  padding-block: var(--s-8);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stat { text-align: center; }
.stat__value {
  font-size: var(--text-4xl);
  font-weight: var(--w-black);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-1);
}
.stat__label { font-size: var(--text-sm); color: var(--text-3); margin-top: var(--s-2); }

/* ── Pricing cards ────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-10);
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--sheek-500);
  background: linear-gradient(180deg, rgba(168,85,247,.06) 0%, var(--bg-surface) 50%);
  position: relative;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sheek-500);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-full);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-name { font-size: var(--text-lg); font-weight: var(--w-bold); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.pricing-price .amount {
  font-size: var(--text-5xl);
  font-weight: var(--w-black);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-price .period { font-size: var(--text-sm); color: var(--text-4); }
.pricing-desc { font-size: var(--text-sm); color: var(--text-3); margin-top: var(--s-3); line-height: 1.6; }

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border-subtle);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.5;
}

.pricing-feature .check { flex-shrink: 0; color: var(--sheek-500); margin-top: 1px; }
.pricing-feature .cross { flex-shrink: 0; color: var(--text-4); margin-top: 1px; }

.pricing-cta { margin-top: var(--s-6); }

/* ── Rules list ───────────────────────────────────────────── */

.rules-list { display: flex; flex-direction: column; gap: var(--s-3); }

.rule-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--s-4);
  align-items: start;
  padding: var(--s-4) var(--s-5);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  transition: border-color var(--ease-fast);
}

.rule-item:hover { border-color: var(--gtarp-500); }

.rule-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-md);
  background: var(--gtarp-glow);
  color: var(--gtarp-400);
  font-size: var(--text-sm);
  font-weight: var(--w-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.rule-text strong { display: block; font-size: var(--text-sm); font-weight: var(--w-semibold); margin-bottom: var(--s-1); }
.rule-text p { font-size: var(--text-sm); color: var(--text-3); margin: 0; }

/* ── Connect box ──────────────────────────────────────────── */

.connect-box {
  background: linear-gradient(135deg, rgba(245,158,11,.08) 0%, var(--bg-surface) 60%);
  border: 1px solid var(--gtarp-500);
  border-radius: var(--r-2xl);
  padding: var(--s-12);
  text-align: center;
}

.connect-box h3 { font-size: var(--text-2xl); font-weight: var(--w-bold); margin-bottom: var(--s-3); }
.connect-box p  { font-size: var(--text-sm); color: var(--text-3); margin-bottom: var(--s-6); max-width: 40ch; margin-inline: auto; margin-top: 0; }

.connect-ip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  color: var(--gtarp-400);
  background: var(--bg-raised);
  padding: var(--s-2) var(--s-5);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  margin-bottom: var(--s-6);
  cursor: pointer;
  transition: border-color var(--ease-fast), background var(--ease-fast);
}

.connect-ip:hover { border-color: var(--gtarp-500); background: var(--bg-overlay); }

.connect-actions { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }

/* ── Platform chips ───────────────────────────────────────── */

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.platform-chip {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  color: var(--text-2);
  background: var(--bg-surface);
  transition: border-color var(--ease-fast), color var(--ease-fast);
}

.platform-chip:hover { border-color: var(--border-strong); color: var(--text-1); }
.platform-chip svg { flex-shrink: 0; }

/* ── Form ─────────────────────────────────────────────────── */

.form-group { display: flex; flex-direction: column; gap: var(--s-2); }

.form-label { font-size: var(--text-sm); font-weight: var(--w-medium); color: var(--text-2); }

.form-input {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-3) var(--s-4);
  color: var(--text-1);
  font-size: var(--text-base);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,108,252,.15);
}

.form-input::placeholder { color: var(--text-4); }
textarea.form-input { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* ── Early access band ────────────────────────────────────── */

.early-access-band {
  background: linear-gradient(135deg, var(--aram-glow), transparent 60%);
  border: 1px solid rgba(34, 197, 94, .2);
  border-radius: var(--r-2xl);
  padding: clamp(var(--s-8), 5vw, var(--s-16));
}

.early-access-band .section-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--aram-500), var(--aram-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Requirements table ───────────────────────────────────── */

.req-table {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  font-size: var(--text-sm);
}

.req-table th, .req-table td {
  padding: var(--s-3) var(--s-5);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.req-table th {
  background: var(--bg-raised);
  font-weight: var(--w-semibold);
  color: var(--text-2);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.req-table td { color: var(--text-3); }
.req-table td:first-child { color: var(--text-2); font-weight: var(--w-medium); }
.req-table tr:last-child td { border-bottom: none; }
.req-table tr:hover td { background: var(--bg-surface); }

/* ── About glyph (brand placeholder) ─────────────────────── */

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.about-glyph {
  width: 300px;
  height: 300px;
  border-radius: var(--r-2xl);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-glyph__text {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: var(--w-black);
  color: var(--text-1);
  letter-spacing: -0.06em;
  position: relative;
  z-index: 1;
}

.about-glyph__bg {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    var(--sigil-500) 0deg 90deg,
    var(--sheek-500) 90deg 180deg,
    var(--aram-500) 180deg 270deg,
    var(--gtarp-500) 270deg 360deg
  );
  opacity: .07;
}

/* ── Newsletter form ──────────────────────────────────────── */

.newsletter-row {
  display: flex;
  gap: var(--s-3);
  max-width: 420px;
  margin-inline: auto;
}

.newsletter-row .form-input { flex: 1; }

@media (max-width: 480px) {
  .newsletter-row { flex-direction: column; }
}

/* ── 404 page ─────────────────────────────────────────────── */

.error-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-8);
}

.error-page__code {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: var(--w-black);
  letter-spacing: -0.06em;
  line-height: 1;
  background: linear-gradient(135deg, var(--ink-600), var(--ink-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
