/* ==========================================================================
   Cynthia Cândido — sistema visual "violeta"
   Paleta lavanda + roxo profundo, hexágonos, anel em degradê e chips pílula.
   ========================================================================== */

:root {
  --violet-900: #2b0b5e;
  --violet-800: #3a1178;
  --violet-700: #4c1d95;
  --violet-600: #5b21b6;
  --violet-500: #7c3aed;
  --violet-400: #9a6bff;
  --violet-200: #c9b4ff;
  --lilac-200: #ded2fb;
  --lilac-100: #ece5fd;
  --lilac-50:  #f5f1ff;

  --ink: #26094f;
  --ink-soft: #4b3878;
  --muted: #746a95;
  --line: rgba(76, 29, 149, .12);
  --line-strong: rgba(76, 29, 149, .2);

  --surface: #ffffff;
  --shadow-sm: 0 8px 22px rgba(60, 20, 130, .07);
  --shadow-md: 0 16px 40px rgba(60, 20, 130, .10);
  --shadow-lg: 0 28px 70px rgba(45, 12, 100, .16);

  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--lilac-100);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
[hidden] { display: none !important; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 60;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--violet-700);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 12px; }

:focus-visible { outline: 2px solid var(--violet-500); outline-offset: 3px; border-radius: 6px; }

/* ---------- Hexágonos e formas decorativas ---------- */

.hex-field { position: absolute; pointer-events: none; }
.hex-field .hex-stroke { fill: none; stroke: currentColor; stroke-width: 1.1; opacity: .5; }
.hex-field .hex-fill { fill: currentColor; opacity: .12; stroke: none; }
.hex-field .hex-dots { fill: currentColor; opacity: .45; }

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

/* ---------- Topbar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(236, 229, 253, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(76, 29, 149, .07);
}
.topbar-inner {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 19px;
  line-height: 1;
  letter-spacing: -.03em;
  text-decoration: none;
  margin-right: auto;
  white-space: nowrap;
}
.wordmark b { font-weight: 800; color: var(--violet-800); }
.wordmark span { font-weight: 400; color: var(--violet-500); }

.nav-links { display: none; gap: 26px; margin: 0 auto; }
.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--violet-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.topbar-actions { display: flex; align-items: center; gap: 8px; }

.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  cursor: pointer;
  color: var(--violet-700);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  transition: transform .2s ease, background .2s ease;
}
.icon-button:hover { transform: translateY(-1px); background: #fff; }
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.pill-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  box-shadow: 0 10px 24px rgba(92, 33, 182, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pill-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(92, 33, 182, .34); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 26px 18px 46px;
  background:
    radial-gradient(120% 90% at 82% 6%, rgba(154, 107, 255, .16), transparent 60%),
    linear-gradient(180deg, var(--lilac-100) 0%, #f0eafe 100%);
}
.hero-deco { position: absolute; inset: 0; color: var(--violet-500); pointer-events: none; }
.hero-deco .hex-field-a { width: 240px; left: -46px; top: 20px; opacity: .5; }
.hero-deco .blob-a { width: 300px; height: 300px; background: rgba(124, 58, 237, .16); top: -80px; right: -110px; }
.hero-deco .blob-b { width: 260px; height: 260px; background: rgba(196, 168, 255, .3); bottom: -120px; left: -90px; }

.ghost-word {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-weight: 800;
  font-size: clamp(120px, 32vw, 280px);
  line-height: 1;
  letter-spacing: -.05em;
  white-space: nowrap;
  color: rgba(124, 58, 237, .07);
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--shell));
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

/* Visual: anel + avatar + card flutuante */
.hero-visual {
  position: relative;
  width: min(320px, 84vw);
  margin: 0 auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 205deg, rgba(124, 58, 237, 0) 0deg, var(--violet-500) 70deg, var(--violet-700) 175deg, var(--violet-900) 240deg, rgba(43, 11, 94, 0) 305deg);
  -webkit-mask: radial-gradient(closest-side, transparent 0 79%, #000 80%);
  mask: radial-gradient(closest-side, transparent 0 79%, #000 80%);
}
.avatar-wrap {
  position: relative;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(150deg, #fff, var(--lilac-200) 55%, #fff);
  box-shadow: 0 22px 50px rgba(60, 20, 130, .18);
}
.avatar-wrap img, .avatar-fallback { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: 50% 22%; display: block; }
.avatar-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--violet-400), var(--violet-600) 55%, var(--violet-800));
  color: #fff;
  font-weight: 800;
  font-size: clamp(36px, 10vw, 52px);
  letter-spacing: -.04em;
}

