:root {
  color-scheme: light;
  --ink: #241c18;
  --muted: #75675f;
  --paper: #fff8f3;
  --line: #eadfd6;
  --accent: #e95420;
  --accent-soft: #fff0e8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 14%, white) 0, transparent 32rem), linear-gradient(180deg, var(--paper), color-mix(in srgb, var(--paper) 85%, #ddc9bd));
}

main { width: min(100% - 28px, 620px); margin: 0 auto; padding: 38px 0 46px; }
.profile { text-align: center; }
.avatar { display: grid; width: 78px; height: 78px; margin: 0 auto 14px; place-items: center; border: 1px solid color-mix(in srgb, var(--accent) 35%, white); border-radius: 24px; color: white; background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 75%, white), var(--accent)); box-shadow: 0 14px 35px color-mix(in srgb, var(--accent) 18%, transparent); font-size: 26px; font-weight: 800; }
h1 { margin: 0; font-size: clamp(25px, 7vw, 34px); letter-spacing: -1.2px; }
.bio { max-width: 440px; margin: 9px auto 0; color: var(--muted); font-size: 14px; line-height: 1.6; white-space: pre-line; }
.disclosure { margin: 18px auto 0; padding: 9px 12px; border: 1px solid color-mix(in srgb, var(--accent) 30%, white); border-radius: 12px; color: color-mix(in srgb, var(--accent) 65%, black); background: color-mix(in srgb, var(--accent) 9%, white); font-size: 11px; line-height: 1.45; white-space: pre-line; }
.toolbar { position: sticky; top: 0; z-index: 2; padding: 14px 0 10px; background: linear-gradient(180deg, var(--paper) 72%, transparent); }
input { width: 100%; border: 1px solid var(--line); border-radius: 15px; padding: 13px 15px; color: var(--ink); background: #ffffffdc; box-shadow: 0 8px 25px #5d35200d; font: inherit; outline: none; }
input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent); }
.grid { display: grid; gap: 9px; }
.link { display: flex; min-height: 62px; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 16px; padding: 11px 13px; color: inherit; background: #ffffffd9; box-shadow: 0 7px 20px #6e3d260a; text-decoration: none; transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease; }
.link:hover, .link:focus-visible { border-color: var(--accent); box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 14%, transparent); transform: translateY(-2px); outline: none; }
.icon { display: grid; flex: 0 0 40px; width: 40px; height: 40px; place-items: center; border-radius: 12px; color: color-mix(in srgb, var(--accent) 70%, black); background: color-mix(in srgb, var(--accent) 10%, white); font-size: 18px; font-weight: 800; }
.copy { min-width: 0; flex: 1; }
.title { display: block; font-size: 14px; font-weight: 750; }
.hint { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }
.arrow { color: var(--accent); font-size: 19px; }
.empty, .status { display: none; padding: 28px 10px; color: var(--muted); text-align: center; font-size: 13px; }
.status { display: block; }
footer { margin-top: 24px; color: var(--muted); font-size: 11px; line-height: 1.55; text-align: center; white-space: pre-line; }
@media (prefers-reduced-motion: reduce) { .link { transition: none; } }
