:root {
  --bg: #100f0b;
  --bg-soft: #171610;
  --panel: #1c1a14;
  --panel-light: #242119;
  --text: #f3efe5;
  --muted: #aaa497;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #e4a64f;
  --gold-deep: #8f5400;
  --cream: #f2e7d1;
  --max: 1160px;
}
* {
  box-sizing: border-box;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui,
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
[data-download].is-disabled {
  opacity: 0.52;
  pointer-events: none;
  cursor: not-allowed;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 13px;
  color: var(--muted);
}
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--text);
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.page-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.page-glow-one {
  width: 780px;
  height: 780px;
  right: -340px;
  top: -260px;
  background: radial-gradient(
    circle,
    rgba(215, 139, 40, 0.16),
    transparent 68%
  );
}
.page-glow-two {
  width: 560px;
  height: 560px;
  left: -360px;
  top: 760px;
  background: radial-gradient(
    circle,
    rgba(183, 114, 24, 0.09),
    transparent 70%
  );
}
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(16, 15, 11, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.03em;
}
.brand-symbol {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 7px;
  border: 1px solid rgba(228, 166, 79, 0.32);
  border-radius: 9px;
  background: rgba(228, 166, 79, 0.08);
}
.brand-symbol i {
  display: block;
  width: 4px;
  background: var(--gold);
  border-radius: 3px 3px 1px 1px;
}
.brand-symbol i:nth-child(1) {
  height: 9px;
}
.brand-symbol i:nth-child(2) {
  height: 17px;
}
.brand-symbol i:nth-child(3) {
  height: 12px;
}
.site-header nav {
  display: flex;
  gap: 34px;
}
.site-header nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
}
.site-header nav a:hover {
  color: var(--text);
}
.header-download {
  padding: 9px 17px;
  border: 1px solid rgba(228, 166, 79, 0.45);
  border-radius: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.header-download span {
  margin-left: 8px;
}
.hero {
  min-height: 850px;
  padding-top: 150px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 30px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
  padding: 6px 11px;
  border: 1px solid rgba(228, 166, 79, 0.22);
  border-radius: 999px;
  background: rgba(228, 166, 79, 0.06);
  color: #cab58f;
  font-size: 12px;
}
.status-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #79c987;
  box-shadow: 0 0 0 5px rgba(121, 201, 135, 0.1);
}
.kicker {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.4vw, 84px);
  line-height: 1.06;
  letter-spacing: -0.07em;
  font-weight: 760;
}
.hero h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-text {
  max-width: 580px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 34px 0 26px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 11px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-primary {
  background: var(--gold);
  color: #211606;
  box-shadow: 0 13px 34px rgba(228, 166, 79, 0.16);
}
.button-primary:hover {
  background: #efb45e;
  box-shadow: 0 16px 38px rgba(228, 166, 79, 0.24);
}
.button-ghost {
  border: 1px solid var(--line);
  color: #d0cbc1;
  background: rgba(255, 255, 255, 0.02);
}
.button-ghost span {
  color: var(--gold);
}
.release-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #777369;
  font-size: 12px;
}
.release-meta strong {
  color: #a9a397;
  font-weight: 600;
}
.release-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #565249;
}
.hero-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(228, 166, 79, 0.12);
  border-radius: 50%;
}
.orbit-one {
  width: 550px;
  height: 550px;
}
.orbit-two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  animation: spin 35s linear infinite;
}
.orbit-two:before,
.orbit-two:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(228, 166, 79, 0.8);
}
.orbit-two:before {
  top: 54px;
  right: 57px;
}
.orbit-two:after {
  bottom: 22px;
  left: 120px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.phone-shadow {
  position: absolute;
  bottom: 65px;
  width: 310px;
  height: 55px;
  border-radius: 50%;
  background: #000;
  filter: blur(25px);
  opacity: 0.65;
}
.phone {
  position: relative;
  z-index: 2;
  width: 292px;
  padding: 7px;
  border: 1px solid #4a453a;
  border-radius: 40px;
  background: #060605;
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.62),
    0 0 0 5px #1d1b16;
  transform: rotate(2.4deg);
}
.phone:after {
  content: "";
  position: absolute;
  inset: 10px auto 10px 8px;
  width: 1px;
  background: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
}
.phone img {
  width: 100%;
  border-radius: 31px;
}
.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 50%;
  width: 74px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 0 0 13px 13px;
  background: #060605;
}
.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(31, 29, 23, 0.86);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}
.floating-note b,
.floating-note small {
  display: block;
}
.floating-note b {
  font-size: 13px;
}
.floating-note small {
  color: #898478;
  font-size: 10px;
}
.note-top {
  top: 160px;
  right: -5px;
}
.note-bottom {
  bottom: 130px;
  left: -5px;
}
.note-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(228, 166, 79, 0.14);
  color: var(--gold);
  font-weight: 800;
}
.pulse-dot {
  width: 9px;
  height: 9px;
  margin: 0 9px;
  border-radius: 50%;
  background: #76c985;
  box-shadow: 0 0 0 7px rgba(118, 201, 133, 0.1);
}
.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}
.trust-grid {
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.trust-grid span {
  padding: 7px 24px;
  border-right: 1px solid var(--line);
  color: #b5afa3;
  font-size: 13px;
}
.trust-grid span:first-child {
  padding-left: 0;
}
.trust-grid span:last-child {
  border: 0;
}
.trust-grid b {
  margin-right: 13px;
  color: #5f5a51;
  font-size: 10px;
}
.experience {
  padding-block: 140px;
}
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.section-intro .kicker {
  grid-column: 1/-1;
  margin-bottom: -20px;
}
.section-intro h2,
.feature-heading h2,
.security h2,
.download h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}
.section-intro > p:last-child {
  max-width: 470px;
  margin: 0 0 7px;
  color: var(--muted);
}
.experience-stage {
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: linear-gradient(145deg, #1e1c15, #15140f);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}
.stage-copy {
  padding: 70px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stage-number {
  color: #706b61;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.stage-copy h3 {
  margin: 24px 0 20px;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.045em;
}
.stage-copy > p {
  margin: 0;
  color: var(--muted);
}
.stage-copy ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #c8c2b7;
  font-size: 13px;
}
.stage-copy li span {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-right: 9px;
  border-radius: 50%;
  background: rgba(228, 166, 79, 0.13);
  color: var(--gold);
  font-size: 10px;
}
.screen-window {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 70% 45%,
      rgba(228, 166, 79, 0.18),
      transparent 42%
    ),
    #0c0c09;
}
.screen-window:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, #0c0c09);
}
.screen-window img {
  position: absolute;
  width: 365px;
  top: 62px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #514a3d;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 30px 70px #000;
}
.screen-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(228, 166, 79, 0.16);
  box-shadow:
    0 0 0 50px rgba(228, 166, 79, 0.025),
    0 0 0 100px rgba(228, 166, 79, 0.015);
}
.feature-section {
  padding-block: 130px;
  background: #15140f;
  border-block: 1px solid var(--line);
}
.feature-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}
.feature-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.feature-card {
  min-height: 360px;
  padding: 37px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, #201e17, #191711);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 166, 79, 0.3);
}
.feature-wide {
  grid-column: 1/-1;
  min-height: 320px;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: end;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(228, 166, 79, 0.13),
      transparent 30%
    ),
    linear-gradient(120deg, #221e15, #181711);
}
.feature-wide > div {
  max-width: 700px;
}
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid rgba(228, 166, 79, 0.28);
  border-radius: 14px;
  background: rgba(228, 166, 79, 0.07);
  color: var(--gold);
}
.feature-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-label {
  color: #777166;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
}
.feature-card h3 {
  margin: 12px 0 11px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.feature-wide h3 {
  font-size: 36px;
}
.feature-card p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.security {
  margin-block: 140px;
  min-height: 540px;
  padding: 65px;
  display: grid;
  grid-template-columns: 0.65fr 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  border: 1px solid rgba(228, 166, 79, 0.2);
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 5% 50%,
      rgba(228, 166, 79, 0.13),
      transparent 28%
    ),
    #191711;
}
.security-mark {
  width: 180px;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
}
.security-mark span {
  display: block;
  width: 28px;
  border-radius: 9px 9px 3px 3px;
  background: linear-gradient(#f0bd73, #a76508);
  box-shadow: 0 15px 35px rgba(228, 166, 79, 0.15);
}
.security-mark span:nth-child(1) {
  height: 95px;
}
.security-mark span:nth-child(2) {
  height: 185px;
}
.security-mark span:nth-child(3) {
  height: 135px;
}
.security-copy h2 {
  font-size: 45px;
}
.security-copy > p:last-child {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.security-points {
  display: grid;
}
.security-points > div {
  display: flex;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.security-points > div:last-child {
  border: 0;
}
.security-points > div > span {
  color: var(--gold);
  font-size: 10px;
}
.security-points p {
  margin: 0;
}
.security-points b,
.security-points small {
  display: block;
}
.security-points b {
  font-size: 14px;
}
.security-points small {
  margin-top: 3px;
  color: #817c72;
  font-size: 11px;
}
.download {
  min-height: 540px;
  margin-bottom: 140px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  border-radius: 27px;
  background: var(--gold);
  color: #211707;
  box-shadow: 0 30px 90px rgba(139, 83, 0, 0.2);
}
.download .kicker {
  color: #754500;
}
.download h2 {
  font-size: 66px;
}
.download-copy > p:not(.kicker) {
  margin: 20px 0;
  color: #6f480d;
}
.download-copy strong {
  color: #251808;
}
.button-light {
  margin-top: 5px;
  background: #17130c;
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(76, 43, 0, 0.18);
}
.download-copy > small {
  max-width: 470px;
  display: block;
  margin-top: 16px;
  color: #744d14;
  font-size: 11px;
}
.download-art {
  position: relative;
  height: 380px;
}
.shelf {
  position: absolute;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  transform: rotate(-8deg);
}
.shelf:after {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: -15px;
  height: 12px;
  border-radius: 5px;
  background: #3d290e;
  box-shadow: 0 12px 20px rgba(70, 43, 4, 0.18);
}
.shelf span {
  display: block;
  width: 46px;
  border-radius: 5px 5px 2px 2px;
  border: 2px solid #2d1d08;
  background: #f0d39d;
}
.shelf-back {
  top: 50px;
  right: 5px;
  opacity: 0.5;
  transform: rotate(8deg) scale(0.8);
}
.shelf-back span:nth-child(1) {
  height: 130px;
}
.shelf-back span:nth-child(2) {
  height: 170px;
}
.shelf-back span:nth-child(3) {
  height: 145px;
}
.shelf-front {
  left: 25px;
  bottom: 60px;
}
.shelf-front span:nth-child(1) {
  height: 160px;
  background: #2b2114;
}
.shelf-front span:nth-child(2) {
  height: 230px;
}
.shelf-front span:nth-child(3) {
  height: 195px;
  background: #fff0d2;
}
.shelf-front span:nth-child(4) {
  height: 145px;
  background: #5c3b10;
}
.download-logo {
  position: absolute;
  right: 25px;
  bottom: 15px;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  padding: 22px;
  border-radius: 25px;
  background: #17130c;
  box-shadow: 0 18px 32px rgba(81, 49, 6, 0.2);
  transform: rotate(7deg);
}
.download-logo i {
  width: 10px;
  border-radius: 5px 5px 2px 2px;
  background: var(--gold);
}
.download-logo i:nth-child(1) {
  height: 27px;
}
.download-logo i:nth-child(2) {
  height: 48px;
}
.download-logo i:nth-child(3) {
  height: 35px;
}
footer {
  border-top: 1px solid var(--line);
  background: #0c0b08;
}
.footer-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6f6a60;
  font-size: 12px;
}
.footer-brand {
  color: #d7d1c5;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .orbit-two {
    animation: none;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-text {
    margin-inline: auto;
  }
  .hero-actions,
  .release-meta {
    justify-content: center;
  }
  .hero-visual {
    min-height: 650px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid span:nth-child(2) {
    border-right: 0;
  }
  .section-intro,
  .feature-heading {
    grid-template-columns: 1fr;
  }
  .section-intro .kicker {
    grid-column: auto;
    margin-bottom: 0;
  }
  .experience-stage {
    grid-template-columns: 1fr;
  }
  .stage-copy {
    padding: 50px;
  }
  .screen-window {
    min-height: 620px;
  }
  .feature-heading {
    gap: 25px;
  }
  .security {
    grid-template-columns: 0.5fr 1fr;
  }
  .security-points {
    grid-column: 1/-1;
    grid-template-columns: repeat(3, 1fr);
  }
  .security-points > div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 10px 20px;
  }
  .security-points > div:last-child {
    border: 0;
  }
  .download {
    grid-template-columns: 1fr;
  }
  .download-art {
    display: none;
  }
}
@media (max-width: 640px) {
  .shell {
    width: min(100% - 30px, var(--max));
  }
  .page-glow-one {
    width: 440px;
    height: 440px;
    right: 0;
  }
  .page-glow-two {
    width: 360px;
    height: 360px;
    left: -260px;
  }
  .site-header {
    height: 68px;
  }
  .site-header nav {
    display: none;
  }
  .brand {
    font-size: 18px;
  }
  .header-download {
    padding: 8px 12px;
  }
  .hero {
    min-height: auto;
    padding-top: 120px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .release-meta {
    gap: 7px;
    flex-wrap: wrap;
  }
  .hero-visual {
    min-height: 590px;
  }
  .phone {
    width: 260px;
  }
  .orbit-one {
    width: 380px;
    height: 380px;
  }
  .orbit-two {
    width: 350px;
    height: 350px;
    animation: none;
    transform: none;
  }
  .note-top {
    right: -2px;
    top: 130px;
  }
  .note-bottom {
    left: -1px;
    bottom: 95px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 120px;
  }
  .trust-grid span {
    padding: 13px 8px;
    font-size: 11px;
  }
  .experience,
  .feature-section {
    padding-block: 90px;
  }
  .section-intro {
    margin-bottom: 38px;
  }
  .section-intro h2,
  .feature-heading h2,
  .security h2 {
    font-size: 38px;
  }
  .experience-stage {
    border-radius: 18px;
  }
  .stage-copy {
    padding: 35px 25px;
  }
  .stage-copy h3 {
    font-size: 31px;
  }
  .screen-window {
    min-height: 520px;
  }
  .screen-window img {
    width: 300px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-wide {
    grid-column: auto;
    display: flex;
    min-height: 390px;
  }
  .feature-wide h3 {
    font-size: 29px;
  }
  .feature-card {
    padding: 28px;
    min-height: 340px;
  }
  .security {
    margin-block: 90px;
    padding: 40px 25px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .security-mark {
    width: 130px;
    height: 150px;
    justify-self: center;
  }
  .security-mark span:nth-child(1) {
    height: 65px;
  }
  .security-mark span:nth-child(2) {
    height: 135px;
  }
  .security-mark span:nth-child(3) {
    height: 95px;
  }
  .security-points {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .security-points > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 17px 0;
  }
  .download {
    min-height: auto;
    margin-bottom: 90px;
    padding: 45px 27px;
    border-radius: 20px;
  }
  .download h2 {
    font-size: 48px;
  }
  .footer-inner {
    min-height: 150px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .footer-inner p {
    margin: 0;
  }
}
