:root {
  --bg: #080808;
  --bg-soft: #101010;
  --bg-card: #151515;
  --bg-card-alt: #1b1b1b;
  --accent: #f5c800;
  --accent-soft: rgba(245, 200, 0, 0.14);
  --accent-strong: #d8ae00;
  --text: #f3f3f3;
  --text-soft: #cbc7b8;
  --text-muted: #a1a1a1;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(245, 200, 0, 0.3);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(245, 200, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #090909 0%, #0d0d0d 100%);
  color: var(--text-soft);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

main {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner,
.footer-inner,
.section-shell,
.hero-shell,
.page-shell,
.article-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #080808;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  border-radius: 12px;
}

.logo-name {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.logo-sub {
  color: var(--accent);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 12px;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.hero-shell {
  padding: 72px 0 48px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero-copy,
.page-hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.page-hero h1,
.article-shell h1 {
  margin: 0 0 18px;
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  letter-spacing: 0.02em;
  line-height: 0.94;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--accent);
}

.lead {
  margin: 0 0 22px;
  max-width: 720px;
  color: var(--text-soft);
  font-size: 1.06rem;
}

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

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button {
  background: var(--accent);
  color: #090909;
  border: 1px solid var(--accent);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.button-ghost {
  color: var(--accent);
  border: 1px solid rgba(245, 200, 0, 0.18);
  background: rgba(245, 200, 0, 0.05);
}

.metrics {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.metric strong {
  display: block;
  color: var(--accent);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.image-frame,
.image-frame-large {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(245, 200, 0, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(245, 200, 0, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-frame {
  padding: 18px;
}

.image-frame-large {
  padding: 20px;
}

.image-frame img,
.image-frame-large img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  background: #0b0b0b;
}

.caption {
  display: block;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.section {
  padding: 32px 0 70px;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-title {
  margin: 0 0 12px;
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.section-intro {
  margin: 0 0 30px;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1rem;
}

.two-column,
.three-column,
.feature-grid,
.card-grid,
.blog-grid,
.gallery-grid,
.price-grid {
  display: grid;
  gap: 24px;
}

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

.three-column,
.feature-grid,
.card-grid,
.blog-grid,
.gallery-grid,
.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.feature-card,
.quote-card,
.price-card,
.blog-card,
.detail-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.card h3,
.feature-card h3,
.quote-card h3,
.price-card h3,
.blog-card h3,
.detail-card h3,
.detail-card h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.card p,
.feature-card p,
.quote-card p,
.price-card p,
.blog-card p,
.detail-card p,
.detail-card li {
  margin: 0;
  color: var(--text-soft);
}

.stack {
  display: grid;
  gap: 18px;
}

.check-list,
.timeline,
.inline-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.timeline li,
.inline-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li + li,
.timeline li + li,
.inline-list li + li {
  margin-top: 12px;
}

.check-list li::before,
.timeline li::before,
.inline-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
}

.feature-card span,
.price-label,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(245, 200, 0, 0.08);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-number {
  display: block;
  margin: 18px 0 10px;
  color: var(--accent);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  line-height: 1;
}

.subtle-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page-hero,
.article-shell {
  padding: 54px 0 30px;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.breadcrumbs {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.page-shell {
  padding-bottom: 70px;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 20px 0 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  color: var(--text);
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item .faq-answer {
  padding: 0 24px 22px;
  color: var(--text-soft);
}

.article-shell {
  width: min(860px, calc(100% - 40px));
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.article-hero-image {
  margin: 26px 0 28px;
}

.article-body h2 {
  margin: 34px 0 12px;
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.15rem;
  line-height: 1;
}

.article-body p,
.article-body li {
  color: var(--text-soft);
  font-size: 1rem;
}

.article-body ul,
.article-body ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-body li + li {
  margin-top: 10px;
}

.highlight-panel {
  padding: 30px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(245, 200, 0, 0.08), transparent 32%),
    rgba(245, 200, 0, 0.03);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.24);
}

.footer-inner {
  padding: 28px 0 36px;
  display: grid;
  gap: 16px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  color: rgba(255, 255, 255, 0.44);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
}

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

.footer-links a:hover,
.article-shell a:hover,
.page-shell a:hover,
.section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  .header-inner,
  .footer-top,
  .footer-bottom,
  .hero,
  .page-hero,
  .two-column,
  .three-column,
  .feature-grid,
  .card-grid,
  .blog-grid,
  .gallery-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 16px 0;
  }

  .hero-shell,
  .page-hero {
    padding-top: 42px;
  }

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

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .footer-inner,
  .section-shell,
  .hero-shell,
  .page-shell,
  .article-shell {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .hero h1,
  .page-hero h1,
  .article-shell h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .card,
  .feature-card,
  .quote-card,
  .price-card,
  .blog-card,
  .detail-card,
  .highlight-panel {
    padding: 22px;
  }
}

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

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

  .button,
  .button-secondary,
  .button-ghost {
    transition: none;
  }
}
