.page-home {
  --home-grid-line: rgba(35, 53, 84, 0.3);
  --home-line-green: rgba(0, 255, 157, 0.45);
  background:
    linear-gradient(rgba(35, 53, 84, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 53, 84, 0.12) 1px, transparent 1px),
    var(--c-bg);
  background-size: 48px 48px;
  color: var(--c-paper);
  position: relative;
  overflow-x: hidden;
}

.page-home .hero-frame {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid var(--c-border);
}

.page-home .hero-viewport {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-home .hero-media__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 47, 0.42) 0%, rgba(10, 26, 47, 0.58) 45%, rgba(11, 15, 25, 0.92) 100%);
}

.page-home .hero-frame__ticks {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.page-home .hero-frame__corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 0 solid var(--c-green);
  opacity: 0.85;
}

.page-home .hero-frame__corner--tl {
  top: 16px;
  left: 16px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.page-home .hero-frame__corner--tr {
  top: 16px;
  right: 16px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.page-home .hero-frame__corner--bl {
  bottom: 76px;
  left: 16px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.page-home .hero-frame__corner--br {
  bottom: 76px;
  right: 16px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.page-home .hero-frame__scale {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  width: min(300px, 42vw);
  height: 40px;
  display: none;
}

.page-home .hero-frame__index {
  position: absolute;
  top: 24px;
  right: 52px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--c-green);
  background: rgba(10, 26, 47, 0.6);
  padding: 4px 10px;
  border-radius: 3px;
}

.page-home .hero-content {
  position: relative;
  z-index: 4;
  max-width: 760px;
  padding: 96px 20px 140px;
  text-align: center;
}

.page-home .hero-kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  color: var(--c-green);
  text-transform: uppercase;
  margin: 0 0 14px;
}

.page-home .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  line-height: 1.2;
  color: var(--c-paper);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.page-home .hero-title span {
  color: var(--c-green);
  display: block;
}

.page-home .hero-lead {
  font-size: var(--fs-base);
  color: var(--c-slate);
  max-width: 34em;
  margin: 0 auto;
  line-height: 1.75;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.page-home .hero-float {
  position: absolute;
  z-index: 4;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px;
  background: rgba(17, 34, 61, 0.84);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-amber);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.page-home .hero-float__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--c-slate);
  text-transform: uppercase;
}

.page-home .hero-float__value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--c-green);
  line-height: 1;
}

.page-home .hero-metrics {
  position: absolute;
  z-index: 4;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 18px;
  background: rgba(11, 15, 25, 0.78);
  border: 1px solid rgba(35, 53, 84, 0.7);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.page-home .hero-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.page-home .hero-metric__num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--c-amber);
  line-height: 1.2;
}

.page-home .hero-metric__label {
  font-size: 0.6875rem;
  color: var(--c-slate);
  letter-spacing: 0.06em;
}

.page-home .hero-metric__divider {
  width: 1px;
  height: 30px;
  background: rgba(35, 53, 84, 0.85);
}

.page-home .container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.page-home .sec-head {
  margin-bottom: 2rem;
}

.page-home .sec-head .sg__heading-group {
  margin-bottom: 10px;
}

.page-home .sec-head .sg__lead {
  max-width: 46em;
}

.page-home .data-flash {
  padding: 72px 0;
  border-bottom: 1px solid var(--c-border);
}

.page-home .flash-grid {
  display: grid;
  gap: 24px;
  margin-top: 2rem;
}

.page-home .flash-visual {
  position: relative;
  overflow: hidden;
}

.page-home .flash-content {
  display: grid;
  gap: 14px;
}

.page-home .flash-item {
  padding: 18px 20px;
  border-left: 3px solid var(--c-border);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-home .flash-item:hover {
  border-left-color: var(--c-green);
  transform: translateX(4px);
}

.page-home .flash-item__badge {
  display: inline-block;
  margin-bottom: 10px;
}

.page-home .flash-item__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--c-paper);
}

.page-home .core-features {
  background:
    linear-gradient(180deg, rgba(11, 15, 25, 0.72) 0%, rgba(10, 26, 47, 0.9) 100%),
    var(--c-bg);
  padding: 72px 0;
  border-bottom: 1px solid var(--c-border);
}

.page-home .feature-grid {
  display: grid;
  gap: 20px;
  margin-top: 2rem;
}

.page-home .feature-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.page-home .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.8;
}

.page-home .feature-card--filter::before {
  background: var(--c-green);
}

.page-home .feature-card--mobile::before {
  background: var(--c-amber);
}

.page-home .feature-card--replay::before {
  background: var(--c-paper);
}

.page-home .feature-card:hover {
  border-color: rgba(0, 255, 157, 0.4);
}

.page-home .feature-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-home .feature-card__num {
  color: var(--c-slate);
  font-size: 0.75rem;
}

.page-home .feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  margin: 0;
  color: var(--c-paper);
}

.page-home .feature-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0;
}

.page-home .feature-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.page-home .feature-card__media {
  margin-top: 4px;
  overflow: hidden;
}

