:root {
  --ink: #141516;
  --muted: #6f726c;
  --paper: #f4f1e9;
  --paper-deep: #ebe7db;
  --acid: #b8f63c;
  --acid-bright: #c7ff53;
  --purple: #7d63d7;
  --line: rgba(20, 21, 22, .12);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-shell {
  overflow: hidden;
}

.site-header {
  width: min(1180px, calc(100% - 48px));
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.6px;
}

.logo strong {
  font-weight: 700;
}

.logo-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-content: center;
  gap: 3px;
  border-radius: 8px;
  background: var(--ink);
  transform: rotate(-3deg);
}

.logo-mark span {
  display: block;
  width: 16px;
  height: 3px;
  border-radius: 5px;
  background: var(--acid);
}

.logo-mark span:first-child {
  width: 9px;
  margin-left: 7px;
}

.logo-mark span:last-child {
  width: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.button) {
  position: relative;
}

.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--ink);
  transition: right .25s ease;
}

.nav-links > a:not(.button):hover::after {
  right: 0;
}

.login-link {
  margin-left: 12px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  box-shadow: 5px 5px 0 var(--acid);
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--acid);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  box-shadow: none;
}

.button-small:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.nav-toggle,
.menu-button {
  display: none;
}

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 50px;
  padding: 70px 0 90px;
}

.eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #555951;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 2px;
  display: inline-block;
  background: var(--acid);
  box-shadow: 8px -4px 0 -0.5px var(--acid);
  transform: rotate(-7deg);
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -3.7px;
  line-height: .98;
}

h1 {
  max-width: 620px;
  font-size: clamp(64px, 6.8vw, 100px);
}

h1 em,
h2 em {
  display: inline-block;
  color: var(--purple);
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -4px;
}

.hero-text {
  max-width: 525px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.play-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 9px;
}

.hero-proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #c7bda9;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: #756550;
}

.avatar-stack span:nth-child(2) {
  background: #c56f54;
}

.avatar-stack span:nth-child(3) {
  background: #596e66;
}

.avatar-stack span:last-child {
  background: var(--ink);
}

.stars {
  color: #90bc2e;
  font-size: 11px;
  letter-spacing: 2px;
}

.hero-proof p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  width: 520px;
  height: 520px;
  position: absolute;
  border-radius: 50%;
  background: var(--acid);
  filter: blur(.1px);
}

.hero-visual::after {
  content: "";
  width: 430px;
  height: 430px;
  position: absolute;
  border: 1px solid rgba(20, 21, 22, .18);
  border-radius: 50%;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(20, 21, 22, .15);
  border-radius: 50%;
  transform: rotate(-25deg);
}

.orbit-one {
  width: 600px;
  height: 220px;
}

.orbit-two {
  width: 600px;
  height: 300px;
  transform: rotate(56deg);
}

.dashboard-card {
  width: 510px;
  min-height: 380px;
  padding: 28px;
  position: relative;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 18px;
  background: rgba(19, 20, 20, .96);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(21, 27, 15, .26);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.muted-label,
.dashboard-card small {
  color: #858982;
  font-size: 11px;
}

.dashboard-top h2 {
  margin-top: 8px;
  font-size: 30px;
  letter-spacing: -1.3px;
}

.status-dot {
  padding: 7px 10px;
  border: 1px solid rgba(184, 246, 60, .18);
  border-radius: 20px;
  background: rgba(184, 246, 60, .08);
  color: var(--acid);
  font-size: 10px;
}

.status-dot::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 6px;
  display: inline-block;
  border-radius: 50%;
  background: var(--acid);
}

.chart {
  height: 190px;
  margin-top: 15px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: repeating-linear-gradient(to bottom, transparent, transparent 46px, rgba(255,255,255,.05) 47px);
}

.chart svg {
  width: calc(100% - 40px);
  height: 150px;
  margin: 2px 0 0 40px;
  overflow: visible;
}

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

.chart-line {
  fill: none;
  stroke: var(--acid);
  stroke-width: 3;
  stroke-linecap: round;
}

.chart circle {
  fill: var(--acid);
  stroke: rgba(184, 246, 60, .3);
  stroke-width: 8;
}

.chart-label {
  position: absolute;
  left: 0;
  color: #6f736c;
  font-size: 9px;
}

.label-high {
  top: 11px;
}

.label-low {
  bottom: 36px;
}

.chart-days {
  margin-left: 40px;
  display: flex;
  justify-content: space-between;
  color: #646862;
  font-size: 8px;
}

.dashboard-stats {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dashboard-stats > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
}

