:root {
  --bg: #f5f7fb;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.88);
  --text: rgba(15, 23, 42, 0.92);
  --muted: rgba(15, 23, 42, 0.72);
  --muted2: rgba(15, 23, 42, 0.6);
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 20px 80px rgba(2, 6, 23, 0.14);
  --accent: #8b5cf6;
  --accent2: #22c55e;
  --ring: rgba(139, 92, 246, 0.2);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.55;
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(139, 92, 246, 0.16), transparent 55%),
    radial-gradient(900px 600px at 90% 35%, rgba(34, 197, 94, 0.14), transparent 55%),
    radial-gradient(900px 700px at 30% 90%, rgba(59, 130, 246, 0.12), transparent 55%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wrap {
  max-width: 1050px;
  padding: 48px 20px 72px;
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(34, 197, 94, 0.85));
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.14);
  flex: 0 0 auto;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}

.brand h1 {
  font-size: 17px;
  margin: 0;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
  font-size: 14px;
}

.pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(15, 23, 42, 0.18);
  text-decoration: none;
}

main {
  margin-top: 26px;
}

.hero {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(700px 320px at 15% 15%, rgba(139, 92, 246, 0.14), transparent 55%),
    radial-gradient(600px 280px at 85% 35%, rgba(34, 197, 94, 0.12), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 34px 26px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 13px;
  width: fit-content;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.hero h2 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.18);
  text-decoration: none;
}

.btn.primary {
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(99, 102, 241, 0.75));
  box-shadow: 0 18px 60px rgba(139, 92, 246, 0.25);
}

.btn.primary:hover {
  box-shadow: 0 20px 70px rgba(139, 92, 246, 0.32);
}

.panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  padding: 18px;
}

.quick {
  display: grid;
  gap: 12px;
  align-content: start;
}

.stat {
  padding: 14px 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
}

.stat .label {
  color: var(--muted2);
  font-size: 12px;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.stat .value {
  margin-top: 6px;
  font-weight: 700;
  font-size: 14px;
}

section {
  margin-top: 18px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
  box-shadow: 0 10px 40px rgba(2, 6, 23, 0.12);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.contact a.btn {
  width: 100%;
}

footer {
  margin-top: 22px;
  color: rgba(15, 23, 42, 0.55);
  font-size: 13px;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 860px) {
  header {
    border-radius: 18px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 14px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .avatar {
    width: 56px;
    height: 56px;
  }

  .brand h1 {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: center;
    line-height: 1.15;
  }

  nav {
    justify-content: center;
  }

  .pill {
    padding: 9px 10px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

