@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  --bg: #f7faf8;
  --surface: #ffffff;
  --surface-soft: #f0f6f2;
  --text: #14211b;
  --muted: #556660;
  --line: #d8e4dd;
  --accent: #0f8b6d;
  --accent-2: #f4a62a;
  --danger: #d14343;
  --success: #10895c;
  --radius: 18px;
  --shadow: 0 16px 36px rgba(17, 39, 30, 0.1);
  --max-width: 1180px;
  --font: 'Manrope', 'Segoe UI', sans-serif;
  --font-display: 'Sora', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 28px;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 0% 5%, rgba(15, 139, 109, 0.2), transparent 36%),
    radial-gradient(circle at 100% 0%, rgba(244, 166, 42, 0.24), transparent 40%),
    linear-gradient(180deg, #f7faf8 0%, #edf4f0 100%);
}

.glow {
  display: none;
}

.main {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 24px;
  animation: rise 480ms ease-out;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(20, 33, 27, 0.1);
  background: linear-gradient(140deg, rgba(15, 139, 109, 0.24), rgba(244, 166, 42, 0.28));
  display: grid;
  place-items: center;
  font-weight: 800;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.top-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
}

.top-links a:hover,
.top-links a.active {
  background: var(--surface-soft);
  color: var(--text);
}

.header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge,
.badge-soft,
.pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  border: 1px solid rgba(15, 139, 109, 0.2);
  background: rgba(15, 139, 109, 0.1);
  color: #0d6a54;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0f8b6d;
}

.title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.06;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.hero-left {
  background: linear-gradient(155deg, #0f8b6d, #166b57);
  color: #f3faf6;
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(244, 166, 42, 0.42);
  filter: blur(20px);
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.18);
}

.app-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-kicker {
  margin: 0 0 4px;
  opacity: 0.86;
  font-weight: 700;
}

.hero-left .title {
  font-size: clamp(28px, 4.4vw, 42px);
  color: #ffffff;
}

.hero-left .lead,
.hero-left .meta {
  color: rgba(243, 250, 246, 0.94);
}

.lead {
  margin: 4px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 840px;
}

.hero-right {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.hero-right h2,
.card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 23px;
}

.hero-right p,
.card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0f8b6d, #166b57);
  box-shadow: 0 8px 20px rgba(15, 139, 109, 0.22);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: var(--surface);
}

.meta {
  font-size: 13px;
  color: var(--muted);
}

.section {
  margin-top: 18px;
}

.grid,
.feature-grid,
.stats {
  display: grid;
  gap: 12px;
}

.grid,
.feature-grid {
  grid-template-columns: repeat(12, 1fr);
}

.feature-grid .card {
  grid-column: span 4;
}

.stats {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.panel-strong,
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card,
.panel-strong {
  padding: 18px;
}

.panel-strong {
  background: linear-gradient(180deg, #f4faf6, #ecf5f0);
}

.stat {
  padding: 14px;
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 22px;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.list,
.list-check {
  margin: 0;
  padding: 0;
}

.list {
  list-style: none;
}

.list li,
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 10px 0;
  color: var(--muted);
}

.list li::before {
  content: '->';
  color: #0f8b6d;
  font-weight: 800;
}

.check {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: #0f8b6d;
}

.separator {
  margin: 14px 0;
  border-top: 1px solid var(--line);
}

.status-ok {
  color: var(--success);
  font-weight: 700;
}

.status-cancel {
  color: var(--danger);
  font-weight: 700;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover {
  color: #0f8b6d;
}

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

@media (max-width: 980px) {
  body {
    padding: 16px;
  }

  .main {
    padding: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .feature-grid .card {
    grid-column: span 12;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
