@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/manrope-latin.woff2') format('woff2');
}

:root {
  color-scheme: light;
  --page: #f0f7ff;
  --ink: #17264f;
  --muted: #43567d;
  --purple: #6d42df;
  --teal: #0089b1;
  --line: #c9e3ff;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--page);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(ellipse at 6% 7%, #bcf7fa99 0, #d7f8fc55 17%, transparent 41%),
    radial-gradient(ellipse at 92% 83%, #d7c7ff9c 0, #e2dcff44 22%, transparent 47%),
    var(--page);
}
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.icon-definitions { position: absolute; width: 0; height: 0; overflow: hidden; }
.shell { width: min(1290px, calc(100% - 80px)); margin-inline: auto; padding-bottom: 27px; }
.site-header { height: 84px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #8abded; }
.wordmark { color: var(--purple); font-size: 56px; line-height: 1; font-weight: 800; letter-spacing: -.07em; padding-bottom: 8px; }
.domain { font-size: 20px; font-weight: 500; padding-right: 8px; min-width: 0; overflow-wrap: anywhere; text-align: right; }
.layout { display: grid; grid-template-columns: minmax(0, 456px) minmax(0, 1fr); gap: 58px; padding-left: 30px; margin-top: 44px; }
.profile { min-width: 0; padding-top: 14px; }
.identity { min-width: 0; overflow-wrap: anywhere; }
h1 { font-size: 96px; line-height: .88; font-weight: 800; letter-spacing: -.065em; margin: 0 0 9px; }
.name-dot, .handle { color: var(--purple); }
.handle { font-size: 34px; font-weight: 800; line-height: 1.25; letter-spacing: -.035em; margin: 0 0 4px; }
.role { font-size: 26px; line-height: 1.4; font-weight: 500; letter-spacing: -.025em; margin: 0 0 7px; }
.location { display: flex; align-items: center; gap: 13px; font-size: 22px; font-weight: 500; line-height: 1.4; margin: 0 0 18px; }
.location svg { width: 24px; height: 27px; color: var(--teal); flex-shrink: 0; }
.portrait { display: block; width: 100%; height: auto; aspect-ratio: 456 / 444; object-fit: cover; object-position: center 57%; border-radius: 23px; }
.tagline { font-size: 20px; font-weight: 650; color: var(--purple); margin: 9px 0 0 2px; }
.links { display: grid; gap: 12px; align-content: start; min-width: 0; border-radius: 20px; scroll-margin-top: 16px; }
.link-card {
  --accent: var(--purple);
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 24px;
  min-height: 118px;
  padding: 20px 32px 20px 38px;
  border: 1px solid var(--line);
  border-radius: 21px;
  color: var(--ink);
  text-decoration: none;
  background: #ffffffdb;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  -webkit-tap-highlight-color: #cce8ff;
}
.featured { min-height: 136px; border-color: #a773ff; background: linear-gradient(110deg, #d5fbfe 0%, #e4eeff 48%, #eae0ff 100%); }
.ledger { --accent: var(--teal); background: #f8fcffcf; }
.tiktok { --accent: var(--ink); }
.snapchat { --accent: var(--teal); }
.comfrt { background: linear-gradient(110deg, #fbfcfff0, #f2edffcc); }
.link-icon { width: 76px; height: 76px; color: var(--accent); stroke-width: 1.9; }
.icon-dots { stroke-width: 2.4; }
.link-copy { min-width: 0; overflow-wrap: anywhere; }
.link-copy strong { display: block; font-size: 30px; font-weight: 800; letter-spacing: -.045em; line-height: 1.25; }
.link-copy > span { display: block; font-size: 22px; color: var(--muted); line-height: 1.4; letter-spacing: -.02em; margin-top: 3px; }
.arrow { width: 64px; height: 64px; border: 1px solid #dceaff; border-radius: 50%; display: grid; place-items: center; color: var(--accent); background: #ffffffcf; }
.arrow svg { width: 30px; height: 30px; stroke-width: 2; transition: transform 160ms ease; }
.featured .arrow { border-color: transparent; }
@media (hover: hover) {
  .link-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 8px 22px #485a9510; }
  .link-card:hover .arrow svg { transform: translateX(3px); }
}
.link-card:focus-visible, .links:focus-visible { outline: 3px solid #5a32cb; outline-offset: 4px; }
footer { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid #8abded; padding: 14px 8px 0; margin-top: 36px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.skip-link { position: fixed; z-index: 10; top: 8px; left: 8px; padding: 12px 16px; color: white; background: #5431b7; border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: none; }

@media (max-width: 1280px) {
  .layout { grid-template-columns: minmax(0, .39fr) minmax(0, .61fr); gap: 36px; padding-left: 10px; }
  h1 { font-size: clamp(60px, 6.5vw, 88px); }
  .handle { font-size: clamp(23px, 2.35vw, 31px); }
  .role { font-size: 21px; }
  .location { font-size: 19px; }
  .link-card { grid-template-columns: 60px minmax(0, 1fr) 48px; gap: 20px; padding: 20px 24px; min-height: 106px; }
  .featured { min-height: 120px; }
  .link-icon { width: 60px; height: 60px; }
  .link-copy strong { font-size: 25px; }
  .link-copy > span { font-size: 17px; }
  .arrow { width: 48px; height: 48px; }
  .arrow svg { width: 26px; height: 26px; }
}

@media (max-width: 960px) and (min-width: 701px) {
  .shell { width: min(760px, calc(100% - 48px)); }
  .layout { grid-template-columns: 1fr; gap: 30px; padding: 0; margin-top: 30px; }
  .profile { display: grid; grid-template-columns: 160px 1fr; align-items: center; column-gap: 28px; padding: 0; }
  .identity { grid-column: 2; grid-row: 1; }
  .portrait { grid-column: 1; grid-row: 1; width: 160px; height: 160px; aspect-ratio: 1; border-radius: 22px; }
  h1 { font-size: 54px; line-height: .95; margin-bottom: 8px; }
  .handle { font-size: 22px; }
  .role { font-size: 19px; }
  .location { margin-bottom: 0; font-size: 17px; gap: 8px; }
  .location svg { width: 17px; height: 21px; }
  .tagline { display: none; }
}

@media (max-width: 700px) {
  .shell { width: min(520px, calc(100% - 32px)); padding-bottom: max(20px, env(safe-area-inset-bottom)); }
  .site-header { min-height: 50px; height: auto; gap: 16px; padding-top: env(safe-area-inset-top); }
  .wordmark { font-size: 30px; padding-bottom: 5px; }
  .domain { font-size: 12px; padding-right: 0; }
  .layout { display: block; padding: 0; margin-top: 20px; }
  .profile { display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 16px; align-items: center; padding: 0; margin-bottom: 22px; }
  .identity { grid-column: 2; grid-row: 1; }
  .portrait { grid-column: 1; grid-row: 1; width: 78px; height: 86px; aspect-ratio: auto; border-radius: 16px; }
  h1 { font-size: 34px; line-height: .97; letter-spacing: -.06em; margin: 0 0 5px; }
  .handle { font-size: 15px; line-height: 1.35; letter-spacing: -.025em; margin-bottom: 3px; }
  .role { font-size: 12px; line-height: 1.4; letter-spacing: -.02em; margin-bottom: 4px; }
  .location { font-size: 12px; line-height: 1.4; gap: 5px; margin-bottom: 0; }
  .location svg { width: 12px; height: 15px; }
  .tagline { display: none; }
  .links { gap: 10px; border-radius: 16px; }
  .link-card { grid-template-columns: 34px minmax(0, 1fr) 32px; gap: 12px; min-height: 82px; padding: 15px 14px; border-radius: 16px; }
  .featured { min-height: 92px; }
  .link-icon { width: 34px; height: 34px; stroke-width: 1.9; }
  .link-copy strong { font-size: 17px; letter-spacing: -.04em; line-height: 1.25; }
  .link-copy > span { font-size: 12px; letter-spacing: -.015em; line-height: 1.4; margin-top: 4px; }
  .arrow { width: 32px; height: 32px; }
  .arrow svg { width: 18px; height: 18px; }
  footer { font-size: 11px; margin-top: 24px; padding: 12px 0 0; }
}

@media (max-width: 359px) {
  .profile { grid-template-columns: 66px minmax(0, 1fr); gap: 12px; }
  .portrait { width: 66px; height: 76px; border-radius: 13px; }
  h1 { font-size: 30px; }
  .role { font-size: 11px; }
  .link-card { grid-template-columns: 28px minmax(0, 1fr) 28px; gap: 10px; padding: 14px 12px; }
  .link-icon { width: 28px; height: 28px; }
  .link-copy strong { font-size: 16px; }
  .arrow { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
