:root {
  --bg: #f3f8fb;
  --bg-soft: #ffffff;
  --card: rgba(255, 255, 255, 0.84);
  --card-border: rgba(20, 50, 70, 0.08);
  --text: #173042;
  --muted: rgba(23, 48, 66, 0.72);
  --accent: #1c8f82;
  --accent-2: #0f5f6d;
  --shadow: 0 24px 60px rgba(28, 65, 86, 0.12);
}

* {
  box-sizing: border-box;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(28, 143, 130, 0.12), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(33, 127, 186, 0.09), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, var(--bg) 56%, #eef5f8 100%);
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(16px, 3vw, 24px);
  display: grid;
  grid-template-rows: auto 1fr;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.7;
  pointer-events: none;
}

.ambient-1 {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -40px;
  background: rgba(28, 143, 130, 0.10);
}

.ambient-2 {
  width: 340px;
  height: 340px;
  left: -120px;
  bottom: -130px;
  background: rgba(33, 127, 186, 0.08);
}

.logo-mark {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  right: clamp(20px, 3vw, 32px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  display: block;
  width: auto;
  height: clamp(116px, 12vw, 172px);
  max-width: min(680px, 88vw);
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(28, 65, 86, 0.12));
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-width: 100%;
  margin: auto;
  padding: clamp(28px, 5vw, 56px);
  padding-top: clamp(150px, 14vw, 220px);
  border: 1px solid var(--card-border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 253, 0.84));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.intro {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.feature {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(20, 50, 70, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.feature-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.feature h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.notice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(28, 143, 130, 0.12);
  color: var(--accent-2);
  font-size: 0.92rem;
  font-weight: 700;
}

.pill-soft {
  background: rgba(23, 48, 66, 0.05);
  color: var(--text);
}

@media (max-width: 860px) {
  .page-shell {
    padding: 18px;
  }

  .hero-card {
    border-radius: 26px;
    padding-top: 132px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 14px;
  }

  .logo-mark {
    top: 18px;
    right: 18px;
  }

  .logo-image {
    height: 72px;
    max-width: 56vw;
  }

  h1 {
    font-size: clamp(2.35rem, 16vw, 3.6rem);
    line-height: 0.98;
  }

  .intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 14px;
  }

  .hero-card {
    padding: 22px;
    padding-top: 112px;
    border-radius: 22px;
  }

  .feature-grid {
    gap: 12px;
    margin-top: 22px;
  }

  .feature {
    padding: 18px;
    border-radius: 18px;
  }

  .feature h2 {
    font-size: 1.05rem;
  }

  .notice-row {
    margin-top: 22px;
    gap: 10px;
  }

  .pill {
    width: 100%;
  }

  .pill-soft {
    justify-content: center;
  }
}
