@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
:root {
  --bg: #F7FAFB;
  --ink: #0B1F24;
  --muted: #5B7278;
  --accent: #0B7A8F;
  --accent-2: #159CAE;
  --on-accent: #FFFFFF;
  --fh: 'Manrope', system-ui, sans-serif;
  --fb: 'Manrope', system-ui, sans-serif;
}
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  display: flex; flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; text-decoration: none; }

.bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.aurora { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.55; }
.aurora--1 { width: 600px; height: 600px; background: var(--accent); top: -150px; left: -100px; animation: drift 22s ease-in-out infinite; }
.aurora--2 { width: 500px; height: 500px; background: var(--accent-2); bottom: -150px; right: -100px; animation: drift 28s ease-in-out -8s infinite; }
.aurora--3 { width: 400px; height: 400px; background: color-mix(in srgb, var(--accent) 60%, var(--accent-2)); top: 40%; left: 45%; opacity: 0.3; animation: drift 36s ease-in-out -18s infinite; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.94); }
}

.top {
  position: relative; z-index: 2;
  padding: 22px clamp(20px, 4vw, 40px);
  display: flex; justify-content: space-between; align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--fh); font-weight: 700; color: var(--ink); font-size: 1.04rem; }
.brand__mark { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 45%, transparent); }
.top nav { display: flex; gap: 22px; font-size: 0.9rem; color: var(--muted); }
.top nav a:hover { color: var(--ink); }

.stage {
  flex: 1;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  padding: clamp(20px, 3vw, 40px) clamp(20px, 4vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.pane {
  background: color-mix(in srgb, var(--bg) 45%, rgba(255,255,255,0.1));
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow:
    0 40px 80px -30px color-mix(in srgb, var(--accent) 25%, transparent),
    inset 0 1px 0 color-mix(in srgb, white 15%, transparent);
  position: relative;
  overflow: hidden;
  animation: rise .9s ease backwards;
}
.pane::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, white 10%, transparent) 0%, transparent 50%);
  pointer-events: none;
}

.pane--hero { animation-delay: .1s; display: flex; flex-direction: column; justify-content: center; gap: 18px; min-height: 420px; }
.pane--hero .pane__chip {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}
.pane--hero h1 {
  font-family: var(--fh); font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.pane--hero p { color: var(--muted); font-size: 1.08rem; margin: 0; max-width: 42ch; }

.cta {
  align-self: flex-start;
  padding: 14px 26px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--fh); font-weight: 600;
  font-size: 1rem;
  margin-top: 6px;
  transition: transform .18s, background .18s;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--ink) 35%, transparent);
}
.cta:hover { transform: translateY(-2px); background: var(--accent); color: var(--on-accent); }

.side-panes { display: grid; grid-template-rows: repeat(3, 1fr); gap: 22px; }
.pane--stat { padding: 22px; display: flex; flex-direction: column; justify-content: center; gap: 6px; min-height: 120px; animation-delay: calc(.2s + .1s * var(--i, 0)); }
.pane--stat:nth-child(1) { --i: 1; }
.pane--stat:nth-child(2) { --i: 2; }
.pane--stat:nth-child(3) { --i: 3; }

.pane--accent { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--on-accent); }
.pane--accent::before { background: linear-gradient(135deg, color-mix(in srgb, white 25%, transparent) 0%, transparent 50%); }

.stat__k { font-family: var(--fh); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.02em; }
.stat__v { font-size: 0.86rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.pane--accent .stat__v { color: color-mix(in srgb, var(--on-accent) 85%, transparent); }

.bot { position: relative; z-index: 2; padding: 18px clamp(20px, 4vw, 40px); display: flex; justify-content: space-between; color: var(--muted); font-size: 0.86rem; }
.bot a:hover { color: var(--ink); }

@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

@media (max-width: 860px) {
  .stage { grid-template-columns: 1fr; }
  .side-panes { grid-template-rows: auto; grid-template-columns: repeat(3, 1fr); }
  .pane--stat { min-height: 100px; }
}
@media (max-width: 560px) { .side-panes { grid-template-columns: 1fr; } }

::selection { background: color-mix(in srgb, var(--accent) 40%, transparent); color: var(--ink); }
