:root {
  --bg: #f4efe6;
  --surface: rgba(255, 255, 255, 0.78);
  --text: #14212c;
  --text-soft: #576574;
  --line: rgba(20, 33, 44, 0.12);
  --cyan: #0d9bb5;
  --amber: #f28f3b;
  --red: #d95d39;
  --shadow-lg: 0 30px 80px -40px rgba(17, 32, 45, 0.42);
  --shadow-md: 0 24px 60px -42px rgba(17, 32, 45, 0.35);
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(13, 155, 181, 0.12), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(242, 143, 59, 0.18), transparent 22%),
    linear-gradient(180deg, #f7f2e8 0%, #f4efe6 38%, #efe9de 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(var(--max-width), calc(100% - 3rem));
  margin: 0 auto;
}

#top {
  scroll-margin-top: 5.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(244, 239, 230, 0.8);
  border-bottom: 1px solid rgba(20, 33, 44, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 1rem;
  height: 2.7rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber) 0%, var(--red) 100%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong,
.brand-text span,
.eyebrow,
.section-kicker,
.hero h1,
.section-heading h2,
.integration-copy h2,
.cta-card h2,
.simple-card h3 {
  font-family: "Sora", "Instrument Sans", sans-serif;
}

.brand-text span {
  margin-top: 0.2rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(20, 33, 44, 0.78);
  font-weight: 600;
}

.nav-actions,
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--amber) 100%);
  color: #fffdf8;
  box-shadow: 0 18px 35px -24px rgba(217, 93, 57, 0.6);
}

.button-nav {
  background: rgba(20, 33, 44, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fffdf8;
  box-shadow: 0 18px 35px -24px rgba(17, 32, 45, 0.48);
}

.button-secondary,
.button-muted {
  background: rgba(20, 33, 44, 0.06);
  border-color: rgba(20, 33, 44, 0.1);
  color: var(--text);
}

.hero {
  position: relative;
  padding: clamp(4.75rem, 9vw, 8.5rem) 0 2.25rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(13, 155, 181, 0.18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(242, 143, 59, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(17, 32, 45, 0.9) 0%, rgba(27, 45, 61, 0.82) 38%, rgba(244, 239, 230, 0) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 20%),
    repeating-radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 18px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(620px, 1.12fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
}

.hero h1,
.section-heading h2,
.integration-copy h2,
.cta-card h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  max-width: 10ch;
  color: #fffdf8;
}

.hero p,
.section-heading p,
.integration-copy p,
.cta-card p,
.simple-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.hero p {
  color: rgba(247, 250, 252, 0.82);
  max-width: 38rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 50rem);
  justify-self: center;
  overflow: visible;
}

.dashboard-shell,
.simple-card,
.integration-list,
.cta-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  min-height: 29.5rem;
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
  box-shadow: var(--shadow-lg);
  transform: scale(0.7);
  transform-origin: top center;
  width: 142.8572%;
  margin-bottom: -12.2rem;
  margin-left: -21.4286%;
}

.dashboard-sidebar,
.dashboard-kpis,
.dashboard-topbar,
.dashboard-user,
.panel-heading,
.table-head,
.table-row,
.alert-item,
.status-row,
.outage-grid,
.footer-content,
.integration-simple {
  display: flex;
}

.dashboard-sidebar {
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.9rem 0.75rem;
  background: linear-gradient(180deg, #243243 0%, #1b2532 100%);
  color: rgba(237, 243, 250, 0.8);
}

.dashboard-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Sora", "Instrument Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.dashboard-logo-mark {
  width: 0.58rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber) 0%, var(--red) 100%);
}

.dashboard-nav {
  display: grid;
  gap: 0.42rem;
}

.dashboard-nav-bottom {
  margin-top: auto;
}

.dashboard-nav-item {
  display: flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.65rem;
  border-radius: 0.8rem;
  font-size: 0.76rem;
}

.dashboard-nav-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.dashboard-main {
  padding: 0.72rem;
  display: grid;
  gap: 0.65rem;
}

.dashboard-topbar {
  align-items: center;
  gap: 0.9rem;
  min-height: 2.65rem;
  padding: 0 0.7rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(19, 33, 44, 0.07);
}

.dashboard-menu {
  display: inline-grid;
  gap: 0.22rem;
}

.dashboard-menu span {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(20, 33, 44, 0.48);
}

.dashboard-search {
  flex: 1;
  min-height: 2.2rem;
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: #f4f7fb;
  color: #92a0af;
  font-size: 0.85rem;
}

.dashboard-user {
  align-items: center;
  gap: 0.8rem;
}

