/* =========================================
   HNGart — Design System v1.0
   Neo-Brutalist × Modern Pop
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@600;700;800;900&family=Syne:wght@600;700;800&display=swap');

/* ===================== TOKENS ===================== */
:root {
  --yellow: #FFD700;
  --yellow-dark: #E6C200;
  --red: #FF3B3B;
  --purple: #7B2FBE;
  --purple-light: #A855F7;
  --blue: #0066FF;
  --black: #0A0A0A;
  --white: #FAFAFA;
  --gray-50: #F9F9F9;
  --gray-100: #F0F0F0;
  --gray-200: #E0E0E0;
  --gray-400: #9E9E9E;
  --gray-600: #5E5E5E;
  --green: #00C853;

  --border-w: 3px;
  --border: var(--border-w) solid var(--black);
  --shadow-sm: 3px 3px 0px var(--black);
  --shadow: 6px 6px 0px var(--black);
  --shadow-lg: 10px 10px 0px var(--black);
  --shadow-yellow: 6px 6px 0px var(--yellow);
  --shadow-purple: 6px 6px 0px var(--purple);
  --shadow-red: 6px 6px 0px var(--red);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-pop: 'Syne', sans-serif;

  --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition: all 0.2s var(--ease);
  --transition-slow: all 0.4s var(--ease);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--gray-100);
  color: var(--black);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===================== LAYOUT ===================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 52px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-4 { gap: 4px; } .gap-8 { gap: 8px; } .gap-12 { gap: 12px; }
.gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* ===================== TYPOGRAPHY ===================== */
.font-pop { font-family: var(--font-pop); }
.font-heading { font-family: var(--font-heading); }
.text-muted { color: var(--gray-600); }

/* Label / eyebrow */
.text-tiny {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  line-height: 1.4;
}
.text-upper { text-transform: uppercase; letter-spacing: 0.07em; }

/* Display headings — balanced line-height for large type */
.section-title {
  font-family: var(--font-pop);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

/* Section intro text */
.section-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.6;
  margin-top: 14px;
}

/* Lead paragraph — for intro copy blocks */
.text-lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--gray-600);
}

/* Prose block — article-style body copy */
.prose {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  max-width: 68ch;
}
.prose p + p { margin-top: 1.2em; }

/* Heading scale */
.h1 { font-family: var(--font-pop); font-size: clamp(36px, 6vw, 80px); font-weight: 800; line-height: 1.0; letter-spacing: -0.02em; text-transform: uppercase; }
.h2 { font-family: var(--font-pop); font-size: clamp(28px, 4vw, 52px); font-weight: 800; line-height: 1.06; letter-spacing: -0.01em; text-transform: uppercase; }
.h3 { font-family: var(--font-pop); font-size: clamp(20px, 3vw, 32px); font-weight: 800; line-height: 1.15; text-transform: uppercase; }
.h4 { font-family: var(--font-heading); font-size: 20px; font-weight: 800; line-height: 1.25; }
.h5 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; line-height: 1.35; }

/* Display — for hero/spotlight titles (very large, tight is intentional but not crushed) */
.text-display {
  font-family: var(--font-pop);
  font-weight: 800;
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px;
  font-family: var(--font-heading); font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.06em;
  border: var(--border); box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap; cursor: pointer;
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: var(--shadow); }
.btn:active { transform: translate(2px, 2px);   box-shadow: none; }

.btn-primary  { background: var(--black);   color: var(--white); }
.btn-primary:hover { box-shadow: 6px 6px 0px var(--yellow); }
.btn-secondary{ background: var(--white);   color: var(--black); }
.btn-yellow   { background: var(--yellow);  color: var(--black); }
.btn-yellow:hover { box-shadow: 6px 6px 0px var(--purple); }
.btn-red      { background: var(--red);     color: var(--white); }
.btn-purple   { background: var(--purple);  color: var(--white); }
.btn-purple:hover { box-shadow: 6px 6px 0px var(--yellow); }
.btn-green    { background: var(--green);   color: var(--white); }
.btn-ghost    { background: transparent; box-shadow: none; border-color: transparent; }
.btn-ghost:hover { background: var(--gray-100); box-shadow: none; transform: none; }