.stat-icon {
  width: 30px;
  height: 30px;
  grid-row: span 2;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.stat-icon.purple {
  background: var(--purple);
  color: var(--white);
}

.dashboard-stats p {
  margin: 0;
  color: #787c75;
  font-size: 9px;
}

.dashboard-stats strong {
  font-size: 12px;
}

.floating-card {
  padding: 13px 16px;
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(20,21,22,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 15px 35px rgba(28, 31, 24, .16);
}

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

.floating-card small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 8px;
}

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

.reward-card {
  right: 3px;
  top: 92px;
}

.mini-coin {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f59a29;
  color: var(--white);
  font-size: 17px;
}

.uptime-card {
  left: 5px;
  bottom: 72px;
}

.uptime-ring {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 4px solid var(--acid);
  border-left-color: #dedfd9;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.uptime-ring span {
  font-size: 6px;
}

.coin {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffbd55, #ee7d10);
  color: white;
  font-family: Georgia, serif;
  font-weight: 700;
  box-shadow: inset -7px -7px 0 rgba(112,57,0,.12), 0 10px 25px rgba(55, 42, 10, .18);
}

.coin-back {
  width: 55px;
  height: 55px;
  top: 40px;
  left: 80px;
  font-size: 27px;
  transform: rotate(-15deg);
}

.coin-front {
  width: 72px;
  height: 72px;
  right: 20px;
  bottom: 38px;
  font-size: 35px;
  transform: rotate(16deg);
}

.network-strip {
  min-height: 130px;
  padding: 30px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--ink);
  color: var(--white);
}

.network-strip p {
  max-width: 130px;
  color: #8f928c;
  font-size: 11px;
  line-height: 1.5;
}

.network-logos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.network-logos span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b4b6b1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.network-logos i {
  color: #72766f;
  font-size: 22px;
  font-style: normal;
}

.network-logos .bitcoin {
  font-size: 25px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 100px;
}

h2 {
  font-size: clamp(48px, 5vw, 70px);
}

.section-heading > p,
.plans-copy > p {
  max-width: 480px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.steps-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.steps-grid article {
  min-height: 280px;
  padding: 35px 40px 25px 0;
  position: relative;
  border-right: 1px solid var(--line);
}

.steps-grid article:not(:first-child) {
  padding-left: 40px;
}

.steps-grid article:last-child {
  border-right: 0;
}

.step-number {
  position: absolute;
  right: 22px;
  top: 24px;
  color: #b8b9b3;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
}

.step-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 50px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--acid);
  font-size: 22px;
  font-weight: 700;
  transform: rotate(-3deg);
}

.steps-grid article:nth-child(2) .step-icon {
  background: #d9cffc;
}

.steps-grid article:nth-child(3) .step-icon {
  background: var(--ink);
  color: var(--acid);
}

.steps-grid h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
}

.steps-grid p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 100px;
}

.plans-copy > p {
  margin-top: 28px;
}

.mini-features {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #555851;
  font-size: 12px;
  font-weight: 600;
}

.mini-features span::first-letter {
  color: #76a617;
}

.pricing-card {
  padding: 38px;
  position: relative;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 10px 10px 0 var(--acid);
}

.popular-tag {
  padding: 8px 14px;
  position: absolute;
  right: 25px;
  top: -16px;
  border-radius: 4px;
  background: var(--acid);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.plan-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.plan-head p {
  margin: 7px 0 0;
  color: #858881;
  font-size: 11px;
}

.plan-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184,246,60,.35);
  border-radius: 50%;
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
}

.price {
  margin: 38px 0 34px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 58px;
  font-weight: 600;
  letter-spacing: -3px;
}

.price sup {
  margin-right: 3px;
  color: var(--acid);
  font-size: 22px;
  vertical-align: top;
}

.price span {
  color: #777a74;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-stat {
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #8a8d86;
  font-size: 11px;
}

.plan-stat strong {
  color: var(--white);
}

.plan-stat strong.accent {
  color: var(--acid);
}

.full-button {
  width: 100%;
  margin-top: 22px;
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
  box-shadow: none;
}

.full-button:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.pricing-card > small {
  margin-top: 18px;
  display: block;
  color: #777a74;
  text-align: center;
  font-size: 9px;
}

.security {
  padding-top: 40px;
}

.security-card {
  min-height: 430px;
  padding: 70px 70px 40px;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  border-radius: 20px;
  background: var(--purple);
  color: var(--white);
}

.security-card::before {
  content: "";
  width: 450px;
  height: 450px;
  position: absolute;
  right: -80px;
  top: -80px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.eyebrow.light {
  color: rgba(255,255,255,.67);
}

.security-copy {
  position: relative;
  z-index: 3;
}

.security-copy h2 {
  font-size: clamp(42px, 4.5vw, 62px);
}

.security-copy h2 em {
  color: var(--acid);
}

.security-copy p {
  max-width: 500px;
  margin: 25px 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.7;
}

.light-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.5);
}

