:root {
  --bg: #fffaf8;
  --text: #1f1721;
  --muted: #6d6370;
  --pink: #ff7eb6;
  --pink-soft: #ffd8e9;
  --pink-pale: #fff0f7;
  --yellow: #ffe98f;
  --yellow-soft: #fff6cc;
  --peach: #ffd9c6;
  --peach-soft: #ffefe6;
  --white: #ffffff;
  --line: rgba(31, 23, 33, 0.08);
  --shadow: 0 20px 60px rgba(236, 95, 154, 0.14);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 216, 233, 0.85), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 233, 143, 0.45), transparent 24%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.logo {
  height: 56px;
  width: auto;
}

.header-pill {
  background: var(--pink-pale);
  color: #c54d88;
  border: 1px solid rgba(197, 77, 136, 0.08);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
  padding: 24px 0 56px;
}

.hero-copy h1 {
  margin: 16px 0 0;
  max-width: 680px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: #985d00;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 201, 86, 0.2);
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(255, 126, 182, 0.28);
}

.button-secondary {
  background: var(--yellow-soft);
  color: #8c5c00;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.reason-card {
  padding: 18px 18px 20px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(24, 18, 26, 0.04);
}

.reason-pink {
  background: var(--pink-soft);
}

.reason-yellow {
  background: var(--yellow-soft);
}

.reason-peach {
  background: var(--peach-soft);
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.visual-panel {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 3px solid #ffd4e8;
  border-radius: 40px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.search-chip {
  background: #fff;
  border: 2px solid #ffe0ec;
  color: #958a96;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(24, 18, 26, 0.04);
}

.insight-card {
  margin-top: 16px;
  background: var(--pink-pale);
  border-radius: 30px;
  padding: 18px;
}

.insight-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.micro-label {
  color: #d85e96;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.insight-top h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.score-box {
  background: var(--yellow-soft);
  border-radius: 22px;
  padding: 14px 16px;
  min-width: 150px;
  text-align: right;
}

.score-box span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8f7a35;
  margin-bottom: 4px;
}

.score-box strong {
  font-size: 18px;
  line-height: 1.2;
}

.insight-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.insight-box {
  background: var(--white);
  border-radius: 22px;
  padding: 16px;
}

.box-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #918392;
  font-weight: 700;
  margin-bottom: 8px;
}

.insight-box p {
  margin: 0;
  color: #5d5360;
  line-height: 1.6;
  font-size: 14px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini-card {
  border-radius: 24px;
  padding: 16px;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-title {
  font-size: 18px;
  font-weight: 800;
}

.mini-text {
  font-size: 13px;
  line-height: 1.45;
  color: #5b515d;
}

.mini-pink {
  background: var(--pink-soft);
}

.mini-yellow {
  background: var(--yellow-soft);
}

.mini-peach {
  background: var(--peach);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
}

.blob-one {
  width: 130px;
  height: 130px;
  background: rgba(255, 126, 182, 0.18);
  top: 24px;
  right: -28px;
}

.blob-two {
  width: 160px;
  height: 160px;
  background: rgba(255, 214, 198, 0.6);
  bottom: 10px;
  left: -32px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 10px 0 56px;
}

.feature-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 12px 28px rgba(24, 18, 26, 0.04);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: #5f5662;
  line-height: 1.65;
  font-size: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.feature-pink {
  background: var(--pink-soft);
}

.feature-yellow {
  background: var(--yellow-soft);
}

.feature-peach {
  background: var(--peach-soft);
}

.split-section {
  margin-top: 4px;
  background: #fff1be;
  border-radius: 44px;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
}

.section-label {
  color: #ca5b93;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.split-copy h2 {
  margin: 0;
  max-width: 460px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.split-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: #605461;
}

.tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tool-card {
  min-height: 150px;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(24, 18, 26, 0.04);
}

.tool-card h4 {
  margin: 28px 0 0;
  max-width: 190px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.tool-bar {
  display: inline-block;
  width: 62px;
  height: 10px;
  border-radius: var(--radius-sm);
  background: var(--pink);
}

.white-card {
  background: var(--white);
}

.pink-card {
  background: var(--pink-soft);
}

.closing-banner {
  padding: 34px 0 8px;
  text-align: center;
}

.closing-banner p {
  margin: 0;
  font-size: 18px;
  color: #8a7e8a;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .reason-grid,
  .mini-grid,
  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 16px 16px 36px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    height: 48px;
  }

  .hero {
    gap: 28px;
    padding: 12px 0 42px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .reason-grid,
  .mini-grid,
  .insight-columns,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel,
  .split-section {
    padding: 18px;
  }

  .insight-top {
    flex-direction: column;
  }

  .score-box {
    width: 100%;
    text-align: left;
  }

  .feature-card {
    padding: 22px;
  }
}