:root {
  --bg: #020817;
  --bg-soft: #06142c;
  --panel: rgba(8, 24, 58, .74);
  --panel-strong: rgba(9, 27, 65, .94);
  --line: rgba(92, 151, 255, .22);
  --line-strong: rgba(72, 143, 255, .55);
  --blue: #287cff;
  --blue-light: #49a5ff;
  --cyan: #36d3ff;
  --purple: #866dff;
  --text: #f7f9ff;
  --muted: #a7b8d8;
  --muted-dark: #7285aa;
  --green: #53e0ae;
  --shadow: 0 30px 90px rgba(0, 0, 0, .35);
  --glow: 0 0 32px rgba(38, 124, 255, .28);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 6%, rgba(25, 99, 255, .14), transparent 24rem),
    radial-gradient(circle at 8% 26%, rgba(22, 102, 255, .07), transparent 28rem),
    linear-gradient(180deg, #020714 0%, #03112a 45%, #020817 100%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
}

.ambient--one {
  width: 32rem;
  height: 32rem;
  right: -15rem;
  top: 16rem;
  background: radial-gradient(circle, rgba(37, 121, 255, .15), transparent 68%);
}

.ambient--two {
  width: 24rem;
  height: 24rem;
  left: -12rem;
  top: 46rem;
  background: radial-gradient(circle, rgba(29, 87, 223, .1), transparent 70%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
  background: rgba(2, 8, 23, .76);
  backdrop-filter: blur(22px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(2, 8, 23, .94);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .26);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 150px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  max-height: 63px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.main-nav a {
  position: relative;
  color: #dce5f8;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  transition: width .22s ease, left .22s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  left: 0;
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 12px;
  margin-left: 8px;
}

.button {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  border-color: rgba(94, 160, 255, .36);
  background: linear-gradient(135deg, #185eea, #2e8bff);
  box-shadow: 0 13px 30px rgba(22, 103, 255, .25), inset 0 1px rgba(255, 255, 255, .18);
}

.button--primary:hover {
  box-shadow: 0 18px 38px rgba(22, 103, 255, .36), 0 0 26px rgba(41, 132, 255, .2);
}

.button--ghost {
  border-color: rgba(112, 158, 243, .28);
  background: rgba(255, 255, 255, .018);
  color: #e8efff;
}

.button--ghost:hover {
  border-color: rgba(83, 155, 255, .55);
  box-shadow: 0 0 24px rgba(40, 124, 255, .12);
}

.button--large {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 13px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .025);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: #dbe7ff;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  padding: 64px 0 70px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .91fr) minmax(570px, 1.18fr);
  gap: 52px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 670px;
  margin: 21px 0 20px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.052em;
}

.hero-copy h1 span {
  color: transparent;
  background: linear-gradient(110deg, #388eff, #1f62f3 64%, #5ec5ff);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(49, 130, 255, .22));
}

.hero-copy > p {
  max-width: 630px;
  margin: 0;
  color: #c3cee3;
  font-size: 17px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #56a4ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 13px;
  border: 1px solid rgba(76, 141, 255, .27);
  border-radius: 999px;
  background: rgba(36, 88, 183, .14);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 10px var(--blue);
}

.hero-buttons {
  margin-top: 29px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-row {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: #b8c8e4;
  font-size: 12px;
}

.trust-row i {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(60, 156, 255, .65);
  border-radius: 50%;
  color: #52b8ff;
  font-size: 10px;
  font-style: normal;
}

.hero-product {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
}

.product-glow {
  position: absolute;
  inset: 10% 3%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 120, 255, .25), transparent 64%);
  filter: blur(14px);
}

.dashboard {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 484px;
  display: grid;
  grid-template-columns: 128px 1fr;
  overflow: hidden;
  border: 1px solid rgba(64, 143, 255, .56);
  border-radius: 25px;
  background: linear-gradient(155deg, rgba(11, 34, 78, .96), rgba(4, 14, 37, .98));
  box-shadow:
    0 0 0 1px rgba(82, 154, 255, .06) inset,
    0 0 36px rgba(39, 125, 255, .24),
    0 45px 95px rgba(0, 0, 0, .45);
  transform: perspective(1200px) rotateY(-2.2deg) rotateX(1deg);
}

.dashboard-sidebar {
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(180deg, rgba(4, 16, 42, .96), rgba(3, 12, 31, .94));
}

.dashboard-logo {
  width: 102px;
  height: 49px;
  margin: 0 auto 19px;
  object-fit: contain;
}

.dashboard-menu {
  display: grid;
  gap: 6px;
}

.dashboard-menu button {
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #aebede;
  background: transparent;
  font: inherit;
  font-size: 10px;
  text-align: left;
}

.dashboard-menu button.active {
  border-color: rgba(56, 137, 255, .33);
  color: #fff;
  background: rgba(31, 111, 244, .15);
  box-shadow: inset 0 0 14px rgba(38, 124, 255, .09);
}

.dashboard-content {
  padding: 18px;
}

.dashboard-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-title span {
  color: #7792bd;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dashboard-title h2 {
  margin: 1px 0 0;
  font-size: 20px;
}

.dashboard-period {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: #c3d2ed !important;
  background: rgba(255, 255, 255, .025);
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-card {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 11px;
  background: rgba(255, 255, 255, .025);
}

.metric-card span {
  display: block;
  color: #91a8ce;
  font-size: 9px;
}

.metric-card strong {
  display: block;
  margin: 5px 0;
  overflow: hidden;
  color: #fff;
  font-size: clamp(14px, 1.3vw, 21px);
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-card small {
  color: var(--green);
  font-size: 8px;
}

.dashboard-panels {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 10px;
}

.chart-panel,
.channel-panel {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 11px;
  background: rgba(255, 255, 255, .018);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #dce8ff;
  font-size: 10px;
  font-weight: 600;
}

.panel-title small {
  color: #6981a8;
  font-weight: 500;
}

.chart {
  height: 155px;
  margin-top: 10px;
  background:
    linear-gradient(to right, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 44px 31px;
}

.chart svg {
  width: 100%;
  height: 100%;
}

.chart .line {
  fill: none;
  stroke: #3490ff;
  stroke-width: 4;
  filter: drop-shadow(0 0 5px rgba(53, 145, 255, .8));
}

.chart .area {
  fill: url(#area);
}

.donut-wrap {
  min-height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.donut {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#2f81ff 0 58%, #1f58cb 58% 85%, #2099d2 85% 95%, #112c5e 95%);
  box-shadow: 0 0 22px rgba(40, 124, 255, .19);
}

.donut::before {
  content: "";
  grid-area: 1 / 1;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #0a204a;
}

.donut > div {
  z-index: 1;
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.donut strong {
  font-size: 12px;
}

.donut small {
  color: #8fa7cd;
  font-size: 7px;
}

.legend {
  display: grid;
  gap: 7px;
}

.legend span {
  min-width: 105px;
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 5px;
  color: #a7b7d4;
  font-size: 8px;
}

.legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f81ff;
}

.legend strong {
  color: #e4edff;
}

.dashboard-footer {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1.35fr .65fr .65fr;
  gap: 9px;
}

.dashboard-footer div {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 9px;
  background: rgba(255, 255, 255, .018);
}

.dashboard-footer span {
  display: block;
  color: #7891ba;
  font-size: 8px;
}

.dashboard-footer strong {
  display: block;
  overflow: hidden;
  color: #dce7fb;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  min-width: 190px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(73, 145, 255, .42);
  border-radius: 13px;
  background: rgba(6, 23, 55, .88);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .35), 0 0 24px rgba(40, 124, 255, .17);
  backdrop-filter: blur(14px);
}

.floating-chip--top {
  top: 16px;
  right: -20px;
}

.floating-chip--bottom {
  left: -27px;
  bottom: 10px;
}

.chip-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #6ebaff;
  background: rgba(38, 124, 255, .14);
}

.floating-chip strong,
.floating-chip small {
  display: block;
}

.floating-chip strong {
  font-size: 11px;
}

.floating-chip small {
  color: #8ca1c7;
  font-size: 8px;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2,
.about-copy h2 {
  margin: 13px 0 12px;
  color: #f5f8ff;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(45, 120, 255, .46);
  border-radius: 19px;
  background:
    radial-gradient(circle at 15% 25%, rgba(36, 119, 255, .16), transparent 35%),
    linear-gradient(155deg, rgba(10, 31, 72, .9), rgba(5, 18, 43, .96));
  box-shadow: inset 0 0 25px rgba(34, 116, 255, .035);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solution-card:hover {
  transform: translateY(-7px);
  border-color: rgba(80, 153, 255, .75);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .28), 0 0 28px rgba(38, 124, 255, .12);
}

.solution-card--purple {
  border-color: rgba(130, 96, 255, .47);
  background:
    radial-gradient(circle at 15% 25%, rgba(123, 76, 255, .16), transparent 35%),
    linear-gradient(155deg, rgba(21, 27, 73, .91), rgba(9, 17, 44, .97));
}

.solution-card--cyan {
  border-color: rgba(38, 190, 255, .4);
  background:
    radial-gradient(circle at 15% 25%, rgba(25, 177, 255, .14), transparent 35%),
    linear-gradient(155deg, rgba(7, 38, 71, .9), rgba(5, 18, 43, .97));
}

.solution-icon {
  position: relative;
  width: 82px;
  height: 82px;
  margin-bottom: 23px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(73, 151, 255, .35);
  border-radius: 20px;
  color: #5daeff;
  background: rgba(38, 124, 255, .08);
  box-shadow: 0 0 30px rgba(38, 124, 255, .17);
}

.cubes span {
  position: absolute;
  width: 27px;
  height: 27px;
  border: 2px solid currentColor;
  transform: rotate(30deg) skewY(-30deg) scaleY(.86);
}

.cubes span:nth-child(1) { left: 16px; top: 17px; }
.cubes span:nth-child(2) { right: 15px; top: 17px; }
.cubes span:nth-child(3) { left: 25px; bottom: 14px; }
.cubes span:nth-child(4) { right: 23px; bottom: 14px; }

.food-icon {
  color: #987cff;
  border-color: rgba(145, 105, 255, .35);
  background: rgba(126, 76, 255, .08);
  box-shadow: 0 0 30px rgba(122, 82, 255, .15);
}

.food-icon .dish {
  width: 48px;
  height: 22px;
  border: 3px solid currentColor;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom: 0;
}

.food-icon .dish::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 50%;
  top: 17px;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
}

.food-icon .dish::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 3px;
  left: 50%;
  bottom: 20px;
  border-radius: 3px;
  background: currentColor;
  transform: translateX(-50%);
}

.document-icon {
  color: #43d8ff;
  border-color: rgba(58, 209, 255, .35);
  background: rgba(28, 177, 255, .07);
}

.document-icon span {
  width: 39px;
  height: 49px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.document-icon span::before,
.document-icon span::after {
  content: "";
  position: absolute;
  left: 25px;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
}

.document-icon span::before { top: 34px; }
.document-icon span::after { top: 45px; }

.solution-label {
  color: #7fa8e6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.solution-content h3 {
  margin: 4px 0 7px;
  font-size: 25px;
}

.solution-content p {
  margin: 0 0 15px;
  color: #aebfdb;
  font-size: 13px;
}

.solution-content ul {
  margin: 0 0 19px;
  padding: 0;
  list-style: none;
}

.solution-content li {
  padding: 4px 0 4px 19px;
  position: relative;
  color: #d4dff2;
  font-size: 12px;
}

.solution-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #54adff;
}

.solution-content a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f3f7ff;
  font-size: 12px;
  font-weight: 700;
}

.solution-content a span {
  color: #58aaff;
  transition: transform .2s ease;
}

.solution-content a:hover span {
  transform: translateX(4px);
}

.features {
  padding-top: 0;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(75, 139, 255, .18);
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(9, 27, 62, .75), rgba(5, 17, 41, .86));
}

.feature-strip article {
  min-height: 126px;
  padding: 24px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-symbol {
  min-width: 34px;
  color: #45a2ff;
  font-size: 31px;
  line-height: 1;
  text-shadow: 0 0 17px rgba(46, 143, 255, .45);
}

.feature-strip h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.feature-strip p {
  margin: 0;
  color: #889cc1;
  font-size: 11px;
  line-height: 1.5;
}

.segments {
  padding-top: 0;
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.segment-grid article {
  min-height: 78px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(75, 139, 255, .21);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(11, 31, 68, .77), rgba(6, 20, 47, .9));
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.segment-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 153, 255, .55);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .2), 0 0 20px rgba(40, 124, 255, .09);
}

.segment-grid span {
  color: #52aaff;
  font-size: 23px;
}

.segment-grid strong {
  font-size: 14px;
}

.about {
  border-top: 1px solid rgba(255, 255, 255, .05);
  background:
    radial-gradient(circle at 82% 50%, rgba(34, 119, 255, .13), transparent 28rem),
    rgba(3, 12, 29, .48);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: center;
}

.about-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
}

