:root {
  --bronze: #BE8446;
  --bronze-dark: #8F5E2F;
  --brown: #5A2504;
  --brown-deep: #2C1306;
  --cream: #F6EFE7;
  --sand: #E7D3BE;
  --paper: #FFFDF9;
  --text: #241B16;
  --muted: #6F6259;
  --line: rgba(90, 37, 4, .16);
  --shadow: 0 24px 70px rgba(44, 19, 6, .16);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(190, 132, 70, .18), transparent 32rem),
    linear-gradient(180deg, #fffaf4 0%, #f5ecdf 100%);
}

body.menu-open { overflow: hidden; }
a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 244, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 64px;
  width: 64px;
  border-radius: 18px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}
.brand-text strong { color: var(--brown); }
.brand-text small {
  color: var(--bronze-dark);
  letter-spacing: .18em;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 650;
  color: var(--brown);
  opacity: .92;
}

.nav-cta {
  background: var(--brown);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.lang-switch a {
  opacity: .55;
}

.lang-switch a.active {
  opacity: 1;
  color: var(--brown);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--brown);
  margin: 6px auto;
}

.dev-banner {
  background: #2C1306;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.dev-banner .container {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  font-size: .95rem;
}

.dev-banner strong {
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}

.section { padding: 88px 0; }

.section-dark {
  background:
    radial-gradient(circle at 20% 20%, rgba(190, 132, 70, .34), transparent 28rem),
    linear-gradient(135deg, var(--brown-deep), var(--brown));
  color: white;
}

.hero { padding: 92px 0 104px; }
.hero-logo { width: 118px; height: 118px; border-radius: 26px; box-shadow: 0 12px 28px rgba(0,0,0,.42), 0 0 24px rgba(182,142,72,.15); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(330px, .97fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 900;
}

.eyebrow.dark { color: var(--bronze-dark); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: .94;
  letter-spacing: -.06em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--brown);
}

.section-dark h2, .section-cta h2 { color: white; }

.lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .82);
  max-width: 650px;
}

.hero-note {
  color: rgba(255,255,255,.76);
  line-height: 1.65;
  border-left: 3px solid var(--bronze);
  padding-left: 16px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  min-height: 48px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  box-shadow: 0 16px 35px rgba(190, 132, 70, .32);
}

.btn-secondary {
  color: var(--brown);
  background: var(--cream);
  border-color: var(--line);
}

.btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .12);
}

.dashboard-card {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 239, 231, .94));
  color: var(--text);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .55);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(190, 132, 70, .36), rgba(255, 255, 255, .02));
  z-index: -1;
}

.dashboard-top {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.dashboard-top span {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--bronze);
  opacity: .65;
}

.dashboard-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.dashboard-title p {
  color: var(--muted);
  margin-bottom: 5px;
  font-weight: 700;
}

.dashboard-title h2 { font-size: 2rem; }

.dashboard-title strong {
  display: grid;
  place-items: center;
  min-width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--brown);
  color: white;
  font-size: 1.35rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  font-weight: 750;
  color: var(--brown);
}

.progress-track {
  height: 13px;
  border-radius: 999px;
  background: #ead8c6;
  overflow: hidden;
}

.progress-fill {
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bronze), var(--brown));
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.stat-grid div {
  border: 1px solid var(--line);
  background: white;
  border-radius: 16px;
  padding: 14px 10px;
  text-align: center;
}

.stat-grid strong {
  display: block;
  color: var(--brown);
  font-size: 1.38rem;
}

.stat-grid span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 650;
}

.mini-list { display: grid; gap: 10px; }

.mini-list p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bronze);
}

.two-cols {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
}

.two-cols p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.section-muted {
  background: rgba(255, 255, 255, .45);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.section-title p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.features-grid, .roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card, .price-card, .split-card, .cta-card, .roadmap-card {
  background: rgba(255, 253, 249, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(90, 37, 4, .08);
}

.feature-card, .roadmap-card { padding: 28px; }

.feature-card .icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--cream);
  color: var(--bronze-dark);
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.feature-card h3, .roadmap-card h3 {
  color: var(--brown);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-card p, .price-card p, .check-list, .faq-list p, .roadmap-card li {
  color: var(--muted);
  line-height: 1.65;
}

.roadmap-card ul {
  margin: 18px 0 0;
  padding-left: 19px;
}

.status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 850;
}

.available { background: #efe5d9; color: var(--brown); }
.current { background: #f3d9b7; color: var(--brown); }
.planned { background: #fff4df; color: var(--bronze-dark); }

.split-card {
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bronze-dark);
  font-weight: 900;
}

.compact { padding: 52px 0; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

.proof-grid div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  background: rgba(255, 255, 255, .07);
}

.proof-grid strong {
  display: block;
  font-size: 2rem;
  color: white;
}

.proof-grid span { color: rgba(255, 255, 255, .72); }

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 34px;
}

.price-card.featured {
  border: 2px solid var(--bronze);
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  font-size: .78rem;
  font-weight: 850;
}

.price {
  color: var(--brown) !important;
  font-size: 2.8rem !important;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 8px;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.annual {
  margin-top: -4px;
  font-weight: 800;
  color: var(--bronze-dark) !important;
}

.price-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
  margin: 22px 0 28px;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 24px;
}

summary {
  cursor: pointer;
  color: var(--brown);
  font-weight: 850;
}

details p { margin: 14px 0 0; }

.section-cta {
  background:
    radial-gradient(circle at top, rgba(190, 132, 70, .28), transparent 24rem),
    linear-gradient(135deg, var(--brown-deep), var(--brown));
  color: white;
}

.cta-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 52px;
  text-align: center;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

.cta-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.site-footer {
  padding: 44px 0 26px;
  background: var(--brown-deep);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.site-footer p {
  color: rgba(255, 255, 255, .68);
  margin: 8px 0 0;
}

.footer-grid div:last-child {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-grid a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
}

.copyright {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .58);
  font-size: .92rem;
}

@media (max-width: 980px) {
  .main-nav { gap: 12px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: rgba(255, 250, 244, .98);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; }

  .hero-grid, .two-cols, .split-card, .pricing-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding: 62px 0 76px; }
  .features-grid, .roadmap-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .dev-banner .container { flex-direction: column; align-items: flex-start; gap: 4px; }
  .section { padding: 64px 0; }
  .features-grid, .roadmap-grid, .stat-grid { grid-template-columns: 1fr; }
  .dashboard-title { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .split-card, .cta-card, .price-card, .feature-card, .roadmap-card { padding: 24px; }
}
