:root {
  --forsa-black: #1a1a1a;
  --forsa-white: #ffffff;
  --forsa-gray-100: #f7f7f7;
  --forsa-gray-200: #ececec;
  --forsa-gray-400: #8a8a8a;
  --forsa-gray-700: #3a3a3a;
  --forsa-grad-start: #f97316;
  --forsa-grad-mid: #ec4899;
  --forsa-grad-end: #a855f7;
  --forsa-grad: linear-gradient(90deg, #f97316, #ec4899, #a855f7);
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--forsa-white);
  color: var(--forsa-black);
  font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--forsa-gray-200);
}

.site-nav .inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand .mark {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  letter-spacing: 0.28em;
  font-size: 22px;
  background: var(--forsa-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand .tag {
  font-size: 11px;
  color: var(--forsa-gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  color: var(--forsa-gray-700);
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--forsa-black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.18s ease;
}

.btn-primary {
  background: var(--forsa-grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(236, 72, 153, 0.24);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.3);
}

.btn-outline {
  border-color: #d4d4d4;
  color: var(--forsa-black);
  background: #fff;
}

.btn-outline:hover {
  border-color: #aaa;
}

.hero {
  padding: 76px 0 54px;
  background: linear-gradient(160deg, #fff9f4 0%, #ffffff 46%, #fdf8ff 100%);
  border-bottom: 1px solid var(--forsa-gray-200);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e9e9e9;
  font-size: 12px;
  color: #575757;
  margin-bottom: 16px;
}

h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h1 .grad {
  background: var(--forsa-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 18px 0 28px;
  max-width: 54ch;
  color: #4c4c4c;
  line-height: 1.7;
  font-size: 16px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-strip {
  background: #111;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #222;
}

.hero-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.hero-strip-grid a {
  position: relative;
  aspect-ratio: 16/11;
  display: block;
}

.hero-strip-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.hero-strip-grid a:hover img {
  opacity: 1;
  transform: scale(1.02);
}

.section {
  padding: 66px 0;
}

.section-title {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0;
  color: #555;
  max-width: 72ch;
  line-height: 1.75;
}

.stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.stat {
  border: 1px solid var(--forsa-gray-200);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.stat .num {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.stat .label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.grid-2 {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card {
  border: 1px solid var(--forsa-gray-200);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
}

.card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 26px;
}

.card .sub {
  margin: 8px 0 14px;
  color: #5a5a5a;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 12px;
  border: 1px solid #dadada;
  color: #4a4a4a;
  border-radius: 999px;
  padding: 6px 10px;
}

.media-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.media-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #fff;
}

.media-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.media-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card .body {
  padding: 12px;
}

.media-card h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.media-card .meta {
  margin-top: 6px;
  color: #6a6a6a;
  font-size: 12px;
}

.band {
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  background: #101010;
  color: #fff;
  border: 1px solid #202020;
}

.band h3 {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 30px;
}

.band p {
  margin: 0;
  color: #d9d9d9;
}

.band .cta-row {
  margin-top: 16px;
}

.band .btn-outline {
  color: #fff;
  border-color: #5c5c5c;
  background: transparent;
}

.page-hero {
  padding: 58px 0 30px;
  border-bottom: 1px solid var(--forsa-gray-200);
  background: #fff;
}

.page-hero h1 {
  font-size: clamp(34px, 5.6vw, 64px);
}

.kpi-list,
.check-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.kpi-list li,
.check-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 9px;
  color: #555;
}

.kpi-list li::before,
.check-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: #a855f7;
  font-size: 14px;
}

.table-wrap {
  margin-top: 20px;
  border: 1px solid #dedede;
  border-radius: 14px;
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: #fff;
}

th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #ededed;
  font-size: 14px;
}

th {
  background: #fafafa;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.03em;
}

.footer {
  border-top: 1px solid var(--forsa-gray-200);
  padding: 24px 0 34px;
  color: #666;
  font-size: 13px;
}

.footer .inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.link-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.link-card {
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}

.link-card h4 {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
}

.link-card p {
  margin: 0;
  color: #595959;
  font-size: 14px;
  line-height: 1.6;
}

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

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

  .media-grid,
  .link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 26px));
  }

  .site-nav .inner {
    min-height: 66px;
  }

  .brand .mark {
    letter-spacing: 0.2em;
    font-size: 19px;
  }

  .stats,
  .media-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .section {
    padding: 52px 0;
  }
}
