:root {
  --bg: #0c0d12;
  --bg-elevated: #13151c;
  --bg-card: #171920;
  --border: rgba(255, 255, 255, 0.07);
  --text: #e6e8ed;
  --text-muted: #949aa6;
  --accent: #d4a054;
  --accent-dim: rgba(212, 160, 84, 0.12);
  --accent-soft: #8eb4c9;
  --accent-soft-dim: rgba(142, 180, 201, 0.1);
  --font-display: "Syne", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 12px;
  --max-width: 1040px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

.bg-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}

.bg-glow--left {
  top: -100px;
  left: -140px;
  background: var(--accent);
}

.bg-glow--right {
  bottom: 20%;
  right: -160px;
  background: var(--accent-soft);
  opacity: 0.14;
}

.header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.75rem 1.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 7px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

main {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 4.5rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.1rem;
}

.eyebrow--soft {
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.15rem;
}

.highlight {
  color: var(--accent);
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 32rem;
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: #e0b068;
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.4rem;
}

.panel-row {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.stat {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
}

.stat-wide {
  flex: 1;
}

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.stat-value {
  font-size: 1.05rem;
  font-weight: 700;
}

.stat-value--accent {
  color: var(--accent);
}

.code-block {
  margin-top: 0.85rem;
  padding: 1rem 1.05rem;
  background: #090a0f;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.75;
  display: flex;
  flex-direction: column;
}

.code-kw {
  color: var(--accent-soft);
}

.section {
  padding: 3.5rem 0;
}

.section-head {
  max-width: 34rem;
  margin-bottom: 2rem;
}

.section-head h2,
.canton-copy h2,
.contact-box h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.section-head p {
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.65;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
}

.section--canton {
  border-top: 1px solid var(--border);
}

.canton-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.canton-copy p {
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.canton-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.canton-points li {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.canton-points strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.canton-points span {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
}

.section--contact {
  padding-bottom: 4.5rem;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 2rem 2.25rem;
}

.contact-box p {
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.35rem;
  max-width: 26rem;
}

.contact-email {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(212, 160, 84, 0.25);
  border-radius: 8px;
  transition: background 0.2s;
}

.contact-email:hover {
  background: var(--accent-dim);
}

.footer {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 860px) {
  .hero,
  .canton-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .contact-email {
    white-space: normal;
    word-break: break-all;
  }
}
