/*
Theme Name: foxGTO Website
Theme URI: https://foxgto.com
Author: OpenAI Codex
Description: SEO-focused public foxGTO website with clean permalinks, articles, and trust pages.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: foxgto
*/

:root {
  --bg: hsl(220 20% 7%);
  --bg-elev: hsl(220 18% 10%);
  --card: hsl(220 18% 11%);
  --card-hover: hsl(220 16% 14%);
  --border: hsla(0 0% 100% / 0.08);
  --border-strong: hsla(0 0% 100% / 0.14);
  --fg: hsl(210 20% 94%);
  --fg-muted: hsl(220 10% 62%);
  --fg-dim: hsl(220 8% 45%);
  --primary: #ff6600;
  --primary-2: #ff7a1a;
  --primary-glow: hsla(24 100% 50% / 0.4);
  --primary-soft: hsla(24 100% 50% / 0.14);
  --ring: hsla(24 100% 50% / 0.6);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 8px 30px -12px hsla(0 0% 0% / 0.6);
  --shadow-fire: 0 10px 40px -10px var(--primary-glow);
  --grad-fire: linear-gradient(135deg, hsl(24 100% 50%), hsl(24 90% 55%));
  --grad-felt: linear-gradient(135deg, hsl(220 20% 7%), hsl(220 18% 10%));
  --font-sans: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --container: 1180px;
  --pad-x: clamp(20px, 4vw, 40px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, hsla(24 100% 50% / 0.06), transparent 60%),
    radial-gradient(900px 500px at 95% 0%, hsla(220 20% 30% / 0.08), transparent 60%);
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

code,
.mono,
.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

::selection {
  background: var(--primary);
  color: #120800;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 1em;
  color: var(--fg-muted);
}

ul,
ol {
  color: var(--fg-muted);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid hsla(28 100% 55% / 0.35);
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.text-gradient {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, hsl(24 100% 50%), hsl(24 90% 55%));
  color: #120800;
  box-shadow: 0 8px 28px hsl(24 100% 50% / 0.4);
}

.btn-ghost {
  background: hsla(0 0% 100% / 0.03);
  color: var(--fg);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}

.btn-sm {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 26px;
  border-radius: 14px;
  font-size: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  background: hsla(220 20% 7% / 0.72);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 4px 14px var(--primary-glow));
}

.brand em {
  color: var(--primary);
  font-style: normal;
}

.nav-links,
.nav-links ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links {
  margin-left: auto;
  font-size: 14px;
  color: var(--fg-muted);
}

.nav-links a:hover,
.footer-col a:hover,
.legal a:hover,
.prose a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
}

.hero {
  padding-block: clamp(72px, 9vw, 120px);
}

.hero-app-surface {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(140% 90% at 50% -12%, hsl(24 100% 50% / 0.2) 0%, hsl(220 30% 10% / 0.06) 44%, transparent 70%),
    radial-gradient(120% 85% at 50% 55%, hsl(210 50% 12% / 0.4) 0%, hsl(225 38% 7%) 54%, hsl(0 0% 2%) 100%);
}

