@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Work+Sans:wght@300;400;500;600&display=swap");

:root {
  --bg: #0c1116;
  --bg-soft: #111926;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f4f7fb;
  --muted: rgba(244, 247, 251, 0.7);
  --accent: #ffb86b;
  --accent-2: #7ee0d3;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(126, 224, 211, 0.25), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(255, 184, 107, 0.22), transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(117, 140, 255, 0.18), transparent 55%),
    linear-gradient(160deg, #0b1219 0%, #0a0f15 40%, #111926 100%);
  z-index: -1;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  text-align: left;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.lang-buttons {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  color: var(--text);
  border: none;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.lang-btn.is-active {
  background: rgba(126, 224, 211, 0.25);
  color: var(--accent-2);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-card {
  border-radius: 18px;
  padding: 1.5rem;
  background: rgba(15, 22, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #f97d6a);
  color: #0b0f14;
  box-shadow: 0 12px 30px rgba(255, 184, 107, 0.35);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

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

.pill-row {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(126, 224, 211, 0.16);
  color: var(--accent-2);
  font-size: 0.85rem;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.mt-lg {
  margin-top: 2rem;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(8, 12, 18, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.4rem;
}

.card h3 {
  margin-bottom: 0.6rem;
}

.timeline {
  display: grid;
  gap: 1.4rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: var(--row-height, 84px);
  position: relative;
  padding-left: 1rem;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  bottom: 0.9rem;
  width: 3px;
  background: rgba(126, 224, 211, 0.35);
  border-radius: 999px;
}

.time {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer {
  text-align: left;
}

.footer .cta-row {
  justify-content: flex-start;
}

.muted {
  color: var(--muted);
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(15, 22, 30, 0.95);
  color: var(--text);
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 3rem 1.2rem 4rem;
  }

  .section {
    padding: 1.6rem;
  }

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

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .toast {
    left: 1.2rem;
    right: 1.2rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