.btn-lg  { padding: 16px 32px; font-size: 15px; }
.btn-sm  { padding: 8px 14px; font-size: 11px; }
.btn-xs  { padding: 5px 10px; font-size: 10px; }
.btn-icon{ padding: 10px; }
.btn-full{ width: 100%; }
.btn-round { border-radius: var(--radius-full); }

/* ===================== CARDS ===================== */
.card {
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); }
.card-flat  { box-shadow: none; }
.card-body  { padding: 22px; }

/* ===================== BADGES ===================== */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px;
  font-family: var(--font-heading); font-size: 10px;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  border: 2px solid var(--black); border-radius: 4px;
}
.badge-yellow  { background: var(--yellow);  color: var(--black); }
.badge-red     { background: var(--red);     color: var(--white); }
.badge-purple  { background: var(--purple);  color: var(--white); }
.badge-green   { background: var(--green);   color: var(--white); }
.badge-black   { background: var(--black);   color: var(--white); }
.badge-white   { background: var(--white);   color: var(--black); }
.badge-gray    { background: var(--gray-200);color: var(--gray-600); border-color: var(--gray-400); }
.badge-pro     { background: linear-gradient(135deg,#FFD700,#FFA500); color: var(--black); border-color: #C88000; }
.badge-elite   { background: linear-gradient(135deg,var(--purple),#A855F7); color: var(--white); border-color: var(--purple); }

/* ===================== INPUTS ===================== */
.input {
  width: 100%; padding: 12px 16px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--black); background: var(--white);
  border: var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); transition: var(--transition); outline: none;
}
.input:focus { box-shadow: var(--shadow-yellow); }
.input::placeholder { color: var(--gray-400); }
.input-label {
  display: block; font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 8px;
  line-height: 1.4;
}
.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-error { border-color: var(--red); box-shadow: var(--shadow-red); }

.select {
  appearance: none; padding: 12px 36px 12px 14px;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  border: var(--border); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer; outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke='%230A0A0A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.select:focus { box-shadow: var(--shadow-yellow); }

textarea.input { resize: vertical; min-height: 120px; }

/* Range */
input[type="range"] {
  -webkit-appearance: none; width: 100%;
  height: 6px; background: var(--gray-200);
  border: 2px solid var(--black); border-radius: 3px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px;
  background: var(--yellow); border: 3px solid var(--black);
  border-radius: 50%; cursor: pointer;
}

/* Checkbox */
.checkbox-wrap { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-wrap input[type="checkbox"] { display: none; }
.checkbox-box {
  width: 22px; height: 22px; border: var(--border); border-radius: 4px;
  background: var(--white); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.checkbox-wrap input:checked + .checkbox-box { background: var(--black); color: var(--white); }

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: var(--border); height: 72px;
}
.navbar-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.logo {
  font-family: var(--font-pop); font-size: 26px;
  font-weight: 800; letter-spacing: -0.05em; flex-shrink: 0;
}
.logo-box { background: var(--black); color: var(--white); padding: 2px 8px; border-radius: 4px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 3px; background: var(--yellow); transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-search { flex: 1; max-width: 380px; position: relative; }
.nav-search .input { padding: 10px 16px 10px 40px; }
.nav-search-icon {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%); color: var(--gray-400); pointer-events: none;
}

.cart-btn {
  position: relative; padding: 10px;
  border: var(--border); box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm); transition: var(--transition);
  font-size: 18px; line-height: 1;
}
.cart-btn:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow); }
.cart-count {
  position: absolute; top: -8px; right: -8px;
  width: 20px; height: 20px;
  background: var(--red); color: var(--white);
  border: 2px solid var(--black); border-radius: var(--radius-full);
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 72px;
  background: var(--white); border-top: var(--border);
  z-index: 99; padding: 24px; flex-direction: column; gap: 12px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

/* ===================== MARQUEE ===================== */
.marquee-bar {
  background: var(--yellow); border-bottom: var(--border);
  padding: 10px 0; overflow: hidden; user-select: none;
}
.marquee-track {
  display: inline-flex; gap: 48px;
  animation: marqueeScroll 30s linear infinite; white-space: nowrap;
}
.marquee-bar:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-pop); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 16px;
}
.marquee-dot { width: 5px; height: 5px; background: var(--black); border-radius: 50%; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================== ARTWORK CARD ===================== */
.artwork-card { cursor: pointer; }
.artwork-img-wrap {
  aspect-ratio: 4/5; border-bottom: var(--border);
  position: relative; overflow: hidden;
}
.artwork-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-pop); font-weight: 800; padding: 16px;
  text-align: center; font-size: clamp(14px,3vw,22px);
  transition: var(--transition-slow);
}
.artwork-card:hover .artwork-img-placeholder { transform: scale(1.05); }
.artwork-img-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.75); display: flex;
  align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: var(--transition);
}
.artwork-card:hover .artwork-img-overlay { opacity: 1; }
.artwork-badge-tl { position: absolute; top: 12px; left: 12px; }
.artwork-badge-tr { position: absolute; top: 12px; right: 12px; }
.artwork-card-info { padding: 16px 18px 18px; }

