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

:root {
  --bg: #071A12;
  --surface: #10251B;
  --primary: #2E7D52;
  --highlight: #81C784;
  --text: #F4F8F4;
  --text-muted: #C9D8CC;
  --border: rgba(129, 199, 132, 0.22);
  --border-strong: rgba(129, 199, 132, 0.4);
  --shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 22%, rgba(46, 125, 82, 0.42), transparent 34%),
    radial-gradient(circle at 84% 7%, rgba(129, 199, 132, 0.14), transparent 26%),
    radial-gradient(circle at 14% 88%, rgba(129, 199, 132, 0.08), transparent 24%),
    linear-gradient(164deg, #020d08 0%, var(--bg) 54%, #020c08 100%);
  min-height: 100vh;
  line-height: 1.65;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

body::before {
  inset: 0;
  background-image: radial-gradient(rgba(129, 199, 132, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 68%);
}

body::after {
  width: 460px;
  height: 460px;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 199, 132, 0.24), transparent 68%);
}

a {
  color: var(--highlight);
  text-decoration: none;
  transition: color 170ms ease;
}

a:hover {
  text-decoration: underline;
}

.site-wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(3, 16, 11, 0.9), rgba(3, 16, 11, 0.68));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(129, 199, 132, 0.14);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.theme-toggle {
  margin-left: auto;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(129, 199, 132, 0.1);
  color: var(--text);
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  background: rgba(129, 199, 132, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 1.02rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 7px 12px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(129, 199, 132, 0.11);
  text-decoration: none;
}

main {
  padding: 54px 0 70px;
}

.card {
  background: linear-gradient(170deg, rgba(16, 37, 27, 0.95), rgba(8, 26, 18, 0.92));
  border: 1px solid rgba(129, 199, 132, 0.26);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 34px);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
  animation: rise-in 520ms ease both;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(129, 199, 132, 0.08), transparent 28%, transparent 72%, rgba(129, 199, 132, 0.06));
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

.hero h1 {
  margin: 0 0 8px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.hero h2 {
  margin: 0 0 14px;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--highlight);
  font-weight: 500;
}

.hero p {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-media img {
  width: min(340px, 88%);
  border-radius: 28px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.52);
  transform: rotate(-1.8deg);
}

ul.feature-list {
  margin: 0;
  padding-left: 20px;
}

ul.feature-list li {
  margin: 8px 0;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 11px 18px;
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: linear-gradient(160deg, rgba(46, 125, 82, 0.5), rgba(46, 125, 82, 0.22));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(160deg, rgba(46, 125, 82, 0.72), rgba(129, 199, 132, 0.28));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.48);
  text-decoration: none;
}

.playstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 16px;
  border-radius: 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
}

.playstore-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  color: #fff;
}

.playstore-badge svg {
  flex-shrink: 0;
}

.playstore-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.playstore-badge-text span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
  text-transform: uppercase;
}

.playstore-badge-text span:last-child {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.standout-section {
  margin-top: 18px;
  padding: 18px 0 4px;
  border-top: 1px solid var(--border);
}

.standout-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.standout-list li {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(129, 199, 132, 0.08);
  color: var(--text);
  font-size: 0.97rem;
}

.section {
  margin-top: 22px;
}

.feature-grid {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(129, 199, 132, 0.08);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plan-row {
  margin: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plan-pill {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(129, 199, 132, 0.16);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.table-wrap {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow-x: auto;
  background: rgba(129, 199, 132, 0.05);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table th {
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  background: rgba(129, 199, 132, 0.14);
}

.compare-table tbody tr:hover {
  background: rgba(129, 199, 132, 0.08);
}

.compare-table td:nth-child(2) {
  color: var(--text-muted);
}

.compare-table td:nth-child(3) {
  color: var(--highlight);
}

.stat-grid {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat-card {
  position: relative;
  z-index: 1;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(170deg, rgba(129, 199, 132, 0.13), rgba(129, 199, 132, 0.06));
}

.stat-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.stat-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-jump {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-jump a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--text);
  background: rgba(129, 199, 132, 0.1);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-jump a:hover {
  text-decoration: none;
  border-color: var(--border-strong);
  background: rgba(129, 199, 132, 0.2);
}

h1,
h2,
h3 {
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

h1 {
  margin-top: 0;
}

.meta {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.footer {
  border-top: 1px solid rgba(129, 199, 132, 0.2);
  padding: 28px 0 34px;
  color: var(--text-muted);
}

.footer .foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.foot-links a {
  border: 1px solid rgba(129, 199, 132, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
}

.foot-links a:hover {
  text-decoration: none;
  border-color: var(--border-strong);
  background: rgba(129, 199, 132, 0.1);
}

.footer small {
  display: block;
}

.lang-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 10px;
}

.lang-grid span {
  border: 1px solid var(--border);
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(129, 199, 132, 0.1);
}

.card:nth-of-type(2) {
  animation-delay: 90ms;
}

.card:nth-of-type(3) {
  animation-delay: 160ms;
}

.card:nth-of-type(4) {
  animation-delay: 230ms;
}

body.theme-luxury {
  --bg: #101414;
  --surface: #1d2121;
  --primary: #b8933f;
  --highlight: #f2d28b;
  --text: #f9f5eb;
  --text-muted: #d8ceb9;
  --border: rgba(242, 210, 139, 0.24);
  --border-strong: rgba(242, 210, 139, 0.48);
  --shadow: 0 16px 46px rgba(0, 0, 0, 0.56);
  background:
    radial-gradient(circle at 72% 14%, rgba(242, 210, 139, 0.18), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(184, 147, 63, 0.12), transparent 30%),
    linear-gradient(164deg, #070909 0%, #121615 58%, #080a0a 100%);
}

body.theme-luxury::before {
  background-image: linear-gradient(rgba(242, 210, 139, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 210, 139, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

body.theme-luxury::after {
  background: radial-gradient(circle, rgba(242, 210, 139, 0.28), transparent 66%);
}

body.theme-luxury header {
  background: linear-gradient(to bottom, rgba(9, 10, 10, 0.92), rgba(9, 10, 10, 0.72));
  border-bottom-color: rgba(242, 210, 139, 0.16);
}

body.theme-luxury .card {
  background: linear-gradient(170deg, rgba(28, 31, 30, 0.95), rgba(14, 16, 16, 0.94));
  border-color: rgba(242, 210, 139, 0.28);
}

body.theme-luxury .card::after {
  background: linear-gradient(115deg, rgba(242, 210, 139, 0.08), transparent 30%, transparent 72%, rgba(184, 147, 63, 0.08));
}

body.theme-luxury .btn {
  background: linear-gradient(155deg, rgba(184, 147, 63, 0.58), rgba(184, 147, 63, 0.24));
}

body.theme-luxury .btn:hover {
  background: linear-gradient(155deg, rgba(184, 147, 63, 0.75), rgba(242, 210, 139, 0.3));
}

body.theme-luxury .theme-toggle {
  background: rgba(242, 210, 139, 0.14);
}

body.theme-luxury .theme-toggle:hover {
  background: rgba(242, 210, 139, 0.24);
}

body.theme-luxury .hero-media img {
  border-color: rgba(242, 210, 139, 0.6);
  filter: saturate(0.9) contrast(1.03);
}

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

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

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

  .hero-media img {
    transform: none;
  }

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

  .theme-toggle {
    margin-left: 0;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 0.82rem;
    padding: 6px 10px;
  }
}
