:root {
  --page-bg: #f8f9fc;
  --text-main: #191c1e;
  --text-body: #464653;
  --brand-primary: #474dc5;
  --brand-primary-strong: #6067df;
  --brand-soft: rgba(71, 77, 197, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 10px 25px 0 rgba(124, 131, 253, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

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

img {
  display: block;
}

.page-shell {
  min-height: 100vh;
  background: var(--page-bg);
}

.page {
  width: min(100vw, 360px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--page-bg);
  overflow: hidden;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 53px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 52px;
  padding: 9px 20px 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.brand__text {
  color: var(--brand-primary-strong);
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.brand__icon {
  width: 17px;
  height: 17px;
}

.brand__icon img {
  width: 100%;
  height: 100%;
}

.top-bar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 34px;
  border-radius: 999px;
  background: var(--brand-primary-strong);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}

.content {
  padding-bottom: 93px;
}

.hero {
  padding: 41px 20px 0;
}

.eyebrow {
  color: #3525cd;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 1.65px;
  text-transform: uppercase;
}

.hero__title {
  margin: 8px 0 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -2.4px;
}

.hero__title span {
  display: block;
}

.hero__title-accent {
  color: var(--brand-primary);
}

.hero__desc {
  margin: 16px 0 0;
  color: var(--text-body);
  font-size: 16px;
  line-height: 24px;
  opacity: 0.9;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 0;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(132.53deg, #6067df 0%, #b693fe 100%);
  box-shadow: 0 10px 15px -3px rgba(71, 77, 197, 0.2), 0 4px 6px -4px rgba(71, 77, 197, 0.2);
  appearance: none;
  -webkit-appearance: none;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.hero__cta-icon {
  width: 9px;
  height: 9px;
}

.hero__cta-icon img {
  width: 100%;
  height: 100%;
}

.hero__tags {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  opacity: 0.7;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.5px;
}

.hero__tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__tag-icon img {
  width: 100%;
  height: 100%;
}

.hero__tag:first-child .hero__tag-icon {
  width: 12px;
  height: 15px;
}

.hero__tag:last-child .hero__tag-icon {
  width: 15px;
  height: 12px;
}

.hero-visual {
  position: relative;
  width: 350px;
  height: 512px;
  margin: 28px auto 0;
  padding-bottom: 32px;
}

.hero-visual__glow {
  position: absolute;
  inset: -24px -17.5px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(124, 131, 253, 0.08) 0%, rgba(165, 180, 252, 0.03) 52%, rgba(165, 180, 252, 0) 100%);
}

.phone {
  position: absolute;
  top: 53px;
  left: 50%;
  width: 180px;
  height: 370px;
  transform: translateX(-50%) rotate(1deg);
  border: 4px solid #1e293b;
  border-radius: 40px;
  background: #0f172a;
  padding: 12px;
  box-shadow: 0 30px 60px -15px rgba(71, 77, 197, 0.12), 0 15px 30px -15px rgba(0, 0, 0, 0.15);
}

.phone::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 64px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: #1e293b;
}

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: #f8f9fc;
  box-shadow: inset 0 0 15px rgba(124, 131, 253, 0.15);
}

.phone__badge {
  position: absolute;
  top: 69px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-left: -28px;
  border-radius: 50%;
  background: rgba(71, 77, 197, 0.1);
  color: var(--brand-primary);
}

.phone__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(71, 77, 197, 0.1);
}

.phone__badge img {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 20px;
}

.phone__status {
  position: absolute;
  top: 145px;
  left: 0;
  width: 100%;
  color: var(--brand-primary);
  font-family: Manrope, Inter, "PingFang SC", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.phone__stats {
  position: absolute;
  right: 16px;
  bottom: 120px;
  left: 16px;
}

.phone__progress {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #edeef1;
  overflow: hidden;
}

.phone__progress span {
  display: block;
  width: 66%;
  height: 100%;
  background: var(--brand-primary);
}

.phone__stats-row {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #94a3b8;
  font-size: 8px;
  font-weight: 600;
  line-height: 12px;
}

.float-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
}

.float-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-size: 10px;
  line-height: 15px;
}

.float-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.float-card__icon img {
  width: 14px;
  height: 20px;
}

.float-card__icon--blue {
  background: rgba(71, 77, 197, 0.1);
  color: var(--brand-primary);
}

.float-card__icon--soft {
  background: #eef2ff;
  color: #4f46e5;
}

.float-card--speed {
  top: 18px;
  left: 4px;
  width: 128px;
  padding: 13px;
  transform: rotate(-6deg);
  z-index: 99;
}

.float-card__lines {
  margin-top: 8px;
}

.float-card__line {
  display: block;
  height: 1.5px;
  border-radius: 999px;
}

.float-card__line--long {
  width: 100%;
  background: rgba(71, 77, 197, 0.3);
}

.float-card__line--short {
  width: 71px;
  margin-top: 5px;
  background: rgba(108, 74, 176, 0.3);
}

.float-card--browser {
  top: 44px;
  right: -2px;
  width: 144px;
  padding: 13px;
  transform: rotate(3deg);
  z-index: 99;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  margin-top: 8px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
}

.browser-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.browser-bar__line {
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: #e2e8f0;
}

.float-card--video {
  bottom: 14px;
  left: -2px;
  width: 144px;
  padding: 11px;
  transform: rotate(2deg);
}

.video-thumb {
  position: relative;
  width: 100%;
  height: 73px;
  overflow: hidden;
  border-radius: 8px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.video-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  margin-top: -8.5px;
  margin-left: -8.5px;
}

.video-thumb__play img {
  width: 17px;
  height: 17px;
}

.video-thumb__progress {
  width: 100%;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.video-thumb__progress span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--brand-primary);
  border-radius: 999px;
}