.dashboard-alert-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(217, 93, 57, 0.12);
}

.dashboard-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #27539a 0%, #1d3872 100%);
  color: #ffffff;
  font-weight: 700;
}

.dashboard-kpis {
  gap: 0.55rem;
}

.kpi-card,
.dashboard-panel {
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(19, 33, 44, 0.07);
  box-shadow: 0 22px 38px -32px rgba(17, 32, 45, 0.28);
}

.kpi-card {
  flex: 1;
  min-width: 0;
  padding: 0.68rem 0.72rem;
}

.kpi-label {
  display: block;
  margin-bottom: 0.2rem;
  color: #5d6976;
  font-size: 0.75rem;
}

.kpi-card strong {
  display: block;
  color: #1d2a37;
  font-family: "Sora", "Instrument Sans", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.kpi-card small {
  display: block;
  margin-top: 0.18rem;
  color: #7b8897;
  font-size: 0.66rem;
}

.kpi-card-positive strong,
.table-up {
  color: #19a469;
}

.kpi-card-warn strong,
.table-mid {
  color: #d98222;
}

.dashboard-body {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(240px, 0.68fr);
  gap: 0.65rem;
  min-height: 0;
}

.dashboard-left,
.dashboard-right,
.dashboard-lower {
  display: grid;
  gap: 0.65rem;
}

.dashboard-lower {
  grid-template-columns: 1fr;
}

.dashboard-panel {
  padding: 0.72rem;
}

.dashboard-chart-panel {
  padding-bottom: 0.75rem;
}

.panel-heading {
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.panel-heading strong {
  display: block;
  color: #1e2b38;
  font-size: 1rem;
}

.panel-heading span {
  display: block;
  color: #7f8a98;
  font-size: 0.74rem;
}

.panel-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: #f2f5f9;
}

.panel-tabs span {
  padding: 0.22rem 0.56rem;
  border-radius: 999px;
  color: #7f8a98;
  font-size: 0.72rem;
}

.panel-tabs .active {
  background: #ffffff;
  color: #1e2b38;
  box-shadow: 0 10px 20px -18px rgba(20, 33, 44, 0.3);
}

.inline-stats {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #667280;
  font-size: 0.7rem;
  white-space: nowrap;
}

.inline-stats strong {
  display: inline;
  margin-right: 0.2rem;
  color: #1e2b38;
  font-size: 0.86rem;
}

.dashboard-chart {
  position: relative;
  height: 11.6rem;
  border-radius: 1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(227, 244, 239, 0.78) 0%, rgba(255, 255, 255, 0.95) 72%),
    #ffffff;
}

.chart-grid-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(157, 173, 189, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 173, 189, 0.14) 1px, transparent 1px);
  background-size: 100% 25%, 11.11% 100%;
}

.chart-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.chart-area-fill {
  fill: rgba(82, 196, 143, 0.12);
}