.shield {
  position: relative;
  display: grid;
  place-items: center;
}

.shield-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.ring-one {
  width: 330px;
  height: 330px;
}

.ring-two {
  width: 220px;
  height: 220px;
}

.shield-shape {
  width: 150px;
  height: 180px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 70px 70px 85px 85px;
  background: linear-gradient(150deg, rgba(255,255,255,.2), rgba(255,255,255,.03));
  clip-path: polygon(50% 0, 94% 17%, 87% 73%, 50% 100%, 13% 73%, 6% 17%);
  box-shadow: inset 0 0 35px rgba(255,255,255,.1), 0 25px 60px rgba(43,24,109,.35);
}

.shield-shape span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.security-points {
  grid-column: 1 / -1;
  margin-top: 45px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
}

.security-points div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.security-points strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
}

.security-points span {
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

footer {
  width: min(1180px, calc(100% - 48px));
  min-height: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 35px;
  border-top: 1px solid var(--line);
}

footer > p {
  color: var(--muted);
  font-size: 11px;
}

.footer-links {
  margin-left: auto;
  display: flex;
  gap: 24px;
  font-size: 11px;
  font-weight: 600;
}

.copyright {
  color: #979991;
  font-size: 10px;
}

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

  .nav-links > a:nth-child(3),
  .nav-links > a:nth-child(4) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    width: min(650px, 100%);
    margin: 0 auto;
  }

  .plans {
    gap: 55px;
  }

  .security-card {
    padding: 55px 45px 35px;
  }
}

@media (max-width: 780px) {
  .site-header {
    width: min(100% - 32px, 1180px);
    height: 74px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-links {
    padding: 24px;
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    box-shadow: 0 18px 35px rgba(20,21,22,.12);
  }

  .nav-links > a:nth-child(3),
  .nav-links > a:nth-child(4) {
    display: block;
  }

  .nav-links .login-link {
    margin-left: 0;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-toggle:checked + .menu-button span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .menu-button span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero,
  .section,
  footer {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    padding: 55px 0 70px;
  }

  h1 {
    font-size: clamp(52px, 15vw, 78px);
    letter-spacing: -3px;
  }

  .hero-visual {
    min-height: 470px;
    transform: scale(.88);
    margin-top: -20px;
    margin-bottom: -30px;
  }

  .network-strip {
    padding: 38px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .network-strip p {
    max-width: none;
  }

  .network-logos {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading,
  .plans {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .steps-grid article,
  .steps-grid article:not(:first-child) {
    min-height: 230px;
    padding: 30px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-icon {
    margin-bottom: 35px;
  }

  .pricing-card {
    width: min(100%, 480px);
    margin: 15px auto 0;
  }

  .security-card {
    grid-template-columns: 1fr;
  }

  .shield {
    min-height: 300px;
  }

  .security-points {
    gap: 18px;
  }

  .security-points div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  footer {
    padding: 45px 0;
    flex-wrap: wrap;
  }

  .footer-links {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 540px) {
  .logo {
    font-size: 17px;
  }

  .logo-mark {
    width: 28px;
    height: 28px;
  }

  .hero {
    min-height: auto;
    padding-top: 45px;
  }

  h1 {
    font-size: 50px;
    letter-spacing: -2.5px;
  }

  h1 em,
  h2 em {
    letter-spacing: -2.5px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-proof {
    margin-top: 35px;
  }

  .hero-visual {
    min-height: 350px;
    transform: scale(.58);
    margin: -65px -135px -60px;
    width: calc(100% + 270px);
  }

  .section {
    padding: 75px 0;
  }

  h2 {
    font-size: 45px;
    letter-spacing: -2.5px;
  }

  .section-heading > p,
  .plans-copy > p {
    font-size: 14px;
  }

  .network-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card {
    padding: 30px 24px;
    box-shadow: 7px 7px 0 var(--acid);
  }

  .price {
    font-size: 50px;
  }

  .security {
    width: 100%;
    padding-bottom: 50px;
  }

  .security-card {
    padding: 45px 24px 32px;
    border-radius: 0;
  }

  .security-copy h2 {
    font-size: 42px;
  }

  .shield {
    min-height: 270px;
    transform: scale(.8);
    margin: -10px;
  }

  .security-points {
    margin-top: 15px;
  }

  .security-points strong {
    font-size: 16px;
  }

  footer {
    gap: 20px;
  }

  .copyright {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