.hero-card {
  position: absolute;
  right: -6px;
  bottom: -34px;
  width: 182px;
  padding: 14px 14px 16px;
  border-radius: 22px;
  text-align: center;
  color: #fff;
  background: linear-gradient(155deg, var(--violet-700), var(--violet-900));
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .14);
}
.hero-card p { margin: 0; font-size: 12.5px; line-height: 1.45; font-weight: 500; color: rgba(255, 255, 255, .92); }
.hero-card-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  transition: background .2s ease;
}
.hero-card-btn:hover { background: rgba(255, 255, 255, .28); }

.tilt-stack { display: flex; justify-content: center; margin-bottom: 12px; }
.tilt-stack img {
  width: 42px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, .55);
  box-shadow: 0 6px 16px rgba(20, 5, 50, .35);
}
.tilt-stack img:nth-child(1) { transform: rotate(-9deg); }
.tilt-stack img:nth-child(2) { transform: translateY(-4px); margin: 0 -8px; z-index: 2; }
.tilt-stack img:nth-child(3) { transform: rotate(9deg); }

/* Copy */
.hero-copy { text-align: center; }
.eyebrow, .mini-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--violet-500);
}
.hero-copy h1 {
  margin: 10px 0 0;
  font-size: clamp(38px, 10vw, 62px);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--violet-800);
  display: grid;
}
.name-first { font-weight: 800; color: var(--violet-800); }
.name-last { font-weight: 300; color: var(--ink-soft); letter-spacing: -.03em; }

.handle { margin: 12px 0 0; font-size: 14px; font-weight: 600; color: var(--violet-500); }
.bio { max-width: 520px; margin: 14px auto 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }

.social-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.social-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--violet-700);
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.social-button:hover { transform: translateY(-2px); background: #fff; box-shadow: var(--shadow-md); }
.social-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-button .fill-dot { fill: currentColor; stroke: none; }

.hero-stat { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; text-align: left; }
.stack { display: flex; }
.stack img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(60, 20, 130, .16);
}
.stack img + img { margin-left: -12px; }
.stat-copy { display: grid; gap: 2px; max-width: 260px; }
.stat-copy strong { font-size: 15px; font-weight: 800; color: var(--violet-800); letter-spacing: -.01em; }
.stat-copy span { font-size: 12.5px; line-height: 1.4; color: var(--muted); }

.big-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  padding: 4px 4px 4px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--violet-900);
  box-shadow: 0 14px 32px rgba(43, 11, 94, .26);
  transition: transform .2s ease, box-shadow .2s ease;
}
.big-cta i {
  width: 44px;
  height: 44px;
  margin-left: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
  font-size: 22px;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  transition: transform .2s ease;
}
.big-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(43, 11, 94, .32); }
.big-cta:hover i { transform: translateX(3px); }

/* ---------- Faixa de manifesto ---------- */