.chart-line-main {
  fill: none;
  stroke: #2dbb79;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line-power,
.chart-line-loss,
.chart-line-na {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line-power {
  stroke: #f2a547;
  stroke-width: 3;
}

.chart-line-loss {
  stroke: #df6b54;
  stroke-width: 3;
}

.chart-line-na {
  stroke: #b8c1cb;
  stroke-width: 3;
}

.chart-tooltip {
  position: absolute;
  right: 3rem;
  bottom: 2.15rem;
  z-index: 2;
  padding: 0.6rem 0.75rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 42px -30px rgba(17, 32, 45, 0.32);
}

.chart-tooltip span {
  display: block;
  color: #1f2d39;
  font-family: "Sora", "Instrument Sans", sans-serif;
  font-size: 0.95rem;
}

.chart-tooltip small {
  display: block;
  color: #7b8897;
  font-size: 0.68rem;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.6rem;
  color: #667280;
  font-size: 0.74rem;
}

.legend-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  margin-right: 0.35rem;
}

.legend-dot.ok {
  background: #2dbb79;
}

.legend-dot.amber {
  background: #f2a547;
}

.legend-dot.red {
  background: #df6b54;
}

.legend-dot.neutral {
  background: #b8c1cb;
}

.table-head,
.table-row {
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 0;
}

.table-head {
  color: #7f8a98;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.table-row {
  border-top: 1px solid rgba(19, 33, 44, 0.07);
  color: #24313d;
  font-size: 0.8rem;
}

.table-head span,
.table-row span {
  flex: 1;
  min-width: 0;
}

.alert-list,
.status-stack {
  display: grid;
  gap: 0.65rem;
}

.alert-item p {
  margin: 0;
  color: #667280;
  font-size: 0.76rem;
  line-height: 1.35;
}

.alert-item strong,
.status-row strong {
  color: #1f2d39;
}

.alert-item {
  align-items: flex-start;
  gap: 0.6rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(19, 33, 44, 0.07);
}

.alert-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.alert-icon {
  flex: 0 0 auto;
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.3rem;
  border-radius: 50%;
}

.alert-icon-red {
  background: #df6b54;
}

.alert-icon-amber {
  background: #f2a547;
}

.status-row {
  align-items: end;
  justify-content: space-between;
}

.status-row small {
  display: block;
  color: #7f8a98;
  font-size: 0.72rem;
}

.status-row span {
  color: #55616f;
  font-size: 0.76rem;
  font-weight: 700;
}

.status-bar {
  height: 0.55rem;
  border-radius: 999px;
  overflow: hidden;
  background: #edf2f6;
  display: flex;
}

.status-segment {
  display: block;
  height: 100%;
}

.status-online {
  background: linear-gradient(90deg, #3cc78e 0%, #68d5ac 100%);
}

.status-los {
  background: #df6b54;
}

.status-power {
  background: #f2a547;
}

.status-offline {
  background: #b8c1cb;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: #667280;
  font-size: 0.68rem;
}

.outage-grid {
  gap: 0.55rem;
  flex-wrap: wrap;
}

.outage-card {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.75rem;
  border-radius: 1rem;
  background: #f5f8fb;
}

.outage-card strong {
  display: block;
  color: #1f2d39;
  font-family: "Sora", "Instrument Sans", sans-serif;
  font-size: 0.95rem;
}

.outage-card small {
  display: block;
  margin-top: 0.18rem;
  color: #7f8a98;
  font-size: 0.7rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

#overview.section {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.proof-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 33, 44, 0.08);
  box-shadow: var(--shadow-md);
}

.proof-strip p {
  margin: 0;
  color: var(--text-soft);
}

.proof-stat {
  flex: 0 0 auto;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(13, 155, 181, 0.12), rgba(242, 143, 59, 0.16));
  color: var(--text);
  font-family: "Sora", "Instrument Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.counter-card {
  padding: 1.2rem 1.25rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 33, 44, 0.08);
  box-shadow: var(--shadow-md);
}

.counter-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Sora", "Instrument Sans", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.counter-card span {
  display: block;
  color: var(--text-soft);
  line-height: 1.5;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.simple-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1.6rem;
  padding: 1.6rem;
  min-height: 100%;
}

.simple-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.feature-points {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.feature-points li + li {
  margin-top: 0.35rem;
}

.feature-icon {
  position: relative;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(20, 33, 44, 0.06) 0%, rgba(20, 33, 44, 0.02) 100%);
  border: 1px solid rgba(20, 33, 44, 0.08);
}

.feature-icon-network span,
.feature-icon-activation span,
.feature-icon-service span {
  position: absolute;
  display: block;
}

.feature-icon-network::before,
.feature-icon-network::after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(13, 155, 181, 0.35);
}

.feature-icon-network::before {
  top: 1.4rem;
  left: 0.9rem;
  width: 1.45rem;
  transform: rotate(28deg);
}

.feature-icon-network::after {
  top: 1.85rem;
  left: 1.55rem;
  width: 0.95rem;
  transform: rotate(-34deg);
}

.feature-icon-network span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #0d9bb5;
  box-shadow: 0 0 0 5px rgba(13, 155, 181, 0.12);
}

.feature-icon-network span:nth-child(1) {
  top: 0.82rem;
  left: 0.72rem;
}

.feature-icon-network span:nth-child(2) {
  top: 1.55rem;
  left: 1.7rem;
}

.feature-icon-network span:nth-child(3) {
  top: 0.98rem;
  right: 0.72rem;
}

.feature-icon-activation span {
  left: 1.25rem;
  top: 0.62rem;
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.25rem solid transparent;
  border-top: 1.2rem solid #f28f3b;
  transform: skewX(-16deg);
}

.feature-icon-activation::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.55rem;
  width: 0;
  height: 0;
  border-left: 0.25rem solid transparent;
  border-right: 0.55rem solid transparent;
  border-bottom: 1.15rem solid #d95d39;
  transform: skewX(-16deg);
}

.feature-icon-service::before {
  content: "";
  position: absolute;
  top: 0.78rem;
  left: 1.18rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  border: 2px solid #1e394d;
}

.feature-icon-service span:nth-child(1) {
  left: 0.95rem;
  bottom: 0.75rem;
  width: 1.4rem;
  height: 0.7rem;
  border-radius: 0.7rem 0.7rem 0.4rem 0.4rem;
  border: 2px solid #1e394d;
  border-top: 0;
}

