@import url("./assets/colors_and_type.css");

:root {
  /* GiftClick fork — brand-tighter accent set */
  --gc-violet: #6E5BFF;
  --gc-pink:   #FF6FA0;
  --gc-mint:   #21D6A8;
  --gc-cream:  #FFF7E6;
  --gc-ink:    #0E1530;
  --gc-surface: #F4F6FB;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--cs-white);
  color: var(--gc-ink);
  font-family: var(--cs-font-sans);
  overflow-x: hidden;
}

button { font-family: inherit; cursor: pointer; border: none; }
a { color: inherit; }

/* ---------- shared chrome ---------- */
.gc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.gc-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--cs-primary-60);
  color: white;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  transition: background 120ms ease;
  border: none;
}
.gc-pill-btn:hover { background: var(--cs-primary-80); }
.gc-pill-btn.ghost {
  background: transparent;
  color: var(--gc-ink);
  border: 1.5px solid var(--cs-gray-30);
}
.gc-pill-btn.ghost:hover { background: var(--cs-gray-10); }

.gc-square-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 28px;
  border-radius: 12px;
  background: var(--cs-primary-60);
  color: white;
  font-weight: 500;
  font-size: 17px;
}

/* ---------- HEADER ---------- */
.gc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--cs-gray-20);
}
.gc-header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.gc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cs-font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--gc-ink);
}
.gc-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cs-primary-60);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.gc-logo-mark::before,
.gc-logo-mark::after {
  content: "";
  position: absolute;
  background: var(--cs-warning-60);
}
.gc-logo-mark::before {
  inset: 0 0 auto 0;
  height: 8px;
}
.gc-logo-mark::after {
  inset: auto 0;
  width: 8px;
  height: 100%;
  left: calc(50% - 4px);
}
.gc-logo-version {
  font-size: 11px;
  font-weight: 700;
  color: var(--cs-primary-60);
  background: var(--cs-primary-10);
  padding: 3px 8px;
  border-radius: 6px;
  font-family: var(--cs-font-sans);
  letter-spacing: 0.02em;
}

.gc-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.gc-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--cs-gray-80);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.gc-nav-item:hover { background: var(--cs-gray-10); color: var(--gc-ink); }
.gc-nav-item.active {
  color: var(--cs-primary-60);
}
.gc-nav-item .chev {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}
.gc-nav-item[aria-expanded="true"] .chev { transform: rotate(180deg); }

.gc-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 520px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--cs-gray-20);
  box-shadow: 0 16px 48px rgba(4,4,15,0.14);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.gc-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.gc-dropdown-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--gc-ink);
  cursor: pointer;
}
.gc-dropdown-item:hover { background: var(--cs-gray-10); }
.gc-dropdown-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cs-primary-10);
  color: var(--cs-primary-60);
  display: grid;
  place-items: center;
}
.gc-dropdown-item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 2px;
}
.gc-dropdown-item-desc {
  font-size: 12px;
  color: var(--cs-gray-60);
  line-height: 16px;
}

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

/* ---------- HERO ---------- */
.gc-hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.gc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(48,133,255,0.10), transparent 60%),
    radial-gradient(700px 400px at 10% 80%, rgba(255,179,0,0.10), transparent 60%);
  z-index: -1;
}
.gc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.gc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px 0 6px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--cs-gray-20);
  font-size: 13px;
  font-weight: 500;
  color: var(--cs-gray-80);
  margin-bottom: 24px;
}
.gc-hero-eyebrow b { color: var(--cs-primary-60); font-weight: 600; }
.gc-hero-eyebrow .dot {
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--cs-success-60);
  display: grid; place-items: center;
  color: white;
  font-size: 10px;
}

