/*
  Skintellectualism Coming Soon
  Style direction: Schouren-inspired minimal luxury (light, precise, expensive).
*/

:root {
  --bg: #fafafa;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --soft: #f3f4f6;
  --shadow: 0 1px 1px rgba(0,0,0,0.03), 0 10px 30px rgba(17,24,39,0.05);
  --radius: 16px;
  --radius-sm: 12px;
  --content-padding-x: 24px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 450px at 15% 10%, rgba(17,24,39,0.06), transparent 60%),
    radial-gradient(700px 380px at 85% 15%, rgba(59,130,246,0.10), transparent 60%),
    radial-gradient(900px 520px at 65% 85%, rgba(17,24,39,0.05), transparent 60%);
  opacity: 0.9;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--content-padding-x) 10px;
  max-width: 1120px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  transition: opacity 0.3s ease;
}

.topbar.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 6px rgba(17,24,39,0.06);
  vertical-align: middle;
}

.brand-name {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Micro island: trigger + dropdown, no caret, centered */
.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 14px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
}

.lang {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  width: max-content;
  min-width: 0;
  display: none;
  flex-direction: column;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  z-index: 20;
}

.lang-switcher.is-open .lang {
  display: flex;
}

.lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-link:hover {
  color: var(--ink);
  background: var(--soft);
}

.lang-link.is-active {
  color: var(--ink);
  background: var(--soft);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px var(--content-padding-x) 56px;
  padding-top: 70px; /* space for fixed topbar when visible */
  box-sizing: border-box;
  width: 100%;
}

.hero {
  padding: 26px 0 28px;
  animation: fadeIn 700ms ease both;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
}

.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 0 6px rgba(59,130,246,0.12);
}

.kicker-text {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 18px 0 0;
  font-size: 36px;
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 14px 0 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
  will-change: transform;
}

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

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(17,24,39,0.18);
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(17,24,39,0.22);
}

.btn-secondary {
  background: rgba(255,255,255,0.75);
  border-color: var(--border);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(17,24,39,0.18);
}

.bento {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 14px;
  margin-top: 12px;
}

.card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  animation: fadeIn 700ms ease both;
}

.card-wide { grid-column: 1 / -1; }

.card-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.card-title {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.card-text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

.card-pills {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(249,250,251,0.8);
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
}

.card-metric {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 22px;
}

.metric-score {
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.metric-suffix {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
}

.metric-label {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.metric-note {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 300;
  max-width: 320px;
}

.list {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  font-size: 14px;
}

.footer {
  margin-top: 22px;
  padding: 18px 2px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer .brand {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--muted);
}

.footer .brand:hover {
  color: var(--ink);
}

.footer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-muted { color: var(--muted); }
.footer-sep { color: rgba(107,114,128,0.6); }

.footer-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(17,24,39,0.25);
}

.footer-link:hover {
  border-bottom-color: rgba(17,24,39,0.65);
}

.footer-small {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(107,114,128,0.85);
}

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

@media (max-width: 768px) {
  .lang-trigger {
    min-width: 44px;
    height: 36px;
    padding: 0 14px;
  }
  .lang-link {
    padding: 10px 14px;
    height: 36px;
  }
}

@media (max-width: 560px) {
  :root { --content-padding-x: 25px; }
  .hero {
    text-align: center;
  }
  .card {
    text-align: center;
  }
  .card-pills {
    justify-content: center;
  }
  .list {
    padding-left: 0;
    list-style-position: inside;
    text-align: center;
  }
  .hero-title {
    font-size: 28px;
    margin-top: 50px;
  }
  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .topbar { padding: 16px var(--content-padding-x) 8px; }
  .container { padding: 26px var(--content-padding-x) 46px; }
}