.about-numbers {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-numbers div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .018);
}

.about-numbers strong,
.about-numbers span {
  display: block;
}

.about-numbers strong {
  color: #53a7ff;
  font-size: 17px;
}

.about-numbers span {
  color: #8ea2c7;
  font-size: 10px;
}

.about-card {
  padding: 37px;
  border: 1px solid rgba(67, 143, 255, .45);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(52, 139, 255, .18), transparent 45%),
    linear-gradient(145deg, rgba(12, 40, 89, .88), rgba(5, 19, 45, .95));
  box-shadow: var(--shadow), var(--glow);
}

.about-card > span {
  color: #65aaff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-card h3 {
  margin: 10px 0 25px;
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.14;
}

.about-card small {
  display: block;
  margin-top: 14px;
  color: #869bc0;
}

.site-footer {
  padding: 62px 0 21px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: #020611;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, .65fr);
  gap: 45px;
}

.footer-brand img {
  width: 175px;
  max-height: 73px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
  color: #7186ab;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: #f0f4fd;
  font-size: 13px;
}

.footer-links a,
.footer-links span {
  color: #788cae;
  font-size: 12px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 43px;
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: #607498;
  font-size: 11px;
}

.footer-bottom a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a:nth-child(4) {
    display: none;
  }

  .header-actions .button--ghost {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero-product {
    width: min(850px, 100%);
    margin-inline: auto;
  }

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

  .solution-card:last-child {
    grid-column: 1 / -1;
  }

  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-strip article:nth-child(3) {
    border-right: 0;
  }

  .feature-strip article:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, .07);
  }

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

