:root {
  --orange: #ff6900;
  --amber: #fcb900;
  --light-green-cyan: #7bdcb5;
  --vivid-green-cyan: #00d084;
  --pale-cyan-blue: #8ed1fc;
  --vivid-cyan-blue: #0693e3;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #ffffff;
  background:
    radial-gradient(900px 500px at 18% 12%, rgba(0,208,132,0.38), rgba(0,208,132,0) 58%),
    radial-gradient(900px 500px at 82% 22%, rgba(123,220,181,0.30), rgba(123,220,181,0) 62%),
    radial-gradient(900px 500px at 85% 28%, rgba(255,105,0,0.18), rgba(255,105,0,0) 65%),
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)),
    url("bg.jpg") center / cover no-repeat fixed;
}

.wrap {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  box-sizing: border-box;
}

.card {
  max-width: 720px;
  width: 100%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(142,209,252,0.26);
  border-radius: 16px;
  padding: 28px 22px;
  backdrop-filter: blur(6px);
  position: relative;
}

.section-title {
  margin: 18px 0 10px;
  font-size: 18px;
  letter-spacing: 0.2px;
  color: rgba(123,220,181,0.95);
}

ul {
  margin: 0 0 14px 18px;
  padding: 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 14px;
}

.tile {
  border: 1px solid rgba(123,220,181,0.22);
  background: rgba(0,208,132,0.07);
  border-radius: 14px;
  padding: 14px 14px;
}

.tile h3 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: 0.1px;
}

.tile p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.86);
}

.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.20);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.button.orange {
  background: linear-gradient(90deg, rgba(255,105,0,0.95), rgba(252,185,0,0.90));
  border-color: rgba(255,105,0,0.55);
  color: #101010;
}

.button.green {
  background: linear-gradient(90deg, rgba(0,208,132,0.95), rgba(123,220,181,0.92));
  border-color: rgba(0,208,132,0.55);
  color: #07130e;
}

.button:hover {
  filter: brightness(1.05);
}

.button:focus-visible {
  outline: 2px solid rgba(255,255,255,0.70);
  outline-offset: 3px;
}

h1 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vivid-green-cyan), var(--light-green-cyan));
  opacity: 0.95;
}

p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}

.pill {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,208,132,0.18);
  border: 1px solid rgba(0,208,132,0.40);
  margin-bottom: 14px;
}

.small {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.small a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  body { background-attachment: scroll; }
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.lang-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

.lang-toggle:focus {
  outline: 2px solid rgba(255,255,255,0.6);
}

.lang-toggle img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