.feature-icon-service span:nth-child(2) {
  right: 0.62rem;
  bottom: 0.7rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: rgba(13, 155, 181, 0.14);
  box-shadow: inset 0 0 0 2px rgba(13, 155, 181, 0.55);
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.72) 0%, rgba(245, 239, 228, 0.92) 100%);
}

.integration-simple {
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.integration-copy {
  max-width: 34rem;
}

.integration-flow {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr) minmax(0, 1fr);
  gap: 1rem;
  border-radius: 2rem;
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.flow-column,
.flow-core {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.flow-label {
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flow-box,
.flow-core-box {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(20, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-weight: 600;
  text-align: center;
}

.flow-core {
  justify-content: center;
  align-items: center;
}

.flow-core-box {
  width: 100%;
  background: linear-gradient(180deg, #173140 0%, #0d9bb5 100%);
  color: #f7fbfc;
  border-color: rgba(13, 155, 181, 0.2);
  box-shadow: 0 18px 38px -30px rgba(13, 155, 181, 0.55);
}

.flow-core p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  text-align: center;
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 2rem;
  padding: 2rem;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(13, 155, 181, 0.12), rgba(242, 143, 59, 0.16));
  border: 1px solid rgba(20, 33, 44, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.pricing-panel {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 33, 44, 0.08);
  box-shadow: var(--shadow-md);
}

.pricing-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-label {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-value {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pricing-value strong {
  font-family: "Sora", "Instrument Sans", sans-serif;
  font-size: 2.35rem;
  line-height: 1;
  color: var(--text);
}

.pricing-value span {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.pricing-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pricing-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(20, 33, 44, 0.06);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 2rem 0 2.8rem;
  border-top: 1px solid rgba(20, 33, 44, 0.08);
}

.footer-content {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 26rem;
}

.footer-brand span,
.footer-company span,
.footer-company a,
.footer-links a {
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .integration-simple,
  .simple-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    padding-bottom: 3.5rem;
  }

  .hero-copy {
    gap: 1.2rem;
  }

  .dashboard-shell {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: auto;
    width: 100%;
    margin-bottom: 0;
    transform: none;
  }

  .dashboard-kpis,
  .outage-grid {
    flex-wrap: wrap;
  }

  .dashboard-body,
  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .integration-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-nav {
    justify-content: flex-start;
    order: 3;
    width: 100%;
  }

  .nav-wrapper,
  .cta-card,
  .footer-content {
    flex-wrap: wrap;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.4rem));
  }

  .site-nav {
    display: none;
  }

  .nav-wrapper {
    gap: 0.8rem;
    padding: 0.8rem 0;
    flex-wrap: nowrap;
  }

  .nav-actions {
    display: none;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 0.85rem;
    height: 2.2rem;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text span {
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-grid {
    gap: 1.75rem;
  }

  .hero-visual {
    width: 100%;
    justify-self: stretch;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 0;
    margin-left: 0;
    transform: none;
    border-radius: 1.35rem;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 0.75rem;
    gap: 0.65rem;
  }

  .dashboard-topbar {
    min-height: 2.65rem;
    padding: 0 0.7rem;
  }

  .dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .inline-stats {
    display: none;
  }

  .dashboard-user {
    display: none;
  }

  .dashboard-search {
    min-width: 0;
    font-size: 0.78rem;
  }

  .kpi-card {
    padding: 0.65rem 0.7rem;
  }

  .kpi-card strong {
    font-size: 1.2rem;
  }

  .kpi-card small,
  .kpi-label {
    font-size: 0.66rem;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .dashboard-lower,
  .dashboard-right,
  .dashboard-outage-panel,
  .dashboard-table-panel {
    display: none;
  }

  .dashboard-chart-panel {
    padding: 0.75rem;
  }

  .dashboard-chart {
    height: 11rem;
  }

  .panel-heading {
    margin-bottom: 0.5rem;
  }

  .panel-heading strong {
    font-size: 0.9rem;
  }

  .panel-heading span,
  .panel-tabs span {
    font-size: 0.64rem;
  }

  .dashboard-search {
    min-width: 0;
  }

  .chart-tooltip {
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.45rem 0.55rem;
  }

  .chart-tooltip span {
    font-size: 0.82rem;
  }

  .chart-tooltip small,
  .chart-legend {
    font-size: 0.62rem;
  }

  .pricing-panel {
    padding: 0.85rem 0.9rem;
  }

  .pricing-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-value strong {
    font-size: 1.9rem;
  }

  .cta-card {
    padding: 1.5rem;
  }

  .footer-company {
    max-width: none;
  }
}
