:root {
  --bg: #0e172a;
  --panel: rgba(255, 255, 255, 0.06);
  --surface: #0f1c32;
  --text: #e8ecf3;
  --muted: #9fb3ce;
  --accent: #3ad7bf;
  --accent-2: #f4a261;
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Space Grotesk", sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(58, 215, 191, 0.12), transparent 25%),
              radial-gradient(circle at 80% 0%, rgba(244, 162, 97, 0.14), transparent 20%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: linear-gradient(90deg, rgba(15, 28, 50, 0.95), rgba(15, 28, 50, 0.9));
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0f1c32;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(58, 215, 191, 0.35);
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand__tagline {
  font-size: 13px;
  color: var(--muted);
}

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

.nav a {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--muted);
  transition: all 0.2s ease;
  font-weight: 600;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(58, 215, 191, 0.12);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #2eb09d);
  color: #08202a;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(58, 215, 191, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.pill:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 18px 32px rgba(58, 215, 191, 0.4);
}

.pill--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
  box-shadow: none;
}

.pill--ghost:hover {
  border-color: rgba(58, 215, 191, 0.5);
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 38px;
  align-items: center;
  padding: 96px 32px 64px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 60px -140px -120px auto;
  width: 360px;
  background: radial-gradient(circle, rgba(58, 215, 191, 0.18), transparent 60%);
  filter: blur(8px);
  pointer-events: none;
}

.hero__content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 12px;
}

.lede {
  font-size: 18px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 14px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

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

.chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14px;
}

.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid;
  gap: 32px;
}

.page-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: center;
  background: radial-gradient(circle at 12% 18%, rgba(58, 215, 191, 0.16), transparent 40%),
              radial-gradient(circle at 82% 0%, rgba(244, 162, 97, 0.1), transparent 30%),
              var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 64px 24px;
  box-shadow: var(--shadow);
}

.page-hero__panel {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(58, 215, 191, 0.14);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.policy-meter {
  margin-top: 14px;
}

.policy-meter__label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.policy-meter__bars {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.policy-meter__bars span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
}

.hero__visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero__frame {
  width: min(520px, 90vw);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.hero__frame img {
  height: 100%;
  object-fit: cover;
}

.hero__frame--floating {
  width: min(280px, 70vw);
  position: absolute;
  bottom: -28px;
  right: 10%;
  transform: rotate(4deg);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.section {
  padding: 48px 32px;
}

.section__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.pillboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.pillboard__item {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.stat {
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--stroke);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stat__label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}

.stat__value {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}

.stat__note {
  font-size: 14px;
}

.listings {
  background: radial-gradient(circle at 5% 10%, rgba(58, 215, 191, 0.14), transparent 24%),
              radial-gradient(circle at 90% 30%, rgba(244, 162, 97, 0.1), transparent 22%),
              var(--surface);
  border-block: 1px solid var(--stroke);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.card:hover .card__image img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(58, 215, 191, 0.9);
  color: #0c2b34;
  font-weight: 700;
  font-size: 13px;
}

.badge--accent {
  background: rgba(244, 162, 97, 0.9);
  color: #2d1404;
}

.card__body {
  padding: 18px;
  display: grid;
  gap: 12px;
  flex: 1;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.meta span {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid var(--stroke);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
}

.cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: center;
}

.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.policy {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.policy--light {
  background: rgba(255, 255, 255, 0.06);
}

.policy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.policy__grid--narrow {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.policy__card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(8px);
  display: grid;
  gap: 10px;
}

.policy__card--bordered {
  background: rgba(255, 255, 255, 0.03);
}

.policy__card--accent {
  background: linear-gradient(135deg, rgba(58, 215, 191, 0.14), rgba(15, 28, 50, 0.94));
  border: 1px solid rgba(58, 215, 191, 0.6);
  box-shadow: 0 12px 30px rgba(58, 215, 191, 0.18);
}

.policy__label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--accent);
}

.list {
  padding-left: 16px;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.list li {
  position: relative;
  list-style: none;
  padding-left: 14px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(58, 215, 191, 0.14);
}

.footer {
  padding: 28px 32px 32px;
  border-top: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

@media (max-width: 720px) {
  .topbar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav {
    width: 100%;
    justify-content: center;
  }

  .hero__frame--floating {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .pillboard,
  .stats,
  .cards,
  .cta,
  .page-hero,
  .policy__grid {
    grid-template-columns: 1fr;
  }

  .page-main {
    padding-inline: 18px;
  }
}
