@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --c-teal: #2fa8a8;
  --c-blue: #2b5fa6;
  --c-indigo: #7c5bc9;
  --c-gold: #e7c96a;
  --c-gold-deep: #c2a44f;
  --c-ink: #26374d;
  --c-text: #3a3a3a;
  --c-paper: #ffffff;
  --c-soft: #f3f7fc;
  --c-soft-2: #f5f7fa;
  --hero-gradient: linear-gradient(118deg, #2fa8a8 0%, #2b5fa6 44%, #7c5bc9 100%);
  --panel-gradient: linear-gradient(140deg, rgba(47, 168, 168, 0.08), rgba(43, 95, 166, 0.08), rgba(124, 91, 201, 0.08));
  --gold-sheen: linear-gradient(120deg, rgba(231, 201, 106, 0.18), rgba(231, 201, 106, 0.02) 48%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--c-text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 168, 168, 0.18), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(124, 91, 201, 0.15), transparent 27%),
    radial-gradient(circle at 84% 84%, rgba(43, 95, 166, 0.12), transparent 28%),
    radial-gradient(circle at 38% 92%, rgba(231, 201, 106, 0.11), transparent 26%),
    #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
  margin: 0;
  color: var(--c-ink);
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  line-height: 1.1;
}

h2 {
  line-height: 1.2;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(45, 96, 184, 0.35);
  outline-offset: 2px;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
}

.page-shell::before {
  top: 90px;
  left: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at center, rgba(47, 168, 168, 0.18), transparent 68%);
}

.page-shell::after {
  right: -120px;
  top: 420px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(124, 91, 201, 0.14), transparent 70%);
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.72));
  border-bottom: 1px solid rgba(121, 146, 177, 0.2);
  backdrop-filter: blur(14px);
}

.nav-link {
  position: relative;
  color: var(--c-text);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--c-blue);
}

.nav-link.active {
  color: var(--c-blue);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 168, 168, 1), rgba(231, 201, 106, 0.95));
}

.hero-gradient {
  background: var(--hero-gradient);
}

.gradient-text {
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-panel {
  border: 1px solid rgba(136, 162, 196, 0.2);
  background: var(--gold-sheen), var(--panel-gradient), #ffffff;
  box-shadow: 0 16px 36px rgba(25, 45, 79, 0.08);
}

.soft-card {
  border: 1px solid rgba(136, 162, 196, 0.2);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.9)),
    #ffffff;
  box-shadow: 0 10px 26px rgba(20, 36, 64, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.soft-card:hover {
  transform: translateY(-4px);
  border-color: rgba(177, 151, 90, 0.46);
  box-shadow: 0 18px 40px rgba(20, 36, 64, 0.13);
}

.image-frame {
  border: 1px solid rgba(160, 180, 206, 0.34);
  box-shadow: 0 18px 34px rgba(20, 36, 64, 0.14);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.46rem 0.95rem;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
}

.badge-accent {
  background: linear-gradient(95deg, rgba(47, 168, 168, 0.16), rgba(231, 201, 106, 0.2));
  color: var(--c-teal);
}

.badge-blue {
  background: linear-gradient(95deg, rgba(43, 95, 166, 0.12), rgba(231, 201, 106, 0.16));
  color: var(--c-blue);
}

.btn-primary,
.btn-outline,
.btn-dark,
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(231, 201, 106, 0.22), rgba(231, 201, 106, 0) 40%),
    var(--hero-gradient);
  box-shadow: 0 12px 24px rgba(43, 95, 166, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(43, 95, 166, 0.34);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--c-blue);
  border: 1px solid rgba(164, 172, 148, 0.45);
}

.btn-outline:hover {
  background: #ffffff;
  border-color: rgba(180, 147, 73, 0.66);
}

.hero-gradient .btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--c-blue);
}

.btn-dark {
  background: linear-gradient(130deg, #2b5fa6, #274f86);
  color: #fff;
}

.btn-dark:hover {
  background: #244e88;
}

.btn-nav {
  background: linear-gradient(120deg, #2b5fa6, #3b70b7);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.btn-nav:hover {
  background: #244e88;
}

.input {
  width: 100%;
  border: 1px solid #cad7e7;
  border-radius: 0.85rem;
  padding: 0.78rem 0.95rem;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  color: #27364b;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.input::placeholder {
  color: #7b8aa0;
}

.input:focus {
  border-color: rgba(43, 95, 166, 0.58);
  box-shadow: 0 0 0 4px rgba(43, 95, 166, 0.14);
}

.kpi {
  border-radius: 1rem;
  border: 1px solid rgba(151, 170, 194, 0.28);
  background:
    linear-gradient(120deg, rgba(231, 201, 106, 0.11), rgba(255, 255, 255, 0) 45%),
    rgba(255, 255, 255, 0.9);
  padding: 1rem;
}

.footer {
  background:
    linear-gradient(125deg, #2b5fa6 0%, #295a9d 45%, #7c5bc9 100%),
    linear-gradient(145deg, rgba(231, 201, 106, 0.2), rgba(231, 201, 106, 0));
}

.footer a {
  color: #d8e7fb;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer a:hover {
  opacity: 0.8;
}
