:root {
  --bg: #0d1022;
  --bg-soft: #181737;
  --card: #201f46;
  --card-2: #32264c;
  --line: rgba(165, 163, 223, 0.28);
  --text: #f3f6ff;
  --muted: #b6b9d8;
  --accent: #8b5cf6;
  --accent-2: #a5a3df;
  --success: #62d7a2;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: var(--text);
  background: radial-gradient(circle at 15% 0%, #2c2162 0%, rgba(44, 33, 98, 0) 42%),
    radial-gradient(circle at 95% 18%, rgba(139, 92, 246, 0.28) 0%, rgba(139, 92, 246, 0) 40%),
    var(--bg);
  font-family: "Manrope", sans-serif;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(76px);
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}

.orb-a {
  top: -100px;
  left: -100px;
  background: rgba(139, 92, 246, 0.55);
}

.orb-b {
  bottom: -140px;
  right: -100px;
  background: rgba(67, 223, 198, 0.33);
}

.hero {
  margin-top: 2rem;
  padding: 2.4rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(160deg, rgba(32, 31, 70, 0.95), rgba(24, 23, 55, 0.86));
  box-shadow: 0 16px 48px rgba(8, 7, 20, 0.55);
  animation: fadeUp 0.7s ease-out;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-copy {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  letter-spacing: 0;
  color: var(--accent-2);
  border: 1px solid rgba(165, 163, 223, 0.35);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero h1 {
  margin: 1.05rem 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: -0.02em;
}

.hero-lead {
  margin-top: 1rem;
  max-width: 780px;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.65;
}

.hero-side {
  border: 1px solid rgba(165, 163, 223, 0.2);
  border-radius: 18px;
  padding: 1.1rem;
  background: linear-gradient(160deg, rgba(50, 38, 76, 0.88), rgba(24, 23, 55, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.hero-side-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(98, 215, 162, 0.28);
  background: rgba(98, 215, 162, 0.12);
  color: #cbffea;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-side h2 {
  margin: 0.75rem 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: 1.08rem;
  line-height: 1.5;
}

.hero-side-list {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.hero-side-list li {
  border: 1px solid rgba(165, 163, 223, 0.18);
  border-radius: 12px;
  padding: 0.78rem 0.85rem;
  background: rgba(24, 23, 55, 0.78);
  color: #e8ecff;
  line-height: 1.55;
  font-size: 0.94rem;
}

.hero-side-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.9rem;
}

.hero-points {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(165, 163, 223, 0.3);
  background: rgba(50, 38, 76, 0.42);
  color: #dbe0ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.76rem 1.12rem;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #5d7dff);
  color: #fff;
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.5);
}

.btn-ghost {
  border-color: rgba(165, 163, 223, 0.4);
  color: var(--accent-2);
  background: rgba(32, 31, 70, 0.35);
}

.btn-ghost:hover {
  border-color: rgba(165, 163, 223, 0.7);
}

.btn-mini {
  padding: 0.58rem 0.92rem;
  font-size: 0.86rem;
}

.btn-wide {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
  font-size: 1rem;
  padding: 0.9rem 1.2rem;
}

.hero-stats {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-stats div {
  border: 1px solid rgba(165, 163, 223, 0.2);
  background: rgba(32, 31, 70, 0.55);
  border-radius: 12px;
  padding: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stats span {
  font-family: "Unbounded", sans-serif;
  font-size: 1.1rem;
}

.hero-stats small {
  color: var(--muted);
  font-size: 0.78rem;
}

.sales-intro {
  margin-top: 1.45rem;
  max-width: 900px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(165, 163, 223, 0.26);
  background: rgba(32, 31, 70, 0.56);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.sales-intro h2 {
  margin: 0.8rem 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.45;
}

.sales-intro p {
  margin: 0.78rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.scenario-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.scenario-grid article {
  border: 1px solid rgba(165, 163, 223, 0.2);
  border-radius: 16px;
  padding: 1.05rem;
  background: linear-gradient(160deg, rgba(32, 31, 70, 0.92), rgba(24, 23, 55, 0.92));
  box-shadow: 0 10px 30px rgba(8, 7, 20, 0.28);
}

.scenario-grid strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.28);
  color: #e8deff;
  font-size: 0.76rem;
  font-weight: 800;
}

.scenario-grid h3 {
  margin: 0.78rem 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: 1.02rem;
  line-height: 1.48;
}

.scenario-grid p {
  margin: 0.72rem 0 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.95rem;
}

.feature-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.feature-grid article {
  border: 1px solid rgba(165, 163, 223, 0.18);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(32, 31, 70, 0.92), rgba(24, 23, 55, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-grid h2 {
  margin: 0;
  font-size: 1rem;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
}

.feature-grid p {
  margin: 0.72rem 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.start-box {
  margin-top: 1.2rem;
  border: 1px solid rgba(98, 215, 162, 0.33);
  border-radius: 16px;
  padding: 1.05rem;
  background: linear-gradient(130deg, rgba(50, 38, 76, 0.78), rgba(24, 23, 55, 0.92));
}

.start-box h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.05rem, 2.3vw, 1.5rem);
}

.start-steps {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

.start-steps article {
  border: 1px solid rgba(165, 163, 223, 0.24);
  border-radius: 12px;
  padding: 0.78rem;
  background: rgba(24, 23, 55, 0.8);
}

.start-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.28);
  color: #e9e4ff;
  font-weight: 800;
  font-size: 0.88rem;
}

.start-steps p {
  margin: 0.55rem 0 0;
  color: #d0d7ff;
  line-height: 1.5;
  font-size: 0.9rem;
}

.start-note {
  margin: 0.85rem 0 0;
  color: #d8e8ff;
  line-height: 1.58;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.section-copy {
  max-width: 760px;
}

.section-head h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
}

.section-copy p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.95rem;
}

.news-grid {
  margin-top: 1rem;
  margin-bottom: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.84rem;
}

.news-card {
  border-radius: 16px;
  border: 1px solid rgba(165, 163, 223, 0.18);
  background: linear-gradient(160deg, rgba(50, 38, 76, 0.92), rgba(24, 23, 55, 0.92));
  box-shadow: 0 10px 30px rgba(8, 7, 20, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  padding: 0.5rem;
  background: radial-gradient(circle at 15% 10%, rgba(165, 163, 223, 0.18), rgba(0, 0, 0, 0)),
    rgba(24, 23, 55, 0.88);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.001);
  transition: transform 0.3s ease;
}

.news-card:hover .card-image img {
  transform: scale(1.02);
}

.news-meta {
  color: var(--accent-2);
  font-size: 0.8rem;
  margin: 0.85rem 0.95rem 0;
}

.news-card h3 {
  margin: 0.42rem 0.95rem 0;
  font-size: 1.04rem;
  line-height: 1.38;
}

.news-card h3 a:hover {
  color: #fff;
}

.news-card p {
  margin: 0.6rem 0.95rem 0;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.text-link {
  margin: 0.9rem 0.95rem 1rem;
  color: var(--success);
  font-weight: 700;
  font-size: 0.9rem;
}

.text-link:hover {
  text-decoration: underline;
}

.post-page {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.back-link {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 1rem;
}

.back-link:hover {
  text-decoration: underline;
}

.post-card {
  border: 1px solid rgba(165, 163, 223, 0.22);
  border-radius: 18px;
  padding: 1.35rem;
  background: linear-gradient(160deg, rgba(32, 31, 70, 0.94), rgba(24, 23, 55, 0.88));
}

.post-card h1 {
  margin: 0.5rem 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.46rem, 3vw, 2.3rem);
}

.post-lead {
  margin: 0.86rem 0 1rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.post-cover {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 10%, rgba(165, 163, 223, 0.18), rgba(0, 0, 0, 0)),
    rgba(24, 23, 55, 0.88);
  border: 1px solid rgba(165, 163, 223, 0.2);
}

.post-cover img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.post-content {
  margin-top: 1.05rem;
  font-size: 1.03rem;
  line-height: 1.72;
}

.post-content h2,
.post-content h3 {
  font-family: "Unbounded", sans-serif;
  margin: 1.25rem 0 0.5rem;
}

.post-content p {
  margin: 0.8rem 0;
  color: var(--text);
}

.post-content ul,
.post-content ol,
.benefits ul {
  margin: 0.5rem 0 0.7rem;
  padding-left: 1.2rem;
}

.post-content li,
.benefits li {
  margin-bottom: 0.35rem;
}

.post-content a {
  color: var(--success);
  text-decoration: underline;
}

.benefits {
  margin-top: 1.3rem;
  padding: 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(165, 163, 223, 0.2);
  background: linear-gradient(130deg, rgba(50, 38, 76, 0.7), rgba(24, 23, 55, 0.66));
}

.benefits h2 {
  margin: 0;
  font-size: 1.04rem;
  font-family: "Unbounded", sans-serif;
}

.cta-box {
  margin-top: 1.1rem;
  padding: 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(98, 215, 162, 0.36);
  background: linear-gradient(120deg, rgba(32, 31, 70, 0.55), rgba(98, 215, 162, 0.12));
}

.cta-box p {
  margin: 0 0 0.55rem;
  color: #dbeff2;
  font-weight: 700;
  font-size: 1.02rem;
}

.cta-list {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
  color: #d8e8ff;
  line-height: 1.52;
}

.disclaimer {
  margin: 1.3rem 0 2rem;
  border: 1px solid rgba(165, 163, 223, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--muted);
  background: rgba(24, 23, 55, 0.6);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer a {
  color: var(--accent-2);
  margin-left: 0.95rem;
}

.footer a:hover {
  text-decoration: underline;
}

.sticky-cta {
  display: none;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(165, 163, 223, 0.26);
  background: rgba(13, 16, 34, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(8, 7, 20, 0.42);
}

.sticky-cta-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sticky-cta-copy strong {
  font-size: 0.92rem;
}

.sticky-cta-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.sticky-cta-btn {
  white-space: nowrap;
  min-width: 104px;
}

.empty {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .scenario-grid,
  .start-steps,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(94px + env(safe-area-inset-bottom));
  }

  .hero {
    padding: 1.4rem;
  }

  .hero-layout,
  .hero-stats,
  .feature-grid,
  .scenario-grid,
  .start-steps,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 0 0.6rem calc(0.6rem + env(safe-area-inset-bottom));
  }

  .sticky-cta-btn {
    min-width: 92px;
    padding: 0.78rem 0.95rem;
  }

  .post-card {
    padding: 1rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1.5rem;
  }

  .footer a {
    margin-left: 0;
    margin-right: 0.8rem;
  }
}
