:root {
  --bg: #030814;
  --bg-deep: #01050d;
  --panel: rgba(6, 20, 38, .78);
  --panel-strong: rgba(7, 24, 45, .92);
  --line: rgba(77, 174, 255, .26);
  --line-soft: rgba(255, 255, 255, .08);
  --text: #eef6ff;
  --muted: #9fb1c7;
  --cyan: #16e3ff;
  --blue: #149bff;
  --green: #28ef8f;
  --orange: #ffb84d;
  --red: #ff5a7a;
  --shadow: 0 26px 70px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  line-height: 1.7;
}

body.bradius-login-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.page-bg,
.net-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-bg {
  z-index: -4;
  background:
    radial-gradient(ellipse at 84% 24%, rgba(20, 155, 255, .23), transparent 42%),
    radial-gradient(ellipse at 14% 62%, rgba(40, 239, 143, .14), transparent 38%),
    linear-gradient(135deg, #041323 0%, #010712 50%, #06172a 100%);
}

.net-grid {
  z-index: -3;
  opacity: .32;
  background-image:
    linear-gradient(rgba(77, 174, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 174, 255, .12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .72), transparent 78%);
}

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: -2;
  width: 44vw;
  height: 30vh;
  transform: rotate(-22deg);
  opacity: .18;
  filter: blur(30px);
  background: linear-gradient(90deg, transparent, rgba(22, 227, 255, .5), transparent);
}

.ambient-a {
  top: 18%;
  right: -10vw;
}

.ambient-b {
  bottom: 8%;
  left: -12vw;
  background: linear-gradient(90deg, transparent, rgba(40, 239, 143, .42), transparent);
}

.top-strip {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(1, 7, 18, .82);
  backdrop-filter: blur(12px);
}

.top-strip-inner {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  color: #cbd8e7;
  font-weight: 700;
}

