:root {
  --bg: #07160f;
  --ink: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --line: rgba(255, 255, 255, 0.12);

  --mint: #34d399;
  --sky: #22d3ee;
  --amber: #fbbf24;

  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.085);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);

  --r: 18px;
  --r2: 14px;
  --wrap: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 12% 16%, rgba(52, 211, 153, 0.34), transparent 60%),
    radial-gradient(920px 560px at 82% 18%, rgba(34, 211, 238, 0.22), transparent 58%),
    radial-gradient(980px 540px at 45% 96%, rgba(251, 191, 36, 0.10), transparent 60%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 22, 15, 0.55);
  backdrop-filter: blur(12px);
  transform: translateY(-150%);
  transition: transform 160ms ease;
  z-index: 999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid rgba(34, 211, 238, 0.55);
  outline-offset: 2px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 22, 15, 0.58);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: conic-gradient(from 220deg, var(--mint), var(--sky), var(--amber), var(--mint));
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.12);
}

.logo-text {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.menu {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-link {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
}

.menu-link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.menu-link.is-active,
.menu-link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.95);
}

.hero {
  padding: 54px 0 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(34px, 4.4vw, 56px);
}

h2 {
  font-size: clamp(22px, 2.6vw, 32px);
}

h3 {
  font-size: 18px;
}

.lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 62ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease,
    box-shadow 120ms ease, color 120ms ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: rgba(7, 22, 15, 0.95);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.95), rgba(34, 211, 238, 0.85));
  box-shadow: 0 14px 40px rgba(52, 211, 153, 0.20);
}

.btn-primary:hover {
  box-shadow: 0 18px 52px rgba(52, 211, 153, 0.28);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
}

.btn-soft:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 680px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  padding: 12px 14px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.stat-num {
  font-weight: 900;
  font-size: 22px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.70);
  font-size: 13px;
}

.hero-panel {
  display: flex;
  align-items: stretch;
}

.glass {
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 18px;
}

.glass-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.tag {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.16);
  border: 1px solid rgba(251, 191, 36, 0.22);
  font-weight: 800;
  font-size: 12px;
}

.meter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.meter-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
}

.meter-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.glass-title {
  margin: 0 0 10px;
  font-size: 20px;
}

.bullets {
  margin: 0 0 16px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.glass-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 14px;
}

.section {
  padding: 32px 0 44px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.muted {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 920px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.card p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.76);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  border-radius: 14px;
  background: rgba(34, 211, 238, 0.14);
  border: 1px solid rgba(34, 211, 238, 0.20);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.link {
  display: inline-flex;
  font-weight: 800;
  color: rgba(34, 211, 238, 0.95);
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
}

@media (max-width: 920px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.contact-box {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.row:last-child {
  border-bottom: 0;
}

.k {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.v a {
  color: rgba(255, 255, 255, 0.92);
}

.footer {
  padding: 22px 0 34px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 18px;
}

.f-brand {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.f-note {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.f-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.f-links a {
  color: rgba(255, 255, 255, 0.76);
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 0 16px;
  z-index: 90;
  background: rgba(7, 22, 15, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-title {
  font-weight: 900;
  margin-bottom: 2px;
}

.cookie-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 78ch;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Legal + forms */
.page {
  padding: 34px 0 46px;
}

.narrow {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.sheet {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sheet-head {
  padding: 22px 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.content {
  padding: 16px 20px 20px;
}

.content h2 {
  font-size: 18px;
  margin: 18px 0 8px;
}

.content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.content ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.form {
  padding: 18px 20px 20px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.84);
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 22, 15, 0.55);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.50);
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.16);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
}

.check input {
  margin-top: 3px;
}

.hint {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.err {
  color: rgba(251, 113, 133, 0.92);
  font-size: 13px;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.summary {
  padding: 16px 20px 6px;
  display: grid;
  gap: 8px;
}

.sum-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.sum-row:last-child {
  border-bottom: 0;
}

.sum-k {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.sum-v {
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}
