body[data-page=home] main > section:first-of-type {
  background: radial-gradient(circle at top left, rgba(30, 99, 198, 0.08), transparent 35%), linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.72));
}

html[data-dark=true] body[data-page=home] main > section:first-of-type {
  background: radial-gradient(circle at top left, rgba(158, 197, 255, 0.12), transparent 35%), linear-gradient(180deg, rgba(18, 32, 58, 0.34), rgba(18, 32, 58, 0.18));
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.home-hero-copy {
  text-align: left;
}

.home-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(30, 99, 198, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary);
  font-family: var(--heading);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-dark=true] .home-kicker {
  border-color: rgba(158, 197, 255, 0.24);
  background: rgba(23, 40, 72, 0.82);
}

.home-hero-copy h1 {
  margin: 0 0 20px 0;
  font-size: clamp(2.15rem, 4.4vw, 3.9rem);
  font-weight: var(--regular);
  line-height: 1;
  text-align: left;
  text-transform: none;
  letter-spacing: -0.03em;
}

.home-lead {
  max-width: 46rem;
  margin: 0 0 18px 0;
  font-size: 1.08rem;
  line-height: 1.9;
  text-align: left;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.home-actions .button {
  margin: 0;
}

.home-focuses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-focus {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(30, 99, 198, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--dark-gray);
  font-size: 0.95rem;
}

html[data-dark=true] .home-focus {
  border-color: rgba(158, 197, 255, 0.18);
  background: rgba(23, 40, 72, 0.84);
  color: var(--text);
}

.home-portrait-card {
  position: relative;
  display: block;
  padding: 18px;
  border: 1px solid rgba(216, 227, 240, 0.9);
  border-radius: calc(var(--rounded) + 8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

html[data-dark=true] .home-portrait-card {
  border-color: rgba(158, 197, 255, 0.16);
  background: rgba(20, 34, 60, 0.9);
}

.home-portrait-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(34, 58, 94, 0.14);
}

html[data-dark=true] .home-portrait-card:hover {
  box-shadow: 0 18px 40px rgba(5, 10, 20, 0.38);
}

.home-portrait-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: calc(var(--rounded) + 2px);
}

.home-portrait-note {
  margin-top: 16px;
  text-align: left;
}

.home-portrait-note strong {
  display: block;
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: var(--semi-bold);
}

.home-portrait-note span {
  display: block;
  margin-top: 6px;
  color: var(--gray);
  line-height: 1.7;
}

.home-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-strip-card {
  padding: 18px 20px;
  border: 1px solid rgba(216, 227, 240, 0.9);
  border-radius: var(--rounded);
  background: rgba(255, 255, 255, 0.8);
  text-align: left;
  box-shadow: var(--shadow);
}

html[data-dark=true] .home-strip-card {
  border-color: rgba(158, 197, 255, 0.16);
  background: rgba(20, 34, 60, 0.86);
}

.home-strip-label {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: var(--heading);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-strip-card p {
  margin: 0;
  line-height: 1.7;
  text-align: left;
}

.home-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(216, 227, 240, 0.9);
  border-radius: calc(var(--rounded) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 255, 0.86));
  box-shadow: var(--shadow);
  text-align: left;
}

html[data-dark=true] .home-panel {
  border-color: rgba(158, 197, 255, 0.16);
  background: linear-gradient(180deg, rgba(20, 34, 60, 0.94), rgba(23, 40, 72, 0.88));
}

.home-panel h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1.4rem;
}

.home-panel p {
  margin: 0;
  text-align: left;
}

.home-panel ul {
  margin: 0;
  padding-left: 20px;
}

.home-panel li {
  padding-left: 0;
  text-align: left;
  line-height: 1.8;
}

.home-panel .button {
  align-self: flex-start;
  margin: auto 0 0 0;
}

@media (max-width: 980px) {
  .home-hero,
  .home-panels,
  .home-strip {
    grid-template-columns: 1fr;
  }
  .home-hero-copy h1,
  .home-lead {
    text-align: left;
  }
}

/*# sourceMappingURL=home.css.map */