.hero-app-glow,
.hero-app-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-app-dots {
  opacity: 0.16;
  background: radial-gradient(circle at 1px 1px, hsl(0 0% 100% / 0.38) 1px, transparent 0);
  background-size: 14px 14px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.hero-cta,
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-stats .label {
  display: block;
  margin-top: 4px;
  color: var(--fg-dim);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stats .num {
  color: var(--fg);
  font-size: 28px;
  font-weight: 700;
}

.phone {
  position: relative;
  width: min(320px, 100%);
  height: 640px;
  margin-inline: auto;
  border: 1px solid hsla(0 0% 100% / 0.1);
  border-radius: 44px;
  background: linear-gradient(180deg, #1b1f28, #0f1116);
  box-shadow:
    0 60px 120px -40px hsla(0 0% 0% / 0.7),
    0 30px 60px -30px var(--primary-glow),
    inset 0 0 0 2px hsla(0 0% 100% / 0.04);
  padding: 12px;
}

.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 120px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: #000;
  z-index: 2;
}

.phone-screen {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  flex-direction: column;
  border-radius: 34px;
  background: var(--grad-felt);
  overflow: hidden;
}

.ps-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 46px 18px 14px;
  border-bottom: 1px solid var(--border);
}

.ps-head .close {
  color: var(--fg-muted);
  font-size: 18px;
}

.ps-head .hand {
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 13px;
}

.ps-head .elo {
  padding: 5px 10px;
  border: 1px solid hsla(28 100% 55% / 0.5);
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 12px;
}

.phone-table {
  position: relative;
  flex: 1;
  margin: 16px;
  border: 4px solid hsl(30 40% 22%);
  border-radius: 180px / 120px;
  background:
    radial-gradient(ellipse at center, hsl(152 40% 22%), hsl(152 45% 14%) 70%),
    hsl(152 35% 18%);
  box-shadow: inset 0 0 40px hsla(0 0% 0% / 0.6);
}

.seat {
  position: absolute;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid hsla(0 0% 100% / 0.25);
  border-radius: 50%;
  background: hsl(220 18% 18%);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
}

.seat.s1 {
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
}

.seat.s2 {
  top: 28%;
  right: 4%;
}

.seat.s3 {
  right: 4%;
  bottom: 28%;
}

.seat.s4 {
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
}

.seat.s5 {
  bottom: 28%;
  left: 4%;
}

.seat.s6 {
  top: 28%;
  left: 4%;
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  color: var(--primary);
}

.pot {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: hsla(0 0% 0% / 0.5);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 11px;
}

.board {
  position: absolute;
  top: 48%;
  left: 50%;
  display: flex;
  gap: 4px;
  transform: translate(-50%, -50%);
}

.card {
  display: grid;
  width: 22px;
  height: 30px;
  place-items: center;
  border-radius: 3px;
  background: #f6f6f6;
  box-shadow: 0 2px 6px hsla(0 0% 0% / 0.4);
  color: #111;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.card.red {
  color: #d11;
}

.phone-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 16px 20px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, hsla(0 0% 0% / 0.3));
}