.statement {
  padding: 44px 22px 52px;
  text-align: center;
  background: linear-gradient(180deg, #f0eafe 0%, var(--lilac-50) 55%, #fff 100%);
}
.statement p {
  width: min(100%, 860px);
  margin: 0 auto;
  font-size: clamp(17px, 4.4vw, 27px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.statement b { font-weight: 800; color: var(--violet-800); }
.solid-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--violet-700);
  box-shadow: 0 12px 26px rgba(76, 29, 149, .24);
  transition: transform .2s ease, background .2s ease;
}
.solid-btn:hover { transform: translateY(-2px); background: var(--violet-800); }

/* ---------- Catálogo ---------- */

.catalog { background: #fff; padding: 12px 18px 60px; }
.catalog-inner { width: min(100%, var(--shell)); margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 26px; }
.section-title h2 {
  margin: 0;
  font-size: clamp(26px, 7vw, 44px);
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section-title h2 b { font-weight: 800; color: var(--violet-800); }
.section-title p { max-width: 520px; margin: 12px auto 0; font-size: 14.5px; line-height: 1.55; color: var(--muted); }

.toolbar { display: grid; gap: 12px; margin-bottom: 32px; }
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--lilac-50);
  border: 1px solid var(--line);
  transition: border-color .2s ease, background .2s ease;
}
.search-box:focus-within { border-color: var(--violet-400); background: #fff; }
.search-box svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; color: var(--violet-500); }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 15px; }
.search-box input::placeholder { color: #a196c4; }

.chips { display: flex; flex-wrap: nowrap; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chips button {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink-soft);
  background: var(--lilac-50);
  border: 1px solid var(--line);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.chips button:hover { transform: translateY(-1px); background: var(--lilac-100); }
.chips button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(92, 33, 182, .26);
}

.block { margin-top: 34px; }
.block-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 12px;
  margin-bottom: 16px;
}
.block-heading .mini-label { grid-column: 1 / -1; }
.block-heading h3 { margin: 4px 0 0; font-size: clamp(21px, 5vw, 28px); font-weight: 800; letter-spacing: -.025em; color: var(--violet-800); }
.count { font-size: 12.5px; font-weight: 600; color: var(--muted); padding-bottom: 5px; }

/* Cartões em destaque — imagem + painel lilás */
.featured-grid { display: grid; gap: 16px; }
.featured-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--lilac-50);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-link { color: inherit; text-decoration: none; display: block; height: 100%; }
.featured-card .card-link { display: grid; }
.featured-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(150deg, var(--lilac-200), var(--violet-200) 42%, var(--violet-400)); }
.featured-body { padding: 20px 20px 22px; display: flex; flex-direction: column; align-items: flex-start; }
.featured-body .item-title { font-size: clamp(19px, 4.6vw, 24px); }
.featured-body .item-subtitle { font-size: 14px; }

/* Cartões de produto */
.items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 14px; }
.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--violet-200); box-shadow: var(--shadow-md); }
.product-card .card-link { display: flex; flex-direction: column; height: 100%; }
.product-media { position: relative; aspect-ratio: 1; overflow: hidden; background: linear-gradient(155deg, var(--lilac-100), var(--lilac-200) 45%, var(--violet-200)); }
.product-body { padding: 14px 14px 16px; display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.product-body .cta { margin-top: auto; }

.item-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.placeholder-art { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; }
.placeholder-art::before, .placeholder-art::after {
  content: "";
  position: absolute;
  height: 54%;
  width: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
}
.placeholder-art::after { height: 28%; background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .6); }
.placeholder-art span::before { content: "✦"; position: relative; z-index: 2; font-size: 24px; color: rgba(255, 255, 255, .92); }
.product-media .placeholder-art::before, .product-media .placeholder-art::after { border-color: rgba(124, 58, 237, .28); }
.product-media .placeholder-art::after { background: rgba(124, 58, 237, .12); }
.product-media .placeholder-art span::before { color: rgba(91, 33, 182, .5); }
.featured-media .placeholder-art::before, .featured-media .placeholder-art::after { border-color: rgba(255, 255, 255, .6); }