.gc-hero h1 {
  font-family: var(--cs-font-display);
  font-weight: 800;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--gc-ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.gc-hero h1 .accent {
  background: linear-gradient(110deg, var(--cs-primary-60) 0%, var(--gc-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gc-hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--cs-gray-80);
  max-width: 520px;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.gc-hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 36px;
}
.gc-hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--cs-gray-20);
}
.gc-hero-stat-num {
  font-family: var(--cs-font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--gc-ink);
  line-height: 1;
  margin-bottom: 6px;
}
.gc-hero-stat-label {
  font-size: 13px;
  color: var(--cs-gray-60);
  line-height: 1.3;
}

/* ---------- Animated offers ticker (left column) ---------- */
.gc-offer-rotator {
  position: relative;
  height: 56px;
  margin-bottom: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gc-offer-rotator-label {
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--cs-gray-80);
  font-weight: 400;
}
.gc-offer-rotator-stage {
  position: relative;
  height: 56px;
  flex: 1 1 auto;
  overflow: hidden;
}
.gc-offer-chip {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px 0 8px;
  height: 48px;
  border-radius: 999px;
  background: white;
  border: 1.5px solid;
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 380ms ease, transform 380ms ease;
}
.gc-offer-chip.active { opacity: 1; transform: translateY(0); }
.gc-offer-chip.exiting { opacity: 0; transform: translateY(-20px); }
.gc-offer-chip .gc-offer-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
}

/* ---------- 3D gift box (right column) ---------- */
.gc-gift-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  perspective: 1200px;
  display: grid;
  place-items: center;
}
.gc-gift-stage::before {
  content: "";
  position: absolute;
  inset: 12% 12% 8% 12%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(48,133,255,0.25), transparent 70%);
  z-index: 0;
  filter: blur(6px);
}
.gc-gift {
  position: relative;
  width: 62%;
  aspect-ratio: 1 / 1;
  transform-style: preserve-3d;
  animation: giftBob 5s ease-in-out infinite;
  z-index: 1;
}
@keyframes giftBob {
  0%, 100% { transform: rotateX(8deg) rotateY(-12deg) translateY(0); }
  50% { transform: rotateX(8deg) rotateY(-12deg) translateY(-12px); }
}
.gc-gift-face {
  position: absolute;
  inset: 0;
}
.gc-gift-box {
  position: absolute;
  inset: 30% 0 0 0;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--cs-primary-60) 0%, var(--cs-primary-80) 100%);
  box-shadow:
    inset 0 -20px 40px rgba(0,0,0,0.18),
    inset 16px 0 30px rgba(255,255,255,0.12),
    0 24px 60px rgba(0,63,170,0.35);
}
.gc-gift-box::after {
  /* vertical ribbon front */
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 14%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--cs-warning-60), var(--cs-warning-80));
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.04);
}
.gc-gift-lid {
  position: absolute;
  top: 22%;
  left: -3%;
  right: -3%;
  height: 18%;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--cs-primary-40) 0%, var(--cs-primary-60) 100%);
  box-shadow:
    0 12px 24px rgba(0,63,170,0.3),
    inset 0 -8px 18px rgba(0,0,0,0.18);
  z-index: 2;
}
.gc-gift-lid::before {
  /* horizontal ribbon on lid */
  content: "";
  position: absolute;
  inset: 0 -3% 0 -3%;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 14%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--cs-warning-40), var(--cs-warning-60));
}
.gc-gift-bow {
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  width: 38%;
  aspect-ratio: 2 / 1;
  z-index: 3;
}
.gc-gift-bow svg { width: 100%; height: 100%; display: block; }