@media (max-width: 820px) {
  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 132px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    padding: 22px 20px 28px;
    display: grid;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 8, 23, .98);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .42);
    transform: translateY(-140%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a,
  .main-nav a:nth-child(4) {
    display: block;
    padding: 13px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }

  .header-actions .button--primary {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .hero {
    padding-top: 48px;
  }

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

  .dashboard-sidebar {
    padding-inline: 8px;
  }

  .dashboard-logo {
    width: 82px;
  }

  .floating-chip--top {
    right: -4px;
  }

  .floating-chip--bottom {
    left: -4px;
  }

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

  .feature-strip article,
  .feature-strip article:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .07);
  }

  .feature-strip article:nth-child(even) {
    border-right: 0;
  }

  .feature-strip article:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, .07);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, 1220px);
  }

  .header-actions {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .trust-row {
    gap: 12px 18px;
  }

  .hero-product {
    min-height: 466px;
    margin-top: 10px;
  }

  .dashboard {
    min-height: 420px;
    grid-template-columns: 1fr;
    transform: none;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-content {
    padding: 12px;
  }

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

  .metric-card:last-child {
    grid-column: 1 / -1;
  }

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

  .channel-panel {
    display: none;
  }

  .chart {
    height: 140px;
  }

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

  .dashboard-footer div:first-child {
    display: none;
  }

  .floating-chip {
    min-width: 160px;
  }

  .floating-chip--top {
    top: -21px;
    right: 5px;
  }

  .floating-chip--bottom {
    left: 5px;
    bottom: -22px;
  }

  .section {
    padding: 70px 0;
  }

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

  .solution-card:last-child {
    grid-column: auto;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip article,
  .feature-strip article:nth-child(even) {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
  }

  .feature-strip article:first-child {
    border-top: 0;
  }

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

  .about-numbers {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 27px 22px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .segment-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-title h2 {
    font-size: 17px;
  }

  .metric-card strong {
    font-size: 14px;
  }
}
