:root {
  --bg-dark: #050609;
  --surface-dark: #10121b;
  --surface-dark-soft: rgba(16, 18, 27, 0.86);
  --surface-light: #fff1f1;
  --surface-light-strong: #ffefef;
  --accent: #e2245d;
  --accent-deep: #c32a58;
  --accent-border: #b91a49;
  --text-light: #ffffff;
  --text-soft: #fddde9;
  --text-muted-dark: #e6b4c5;
  --text-dark: #16090e;
  --line-soft: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(185, 26, 73, 0.24);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 24px 60px rgba(139, 21, 56, 0.16);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 36, 93, 0.18), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(195, 42, 88, 0.18), transparent 22%),
    linear-gradient(180deg, #07070b 0%, #0e1016 38%, #f8e9ee 38%, #fdf1f1 100%);
  color: var(--text-dark);
}

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

img {
  max-width: 100%;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 80px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px 18px;
  background: rgba(10, 10, 14, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text small {
  color: var(--text-muted-dark);
  font-size: 0.77rem;
}

.brand-mark {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--text-light);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nav {
  display: inline-flex;
  gap: 22px;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text-light);
}

.nav-cta,
.button,
.sticky-mobile-cta {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--text-light);
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(194, 36, 93, 0.28);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 42px 0 26px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 36px;
  background:
    linear-gradient(105deg, rgba(5, 6, 9, 0.98) 0%, rgba(16, 18, 27, 0.92) 52%, rgba(20, 7, 13, 0.92) 100%),
    radial-gradient(circle at 80% 30%, rgba(226, 36, 93, 0.22), transparent 28%);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.hero-backdrop::before,
.hero-backdrop::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.hero-backdrop::before {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 80px;
  background: radial-gradient(circle, rgba(226, 36, 93, 0.26), transparent 66%);
}

.hero-backdrop::after {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
}

.hero-copy,
.hero-panel,
.belief-strip,
.proof-banner,
.final-card {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 26px 8px 26px 10px;
  color: var(--text-light);
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.hero-summary div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 241, 241, 0.92);
}

.hero-summary strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-summary p {
  margin: 0;
  color: #3b1020;
  font-weight: 800;
}

.hero-badges,
.hero-fit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.pill-outline {
  background: rgba(226, 36, 93, 0.08);
  color: var(--text-soft);
  border-color: rgba(226, 36, 93, 0.35);
}

.eyebrow {
  margin: 18px 0 14px;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-lead,
.section-heading p,
.feature-card p,
.responsibility-list p,
.fit-card p,
.benefit-card p,
.proof-banner p,
.final-card p,
.credibility-points p,
.spotlight-card p,
.belief-strip p,
.credibility-quote p {
  line-height: 1.75;
}

.hero-lead {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 1.03rem;
}

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

.button,
.sticky-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary,
.sticky-mobile-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--text-light);
  box-shadow: 0 20px 34px rgba(194, 36, 93, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-flash::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 50%;
  transform: skewX(-24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  animation: flash 3.6s linear infinite;
}

.hero-fit {
  margin-top: 26px;
}

.hero-fit span {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-dark);
  min-height: 280px;
  background: linear-gradient(180deg, rgba(16, 18, 27, 0.9), rgba(37, 11, 22, 0.9));
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center top;
}

.dark-card,
.soft-card,
.hero-stats,
.proof-banner,
.final-card,
.belief-strip {
  border-radius: var(--radius-lg);
}

.dark-card {
  background: var(--surface-dark-soft);
  color: var(--text-light);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-dark);
}

.soft-card {
  background: linear-gradient(180deg, rgba(255, 241, 241, 0.95), rgba(253, 221, 233, 0.72));
  border: 1px solid rgba(185, 26, 73, 0.12);
  box-shadow: var(--shadow-soft);
}

.spotlight-card,
.hero-stats,
.feature-card,
.fit-card,
.benefit-card,
.credibility-quote,
.credibility-points article,
.proof-banner,
.final-card,
.belief-strip {
  padding: 28px;
}

.compact-card {
  padding: 22px;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--text-muted-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.spotlight-card h2 {
  font-size: 2.15rem;
}

.dark-card h2,
.dark-card h3,
.proof-banner strong,
.final-card h2 {
  color: var(--text-light);
}

.spotlight-card p,
.dark-card p,
.dark-card li,
.proof-banner p {
  color: var(--text-soft);
}

.spotlight-card ul,
.fit-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.9;
}

.hero-stats {
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, rgba(138, 21, 56, 0.95), rgba(88, 14, 36, 0.95));
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.hero-stats div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-stats strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.35rem;
  line-height: 1;
}

.belief-strip {
  margin: 18px 0 26px;
  background: linear-gradient(135deg, rgba(195, 42, 88, 0.94), rgba(109, 20, 44, 0.96));
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
  text-align: center;
}

.belief-strip p {
  margin: 0;
  font-size: 1.06rem;
}

.section {
  padding: 44px 0;
}

