:root {
  --bg: #181839;
  --bg-deep: #08081f;
  --bg-accent: #202044;
  --surface: rgba(32, 32, 68, 0.72);
  --surface-strong: rgba(43, 43, 91, 0.92);
  --surface-soft: rgba(75, 75, 161, 0.12);
  --line: rgba(165, 169, 213, 0.18);
  --text: #ffffff;
  --muted: #c8cbe6;
  --accent: #fb4b3e;
  --accent-soft: #ff7565;
  --accent-deep: #8f2b2b;
  --accent-secondary: #4b4ba1;
  --accent-secondary-soft: #8288c4;
  --shadow: 0 24px 70px rgba(5, 5, 17, 0.34);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(251, 75, 62, 0.12) 0%, transparent 18%),
    linear-gradient(245deg, rgba(130, 136, 196, 0.14) 0%, transparent 22%),
    linear-gradient(180deg, rgba(75, 75, 161, 0.12) 0%, transparent 28%),
    linear-gradient(180deg, #1c1c3f 0%, #11112d 46%, #08081f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(165, 169, 213, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 169, 213, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 85%);
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0 5rem;
}

.topbar,
.trusted-row span,
.about-visual,
.about-copy,
.coverage-card,
.team-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(32, 32, 68, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.brand-mark img {
  display: block;
  width: auto;
  height: 40px;
}

.topbar-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.topbar-link:hover,
.topbar-link:focus-visible,
.team-links a:hover,
.team-links a:focus-visible {
  color: var(--accent-soft);
}

.hero {
  padding-top: 1rem;
}

.hero-content {
  padding-top: 1.5rem;
  width: calc(100vw - 2rem);
  margin-left: calc(50% - 50vw + 1rem);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 2.5rem;
  text-align: center;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(130, 136, 196, 0.06) 12% 12.1%, transparent 12.1% 28%, rgba(130, 136, 196, 0.05) 28% 28.1%, transparent 28.1% 100%),
    linear-gradient(180deg, transparent 0 86%, rgba(251, 75, 62, 0.16) 86% 86.2%, transparent 86.2% 100%);
  pointer-events: none;
}

.eyebrow,
.section-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  margin-top: 1rem;
  font-size: clamp(3.3rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-intro,
.about-text,
.coverage-body p,
.team-bio {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 60ch;
  margin: 1.5rem auto 0;
  font-size: 1.08rem;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.45rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  box-shadow: 0 12px 30px rgba(251, 75, 62, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(75, 75, 161, 0.24);
  border-color: rgba(130, 136, 196, 0.32);
}

.hero-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.4rem;
  max-width: 68rem;
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-points li::before,
.about-list li::before {
  content: "";
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.section {
  padding-top: 5rem;
}

.section-heading {
  max-width: 880px;
}

.section-heading h2 {
  margin-top: 0.8rem;
}

.section-heading-center {
  margin: 0 auto;
  text-align: center;
}

.section-intro {
  max-width: 58ch;
  margin: 1rem auto 0;
}

.trusted-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.trusted-row span {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  text-align: center;
}

.trusted-logo {
  padding-inline: 0.5rem;
}

.trusted-logo img {
  display: block;
  width: 100%;
  max-width: 170px;
  max-height: 42px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.trusted-logo img:hover {
  opacity: 1;
}

.about-copy,
.coverage-card,
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.about-copy {
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(251, 75, 62, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(75, 75, 161, 0.18), rgba(32, 32, 68, 0.78));
}

.about-copy-full {
  max-width: 920px;
  margin: 0 auto;
}

.about-copy h2 {
  max-width: 12ch;
  margin-top: 0.75rem;
}

.about-list {
  display: grid;
  gap: 1rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.coverage-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(32, 32, 68, 0.82), rgba(24, 24, 57, 0.74));
}

.coverage-thumb {
  min-height: 220px;
  border-bottom: 1px solid rgba(130, 136, 196, 0.14);
}

.coverage-thumb-red {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(140deg, #fb4b3e 0%, #641628 100%);
}

.coverage-thumb-blue {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(140deg, #2a9cff 0%, #12325a 100%);
}

.coverage-thumb-violet {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(140deg, #8288c4 0%, #2d2969 100%);
}

.coverage-thumb-gold {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(140deg, #fbb523 0%, #7d3b08 100%);
}

.coverage-thumb-cyan {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(140deg, #61d5ff 0%, #1f4670 100%);
}

.coverage-thumb-slate {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(140deg, #d8daf0 0%, #565883 100%);
}

.coverage-body {
  padding: 1.3rem;
}

.coverage-type {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--accent-soft);
}

.coverage-body h3 {
  margin-top: 0.55rem;
  font-size: 1.45rem;
}

.coverage-body p {
  margin: 0.75rem 0 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(32, 32, 68, 0.86) 0%, rgba(24, 24, 57, 0.78) 100%);
}

.team-avatar {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 14px 30px rgba(251, 75, 62, 0.22);
}

.team-avatar-round {
  border-radius: 50%;
}

.team-meta {
  margin-top: 1.25rem;
}

.team-meta h3 {
  font-size: 1.6rem;
}

.team-role {
  margin: 0.55rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--muted);
}

.team-bio {
  margin: 1rem 0 0;
}

.team-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 1.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(130, 136, 196, 0.92);
  color: #141433;
  font-weight: 800;
  text-decoration: none;
}

.team-links {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.team-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-soft);
}

@media (max-width: 1100px) {

  .trusted-row,
  .coverage-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .topbar-link {
    display: none;
  }

  .hero-copy {
    min-height: 0;
    padding: 4rem 1.5rem;
  }

  h1,
  .about-copy h2 {
    max-width: 100%;
  }

  .hero-points {
    justify-content: flex-start;
  }

  .trusted-row,
  .coverage-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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