/* Floating mini-cards around gift */
.gc-float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 16px 40px rgba(4,4,15,0.14);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  color: var(--gc-ink);
  z-index: 4;
  animation: floatY 4s ease-in-out infinite;
}
.gc-float-card .ico {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
}
.gc-float-card.fc-1 { top: 10%; left: -4%; animation-delay: 0s; }
.gc-float-card.fc-2 { top: 38%; right: -8%; animation-delay: -1.5s; }
.gc-float-card.fc-3 { bottom: 6%; left: 4%; animation-delay: -2.8s; }
.gc-float-card .label-sm { color: var(--cs-gray-60); font-weight: 400; font-size: 11px; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Decorative sparkles */
.gc-spark {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 1;
  opacity: 0.85;
}
.gc-spark.s1 { top: 8%;  right: 18%; }
.gc-spark.s2 { top: 30%; right: 8%;  width: 14px; height: 14px; }
.gc-spark.s3 { bottom: 18%; left: 12%; width: 22px; height: 22px; }
.gc-spark.s4 { top: 64%; right: 22%; width: 10px; height: 10px; }
.gc-spark svg { width: 100%; height: 100%; }
.gc-spark.spin svg { animation: spin 6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- CATALOG ---------- */
.gc-section {
  padding: 120px 0;
  position: relative;
}
.gc-section.tinted {
  background: var(--gc-surface);
}
.gc-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.gc-section-head .left { max-width: 720px; }
.gc-section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cs-primary-60);
  margin-bottom: 12px;
}
.gc-section h2 {
  font-family: var(--cs-font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--gc-ink);
  margin: 0 0 16px;
  text-wrap: balance;
}
.gc-section-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--cs-gray-80);
  text-wrap: pretty;
  max-width: 640px;
}

.gc-arrow-btns {
  display: flex;
  gap: 8px;
}
.gc-arrow-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: white;
  border: 1.5px solid var(--cs-gray-20);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--gc-ink);
  transition: all 160ms ease;
}
.gc-arrow-btn:hover:not(:disabled) {
  border-color: var(--cs-primary-60);
  color: var(--cs-primary-60);
  transform: translateY(-2px);
}
.gc-arrow-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Filter chips */
.gc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.gc-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: white;
  border: 1.5px solid var(--cs-gray-20);
  font-size: 14px;
  font-weight: 500;
  color: var(--cs-gray-80);
  cursor: pointer;
  transition: all 140ms ease;
  white-space: nowrap;
}
.gc-filter:hover {
  border-color: var(--cs-gray-40);
  color: var(--gc-ink);
}
.gc-filter.active {
  background: var(--gc-ink);
  color: white;
  border-color: var(--gc-ink);
}
.gc-filter .count {
  font-size: 12px;
  opacity: 0.6;
  font-variant-numeric: tabular-nums;
}

/* Catalog rail (snap-scroll) */
.gc-rail {
  position: relative;
  margin: 0 -32px;
}
.gc-rail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 360px);
  gap: 20px;
  padding: 12px 32px 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.gc-rail-track::-webkit-scrollbar { display: none; }

.gc-cat-card {
  scroll-snap-align: start;
  background: white;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--cs-gray-20);
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
  min-height: 420px;
}
.gc-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(4,4,15,0.10);
}
.gc-cat-card-tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--cs-warning-10);
  color: var(--cs-warning-80);
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}
.gc-cat-card h3 {
  font-family: var(--cs-font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--gc-ink);
}
.gc-cat-card p {
  font-size: 14px;
  line-height: 20px;
  color: var(--cs-gray-60);
  margin: 0;
}
.gc-cat-card-illu {
  margin-top: auto;
  height: 180px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.gc-cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cs-primary-60);
}
.gc-cat-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gc-cat-card-count {
  font-size: 13px;
  color: var(--cs-gray-60);
}

/* ---------- PARTNERS / MARQUEE ---------- */
.gc-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  padding: 24px 0;
  border-top: 1px solid var(--cs-gray-20);
  border-bottom: 1px solid var(--cs-gray-20);
}
.gc-marquee::before, .gc-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.gc-marquee::before { left: 0; background: linear-gradient(90deg, var(--gc-surface), transparent); }
.gc-marquee::after { right: 0; background: linear-gradient(-90deg, var(--gc-surface), transparent); }
.gc-marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.gc-marquee:hover .gc-marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.gc-partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  font-size: 22px;
  font-weight: 700;
  color: var(--cs-gray-60);
  font-family: var(--cs-font-display);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.gc-partner svg { flex-shrink: 0; }

