﻿*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #111314;
  --panel: rgba(22, 26, 29, 0.78);
  --panel-soft: rgba(32, 37, 41, 0.7);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f2efe9;
  --muted: #b7b0a8;
  --accent: #f08a4b;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  --page-gutter: clamp(10px, 1.8vw, 28px);
  --font-body: 'Manrope', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  min-height: 100vh;
  background: linear-gradient(180deg, #121416 0%, #101214 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body > *:not(.scroll-bg) {
  position: relative;
  z-index: 1;
}

.scroll-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 50% -10%, rgba(240, 138, 75, 0.16) 0%, rgba(240, 138, 75, 0.08) 34%, transparent 66%),
    linear-gradient(180deg, rgba(10, 12, 14, 0.48) 0%, rgba(12, 15, 17, 0.68) 54%, rgba(10, 12, 14, 0.78) 100%),
    linear-gradient(180deg, rgba(14, 17, 19, 0.12), rgba(14, 17, 19, 0.12)),
    url("https://images.unsplash.com/photo-1620531192910-e9f78f87f2bf?auto=format&fit=crop&w=2200&q=80"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 120'%3E%3Cg fill='none' stroke='%23f08a4b' stroke-width='2.5' stroke-linecap='round' opacity='0.18'%3E%3Ccircle cx='38' cy='94' r='20'/%3E%3Ccircle cx='178' cy='94' r='20'/%3E%3Cline x1='38' y1='74' x2='168' y2='74'/%3E%3Cline x1='158' y1='74' x2='144' y2='18'/%3E%3Cline x1='130' y1='18' x2='158' y2='18'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat, repeat, repeat-y, repeat;
  background-size: 100% 640px, auto, auto, cover, 210px 120px;
  background-position: center -90px, center top, center top, center top, center top;
  opacity: 0.8;
}

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

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

button {
  font: inherit;
}

.container {
  width: 100%;
  margin: 0;
  padding-inline: var(--page-gutter);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0 0;
}

.header-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 26px;
  width: fit-content;
  max-width: calc(100% - (var(--page-gutter) * 2));
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(23, 27, 30, 0.9), rgba(16, 19, 22, 0.88));
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 28px rgba(0, 0, 0, 0.24);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo,
.footer-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-copy,
.footer-branding div {
  display: flex;
  flex-direction: column;
}

.brand-name,
.section-head h2,
.hero-copy h1,
.section-copy h2,
.summary-panel h2,
.presence-card strong,
.footer-branding strong {
  font-family: var(--font-display);
}

.brand-name,
.footer-branding strong {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tag,
.section-text,
.footer-branding p,
.footer-bottom,
.faq-a p,
.info-item p,
.presence-card p,
.section-copy p,
.hero-text {
  color: var(--muted);
}

.brand-tag {
  font-size: 0.82rem;
  font-weight: 500;
  color: #c9c3b9;
}

.site-nav,
.footer-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.site-nav {
  justify-content: center;
}

.site-nav a,
.footer-nav a,
.footer-links a,
.footer-bottom a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--text);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  background: var(--text);
  color: #111314;
}

.btn:hover,
.header-cta:hover,
.presence-card:hover {
  transform: translateY(-1px);
}

.hero,
.section {
  padding: 84px 0;
}

.hero {
  padding-top: 54px;
}

.hero-layout,
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.hero-copy,
.hero-stats,
.info-panel,
.presence-card,
.summary-panel,
.faq-list {
  background: linear-gradient(165deg, rgba(28, 32, 36, 0.78), rgba(20, 24, 27, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-copy,
.hero-stats,
.info-panel,
.summary-panel,
.faq-list {
  border-radius: 28px;
}

.hero-copy {
  padding: 40px;
}

.eyebrow,
.presence-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-copy h1,
.section-copy h2,
.section-head h2,
.summary-panel h2 {
  margin-top: 18px;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.hero-text {
  max-width: 58ch;
  margin-top: 24px;
  font-size: 1.02rem;
}

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

.btn-primary {
  background: var(--accent);
  color: #1a1614;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.stat-card,
.info-item {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(35, 40, 45, 0.72), rgba(29, 34, 39, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.05em;
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.platform-card {
  display: grid;
  gap: 8px;
}

.platform-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.platform-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.platform-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.platform-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-copy h2,
.section-head h2,
.summary-panel h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.section-copy p + p {
  margin-top: 16px;
}

.info-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.info-item strong {
  display: block;
  margin-bottom: 4px;
}

.section-head {
  max-width: 760px;
}

.section-text {
  margin-top: 14px;
}

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

.presence-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
}

.presence-card strong {
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.presence-card-static {
  cursor: default;
}

.presence-card-static:hover {
  transform: none;
}

.section-compact {
  padding-top: 0;
}

.summary-panel {
  padding: 32px;
}

.summary-panel p {
  max-width: 70ch;
  margin-top: 18px;
  color: var(--muted);
}

.faq-list {
  overflow: hidden;
  margin-top: 28px;
}

.faq-item + .faq-item {
  margin-top: 1px;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 24px 22px;
}

.site-footer {
  margin-top: 24px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.footer-inner,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

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

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

  .hero-copy h1 {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 12px;
  }

  .header-shell {
    max-width: calc(100% - 20px);
    gap: 10px 18px;
  }

  .site-nav {
    justify-content: center;
  }

  .hero,
  .section {
    padding: 72px 0;
  }

  .hero-copy,
  .hero-stats,
  .info-panel,
  .summary-panel,
  .faq-list {
    border-radius: 24px;
  }

  .hero-copy,
  .summary-panel {
    padding: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4.3rem);
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 12px;
  }

  .hero-actions,
  .footer-nav,
  .footer-links,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .presence-card,
  .hero-copy,
  .summary-panel {
    padding: 22px;
  }

  .faq-q {
    padding: 20px;
  }

  .faq-a p {
    padding: 0 20px 20px;
  }

  .scroll-bg {
    opacity: 0.72;
    background-size: 100% 460px, auto, auto, auto 1100px, 170px 98px;
    background-position: center -70px, center top, center top, center top, center top;
  }
}