.float-card--content {
  right: 5px;
  bottom: 45px;
  width: 128px;
  padding: 11px;
  transform: rotate(-3deg);
}

.content-preview {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  width: 100%;
  height: 64px;
}

.content-preview__item {
  display: block;
  width: 40px;
  height: 64px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.content-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-preview__item--a {
  background: linear-gradient(122deg, #c7d2fe 0%, #818cf8 100%);
}

.content-preview__item--b {
  height: 64px;
  background: linear-gradient(122deg, #e9d5ff 0%, #c084fc 100%);
}

.content-preview__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--text-main);
  font-size: 8px;
  line-height: 12px;
}

.content-preview__footer img {
  width: 9px;
  height: 9px;
}

.benefits {
  padding: 23px 5px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.section-head__eyebrow {
  color: var(--brand-primary);
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-head__title {
  margin: 0;
  color: var(--text-main);
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  letter-spacing: -0.24px;
}

.benefits__cards {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 40px;
}

.glass-card {
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
}

.glass-card h3,
.resources__title,
.comics__title {
  margin: 0;
  font-weight: 400;
}

.glass-card p,
.resources__sub {
  margin: 0;
  color: var(--text-body);
}

.glass-card--chart {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 226px;
  padding: 25px;
}

.glass-card--chart h3 {
  font-size: 20px;
  line-height: 28px;
}

.glass-card--chart p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
  padding-top: 32px;
}

.chart-bars__item {
  flex: 1;
  min-width: 0;
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--glass-shadow);
}

.chart-bars__item--1 {
  height: 64px;
  background: #d8d9f2;
  opacity: 0.4;
}

.chart-bars__item--2 {
  height: 42.66px;
  background: rgba(216, 217, 242, 0.63);
  opacity: 0.6;
}

.chart-bars__item--3 {
  height: 64px;
  background: rgba(71, 77, 197, 0.2);
}

.chart-bars__item--4 {
  height: 48px;
  background: #d8d9f2;
  opacity: 0.5;
}

.glass-card--audit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 122px;
  padding: 25px;
}

.audit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(108, 74, 176, 0.1);
  color: #6c4ab0;
}

.audit-icon img {
  width: 22px;
  height: 20px;
}

.audit-copy h3 {
  font-size: 18px;
  line-height: 28px;
}

.audit-copy p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 20px;
}

.glass-card--resources {
  padding: 25px;
}

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

.resources__title {
  color: #1a1c1b;
  font-size: 36px;
  line-height: 46.8px;
  letter-spacing: -0.36px;
}

.resources__sub {
  margin-top: 8px;
  color: #47464d;
  font-size: 16px;
  line-height: 24px;
}

.resources__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #d1d2de;
  color: var(--brand-primary);
}

.resources__action img {
  width: 25px;
  height: 25px;
}

.resources__grid {
  display: grid;
  grid-template-columns: 142.5px 131px;
  gap: 16px;
  margin-top: 24px;
}

.resource-tile {
  position: relative;
  height: 73.69px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.resource-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-tile__badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 10px;
  line-height: 15px;
}

.resource-tile--mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(99, 102, 241, 0.1);
}

.resource-tile__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 14px;
  margin-top: -7px;
  margin-left: -5.5px;
}

.resource-tile__overlay img {
  width: 11px;
  height: 14px;
}

.glass-card--comics {
  padding: 24px 19px 24px;
}

.comics__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.comics__eyebrow {
  color: #754aa1;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.comics__title {
  margin-top: 4.5px;
  font-size: 28px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: -0.84px;
}

.comics__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--brand-primary);
  font-size: 14px;
  line-height: 20px;
}

.comics__more img {
  width: 13px;
  height: 10px;
}

.comics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.comic-card {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.comic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comic-card--top {
  margin-top: 0;
}

.comic-card--offset {
  margin-top: 24px;
}

.comic-card--gap {
  margin-top: 12px;
}

@media (max-width: 359px) {
  .top-bar__button {
    width: 104px;
    padding: 0 14px;
  }

  .hero-visual {
    margin-left: -15px;
    transform: scale(0.94);
    transform-origin: top left;
  }

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