/* Stats bar */
.gc-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  background: white;
  border-radius: 24px;
  border: 1px solid var(--cs-gray-20);
  overflow: hidden;
}
.gc-stat-cell {
  padding: 32px;
  border-right: 1px solid var(--cs-gray-20);
}
.gc-stat-cell:last-child { border-right: none; }
.gc-stat-cell-num {
  font-family: var(--cs-font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--gc-ink);
  margin-bottom: 8px;
}
.gc-stat-cell-num .unit { color: var(--cs-primary-60); }
.gc-stat-cell-label {
  font-size: 14px;
  color: var(--cs-gray-60);
  line-height: 18px;
}

/* ---------- BLOG ---------- */
.gc-blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.gc-blog-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--cs-gray-20);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.gc-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(4,4,15,0.08);
}
.gc-blog-card.featured {
  grid-row: span 2;
}
.gc-blog-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.gc-blog-card.featured .gc-blog-cover {
  aspect-ratio: 16 / 11;
}
.gc-blog-cover-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
.gc-blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: var(--gc-ink);
  z-index: 2;
}
.gc-blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.gc-blog-card.featured .gc-blog-body {
  padding: 32px;
  gap: 16px;
}
.gc-blog-meta {
  font-size: 12px;
  color: var(--cs-gray-60);
  display: flex;
  gap: 12px;
  align-items: center;
}
.gc-blog-meta .dot {
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--cs-gray-30);
}
.gc-blog-card h3 {
  font-family: var(--cs-font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gc-ink);
  margin: 0;
  text-wrap: pretty;
}
.gc-blog-card.featured h3 {
  font-size: 30px;
  line-height: 1.1;
}
.gc-blog-card p {
  font-size: 14px;
  line-height: 20px;
  color: var(--cs-gray-60);
  margin: 0;
}
.gc-blog-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  height: 40px;
  padding: 0 16px;
  background: var(--cs-gray-10);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gc-ink);
  width: fit-content;
  border: none;
  cursor: pointer;
  transition: background 140ms ease;
}
.gc-blog-more:hover {
  background: var(--cs-primary-60);
  color: white;
}

/* ---------- FOOTER ---------- */
.gc-footer {
  background: var(--gc-ink);
  color: white;
  padding: 80px 0 32px;
}
.gc-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.gc-footer h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
}
.gc-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.gc-footer ul a { font-size: 15px; color: rgba(255,255,255,0.85); }
.gc-footer ul a:hover { color: white; }
.gc-footer .gc-logo { color: white; margin-bottom: 16px; }
.gc-footer-tag {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 22px;
  max-width: 300px;
  margin-bottom: 24px;
}
.gc-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---------- COOKIE BANNER ---------- */
.gc-cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--cs-gray-20);
  box-shadow: 0 24px 64px rgba(4,4,15,0.18);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  z-index: 100;
  animation: cookieIn 360ms cubic-bezier(.2,.8,.2,1) 800ms backwards;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.gc-cookie-icon {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cs-warning-10);
  display: grid; place-items: center;
  font-size: 22px;
}
.gc-cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 20px;
  color: var(--cs-gray-80);
}
.gc-cookie-text a {
  color: var(--cs-primary-60);
  text-decoration: underline;
}
.gc-cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .gc-container { padding: 0 20px; }
  .gc-nav { display: none; }
  .gc-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .gc-hero { padding: 56px 0 80px; }
  .gc-section { padding: 80px 0; }
  .gc-section-head { flex-direction: column; align-items: flex-start; }
  .gc-blog-grid { grid-template-columns: 1fr; }
  .gc-blog-card.featured { grid-row: auto; }
  .gc-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gc-stat-grid { grid-template-columns: 1fr 1fr; }
  .gc-stat-cell { border-right: none; border-bottom: 1px solid var(--cs-gray-20); }
  .gc-stat-cell:nth-child(2n) { border-right: none; }
  .gc-cookie { flex-direction: column; align-items: flex-start; }
}
