:root {
  --primary: #ff1207;
  --primary-dark: #d90f05;
  --ink: #10131a;
  --muted: #667085;
  --soft: #f4f5f7;
  --soft-2: #eceef2;
  --card: rgba(255, 255, 255, 0.92);
  --line: rgba(16, 19, 26, 0.08);
  --shadow: 0 20px 60px rgba(16, 19, 26, 0.08);
  --shadow-strong: 0 24px 70px rgba(255, 18, 7, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 18, 7, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfbfc 0%, #f2f3f5 100%);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
}

p,
li,
a,
span {
  font-size: 0.92rem;
}

.text-muted-custom {
  color: var(--muted);
}

.site-navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 19, 26, 0.06);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand-wrap img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-copy {
  line-height: 1.05;
}

.brand-title {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.navbar .nav-link {
  color: var(--ink);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  transition: 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary);
  background: rgba(255, 18, 7, 0.08);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.hero-section,
.page-banner {
  position: relative;
  overflow: hidden;
}

.hero-section {
  padding: 5.2rem 0 3.5rem;
}

.page-banner {
  padding: 4.3rem 0 2.2rem;
}

.hero-orb,
.hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-orb {
  width: 260px;
  height: 260px;
  top: -70px;
  right: -60px;
  background: rgba(255, 18, 7, 0.12);
  animation: floaty 7s ease-in-out infinite;
}

.hero-orb-2 {
  width: 180px;
  height: 180px;
  left: -50px;
  bottom: 10px;
  background: rgba(255, 18, 7, 0.08);
  animation: floaty 9s ease-in-out infinite reverse;
}

.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 18, 7, 0.08);
  border: 1px solid rgba(255, 18, 7, 0.16);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.display-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-title {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lead-copy {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
  max-width: 60ch;
}

.glass-panel,
.feature-box,
.metric-box,
.info-box,
.policy-panel,
.story-box,
.contact-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.glass-panel,
.policy-panel {
  padding: 1.45rem;
}

.hero-card {
  position: relative;
}

.hero-card::before,
.policy-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  border-radius: 1.5rem 0 0 1.5rem;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
}

.logo-stage {
  background: linear-gradient(180deg, #f1f2f4 0%, #fbfbfc 100%);
  border: 1px solid rgba(255, 18, 7, 0.12);
  border-radius: 1.5rem;
  padding: 1rem;
}

.logo-stage img {
  width: min(100%, 270px);
  margin: 0 auto;
}

.metric-box,
.feature-box,
.info-box,
.story-box,
.contact-box {
  height: 100%;
  padding: 1.2rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.metric-box:hover,
.feature-box:hover,
.info-box:hover,
.story-box:hover,
.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(16, 19, 26, 0.12);
}

.metric-value,
.feature-icon,
.story-icon,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-strong);
}

.metric-value {
  width: auto;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.98rem;
}

.btn-brand {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border: 0;
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-soft {
  background: #fff;
  border: 1px solid rgba(255, 18, 7, 0.16);
  color: var(--ink);
}

.btn-soft:hover {
  color: var(--primary);
  border-color: rgba(255, 18, 7, 0.3);
}

.btn-play img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

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

.list-clean,
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li,
.policy-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.list-clean li::before,
.policy-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.cta-strip {
  background: linear-gradient(135deg, #17191f 0%, #2c2f36 100%);
  border-radius: 1.4rem;
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-strip h2,
.cta-strip p {
  color: #fff;
}

.site-footer {
  border-top: 1px solid rgba(16, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary);
}

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

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

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(16px); }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 4.2rem;
  }

  .page-banner {
    padding-top: 3.8rem;
  }

  .brand-subtitle {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .display-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .glass-panel,
  .policy-panel,
  .feature-box,
  .metric-box,
  .info-box,
  .story-box,
  .contact-box {
    border-radius: 1.2rem;
  }
}