.section-tight {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading h2 {
  color: #200710;
}

.section-heading p {
  color: #5e2337;
}

#why-us .section-heading h2,
#why-us .section-heading p,
.section-contrast .section-heading h2,
.section-contrast .section-heading p {
  color: var(--text-light);
}

#why-us .section-heading p,
.section-contrast .section-heading p {
  color: var(--text-muted-dark);
}

.section-heading.narrow {
  max-width: 780px;
}

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

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

.feature-card h3,
.responsibility-list h3,
.fit-card h3,
.benefit-card h3,
.credibility-points h3 {
  color: #2d0b17;
}

.feature-card p,
.responsibility-list p,
.benefit-card p,
.credibility-points p {
  color: #68273d;
}

.section-contrast {
  position: relative;
}

.credibility-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.credibility-quote p:last-child {
  color: var(--text-soft);
}

.quote-mark {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 5rem;
  line-height: 0.8;
}

.credibility-points {
  display: grid;
  gap: 16px;
}

.number {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.role-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: start;
}

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

.fit-card p,
.fit-card li {
  color: var(--text-soft);
}

.section-benefits {
  padding-top: 28px;
}

.benefit-stack {
  display: grid;
  gap: 14px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
}

.benefit-card span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(226, 36, 93, 0.14), rgba(195, 42, 88, 0.2));
  color: var(--accent-deep);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.section-proof {
  padding-top: 20px;
}

.proof-banner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background:
    radial-gradient(circle at right top, rgba(226, 36, 93, 0.2), transparent 20%),
    linear-gradient(135deg, rgba(16, 18, 27, 0.97), rgba(37, 11, 22, 0.94));
  color: var(--text-light);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-dark);
}

.proof-banner strong {
  display: block;
  margin-bottom: 8px;
}

.final-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  background:
    radial-gradient(circle at 85% 10%, rgba(226, 36, 93, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(16, 18, 27, 0.98), rgba(27, 12, 19, 0.96));
  color: var(--text-light);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-dark);
}

.final-copy p,
.contact-note {
  color: var(--text-soft);
}

.contact-note {
  max-width: 360px;
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.sticky-mobile-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 22;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.button:hover,
.sticky-mobile-cta:hover {
  transform: translateY(-2px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

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

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

@keyframes flash {
  0% {
    left: -120%;
  }

  18%,
  100% {
    left: 140%;
  }
}

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

  .nav-cta,
  .button,
  .sticky-mobile-cta,
  .reveal {
    transition: none;
  }

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

  .button-flash::after {
    animation: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .credibility-layout,
  .role-layout,
  .final-card {
    grid-template-columns: 1fr;
  }

  .grid-three,
  .proof-banner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 12px 0 0;
  }

  .hero-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    background:
      linear-gradient(180deg, #07070b 0%, #10121b 54%, #f8e9ee 54%, #fdf1f1 100%);
  }

  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 10px;
    padding-bottom: 72px;
  }

  .topbar {
    position: static;
    margin-bottom: 10px;
    padding: 12px 14px;
    gap: 10px;
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .hero {
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero-backdrop {
    border-radius: 28px;
  }

  .spotlight-card,
  .hero-stats,
  .feature-card,
  .fit-card,
  .benefit-card,
  .credibility-quote,
  .credibility-points article,
  .proof-banner,
  .final-card,
  .belief-strip {
    padding: 22px;
  }

  h1 {
    max-width: none;
    width: 100%;
    font-size: 1.88rem;
    line-height: 0.98;
    letter-spacing: 0.01em;
  }

  h2 {
    font-size: 1.62rem;
    line-height: 0.94;
  }

  h3 {
    margin-bottom: 6px;
    font-size: 1.06rem;
  }

  .eyebrow {
    margin: 10px 0 10px;
    font-size: 0.67rem;
    letter-spacing: 0.16em;
  }

  .hero-copy {
    padding-top: 2px;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-lead,
  .section-heading p,
  .feature-card p,
  .responsibility-list p,
  .fit-card p,
  .benefit-card p,
  .proof-banner p,
  .final-card p,
  .credibility-points p,
  .spotlight-card p,
  .belief-strip p,
  .credibility-quote p {
    line-height: 1.48;
    font-size: 0.93rem;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
  }

  .button,
  .sticky-mobile-cta {
    min-height: 48px;
    width: 100%;
    padding: 0 16px;
    font-size: 0.94rem;
  }

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

  .hero-fit {
    gap: 8px;
    margin-top: 10px;
  }

  .hero-fit span,
  .pill {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .hero-summary {
    gap: 8px;
    margin-top: 10px;
  }

  .hero-summary div {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .hero-summary strong {
    margin-bottom: 2px;
    font-size: 0.68rem;
  }

  .hero-summary p {
    font-size: 0.92rem;
  }

  .hero-image-card,
  .hero-image {
    min-height: 170px;
  }

  .section {
    padding: 18px 0;
  }

  .section-tight {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 14px;
  }

  .grid,
  .credibility-points,
  .responsibility-list,
  .benefit-stack,
  .proof-banner,
  .hero-panel {
    gap: 10px;
  }

  .proof-banner {
    padding: 16px;
  }

  .benefit-card span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.1rem;
  }

  .hero-stats div {
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding-bottom: 10px;
  }

  .hero-stats strong {
    font-size: 1.75rem;
  }

  .compact-card,
  .spotlight-card,
  .hero-stats,
  .feature-card,
  .fit-card,
  .benefit-card,
  .credibility-quote,
  .credibility-points article,
  .final-card {
    padding: 16px;
  }

  .fit-card ul,
  .spotlight-card ul {
    margin-top: 10px;
    line-height: 1.55;
    padding-left: 16px;
  }

  .final-card {
    gap: 14px;
  }

  .sticky-mobile-cta {
    display: inline-flex;
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.9rem;
  }
}
