*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --accent-primary: #5b6dff;
  --accent-secondary: #6aa9ff;
  --accent-soft: #8fa5ff;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #2e3b6a40 0%, transparent 46%), #05060d;
  color: #f0f3ff;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.18em;
  color: inherit;
  flex-shrink: 0;
}

.icon path,
.icon line,
.icon rect,
.icon polyline,
.icon polygon {
  vector-effect: non-scaling-stroke;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.6rem, 4vw, 3.2rem) 4.5rem;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.brand-mark {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  position: relative;
  box-shadow: 0 0 28px rgba(89, 131, 255, 0.45);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  background: #0b0d19;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent-soft);
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: #f6f7ff;
}

.hero .intro {
  display: block;
  margin-bottom: 0.35rem;
}

.hero .tagline {
  display: block;
  color: #f6f7ff;
}

.bio {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #c2c8f3;
}

.bio p {
  margin: 0;
  max-width: 640px;
}

.highlight {
  color: var(--accent-secondary);
  text-decoration: none;
  position: relative;
  font-weight: 500;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-secondary), transparent 70%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.highlight:hover::after {
  opacity: 1;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-primary);
}

.panel-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(91, 109, 255, 0.65), transparent 85%);
}

.panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: #d4d7ff;
}

.panel-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1rem;
  line-height: 1.65;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: 0 0 6px rgba(128, 157, 255, 0.5);
}

.panel-list li span {
  color: var(--accent-soft);
  font-weight: 600;
}

.panel-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

@media (min-width: 780px) {
  .panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(26, 31, 58, 0.95), rgba(11, 14, 31, 0.95));
  border: 1px solid rgba(91, 109, 255, 0.45);
  color: var(--accent-primary);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 169, 255, 0.85);
  color: var(--accent-secondary);
  box-shadow: 0 12px 24px rgba(106, 169, 255, 0.4);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #9299c5;
  line-height: 1.6;
}
