body.home {
  background: radial-gradient(circle at top, #e5edff 0, #f5f5f7 38%, #f9fafb 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto;
  height: 70%;
  background:
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(79, 70, 229, 0.08), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
  }
}

.hero-visual {
  margin: 0;
}

.hero-visual-frame {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.08),
    0 8px 20px rgba(37, 99, 235, 0.08);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: left top;
}

.hero-visual figcaption {
  margin-top: 0.75rem;
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 900px) {
  .hero-visual figcaption {
    text-align: left;
  }
}

.hero-stats {
  position: relative;
  margin-top: 2rem;
}

.hero-stats .stat-list {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 16px;
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.hero-stats .stat-list li {
  display: flex;
  padding: 0.85rem 0;
  border-bottom: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  color: #475569;
  font-size: 0.92rem;
}

.hero-stats .stat-list strong {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #0f172a;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.8);
}

.home h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.lead {
  margin: 0 0 1.6rem;
  max-width: 38rem;
  color: #475569;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #ffffff;
}

.stat-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

section {
  padding: 2.5rem 0;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2 {
  margin: 0 0 0.45rem;
  font-size: 1.45rem;
  color: #0f172a;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.platform-grid,
.feature-grid,
.article-grid {
  display: grid;
  gap: 1rem;
}

.platform-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.article-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card,
.feature,
.article-card,
.steps li {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 16px;
  background: #ffffff;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.card,
.article-card {
  padding: 1.15rem 1.2rem;
}

.feature {
  border-radius: 14px;
  padding: 1rem 1.05rem;
}

.card:hover,
.article-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

.card h3,
.article-card h3,
.feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.feature h3 {
  font-size: 1rem;
}

.card p,
.feature p,
.article-card p {
  margin: 0 0 0.9rem;
  color: #64748b;
  font-size: 0.92rem;
}

.feature p {
  margin: 0;
}

.card a,
.article-card .read-more {
  font-weight: 700;
  font-size: 0.9rem;
}

.article-card {
  display: flex;
  flex-direction: column;
}

.article-card p {
  flex: 1;
  margin-bottom: 1rem;
}

.article-tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-card h3 a {
  color: inherit;
  text-decoration: none;
}

.article-card h3 a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.guide-card {
  display: grid;
  gap: 1.2rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 18px;
  padding: 1.4rem;
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
}

@media (min-width: 760px) {
  .guide-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.guide-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #0f172a;
}

.guide-card p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.steps li {
  padding: 1rem;
}

.step-no {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.steps strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #0f172a;
}

.steps span {
  color: #64748b;
  font-size: 0.9rem;
}