.ab {
  padding: 12px 0;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

.ab.fold {
  border: 1px solid var(--border);
  background: hsl(220 16% 16%);
  color: var(--fg-muted);
}

.ab.call {
  border: 1px solid hsla(210 70% 55% / 0.4);
  background: hsla(210 70% 55% / 0.14);
  color: hsl(210 70% 55%);
}

.ab.raise {
  background: var(--grad-fire);
  color: #120800;
}

.hero-float {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: hsla(220 18% 12% / 0.85);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  font-size: 13px;
  animation: float 6s ease-in-out infinite;
}

.hero-float .k {
  color: var(--fg-dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-float .v {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
}

.hf-1 {
  top: 8%;
  left: -6%;
}

.hf-2 {
  right: -4%;
  bottom: 10%;
  animation-delay: -2s;
}

@media (max-width: 920px) {
  .hero-float {
    display: none;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.logos {
  padding-block: 36px;
  border-block: 1px solid var(--border);
}

.logos .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--fg-dim);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.logos .items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

section {
  padding-block: clamp(64px, 9vw, 120px);
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.features-grid,
.trust-grid,
.page-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.features-grid,
.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.page-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

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

@media (max-width: 980px) {
  .features-grid,
  .trust-grid,
  .page-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.feature,
.trust-card,
.contact-card,
.legal-card,
.page-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.feature:hover,
.trust-card:hover {
  border-color: var(--border-strong);
  background: var(--card-hover);
}

.feature .ico {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid hsla(28 100% 55% / 0.35);
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
}

.feature h3,
.trust-card h3,
.contact-card h3,
.legal-card h3,
.page-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.step p {
  margin: 0;
}

.cta-block {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(600px 200px at 80% 0%, hsla(28 100% 55% / 0.2), transparent 60%),
    linear-gradient(135deg, hsl(220 22% 12%), hsl(220 18% 8%));
  text-align: center;
}

.cta-block::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: var(--grad-fire);
  opacity: 0.15;
  filter: blur(40px);
}

.cta-block p {
  max-width: 54ch;
  margin-inline: auto;
}

.site-main {
  position: relative;
  z-index: 1;
}

.page-hero {
  padding-block: clamp(56px, 8vw, 88px) 36px;
  border-bottom: 1px solid var(--border);
}

.page-hero .container {
  max-width: 900px;
}

.page-title {
  margin-top: 18px;
}

.page-intro {
  max-width: 64ch;
}

.page-body {
  padding-block: 48px 96px;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 980px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
}

.sidebar-stack {
  display: grid;
  gap: 20px;
}

.article-shell {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.prose {
  color: var(--fg);
  font-size: 17px;
  line-height: 1.75;
}

.prose h2 {
  margin: 1.9em 0 0.6em;
  font-size: 1.7rem;
}

.prose h3 {
  margin: 1.5em 0 0.5em;
  font-size: 1.3rem;
}

.prose p,
.prose li {
  color: hsl(210 18% 86%);
}

.prose ul,
.prose ol {
  padding-left: 1.4em;
}

.prose a {
  color: var(--primary);
  border-bottom: 1px solid hsla(28 100% 55% / 0.4);
}

.prose strong {
  color: var(--fg);
}

.prose .last-updated {
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card p:last-child,
.legal-card p:last-child {
  margin-bottom: 0;
}

.contact-link {
  color: var(--primary);
  font-weight: 700;
}

.legal-links,
.support-list {
  margin: 0;
  padding-left: 1.2em;
}

.site-footer {
  margin-top: 40px;
  padding-block: 64px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
}

.footer-brand p {
  max-width: 36ch;
  margin-top: 12px;
  font-size: 14px;
}

.footer-col h4 {
  margin-bottom: 14px;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--fg-dim);
  font-size: 13px;
}

@media (max-width: 760px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
  border-radius: 6px;
}

.brand {
  gap: 12px;
}

.brand-beta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 1px solid hsla(24 100% 50% / 0.3);
  border-radius: 999px;
  background: hsla(24 100% 50% / 0.15);
  color: var(--fg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note,
.app-detail {
  padding: 30px;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background:
    radial-gradient(500px 180px at 100% 0%, hsla(24 100% 50% / 0.06), transparent 60%),
    linear-gradient(180deg, hsl(220 18% 12%), hsl(220 18% 10%));
  box-shadow: var(--shadow-card);
}

.hero-note-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note h3,
.app-detail h3 {
  margin-bottom: 12px;
}

.hero-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.hero-list li {
  margin: 0 0 10px;
  color: var(--fg-muted);
}

.app-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 980px) {
  .app-details {
    grid-template-columns: 1fr;
  }
}

.nav-links,
.nav-links ul {
  gap: 20px;
}

.nav-links {
  font-size: 13px;
}

.center-row {
  justify-content: center;
}

.shot-grid,
.guide-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

.shot-grid,
.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.shot-card,
.guide-card,
.faq-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.shot-card {
  overflow: hidden;
}

.shot-card img {
  width: 100%;
  aspect-ratio: 10 / 16;
  object-fit: cover;
}

.shot-card figcaption {
  padding: 18px 20px 20px;
  color: var(--fg-muted);
  font-size: 14px;
}

.guide-card {
  transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--card-hover);
}

.guide-card-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
}

.guide-topline,
.guide-meta,
.article-meta,
.breadcrumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.guide-chip,
.guide-read,
.article-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: hsla(24 100% 50% / 0.08);
  color: var(--fg);
  font-size: 12px;
  line-height: 1;
}

.guide-card h2,
.guide-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.guide-card p {
  margin-bottom: 20px;
}

.guide-meta {
  margin-top: auto;
  color: var(--fg-dim);
  font-size: 13px;
}

.archive-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.article-hero {
  padding-block: clamp(56px, 7vw, 92px) 40px;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.article-hero-card {
  padding: 28px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(520px 180px at 100% 0%, hsla(24 100% 50% / 0.08), transparent 60%),
    linear-gradient(180deg, hsl(220 18% 12%), hsl(220 18% 9%));
  box-shadow: var(--shadow-card);
}

.article-hero-card h3 {
  margin-bottom: 6px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--fg-dim);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.article-meta {
  margin-top: 22px;
}

.article-shell-post .prose > :first-child {
  margin-top: 0;
}

.faq-card,
.page-card {
  padding: 24px;
}

.faq-card h3 {
  margin-bottom: 12px;
}

.mini-links {
  margin: 0;
  padding-left: 18px;
}

.mini-links li,
.legal-links li,
.support-list li {
  margin-bottom: 10px;
}

.mini-links a {
  color: var(--fg-muted);
}

.mini-links a:hover {
  color: var(--primary);
}

.posts-pagination .nav-links {
  justify-content: flex-start;
  margin-top: 16px;
  font-size: 14px;
}

.posts-pagination {
  grid-column: 1 / -1;
}

.posts-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
}

.posts-pagination .current {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: hsla(24 100% 50% / 0.35);
}

.page-card p:last-child,
.faq-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .shot-grid,
  .faq-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .archive-layout,
  .article-layout,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }
}
