.home-page {
  --home-accent:#139b98;
  --home-ink:#172120;
  --home-muted:#687371;
  --home-line:#e9eeee;
  --home-soft:#f7faf9;
}

.home-hero {
  position:relative;
  min-height:76vh;
  overflow:hidden;
  background:
    linear-gradient(to bottom,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,.68) 9%,
      rgba(255,255,255,0) 25%,
      rgba(255,255,255,0) 74%,
      rgba(255,255,255,.82) 92%,
      rgba(255,255,255,1) 100%),
    linear-gradient(to right,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,.96) 38%,
      rgba(255,255,255,.58) 57%,
      rgba(255,255,255,0) 76%),
    var(--hero-url) right center / cover no-repeat;
}
.home-hero .in {
  align-items:center;
}
.home-eyebrow {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  color:var(--home-accent);
  font-size:11px;
  font-weight:850;
  letter-spacing:.17em;
}
.home-eyebrow::before {
  content:"";
  width:28px;
  height:1px;
  background:currentColor;
}
.home-hero h1 {
  max-width:650px;
  font-size:clamp(31px,4.3vw,58px);
  line-height:1.22;
  letter-spacing:.045em;
}
.home-hero .lead {
  max-width:610px;
  margin-top:18px;
  color:#596563;
  font-size:14px;
  line-height:2;
}
.home-hero .actions { margin-top:24px; }
.home-hero .btn.primary { background:#172120; }
.home-hero .btn.ghost { border-color:#dfe7e6; }
.home-news-link {
  display:inline-flex;
  align-items:center;
  gap:9px;
  max-width:100%;
  margin-top:22px;
  padding:7px 12px;
  color:#56615f;
  border:1px solid rgba(23,33,32,.08);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.home-news-link b {
  color:var(--home-accent);
  font-size:10px;
  letter-spacing:.12em;
}
.home-news-link span {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.home-section { padding:72px 0; }
.home-section + .home-section { border-top:1px solid var(--home-line); }
.home-heading {
  display:grid;
  grid-template-columns:minmax(190px,.7fr) minmax(0,1.3fr);
  gap:clamp(28px,7vw,95px);
  align-items:start;
  margin-bottom:36px;
}
.home-heading h2 {
  margin:0;
  font-size:clamp(21px,2.4vw,31px);
  line-height:1.45;
  letter-spacing:.045em;
}
.home-heading p {
  max-width:710px;
  margin:0;
  color:var(--home-muted);
  font-size:13px;
  line-height:2;
}

.home-facts {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  border-top:1px solid var(--home-line);
  border-bottom:1px solid var(--home-line);
}
.home-fact { padding:27px 20px; }
.home-fact + .home-fact { border-left:1px solid var(--home-line); }
.home-fact strong {
  display:block;
  margin-bottom:5px;
  font-size:clamp(18px,2.1vw,27px);
  line-height:1.3;
}
.home-fact span { color:var(--home-muted); }

.home-services {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.home-service {
  min-height:250px;
  display:flex;
  flex-direction:column;
  padding:28px;
  border:1px solid var(--home-line);
  border-radius:20px;
  background:#fff;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.home-service:hover {
  transform:translateY(-4px);
  border-color:#cadad8;
  box-shadow:0 16px 38px rgba(28,72,69,.08);
}
.home-service .index {
  color:var(--home-accent);
  font-size:11px;
  font-weight:850;
  letter-spacing:.15em;
}
.home-service h3 { margin:42px 0 10px; font-size:17px; }
.home-service p { margin:0; color:var(--home-muted); line-height:1.9; }
.home-service .more {
  margin-top:auto;
  padding-top:24px;
  color:var(--home-accent);
  font-weight:800;
}

.home-split {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.home-feature {
  min-height:310px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:clamp(28px,4vw,48px);
  overflow:hidden;
  border:1px solid var(--home-line);
  border-radius:24px;
  background:
    radial-gradient(circle at 85% 15%,rgba(19,155,152,.12),transparent 34%),
    #fff;
}
.home-feature.channels {
  background:
    radial-gradient(circle at 85% 15%,rgba(244,167,185,.18),transparent 35%),
    #fff;
}
.home-feature small { color:var(--home-accent); font-weight:850; letter-spacing:.14em; }
.home-feature h3 { margin:13px 0 10px; font-size:clamp(20px,2.3vw,29px); }
.home-feature p { max-width:58ch; margin:0 0 20px; color:var(--home-muted); }
.home-feature a { align-self:flex-start; font-weight:800; }

.home-news {
  display:grid;
  grid-template-columns:145px minmax(0,1fr) auto;
  gap:22px;
  align-items:center;
  padding:25px 0;
  border-top:1px solid var(--home-line);
  border-bottom:1px solid var(--home-line);
}
.home-news time { color:var(--home-muted); }
.home-news h3 { margin:0; font-size:15px; }
.home-news .more { color:var(--home-accent); font-weight:800; }

.home-cta {
  padding:58px clamp(26px,6vw,76px);
  border:1px solid var(--home-line);
  border-radius:26px;
  background:#fff;
  box-shadow:0 18px 48px rgba(28,72,69,.06);
}
.home-cta h2 { margin:0; font-size:clamp(23px,2.7vw,34px); }
.home-cta p { max-width:65ch; margin:12px 0 22px; color:var(--home-muted); }
.home-cta .actions { display:flex; gap:10px; flex-wrap:wrap; }

@media (max-width:800px) {
  .home-hero { min-height:68vh; }
  .home-heading { grid-template-columns:1fr; gap:14px; }
  .home-facts { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .home-fact:nth-child(3) { border-left:0; border-top:1px solid var(--home-line); }
  .home-fact:nth-child(4) { border-top:1px solid var(--home-line); }
  .home-services { grid-template-columns:1fr; }
  .home-service { min-height:210px; }
  .home-split { grid-template-columns:1fr; }
}

@media (max-width:560px) {
  .home-hero {
    min-height:72vh;
    background:
      linear-gradient(to bottom,rgba(255,255,255,1) 0%,rgba(255,255,255,.3) 24%,rgba(255,255,255,.2) 65%,rgba(255,255,255,1) 100%),
      linear-gradient(to right,rgba(255,255,255,.97) 0%,rgba(255,255,255,.82) 58%,rgba(255,255,255,.28) 100%),
      var(--hero-url) 66% center / cover no-repeat;
  }
  .home-hero h1 { font-size:30px; }
  .home-news-link { width:100%; }
  .home-section { padding:52px 0; }
  .home-facts { grid-template-columns:1fr; }
  .home-fact + .home-fact { border-top:1px solid var(--home-line); border-left:0; }
  .home-news { grid-template-columns:1fr; gap:7px; }
  .home-news .more { margin-top:6px; }
  .home-cta { border-radius:20px; }
}
