:root {
  --features-blue: #1e70f4;
  --features-ink: #16181d;
  --features-muted: #656b76;
  --features-line: rgba(31, 81, 151, 0.14);
  --features-soft: #f4f7fb;
}

.features-body {
  margin: 0;
  color: var(--features-ink);
  background: #fff;
}

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

.features-body .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.features-body .nav {
  max-width: 1360px;
}

.features-header-label {
  position: absolute;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border: 1px solid rgba(30, 112, 244, 0.2);
  border-radius: 999px;
  color: #505866;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 760;
  transform: translateX(-50%);
}

.features-header-label::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--features-blue);
  box-shadow: 0 0 0 6px rgba(30, 112, 244, 0.1);
  content: "";
}

.features-page {
  overflow: clip;
}

.features-hero,
.features-section,
.features-future,
.features-cta {
  padding-inline: clamp(20px, 5vw, 76px);
}

.features-container {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.features-hero {
  position: relative;
  min-height: min(790px, calc(100vh - 90px));
  padding-top: clamp(76px, 9vw, 126px);
  padding-bottom: clamp(74px, 9vw, 118px);
  background:
    radial-gradient(circle at 78% 28%, rgba(76, 147, 255, 0.15), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.features-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
  align-items: center;
  gap: clamp(40px, 7vw, 104px);
}

.features-hero-grid > * {
  min-width: 0;
}

.features-eyebrow,
.features-section-kicker {
  margin: 0 0 18px;
  color: var(--features-blue);
  font-size: 0.83rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.features-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 5.6rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.features-hero-copy {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--features-muted);
  font-size: 1.22rem;
  line-height: 1.62;
}

.features-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.features-summary li {
  padding: 9px 12px;
  border: 1px solid rgba(30, 112, 244, 0.18);
  border-radius: 7px;
  color: #475269;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 720;
}

.features-hero-visual {
  position: relative;
  min-width: 0;
}

.features-hero-visual::before {
  position: absolute;
  inset: 8% 7% -4%;
  z-index: 0;
  border-radius: 50%;
  background: rgba(69, 139, 245, 0.13);
  filter: blur(46px);
  content: "";
}

.features-hero-visual picture,
.features-hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.features-jump {
  padding: 26px clamp(20px, 5vw, 76px);
  border-block: 1px solid var(--features-line);
  background: rgba(255, 255, 255, 0.96);
}

.features-jump-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features-jump a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border-radius: 7px;
  color: #4f5868;
  font-size: 0.86rem;
  font-weight: 740;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.features-jump a:hover,
.features-jump a:focus-visible {
  color: var(--features-blue);
  background: rgba(30, 112, 244, 0.07);
}

.features-jump a:focus-visible,
.features-cta a:focus-visible {
  outline: 3px solid rgba(30, 112, 244, 0.25);
  outline-offset: 3px;
}

.features-section {
  padding-top: clamp(80px, 9vw, 130px);
  padding-bottom: clamp(76px, 8vw, 118px);
}

.features-section:nth-of-type(even) {
  background: var(--features-soft);
}

.features-section-header {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 64px);
}

.features-section-index {
  display: block;
  margin-bottom: 16px;
  color: rgba(30, 112, 244, 0.56);
  font-size: 0.8rem;
  font-weight: 820;
}

.features-section h2 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

.features-section-intro {
  max-width: 690px;
  margin: 0;
  color: var(--features-muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.feature-table {
  margin: 0;
  border-top: 1px solid var(--features-line);
}

.feature-table-head,
.feature-row {
  display: grid;
  grid-template-columns: minmax(200px, 0.29fr) minmax(0, 0.51fr) minmax(210px, 0.2fr);
  gap: clamp(24px, 4vw, 58px);
}

.feature-table-head {
  padding: 15px 4px;
  color: #7a8290;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-row {
  position: relative;
  align-items: start;
  padding: 26px 4px 28px;
  border-top: 1px solid var(--features-line);
}

.feature-row:first-of-type {
  border-top: 0;
}

.feature-row dt,
.feature-row dd {
  margin: 0;
}

.feature-name {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.15rem;
  font-weight: 790;
  line-height: 1.28;
}

.feature-name::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 0.43em;
  border-radius: 50%;
  background: var(--features-blue);
  box-shadow: 0 0 0 5px rgba(30, 112, 244, 0.08);
  content: "";
}

.feature-description {
  color: #5f6672;
  font-size: 0.98rem;
  line-height: 1.6;
}

.feature-availability {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.feature-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(35, 71, 126, 0.12);
  border-radius: 6px;
  color: #5a6475;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 760;
  line-height: 1;
}

.feature-badge-local {
  border-color: rgba(30, 112, 244, 0.18);
  color: #1764d5;
  background: rgba(30, 112, 244, 0.08);
}

.feature-note {
  grid-column: 2 / 4;
  margin-top: -12px;
  color: #7a8290;
  font-size: 0.82rem;
  line-height: 1.5;
}

.features-future {
  padding-top: clamp(76px, 8vw, 116px);
  padding-bottom: clamp(76px, 8vw, 116px);
  background: #eceff3;
}

.features-future-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(36px, 8vw, 112px);
  align-items: center;
}

.features-future h2 {
  margin: 0;
  color: #6c737e;
  font-size: 3.6rem;
  line-height: 1.02;
}

.future-feature {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px dashed rgba(91, 101, 116, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.future-feature-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.future-feature h3 {
  margin: 0;
  color: #5f6671;
  font-size: 1.6rem;
}

.future-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 6px;
  color: #747b86;
  background: rgba(99, 107, 119, 0.11);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.future-feature p {
  margin: 0;
  color: #747b86;
  font-size: 1rem;
  line-height: 1.65;
}

.features-cta {
  padding-top: clamp(84px, 10vw, 142px);
  padding-bottom: clamp(88px, 10vw, 150px);
  text-align: center;
}

.features-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 4.5rem;
  line-height: 1;
}

.features-cta p {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--features-muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.features-cta a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 13px 21px;
  border-radius: 8px;
  color: #fff;
  background: var(--features-blue);
  box-shadow: 0 16px 34px rgba(30, 112, 244, 0.24);
  font-weight: 790;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.features-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(30, 112, 244, 0.3);
}

@media (max-width: 980px) {
  .features-hero h1 {
    font-size: 4rem;
  }

  .features-section h2 {
    font-size: 3.4rem;
  }

  .features-future h2 {
    font-size: 3rem;
  }

  .features-cta h2 {
    font-size: 3.8rem;
  }

  .features-header-label {
    display: none;
  }

  .features-hero {
    min-height: auto;
  }

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

  .features-hero-copy {
    max-width: 760px;
  }

  .features-hero-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

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

  .features-section-header,
  .features-future-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-table-head,
  .feature-row {
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.48fr) minmax(160px, 0.2fr);
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .features-hero,
  .features-section,
  .features-future,
  .features-cta {
    padding-inline: 20px;
  }

  .features-hero {
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .features-hero h1 {
    font-size: 2.75rem;
  }

  .features-hero-copy {
    margin-top: 24px;
    font-size: 1rem;
  }

  .features-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-summary li {
    display: flex;
    align-items: center;
  }

  .features-hero-visual {
    width: calc(100% + 24px);
    margin-left: -12px;
  }

  .features-jump {
    padding: 18px 20px;
  }

  .features-jump-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-jump a {
    justify-content: flex-start;
    min-height: 42px;
    padding: 8px;
    text-align: left;
  }

  .features-section {
    padding-top: 76px;
    padding-bottom: 72px;
  }

  .features-section h2 {
    font-size: 2.65rem;
  }

  .feature-table-head {
    display: none;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 24px 0 25px;
  }

  .feature-name {
    font-size: 1.08rem;
  }

  .feature-description {
    padding-left: 20px;
    font-size: 0.94rem;
  }

  .feature-availability {
    padding-left: 20px;
  }

  .feature-note {
    grid-column: auto;
    margin: 0;
    padding-left: 20px;
  }

  .features-future-grid {
    gap: 30px;
  }

  .features-future h2 {
    font-size: 2.5rem;
  }

  .future-feature h3 {
    font-size: 1.3rem;
  }

  .features-cta h2 {
    font-size: 2.65rem;
  }

  .future-feature-topline {
    align-items: flex-start;
  }

  .features-cta a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .features-jump a,
  .features-cta a {
    transition: none;
  }
}
