:root {
  --bg: #c9dcff;
  --bg-2: #b9f1e8;
  --ink: #0d1b2a;
  --ink-soft: #425d78;
  --glass: rgba(255, 255, 255, 0.34);
  --glass-strong: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.55);
  --shadow: rgba(21, 48, 82, 0.25);
  --accent: #0b7cff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, #ffffffa0 0 18%, transparent 45%),
    radial-gradient(circle at 82% 12%, #f0fff3a3 0 14%, transparent 42%),
    radial-gradient(circle at 78% 74%, #dff2ffa1 0 16%, transparent 40%),
    linear-gradient(140deg, var(--bg), var(--bg-2));
  overflow-x: hidden;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.65;
  mix-blend-mode: soft-light;
}

.blob.a {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 18vh;
  background: radial-gradient(circle at 30% 30%, #ffffff, #6fb6ff);
}

.blob.b {
  width: 360px;
  height: 360px;
  right: -100px;
  top: 8vh;
  background: radial-gradient(circle at 40% 35%, #ffffff, #5de3d1);
}

.blob.c {
  width: 520px;
  height: 520px;
  right: 20vw;
  bottom: -260px;
  background: radial-gradient(circle at 50% 42%, #ffffff, #9fb8ff);
}

.shell {
  width: min(1150px, calc(100% - 30px));
  margin: 18px auto 28px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
}

.glass {
  border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--glass-strong), var(--glass));
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 14px 32px var(--shadow);
}

.nav {
  border-radius: 46px;
  padding: 20px;
  position: sticky;
  top: 14px;
  align-self: start;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 26px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 6px 18px rgba(0, 46, 106, 0.25);
}

.name {
  font-family: "Sora", sans-serif;
  font-size: 1.36rem;
  margin: 10px 0 6px;
  letter-spacing: -0.02em;
}

.muted {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.nav a {
  display: block;
  text-decoration: none;
  margin-top: 10px;
  padding: 10px 12px;
  color: #0f2c4e;
  font-weight: 600;
  border-radius: 26px;
  transition: transform 180ms ease, background 180ms ease;
}

.nav a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.45);
}

.nav a.active {
  background: rgba(255, 255, 255, 0.58);
  color: #0a3f7c;
}

.content {
  border-radius: 54px;
  padding: 22px;
}

.hero {
  border-radius: 32px;
  padding: 24px;
  margin-bottom: 14px;
}

.hero h1 {
  font-family: "Sora", sans-serif;
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.15rem);
  letter-spacing: -0.025em;
}

.hero p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  max-width: 70ch;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.kpi {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.42);
}

.kpi strong {
  display: block;
  font-size: 1.4rem;
  font-family: "Sora", sans-serif;
}

.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.card {
  border-radius: 32px;
  padding: 16px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-family: "Sora", sans-serif;
}

.split {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.preview-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(174, 225, 255, 0.45);
  transition: transform 180ms ease, background 180ms ease;
  margin-top: 10px;
}

.preview-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.52);
}

.preview-link h3 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.preview-link p {
  margin: 0;
  color: var(--ink-soft);
}

.img-slot {
  min-height: 230px;
  border-radius: 16px;
  border: 1px dashed rgba(23, 55, 94, 0.35);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), rgba(214, 236, 255, 0.52));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  color: #2c4f78;
  font-weight: 600;
}

.filler {
  min-height: 150px;
  border-radius: 14px;
  border: 1px dashed rgba(23, 55, 94, 0.3);
  background: rgba(255, 255, 255, 0.26);
  padding: 14px;
  color: #2d507a;
}

.span-7 {
  grid-column: span 7;
}

.span-5 {
  grid-column: span 5;
}

.span-12 {
  grid-column: span 12;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline li {
  padding: 10px 0;
  border-top: 1px dashed rgba(23, 55, 94, 0.2);
}

.timeline li:first-child {
  border-top: none;
}

.when {
  font-size: 0.83rem;
  color: var(--ink-soft);
  font-weight: 600;
}

ul.clean {
  margin: 0;
  padding-left: 18px;
}

ul.clean li {
  margin-bottom: 8px;
}

.tag {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(174, 225, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 600;
}

.footer {
  margin-top: 14px;
  color: #24456d;
  font-size: 0.85rem;
  text-align: right;
}

a.inline {
  color: var(--accent);
  font-weight: 700;
}

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

  .nav {
    position: static;
  }

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

  .span-7,
  .span-5,
  .span-12 {
    grid-column: span 12;
  }

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