/* ===================== ARTIST CARD ===================== */
.artist-card { min-width: 240px; cursor: pointer; }
.artist-avatar {
  width: 56px; height: 56px; border: var(--border); border-radius: var(--radius);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-pop); font-weight: 800; font-size: 22px;
}

/* ===================== TAGS ===================== */
.tag {
  display: inline-flex; align-items: center; padding: 4px 12px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  border: 2px solid var(--black); border-radius: 4px;
  background: var(--gray-100); transition: var(--transition); cursor: pointer;
}
.tag:hover, .tag.active { background: var(--black); color: var(--white); }

/* ===================== CATEGORY PILL ===================== */
.cat-pill {
  flex-shrink: 0; padding: 10px 22px;
  border: var(--border); border-radius: 40px;
  font-family: var(--font-heading); font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: var(--transition); cursor: pointer; white-space: nowrap;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--black); color: var(--white);
  transform: translate(-2px,-2px); box-shadow: var(--shadow);
}

/* ===================== STATS ===================== */
.stat-box {
  border: var(--border); border-radius: var(--radius);
  padding: 20px 24px; text-align: center; background: var(--white);
  box-shadow: var(--shadow-sm);
}
.stat-value {
  font-family: var(--font-pop); font-size: 36px;
  font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 6px;
}
.stat-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-600);
  line-height: 1.4;
}

/* ===================== STEPS (How it works) ===================== */
.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.step-number {
  width: 60px; height: 60px; border: var(--border); border-radius: var(--radius-sm);
  background: var(--yellow); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-pop); font-size: 26px; font-weight: 800;
}

/* ===================== PREMIUM CARDS ===================== */
.plan-card {
  border: 3px solid var(--black); border-radius: var(--radius-lg);
  padding: 36px 28px; position: relative;
  overflow: hidden; transition: var(--transition);
  background: var(--white); box-shadow: var(--shadow);
}
.plan-card:hover { transform: translate(-4px,-4px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  background: var(--black); color: var(--white);
  box-shadow: 8px 8px 0px var(--yellow);
}
.plan-card.featured:hover { box-shadow: 12px 12px 0px var(--yellow); }
.plan-price {
  font-family: var(--font-pop); font-size: 56px;
  font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
}
.plan-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.5;
}
.plan-feature:last-child { border-bottom: none; }
.plan-card.featured .plan-feature { border-color: rgba(255,255,255,0.1); }
.feat-yes { color: var(--green); font-weight: 800; font-size: 16px; }
.feat-no  { color: var(--gray-400); font-size: 16px; }

/* ===================== HORIZONTAL SCROLL ===================== */
.scroll-row {
  display: flex; gap: 24px; overflow-x: auto; padding-bottom: 12px;
  scrollbar-width: thin; scrollbar-color: var(--black) var(--gray-200);
}
.scroll-row::-webkit-scrollbar { height: 5px; }
.scroll-row::-webkit-scrollbar-track { background: var(--gray-200); border-radius: 3px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--black); border-radius: 3px; }

