:root {
  --bg: #f6f8ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --stroke: rgba(39, 84, 207, 0.11);
  --text: #121a31;
  --muted: #5d667f;
  --blue: #2156e8;
  --blue-2: #2f6df3;
  --blue-3: #e8efff;
  --shadow: 0 18px 40px rgba(30, 57, 133, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(53, 118, 255, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 219, 165, 0.18), transparent 26%),
    linear-gradient(180deg, #fbfcff 0%, #f2f6ff 100%);
}

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

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

.page-shell {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 20px 14px 24px;
}

.hero {
  padding: 4px 4px 0;
}

.brand-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}

.brand-logo {
  width: 62px;
  height: auto;
}

.pill {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47, 109, 243, 0.08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pill-icon {
  font-size: 14px;
}

h1 {
  margin: 18px 0 12px;
  font-size: 33px;
  line-height: 0.97;
  letter-spacing: -0.055em;
  font-weight: 800;
}

h1 span {
  color: var(--blue);
}

.hero-copy {
  max-width: 300px;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.48;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.cta-stack {
  display: grid;
  gap: 12px;
}

.cta-primary,
.cta-secondary,
.cta-white,
.cta-outline {
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cta-primary {
  color: #fff;
  background: linear-gradient(90deg, #2257e5 0%, #2864f0 100%);
  box-shadow: 0 16px 24px rgba(34, 87, 229, 0.2);
}

.cta-primary svg,
.cta-white svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-primary .arrow {
  width: 17px;
  height: 17px;
}

.cta-secondary {
  color: #252c3d;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(49, 83, 175, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.play-icon {
  width: 26px;
  height: 26px;
}

.trust-row {
  list-style: none;
  padding: 0;
  margin: 16px 2px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 10px;
  color: #66708a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-surface {
  margin-top: 14px;
  padding: 22px 14px 16px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.98));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
}

.card-surface h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-card {
  min-height: 154px;
  padding: 16px 12px 14px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 12px 20px rgba(48, 73, 141, 0.08);
  border: 1px solid rgba(82, 114, 196, 0.08);
}

.feature-card .emoji {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.feature-card:last-child {
  grid-column: 1 / -1;
}

.showcase-panel {
  margin-top: 16px;
  padding: 12px 8px 0;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 246, 255, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase-phone {
  width: 100%;
  max-width: 356px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 28px rgba(14, 22, 46, 0.16));
}

.info {
  padding: 22px 16px 16px;
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.doc-illustration {
  width: min(128px, 100%);
  margin: 0 auto;
}

.info-copy h2 {
  margin: 0 0 12px;
  text-align: left;
  font-size: 28px;
  line-height: 1.05;
}

.info-copy h3 {
  margin: 16px 0 6px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.info-copy p {
  margin: 0;
  color: #3c4255;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.check-point {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}

.check-point svg {
  width: 24px;
  height: 24px;
  fill: #2d68f4;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.impact-pill {
  min-height: 58px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(239, 244, 255, 0.98), rgba(228, 237, 255, 0.9));
  border: 1px solid rgba(68, 102, 191, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.impact-pill span {
  font-size: 24px;
  flex: 0 0 auto;
}

.impact-pill p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.bottom-cta {
  margin-top: 12px;
  padding: 18px 14px 16px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #2f73ff 0%, #1f56e5 65%, #1948cf 100%);
  box-shadow: 0 18px 34px rgba(36, 84, 210, 0.28);
}

.bottom-cta h2 {
  margin: 0 0 14px;
  text-align: center;
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.cta-white {
  width: 100%;
  height: 46px;
  color: var(--blue);
  background: #ffffff;
}

.cta-outline {
  margin-top: 8px;
  width: 100%;
  height: 40px;
  color: #ffffff;
  border: 1.6px solid rgba(255, 255, 255, 0.75);
  background: transparent;
}

.light {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  justify-content: center;
}

.light li {
  position: relative;
}

.light li + li::before {
  content: "•";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.light svg {
  opacity: 0.92;
}

[data-pressable="true"] {
  transform: scale(0.985);
}

@media (hover: hover) and (pointer: fine) {
  .cta-primary:hover,
  .cta-secondary:hover,
  .cta-white:hover,
  .cta-outline:hover {
    transform: translateY(-1px);
  }

  .cta-primary:hover {
    box-shadow: 0 20px 30px rgba(34, 87, 229, 0.26);
  }
}

@media (max-width: 400px) {
  .page-shell {
    padding-inline: 10px;
  }

  h1 {
    font-size: 31px;
  }

  .brand-logo {
    width: 58px;
  }

  .doc-illustration {
    width: min(118px, 100%);
  }
}

@media (min-width: 401px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-card:last-child {
    grid-column: auto;
  }
}