.page-home .enterprise-zone {
  padding: 72px 0;
  border-bottom: 1px solid var(--c-border);
  position: relative;
}

.page-home .enterprise-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-amber), transparent);
}

.page-home .enterprise-wrap {
  display: grid;
  gap: 32px;
  margin-top: 2rem;
}

.page-home .enterprise-lead {
  font-size: 1.063rem;
  line-height: 1.8;
  color: var(--c-paper);
  max-width: 38em;
  margin: 16px 0 24px;
}

.page-home .enterprise-list {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
}

.page-home .enterprise-item {
  padding: 16px 18px;
  background: rgba(17, 34, 61, 0.5);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease);
}

.page-home .enterprise-item:hover {
  border-color: rgba(255, 176, 0, 0.45);
}

.page-home .enterprise-item__title {
  font-weight: 700;
  color: var(--c-paper);
  font-size: 1rem;
  margin-bottom: 6px;
}

.page-home .enterprise-item__mark {
  color: var(--c-amber);
  margin-right: 8px;
}

.page-home .enterprise-item__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-slate);
}

.page-home .enterprise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .enterprise-aside {
  padding: 24px;
  border-left: 3px solid var(--c-amber);
  align-self: start;
}

.page-home .enterprise-aside__label {
  font-size: 0.75rem;
  color: var(--c-amber);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-home .enterprise-aside__stat {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  margin: 8px 0 2px;
  color: var(--c-green);
  line-height: 1.1;
}

.page-home .enterprise-aside__note {
  font-size: 0.875rem;
  color: var(--c-slate);
  margin: 0 0 16px;
}

.page-home .enterprise-aside__divider {
  height: 1px;
  background: linear-gradient(90deg, var(--c-amber), transparent);
  margin-bottom: 16px;
}

.page-home .enterprise-aside__sub {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-paper);
  margin: 0;
}

.page-home .latest-insights {
  background:
    linear-gradient(180deg, rgba(11, 15, 25, 0.6) 0%, rgba(10, 26, 47, 0.88) 100%),
    var(--c-bg);
  padding: 72px 0;
  border-bottom: 1px solid var(--c-border);
}

.page-home .insight-grid {
  display: grid;
  gap: 20px;
  margin-top: 2rem;
}

.page-home .insight-card {
  padding: 24px;
  background: rgba(17, 34, 61, 0.5);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-home .insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 157, 0.4);
}

.page-home .insight-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-home .insight-card__tag {
  color: var(--c-slate);
  font-size: 0.75rem;
}

.page-home .insight-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  line-height: 1.45;
  margin: 0;
  color: var(--c-paper);
}

.page-home .insight-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0;
}

.page-home .insight-card__link {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--c-green);
  text-decoration: none;
  margin-top: auto;
  padding-top: 12px;
  letter-spacing: 0.04em;
  transition: color 0.25s var(--ease);
}

.page-home .insight-card__link:hover {
  color: var(--c-amber);
}

.page-home .contact-reach {
  padding: 72px 0;
}

.page-home .contact-wrap {
  display: grid;
  gap: 32px;
  margin-top: 2rem;
}

.page-home .contact-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-slate);
  max-width: 32em;
  margin: 12px 0 24px;
}

.page-home .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.page-home .contact-item {
  padding: 14px 18px;
  background: rgba(17, 34, 61, 0.5);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-green);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .contact-item__label {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--c-slate);
  text-transform: uppercase;
}

.page-home .contact-item__value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-paper);
  font-family: var(--font-mono);
  word-break: break-all;
}

.page-home .contact-item__note {
  font-size: 0.75rem;
  color: var(--c-slate);
}

.page-home .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .contact-note {
  font-size: 0.8125rem;
  color: var(--c-slate);
  margin-top: 16px;
  line-height: 1.7;
}

.page-home .contact-visual {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}

@media (max-width: 767px) {
  .page-home .hero-float {
    display: none;
  }

  .page-home .hero-frame__scale {
    display: none;
  }

  .page-home .hero-frame__index {
    top: 16px;
    right: 48px;
  }

  .page-home .flash-visual .media-frame__meta,
  .page-home .contact-visual .media-frame__meta {
    bottom: 10px;
  }
}

@media (min-width: 768px) {
  .page-home .hero-frame__scale {
    display: block;
  }

  .page-home .hero-float {
    display: flex;
  }

  .page-home .hero-float--a {
    top: 24%;
    right: 48px;
  }

  .page-home .hero-float--b {
    bottom: 36%;
    left: 48px;
  }

  .page-home .flash-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .page-home .flash-visual {
    margin-bottom: 0;
  }

  .page-home .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .feature-card--replay {
    grid-column: span 2;
  }

  .page-home .enterprise-wrap {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: start;
  }

  .page-home .insight-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .insight-card:first-child {
    grid-column: span 1;
  }

  .page-home .contact-wrap {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1100px) {
  .page-home .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .feature-card--replay {
    grid-column: span 1;
  }

  .page-home .enterprise-wrap {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 56px;
  }

  .page-home .contact-wrap {
    gap: 56px;
  }

  .page-home .flash-grid {
    gap: 48px;
  }
}