/* ===================== SIDEBAR LAYOUT ===================== */
.layout-sidebar { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.sidebar-sticky { position: sticky; top: 90px; }

/* ===================== UPLOAD AREA ===================== */
.upload-area {
  border: 3px dashed var(--black); border-radius: var(--radius);
  padding: 48px 24px; text-align: center;
  cursor: pointer; background: var(--gray-50); transition: var(--transition);
}
.upload-area:hover, .upload-area.drag-over { background: var(--yellow); border-style: solid; }
.upload-icon { font-size: 48px; margin-bottom: 12px; }

/* ===================== TOAST ===================== */
.toast-container {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 300; display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--black); color: var(--white);
  border: 2px solid var(--yellow); border-radius: var(--radius);
  padding: 14px 20px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow); min-width: 260px; max-width: 380px;
  animation: toastIn 0.3s var(--ease);
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}

/* ===================== MODAL ===================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,10,10,0.6);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border: var(--border); box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg); width: 100%; max-width: 540px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px); transition: var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  padding: 24px; border-bottom: var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-body { padding: 24px; }
.modal-footer { padding: 24px; border-top: var(--border); }

/* ===================== TABS ===================== */
.tabs {
  display: flex; gap: 4px; border: var(--border);
  border-radius: var(--radius-sm); padding: 4px; background: var(--gray-100);
}
.tab-btn {
  flex: 1; padding: 10px 20px;
  font-family: var(--font-heading); font-weight: 800;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 4px; transition: var(--transition); color: var(--gray-400);
}
.tab-btn:hover   { color: var(--black); }
.tab-btn.active  { background: var(--black); color: var(--white); }
.tab-panel       { display: none; }
.tab-panel.active{ display: block; animation: fadeInUp 0.3s var(--ease); }

/* ===================== CHART BARS ===================== */
.chart-wrap {
  display: flex; align-items: flex-end; gap: 8px;
  min-height: 140px; padding: 16px;
  border: var(--border); border-radius: var(--radius); background: var(--gray-50);
}
.chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.chart-bar {
  width: 100%; background: var(--yellow); border: 2px solid var(--black);
  border-radius: 4px 4px 0 0; transition: var(--transition-slow);
}
.chart-bar:hover { background: var(--purple); }
.chart-label { font-size: 9px; font-weight: 700; text-transform: uppercase; color: var(--gray-400); }

/* ===================== STRIPE MOCK ===================== */
.stripe-field {
  background: var(--white); border: var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  box-shadow: var(--shadow-sm); font-size: 15px; min-height: 50px;
  transition: var(--transition);
}
.stripe-field.focus { box-shadow: var(--shadow-yellow); }

/* ===================== DIVIDER ===================== */
hr, .divider { border: none; border-top: var(--border); margin: 0; }
.divider-dashed { border-top: 2px dashed var(--gray-400); }

/* ===================== MISC ===================== */
.rotate-1 { transform: rotate(1deg); } .rotate-2 { transform: rotate(2deg); }
.-rotate-1{ transform: rotate(-1deg);} .-rotate-2{ transform: rotate(-2deg);}
.highlight { background: var(--yellow); padding: 0 6px; }
.stars { display: inline-flex; gap: 1px; color: var(--yellow); font-size: 13px; }
.progress-bar { height: 8px; background: var(--gray-200); border: 2px solid var(--black); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--yellow); transition: width 0.5s ease; }
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm);
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.notif-dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  border: 2px solid var(--white); display: inline-block;
}
.avatar-ring {
  border: var(--border); border-radius: var(--radius-full); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--black); color: var(--white);
  padding: 72px 0 40px; border-top: 4px solid var(--yellow);
}
.footer-logo { font-family: var(--font-pop); font-size: 48px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.footer-link {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gray-400); transition: var(--transition);
  line-height: 1.5;
}
.footer-link:hover { color: var(--yellow); }

/* ===================== PAGE HERO ===================== */
.page-hero { background: var(--white); border-bottom: var(--border); padding: 56px 0; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); }
  50%      { transform: translateY(-12px) rotate(var(--rot,0deg)); }
}
.animate-float { animation: float 5s ease-in-out infinite; }
.animate-fade-up { animation: fadeInUp 0.5s var(--ease) forwards; }
@keyframes spin { to { transform: rotate(360deg); } }
.animate-spin { animation: spin 1s linear infinite; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .layout-sidebar { grid-template-columns: 1fr; }
  .hide-lg { display: none !important; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-links, .nav-search { display: none !important; }
  .hide-md { display: none !important; }
}
@media (max-width: 580px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hide-sm { display: none !important; }
}
@media (max-width: 400px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
