:root {
  --bg: #FFFCF6;
  --ink: #1F1B2E;
  --muted: #6B5F7D;
  --accent: #FF5A44;
  --accent-ink: #FFFFFF;
  --card: #FFFFFF;
  --card-border: #EFE6F5;

  --c-coral: #FF5A44;
  --c-pink: #EC4899;
  --c-purple: #8B5CF6;
  --c-blue: #3B9BFF;
  --c-teal: #14B8A6;
  --c-yellow: #F6B400;

  --chip-yellow: #FFD666;
  --chip-blue: #8ECAE6;
  --chip-pink: #FFB4C6;
  --chip-mint: #BFE8B8;
  --font-display: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
nav.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 0;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.75;
}

.nav-links a:hover { opacity: 1; }

.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0 40px;
}

.eyebrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 8px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

h1 .hl {
  background: linear-gradient(100deg, var(--c-coral), var(--c-pink) 45%, var(--c-purple) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 0 0 #C63E2C;
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-primary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.follow {
  font-size: 14px;
  color: var(--muted);
}

.follow-links {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.follow-links a {
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid var(--chip-yellow);
}

.follow-links a:nth-child(1) { border-color: var(--c-blue); }
.follow-links a:nth-child(2) { border-color: var(--c-pink); }
.follow-links a:nth-child(3) { border-color: var(--c-teal); }
.follow-links a:nth-child(4) { border-color: var(--c-yellow); }

.follow-links a:hover { border-color: var(--accent); }

/* Photo + stickers */
.photo-stage {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.photo-stage::before {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: -1;
  background: conic-gradient(from 120deg,
    var(--c-yellow), var(--c-coral), var(--c-pink), var(--c-purple), var(--c-blue), var(--c-teal), var(--c-yellow));
  filter: blur(38px);
  opacity: 0.55;
  border-radius: 50%;
}

.photo-blob {
  position: relative;
  border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 20px 40px -12px rgba(31, 27, 22, 0.25);
  border: 6px solid var(--card);
}

.photo-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 18px -6px rgba(31, 27, 22, 0.18);
  animation: float 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .chip { animation: none; }
}

.chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chip-1 { top: -8%;   left: -18%; animation-delay: 0s;   }
.chip-1 .dot { background: var(--c-yellow); }
.chip-2 { top: 6%;    right: -22%; animation-delay: 1.2s; }
.chip-2 .dot { background: var(--c-blue); }
.chip-3 { top: 42%;   left: -26%; animation-delay: 0.6s; }
.chip-3 .dot { background: var(--c-pink); }
.chip-4 { bottom: 14%; right: -24%; animation-delay: 1.8s; }
.chip-4 .dot { background: var(--c-teal); }
.chip-5 { bottom: -8%; left: -6%; animation-delay: 2.4s;  }
.chip-5 .dot { background: var(--c-purple); }
.chip-6 { bottom: -10%; right: 14%; animation-delay: 0.9s; }
.chip-6 .dot { background: var(--c-coral); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Stats bar */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 56px;
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.stat:nth-child(1) .num { color: var(--c-coral); }
.stat:nth-child(2) .num { color: var(--c-purple); }
.stat:nth-child(3) .num { color: var(--c-teal); }

.stat .label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Section heading */
.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 6px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

/* Build cards */
.builds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.build-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 26px;
}

.build-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.tag-yellow { background: var(--chip-yellow); }
.tag-blue { background: var(--chip-blue); }
.tag-pink { background: var(--chip-pink); color: var(--ink); }
.tag-teal { background: var(--c-teal); color: #fff; }
.tag-purple { background: var(--c-purple); color: #fff; }

.build-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 10px;
}

.build-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Off the clock — hobby tag cloud */
.hobbies {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hobby {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
}

.hobby-1 { background: var(--c-coral); }
.hobby-2 { background: var(--c-purple); }
.hobby-3 { background: var(--c-teal); }
.hobby-4 { background: var(--c-pink); }
.hobby-5 { background: var(--c-blue); }
.hobby-6 { background: var(--c-yellow); color: var(--ink); }

/* Elsewhere / channels */
.channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 64px;
}

.channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 10px 18px;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.channel:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.channel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Footer */
footer {
  border-top: 1px solid var(--card-border);
  padding: 32px 0 48px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .photo-stage { order: -1; max-width: 280px; }
  .stats { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .builds { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