.card-badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
}
.product-media .card-badge { position: absolute; left: 10px; top: 10px; box-shadow: 0 8px 18px rgba(43, 11, 94, .3); }
.featured-body .card-badge { margin-bottom: 12px; }

.category {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--violet-500);
}
.item-title {
  margin: 7px 0 0;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--violet-800);
}
.item-subtitle {
  margin: 8px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding-top: 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--violet-700);
}
.cta i { font-style: normal; transition: transform .2s ease; }
.card-link:hover .cta i { transform: translate(2px, -2px); }

.empty-state { text-align: center; padding: 46px 18px; color: var(--muted); }
.empty-state > span { font-size: 26px; color: var(--violet-400); }
.empty-state h4 { margin: 10px 0 4px; font-size: 20px; font-weight: 800; color: var(--violet-800); }
.empty-state p { margin: 0; font-size: 13.5px; }

/* ---------- Rodapé ---------- */

.footer {
  position: relative;
  overflow: hidden;
  padding: 52px 22px 44px;
  text-align: center;
  color: rgba(255, 255, 255, .82);
  background: radial-gradient(120% 100% at 15% 0%, #4c1d95 0%, var(--violet-900) 55%, #1e0644 100%);
}
.footer-deco { position: absolute; inset: 0; color: #c9b4ff; pointer-events: none; }
.footer-deco .hex-field-b { width: 220px; left: -40px; bottom: -30px; opacity: .35; }
.footer-deco .flame {
  position: absolute;
  right: -70px;
  top: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 40% 60%, rgba(154, 107, 255, .55), transparent 62%);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  filter: blur(12px);
}
.footer-inner { position: relative; z-index: 1; width: min(100%, 640px); margin: 0 auto; }
.footer-word {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.03em;
}
.footer-word b { font-weight: 800; color: #fff; }
.footer-word span { font-weight: 300; color: rgba(255, 255, 255, .72); }
.footer-tagline { margin: 6px 0 0; font-size: 13.5px; color: rgba(255, 255, 255, .68); }
.footer-social { margin-top: 22px; }
.social-button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: none;
}
.social-button.ghost:hover { background: rgba(255, 255, 255, .2); box-shadow: none; }
.disclosure { margin: 30px auto 0; max-width: 540px; font-size: 11.5px; line-height: 1.6; color: rgba(255, 255, 255, .55); }
.footer-note { margin: 12px 0 0; font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, .78); }

/* ---------- Breakpoints ---------- */

@media (min-width: 620px) {
  .hero { padding: 40px 26px 60px; }
  .hero-visual { width: min(400px, 60vw); }
  .hero-card { width: 210px; right: -26px; }
  .items-grid { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px; }
  .featured-card .card-link { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: stretch; }
  .featured-media { aspect-ratio: auto; height: 100%; min-height: 230px; }
  .featured-body { padding: 30px 30px 32px; justify-content: center; }
  .toolbar { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); align-items: center; gap: 16px; }
  .catalog { padding: 20px 26px 70px; }
  .statement { padding: 60px 26px 66px; }
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .wordmark { font-size: 22px; margin-right: 0; }
  .topbar-inner { padding: 14px 26px; }
  .topbar-actions { margin-left: auto; }

  .hero { padding: 56px 26px 76px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); align-items: center; gap: 40px; }
  .hero-copy { order: -1; text-align: left; }
  .hero-copy h1 { font-size: clamp(46px, 4.6vw, 66px); }
  .bio { margin-left: 0; }
  .social-row { justify-content: flex-start; }
  .hero-stat { justify-content: flex-start; }
  .hero-visual { width: min(440px, 42vw); margin: 0; }
  .ghost-word { left: auto; right: -3%; top: 54%; transform: translateY(-50%); font-size: clamp(150px, 17vw, 260px); color: rgba(124, 58, 237, .055); }
  .hero-deco .hex-field-a { width: 300px; top: 40px; }
  .section-title { text-align: center; }
}

@media (min-width: 1080px) {
  .items-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

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