.contact-line,
.social-line {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-line a {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(22, 227, 255, .4);
  border-radius: 50%;
  color: var(--cyan);
  font-weight: 900;
  line-height: 1;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 18;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(1, 7, 18, .88);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  box-shadow: 0 0 34px rgba(22, 227, 255, .12);
}

.brand strong {
  display: block;
  color: #f6fbff;
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: #c0ccda;
  font-size: 13px;
  font-weight: 900;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: #d8e4f2;
  font-weight: 900;
}

.nav-links a {
  position: relative;
  padding: 29px 0;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 4px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transform: scaleX(.35);
  transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.login-action {
  min-height: 56px;
  min-width: 172px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 155, 255, .8);
  border-radius: 10px;
  background: rgba(20, 155, 255, .08);
  color: #dff9ff;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: .2s ease;
}

.login-action:hover {
  background: rgba(20, 155, 255, .18);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(22, 227, 255, .35);
  border-radius: 9px;
  background: rgba(8, 32, 58, .86);
  color: var(--text);
  font-size: 23px;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 128px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(77, 174, 255, .12);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
  padding: clamp(48px, 7vw, 82px) 0 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-badge {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(22, 227, 255, .32);
  border-radius: 999px;
  background: rgba(10, 42, 74, .7);
  color: #dff7ff;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.hero-badge span {
  color: var(--cyan);
}

.hero h1 {
  margin: 28px 0 8px;
  color: #f4f9ff;
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h2 {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 26px 0 0;
  color: #b8c7d8;
  font-size: 18px;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.primary-btn,
.outline-btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 9px;
  font-weight: 900;
  transition: .2s ease;
}

.primary-btn {
  border: 1px solid rgba(40, 239, 143, .55);
  background: linear-gradient(90deg, var(--green), var(--cyan));
  color: #02101d;
  box-shadow: 0 16px 38px rgba(22, 227, 255, .18);
}

.outline-btn {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .03);
  color: #eef6ff;
}

.primary-btn:hover,
.outline-btn:hover {
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  color: #d5e2f2;
  font-size: 14px;
  font-weight: 800;
}

.hero-trust span {
  padding: 7px 10px;
  border: 1px solid rgba(77, 174, 255, .18);
  border-radius: 8px;
  background: rgba(6, 20, 38, .52);
}

.hero-art {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.router-scene {
  position: absolute;
  right: 50%;
  top: 50%;
  width: min(440px, 90%);
  height: 360px;
  transform: translate(50%, -50%);
}

.router-stack {
  position: absolute;
  right: 50%;
  bottom: 76px;
  width: 290px;
  height: 210px;
  transform: translateX(50%);
}

.router {
  position: absolute;
  right: 0;
  width: 100%;
  height: 68px;
  border: 1px solid rgba(77, 174, 255, .36);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16, 34, 56, .98), rgba(5, 16, 31, .98));
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.router.top {
  top: 0;
}

.router.middle {
  top: 76px;
}

.router.bottom {
  top: 152px;
}

.router span {
  position: absolute;
  right: 28px;
  top: 27px;
  width: 120px;
  height: 16px;
  border: 1px solid rgba(77, 174, 255, .3);
  border-radius: 999px;
  background: rgba(3, 13, 26, .86);
}

.router i {
  position: absolute;
  top: 24px;
  left: 36px;
  display: block;
  width: 10px;
  height: 24px;
  margin: 0;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 15px rgba(40, 239, 143, .9);
}

.router i:nth-of-type(2) {
  left: 58px;
}

.router i:nth-of-type(3) {
  left: 80px;
}

.router i:nth-of-type(4) {
  left: 102px;
}

.antenna {
  position: absolute;
  top: -64px;
  width: 9px;
  height: 76px;
  border-radius: 99px;
  background: linear-gradient(180deg, #7ddcff, #149bff);
  box-shadow: 0 0 20px rgba(22, 227, 255, .6);
}

.antenna.left {
  right: 42px;
}

.antenna.right {
  left: 42px;
}

.wifi-mark {
  position: absolute;
  top: 16px;
  right: 50%;
  width: 170px;
  height: 96px;
  transform: translateX(50%);
  color: transparent;
  border-top: 12px solid rgba(22, 227, 255, .72);
  border-radius: 50% 50% 0 0;
  filter: drop-shadow(0 0 20px rgba(22, 227, 255, .55));
}

.wifi-mark::before,
.wifi-mark::after {
  content: "";
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  border-top: 9px solid rgba(22, 227, 255, .78);
  border-radius: 50% 50% 0 0;
}

.wifi-mark::before {
  top: 22px;
  width: 118px;
  height: 58px;
}

.wifi-mark::after {
  top: 48px;
  width: 58px;
  height: 28px;
}

.neon-ring {
  position: absolute;
  right: 50%;
  bottom: 34px;
  width: 380px;
  height: 72px;
  transform: translateX(50%);
  border: 4px solid rgba(20, 155, 255, .9);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(20, 155, 255, .32);
}

.floating-panel {
  position: absolute;
  z-index: 2;
  width: 188px;
  min-height: 128px;
  padding: 16px;
  border: 1px solid rgba(77, 174, 255, .5);
  border-radius: 12px;
  background: rgba(5, 20, 38, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.floating-panel small {
  display: block;
  color: #d5e2f2;
  font-weight: 900;
}

.floating-panel b {
  display: block;
  margin-top: 8px;
  color: #eef6ff;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.floating-panel em {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.floating-panel svg {
  width: 122px;
  height: 44px;
  margin-top: 10px;
  overflow: visible;
}

.floating-panel svg polyline {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(22, 227, 255, .6));
}

.panel-users {
  top: 72px;
  right: 0;
}

.panel-sessions {
  bottom: 34px;
  right: 14px;
}

.panel-traffic {
  top: 90px;
  left: 0;
}

.panel-donut {
  bottom: 38px;
  left: 0;
  width: 202px;
}

.bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 42px;
  margin-top: 14px;
}

.bars i {
  width: 11px;
  border-radius: 99px 99px 2px 2px;
  background: linear-gradient(180deg, #36a8ff, #16e3ff);
  box-shadow: 0 0 12px rgba(22, 227, 255, .35);
}

.bars i:nth-child(1) { height: 14px; }
.bars i:nth-child(2) { height: 20px; }
.bars i:nth-child(3) { height: 26px; }
.bars i:nth-child(4) { height: 31px; }
.bars i:nth-child(5) { height: 36px; }
.bars i:nth-child(6) { height: 43px; }

.donut-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 13px;
  align-items: center;
  margin-top: 10px;
}

.donut {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 68%, var(--green) 68% 88%, var(--cyan) 88% 98%, rgba(255, 255, 255, .14) 98%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: #061426;
}

.donut-row p {
  margin: 0;
  color: #d5e2f2;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.systems-section,
.partners,
.footer {
  position: relative;
  z-index: 1;
}

.systems-section {
  padding: 86px 0 70px;
  background: linear-gradient(180deg, rgba(1, 7, 18, .24), rgba(2, 10, 21, .88));
}

.section-title {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-title h2 {
  margin: 0 0 10px;
  color: #f4f9ff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.25;
  font-weight: 900;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.system-card {
  min-height: 235px;
  padding: 22px;
  border: 1px solid rgba(77, 174, 255, .22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(10, 31, 55, .9), rgba(4, 14, 27, .92));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  transition: .2s ease;
}

.system-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 227, 255, .5);
}

.system-card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(22, 227, 255, .12);
  font-size: 26px;
}

.system-card h3 {
  margin: 18px 0 8px;
  color: #f5fbff;
  font-size: 21px;
  font-weight: 900;
}

.system-card p {
  min-height: 72px;
  margin: 0;
  color: #aebfd2;
  font-weight: 700;
}

.system-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 8px;
  background: rgba(22, 227, 255, .1);
  color: var(--cyan);
  font-weight: 900;
}

.system-card.purple .icon { background: rgba(151, 98, 255, .15); }
.system-card.orange .icon { background: rgba(255, 184, 77, .15); }
.system-card.green .icon { background: rgba(40, 239, 143, .14); }
.system-card.blue .icon { background: rgba(20, 155, 255, .16); }
.system-card.red .icon { background: rgba(255, 90, 122, .15); }
.system-card.cyan .icon { background: rgba(22, 227, 255, .14); }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.stats-strip div {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 16px 10px;
  border: 1px solid rgba(77, 174, 255, .2);
  border-radius: 8px;
  background: rgba(6, 20, 38, .7);
  text-align: center;
}

.stats-strip span {
  font-size: 23px;
}

.stats-strip b {
  color: #f4f9ff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.stats-strip small {
  color: var(--muted);
  font-weight: 800;
}

.partners {
  padding: 46px 0;
  border-top: 1px solid rgba(77, 174, 255, .1);
  border-bottom: 1px solid rgba(77, 174, 255, .1);
  background: rgba(1, 7, 18, .72);
}

.partners h3 {
  margin: 0 0 18px;
  text-align: center;
  color: #dcecff;
  font-size: 22px;
  font-weight: 900;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-logos span {
  min-width: 128px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: #d6e6f7;
  font-weight: 900;
}

.footer {
  padding: 62px 0 0;
  background: #010712;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 26px;
}

.footer h4 {
  margin: 0 0 16px;
  color: #f4f9ff;
  font-size: 18px;
  font-weight: 900;
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 10px;
  color: #aebfd2;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(22, 227, 255, .32);
  border-radius: 50%;
  color: var(--cyan);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px;
}

.newsletter input {
  min-width: 0;
  min-height: 46px;
  border: 1px solid rgba(77, 174, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  padding: 0 12px;
  font-family: inherit;
}

.newsletter button {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  color: #061426;
  font-size: 20px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 46px;
  padding: 18px max(24px, calc((100vw - 1240px) / 2));
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #8fa1b6;
  font-size: 13px;
  font-weight: 700;
}

.to-top {
  position: fixed;
  left: 26px;
  bottom: 24px;
  z-index: 30;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(5, 20, 38, .86);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: .2s ease;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .login-action {
    min-width: 145px;
    padding: 0 14px;
  }

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

  .hero-art {
    order: -1;
    min-height: 420px;
  }

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

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

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .top-strip-inner {
    justify-content: center;
    text-align: center;
  }

  .contact-line {
    justify-content: center;
    gap: 9px 14px;
  }

  .social-line {
    display: none;
  }

  .nav-inner {
    min-height: 72px;
    overflow: hidden;
    direction: ltr;
    justify-content: space-between;
  }

  .brand {
    order: 3;
    min-width: 0;
    direction: ltr;
  }

  .brand img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .brand strong {
    font-size: 25px;
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    display: none;
  }

  .mobile-toggle {
    order: 1;
    display: grid;
    place-items: center;
    margin: 0;
  }

  .nav-links {
    position: fixed;
    top: 111px;
    right: 14px;
    left: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(77, 174, 255, .28);
    border-radius: 10px;
    background: rgba(3, 13, 26, .98);
    box-shadow: var(--shadow);
    direction: rtl;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 12px 10px;
  }

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

  .login-action {
    order: 2;
    min-width: 116px;
    min-height: 42px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    direction: ltr;
    padding: 36px 0 44px;
  }

  .hero-art {
    direction: ltr;
    min-height: 360px;
    margin-inline: -14px;
  }

  .hero-copy {
    direction: rtl;
  }

  .router-scene {
    width: min(360px, 100%);
    transform: translate(50%, -50%) scale(.85);
  }

  .floating-panel {
    width: 154px;
    min-height: 106px;
    padding: 12px;
  }

  .floating-panel b {
    font-size: 22px;
  }

  .panel-users,
  .panel-sessions {
    right: 0;
  }

  .panel-traffic,
  .panel-donut {
    left: 0;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: 44px;
    overflow-wrap: anywhere;
  }

  .hero h2 {
    font-size: 29px;
    overflow-wrap: anywhere;
  }

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

  .systems-grid,
  .stats-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .top-strip {
    display: none;
  }

  .ambient {
    display: none;
  }

  .nav-links {
    top: 82px;
  }

  .brand strong {
    max-width: 116px;
    font-size: 22px;
  }

  .brand div {
    display: none;
  }

  .login-action {
    display: none;
  }

  .hero-art {
    min-height: 310px;
    margin-inline: -14px;
  }

  .router-scene {
    transform: translate(50%, -50%) scale(.7);
  }

  .floating-panel {
    display: none;
  }

  .panel-users {
    top: 40px;
    right: -16px;
  }

  .panel-traffic {
    top: 58px;
    left: -18px;
  }

  .panel-sessions {
    bottom: 12px;
    right: -12px;
  }

  .panel-donut {
    bottom: 14px;
    left: -22px;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .hero-copy {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-badge {
    margin-inline: auto;
    font-size: 13px;
  }

  .hero h1 {
    max-width: 280px;
    margin-inline: auto;
    font-size: 29px;
    line-height: 1.18;
    white-space: normal;
  }

  .hero h2 {
    max-width: 300px;
    margin-inline: auto;
    font-size: 22px;
  }

  .hero p {
    max-width: 330px;
    font-size: 14px;
    margin-inline: auto;
  }

  .primary-btn,
  .outline-btn {
    width: 100%;
  }
}
