@font-face {
  font-family: "Manrope";
  src: url("./assets/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/manrope-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Material Symbols Outlined";
  src: url("./assets/material-symbols-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --ink: #0d1f45;
  --muted: #69768e;
  --blue: #2872f3;
  --green: #5a9960;
  --orange: #ee8642;
  --cream: #fbfaf5;
  --line: rgba(28, 63, 93, 0.12);
  --shadow: 0 16px 46px rgba(35, 63, 88, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #eef2ea;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.material-symbols {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
}

.landing {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 468px;
  padding: 32px 24px 40px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.82) 0%, rgba(251, 250, 245, 0.42) 40%, rgba(251, 250, 245, 0.04) 100%),
    linear-gradient(180deg, rgba(251, 250, 245, 0) 0%, rgba(251, 250, 245, 0.34) 56%, var(--cream) 100%);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0 0 auto;
  z-index: -2;
  height: 364px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 0;
}

.brand-bar {
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(37, 71, 112, 0.16);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-copy h1 span {
  color: var(--green);
}

.hero-copy p {
  margin: 0;
  color: #50627c;
  font-size: 15px;
  line-height: 1.55;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(40, 114, 243, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: #1f64d6;
  font-size: 15px;
}

.screens-section {
  margin-top: -84px;
  padding: 0 0 8px;
}

.screens {
  position: relative;
  height: 348px;
  pointer-events: none;
}

.screen-card {
  position: absolute;
  display: block;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(20, 45, 74, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.screen-card--center {
  left: 50%;
  bottom: 0;
  z-index: 3;
  width: 158px;
  height: 332px;
  transform: translateX(-50%);
}

.screen-card--left,
.screen-card--right {
  top: 54px;
  z-index: 2;
  width: 126px;
  height: 276px;
  opacity: 0.88;
}

.screen-card--left {
  left: 15px;
  transform: rotate(-2.2deg);
}

.screen-card--right {
  right: 15px;
  transform: rotate(2.2deg);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 26px 20px 22px;
  background: var(--cream);
}

.feature-strip article {
  min-width: 0;
  text-align: center;
}

.feature-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 9px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(42, 77, 116, 0.16);
}

.feature-icon--blue {
  background: linear-gradient(145deg, #2f7ff7, #386ae6);
}

.feature-icon--green {
  background: linear-gradient(145deg, #65ad6a, #479654);
}

.feature-icon--orange {
  background: linear-gradient(145deg, #f19a55, #e97935);
}

.feature-strip h2 {
  margin: 0 0 5px;
  font-size: 10.5px;
  line-height: 1.25;
  white-space: nowrap;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.45;
}

.privacy-panel {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-areas:
    "icon copy"
    "points points";
  gap: 12px 14px;
  margin: 0 28px 26px;
  padding: 18px 16px;
  border: 1px solid rgba(91, 153, 96, 0.14);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(232, 242, 225, 0.95), rgba(255, 255, 255, 0.92));
  box-shadow: 0 14px 32px rgba(67, 111, 76, 0.1);
}

.privacy-lock {
  grid-area: icon;
  width: 58px;
  height: 58px;
  border-radius: 19px;
  background: #5aa764;
  color: #ffffff;
  font-size: 32px;
}

.privacy-copy {
  grid-area: copy;
  align-self: center;
}

.privacy-copy h2 {
  margin: 0 0 7px;
  font-size: 19px;
  line-height: 1.25;
}

.privacy-copy p {
  margin: 0;
  color: #6d7a8e;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-points {
  grid-area: points;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px solid rgba(62, 110, 71, 0.12);
  list-style: none;
}

.privacy-points li {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #1d2c44;
  font-size: 12px;
}

.privacy-points .material-symbols {
  color: #5a9960;
  font-size: 27px;
}

.download-section {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding: 0;
  text-align: center;
}

.download-button {
  display: grid;
  grid-template-columns: 48px 1fr 34px;
  align-items: center;
  min-height: 62px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f7ff7, #2d5fec);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(47, 111, 244, 0.3);
}

.download-button strong {
  font-size: 19px;
  line-height: 1.1;
  white-space: nowrap;
}

.huawei-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f1655e, #e54745);
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
}

.arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #2f6ff4;
}

.download-section p {
  margin: 10px 0 0;
  color: #8390a2;
  font-size: 14px;
}

.assistant-card {
  margin: 6px 24px 36px;
  padding: 22px 18px 0;
  min-height: 180px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #f3f7ff 0%, rgba(243, 247, 255, 0.42) 100%);
  text-align: center;
}

.assistant-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.assistant-card p {
  margin: 0 0 22px;
  color: #5f6f86;
  font-size: 14px;
}

.report-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  border-radius: 16px 16px 0 0;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.report-preview span,
.report-preview strong {
  display: block;
}

.report-preview span {
  color: #536276;
  font-size: 12px;
}

.report-preview strong {
  margin-top: 3px;
  font-size: 13px;
}

.report-preview button {
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: #dff0de;
  color: #3e8b49;
  font-size: 12px;
  font-weight: 700;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 40;
  max-width: min(330px, calc(100vw - 40px));
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(15, 31, 61, 0.92);
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (min-width: 431px) {
  .landing {
    box-shadow: 0 0 0 1px rgba(17, 43, 76, 0.08), 0 28px 80px rgba(29, 55, 93, 0.16);
  }
}

@media (max-width: 374px) {
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .download-section {
    margin-top: 24px;
  }

  .download-button strong {
    font-size: 18px;
  }
}
