:root {
  --skopo-orange: #ef5122;
  --skopo-orange-deep: #c93e15;
  --skopo-charcoal: #232323;
  --skopo-ink: #111111;
  --skopo-cream: #fef8e2;
  --skopo-white: #ffffff;
  --skopo-mist: #f8f1da;
  --skopo-line: rgba(35, 35, 35, 0.12);
  --skopo-shadow: 0 24px 72px rgba(35, 35, 35, 0.12);
  --skopo-radius-xl: 32px;
  --skopo-radius-lg: 24px;
  --skopo-radius-md: 18px;
  --skopo-max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--skopo-charcoal);
  background:
    radial-gradient(circle at top left, rgba(239, 81, 34, 0.18), transparent 28%),
    linear-gradient(180deg, #fffdf5 0%, var(--skopo-cream) 42%, #f7ecd0 100%);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--skopo-max-width));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(254, 248, 226, 0.84);
  border-bottom: 1px solid rgba(35, 35, 35, 0.08);
}

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

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: min(310px, 54vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  color: rgba(35, 35, 35, 0.8);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--skopo-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero-section,
.section {
  padding: 3.75rem 0;
}

.hero-grid,
.section-grid,
.path-grid,
.dual-grid,
.trust-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  align-items: start;
  padding-top: 1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--skopo-orange);
}

.eyebrow-light {
  color: rgba(254, 248, 226, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  letter-spacing: -0.06em;
  max-width: 11.5ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.hero-lead,
.hero-points li,
.content-card p,
.path-card p,
.feature-panel p,
.trust-copy p,
.footer-grid p,
.footer-links a {
  line-height: 1.72;
}

.hero-lead {
  margin: 1.5rem 0 0;
  max-width: 60ch;
  font-size: 1.08rem;
  color: rgba(35, 35, 35, 0.82);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--skopo-orange) 0%, var(--skopo-orange-deep) 100%);
  color: var(--skopo-white);
  box-shadow: 0 16px 34px rgba(239, 81, 34, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(35, 35, 35, 0.14);
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(35, 35, 35, 0.78);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--skopo-orange);
}

.hero-card,
.content-card,
.path-card,
.feature-panel {
  border-radius: var(--skopo-radius-lg);
  border: 1px solid var(--skopo-line);
  box-shadow: var(--skopo-shadow);
}

.hero-card {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 241, 218, 0.92));
}

.card-label,
.metric-title,
.path-step {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--skopo-orange);
}

.metric-grid,
.card-grid,
.path-stack {
  display: grid;
  gap: 1rem;
}

.metric-card {
  padding: 1.1rem;
  border-radius: var(--skopo-radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(35, 35, 35, 0.08);
}

.metric-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.05rem;
}

.metric-card p {
  margin: 0.65rem 0 0;
  color: rgba(35, 35, 35, 0.74);
}

.section-alt {
  background: rgba(255, 255, 255, 0.44);
}

.section-grid,
.path-grid,
.trust-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

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

.content-card,
.path-card,
.feature-panel {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.8);
}

.content-card p,
.path-card p,
.feature-panel p {
  margin: 0.9rem 0 0;
  color: rgba(35, 35, 35, 0.76);
}

.path-card.active {
  background:
    linear-gradient(135deg, rgba(239, 81, 34, 0.12), rgba(255, 255, 255, 0.88));
  border-color: rgba(239, 81, 34, 0.28);
}

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

.text-link {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--skopo-orange-deep);
  font-weight: 700;
}

.section-dark {
  background: linear-gradient(180deg, #1d1d1d 0%, #101010 100%);
  color: var(--skopo-white);
}

.trust-copy p {
  margin: 0 0 1rem;
  color: rgba(254, 248, 226, 0.82);
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  background: #101010;
  color: rgba(254, 248, 226, 0.8);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(254, 248, 226, 0.86);
}

@media (max-width: 920px) {
  .hero-grid,
  .section-grid,
  .path-grid,
  .dual-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .site-header {
    position: static;
  }

  .footer-grid {
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .hero-actions,
  .button {
    width: 100%;
  }

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

  .site-nav {
    gap: 0.8rem 1rem;
  }

  h1 {
    max-width: none;
  }
}
