:root {
  --bg: #f4f8ff;
  --bg-2: #ffffff;
  --card: rgba(255, 255, 255, 0.92);
  --text: #081226;
  --muted: #4e5d7a;
  --line: rgba(18, 42, 88, 0.12);
  --accent: #1d6fff;
  --accent-2: #00b8ff;
  --accent-3: #7b61ff;
  --danger: #ff5b6e;
  --shadow: 0 24px 80px rgba(25, 72, 155, 0.16);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg-2);
}

.container {
  min-height: 100vh;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 460px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.84));
  backdrop-filter: blur(18px);
}

.logo-container {
  display: flex;
  justify-content: center;
}

.logo {
  font-size: 3.5rem;
  color: var(--accent);
  font-weight: 900;
}

.slogan-container {
  margin-top: 0.5rem;
}

.slogan {
  text-align: center;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.cta-button {
  width: 75%;
  border: none;
  padding: 0;
  background: unset;
  cursor: pointer;
}

.cta-img {
  width: 100%;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 9vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 900;
}

h1 span {
  display: inline;
  color: #0c57da;
}

h1 strong {
  display: inline;
  font-weight: 900;
  color: #ff4668;
}

.subhead {
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1.6;
}

.subhead p {
  margin-block: 0.5rem;
}

.subhead strong {
  color: var(--danger);
}

.pain-points {
  margin-top: 1.5rem;
  display: grid;
  gap: 12px;
}

.pain-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 15px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,250,255,0.92));
  border: 1px solid rgba(18, 42, 88, 0.08);
  box-shadow: 0 10px 26px rgba(25, 72, 155, 0.08);
}

.pain-point.highlight {
  background: linear-gradient(180deg, rgba(255, 239, 243, 0.98), rgba(255, 248, 250, 0.98));
  border-color: rgba(255, 91, 110, 0.18);
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 91, 110, 0.16), rgba(255, 91, 110, 0.08));
  color: var(--danger);
  font-weight: 900;
  font-size: 20px;
}

.pain-point h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.pain-point p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.solution {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(29,111,255,0.12), rgba(0,184,255,0.12) 55%, rgba(123,97,255,0.1));
  border: 1px solid rgba(29, 111, 255, 0.14);
}

.solution-badge {
  display: inline-block;
  margin-bottom: 8px;
  color: #0b58df;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solution h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.solution p {
  margin: 0;
  color: #26405f;
  font-size: 1rem;
  line-height: 1.5;
}
