/* ==========================================================================
   AeroGo - Y2K Frutiger Aero
   Sky gradients, aqua glass, glossy lime-green buttons, bubbles, soft bloom.
   ========================================================================== */

:root {
  --sky-top: #aee9ff;
  --sky-mid: #d7f4ff;
  --sky-low: #eefaff;
  --sky-bottom: #ffffff;

  --aqua: #33c9ff;
  --aqua-bright: #6fe0ff;
  --aqua-deep: #0d8fd6;
  --aqua-ink: #0a5f8f;

  --lime: #8fe04a;
  --lime-bright: #c2f77e;
  --lime-deep: #4fae1f;

  --ink: #123b4d;
  --ink-soft: #2b5c70;
  --muted: #5f8393;

  --glass: rgba(255, 255, 255, 0.5);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-line: rgba(120, 200, 235, 0.35);

  --mystic: #3f8bff;
  --valor: #ff5a52;
  --instinct: #f7c531;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 45px -20px rgba(20, 110, 160, 0.55);
  --shadow-glow: 0 0 40px rgba(90, 210, 255, 0.35);

  --font-head: "Rubik", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  background:
    radial-gradient(150% 90% at 78% -8%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 42%),
    radial-gradient(120% 80% at 12% 8%, rgba(143,224,74,0.16) 0%, rgba(143,224,74,0) 46%),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 26%, var(--sky-low) 58%, var(--sky-bottom) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Soft sun bloom fixed in the corner */
body::before {
  content: "";
  position: fixed;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(191,247,126,0.35) 32%, rgba(255,255,255,0) 68%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

/* Floating clouds band */
body::after {
  content: "";
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 46vh;
  background:
    radial-gradient(60px 30px at 15% 90%, rgba(255,255,255,0.85), rgba(255,255,255,0) 70%),
    radial-gradient(90px 42px at 32% 96%, rgba(255,255,255,0.7), rgba(255,255,255,0) 72%),
    radial-gradient(70px 34px at 68% 92%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%),
    radial-gradient(110px 50px at 86% 98%, rgba(255,255,255,0.65), rgba(255,255,255,0) 72%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--aqua-deep); text-decoration: none; }

/* ------- Rising bubbles field (decorative) ------- */
.bubbles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bubble {
  position: absolute;
  bottom: -140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.15) 24%, rgba(120,214,255,0.28) 62%, rgba(90,180,230,0.12) 100%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: inset -4px -6px 12px rgba(70,170,220,0.25), 0 0 18px rgba(120,220,255,0.35);
  animation: rise linear infinite;
}
.bubble::after {
  content: "";
  position: absolute;
  top: 16%; left: 22%;
  width: 26%; height: 26%;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  filter: blur(1px);
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translateY(-52vh) translateX(24px) scale(1); }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-108vh) translateX(-14px) scale(1.1); opacity: 0; }
}

/* Page wrapper keeps content above the sky decorations */
.page { position: relative; z-index: 2; }
.wrap { width: min(1120px, 92vw); margin: 0 auto; }

/* ==========================  GLASS PANEL  ========================== */
.glass {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.66) 0%, rgba(255,255,255,0.32) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  overflow: hidden;
}
/* top sheen line on glass */
.glass::before {
  content: "";
  position: absolute;
  top: 0; left: 6%; right: 6%;
  height: 42%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0));
  border-radius: 999px;
  pointer-events: none;
}

/* ==========================  HEADER / NAV  ========================== */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  padding: 0 4vw;
  margin-top: 14px;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  z-index: 1;
}
.brand-orb {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: 0 0 auto;
}
.brand-name { background: linear-gradient(180deg, var(--aqua-deep), var(--aqua-ink)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  z-index: 1;
}
.nav-links a {
  position: relative;
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.nav-links a:hover { background: rgba(255,255,255,0.55); color: var(--aqua-deep); transform: translateY(-1px); }
.nav-links a.active {
  color: #fff;
  background: linear-gradient(180deg, var(--aqua-bright), var(--aqua) 52%, var(--aqua-deep));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 6px 14px -6px rgba(13,143,214,0.7);
}

/* ==========================  GLOSSY BUTTONS  ========================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 13px 26px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 2px 3px 46% 3px;
  border-radius: 999px 999px 44px 44px / 999px 999px 24px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.12));
  pointer-events: none;
}
.btn:hover { transform: translateY(-2px); filter: saturate(1.12) brightness(1.03); }
.btn:active { transform: translateY(0) scale(0.985); }

.btn-lime {
  color: #24560e;
  background: linear-gradient(180deg, var(--lime-bright) 0%, var(--lime) 50%, var(--lime-deep) 51%, #7fd94b 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 10px 24px -8px rgba(90,200,60,0.75), var(--shadow-glow);
}
.btn-aqua {
  color: #063a5a;
  background: linear-gradient(180deg, var(--aqua-bright) 0%, var(--aqua) 50%, var(--aqua-deep) 51%, #3bb4ea 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 10px 24px -8px rgba(13,143,214,0.7);
}
.btn-ghost {
  color: var(--aqua-deep);
  background: rgba(255,255,255,0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.btn-ghost::before { inset: 2px 3px 56% 3px; background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0)); }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn:disabled, .btn.is-disabled {
  cursor: not-allowed;
  filter: grayscale(0.55) opacity(0.7);
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.btn:disabled:hover, .btn.is-disabled:hover { transform: none; filter: grayscale(0.55) opacity(0.7); }

.nav-cta { padding: 11px 20px; font-size: 14px; }

/* ==========================  HERO  ========================== */
.hero {
  position: relative;
  padding: 78px 0 64px;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aqua-ink);
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 22px 0 0;
  color: var(--ink);
  text-shadow: 0 2px 0 rgba(255,255,255,0.6), 0 20px 40px rgba(90,180,230,0.25);
}
.hero h1 .shine {
  background: linear-gradient(180deg, #6fe0ff 0%, var(--aqua) 40%, var(--aqua-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .tagline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(19px, 2.6vw, 26px);
  color: var(--ink-soft);
  margin: 16px auto 0;
  max-width: 620px;
}
.hero .lead {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
}
.hero-cta {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badges {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
}
.chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); }

/* Floating aero glass droplet next to hero */
.hero-orbit {
  position: relative;
  margin: 46px auto 0;
  width: min(560px, 90vw);
  height: 172px;
}
.orbit-drop {
  position: absolute;
  border-radius: 58% 42% 55% 45% / 55% 48% 52% 45%;
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,0.95), rgba(255,255,255,0.1) 30%, rgba(120,214,255,0.4) 66%, rgba(60,160,215,0.25) 100%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: inset -6px -8px 18px rgba(60,160,215,0.35), 0 12px 30px -8px rgba(60,170,220,0.55);
  display: grid;
  place-items: center;
  animation: bob 6s ease-in-out infinite;
}
.orbit-drop img {
  width: 52%;
  height: 52%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
}
.orbit-drop:nth-child(1) { left: 4%;  top: 30px; width: 96px;  height: 96px;  animation-delay: 0s; }
.orbit-drop:nth-child(2) { left: 34%; top: 0;    width: 128px; height: 128px; animation-delay: -1.5s; }
.orbit-drop:nth-child(3) { left: 63%; top: 40px; width: 84px;  height: 84px;  animation-delay: -3s; }
.orbit-drop:nth-child(4) { left: 82%; top: 12px; width: 108px; height: 108px; animation-delay: -4.2s; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-16px) rotate(2deg); } }

/* ==========================  SECTION SHELL  ========================== */
.section { padding: 40px 0 20px; }
.section-head { text-align: center; margin: 0 auto 34px; max-width: 640px; }
.section-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 42px);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.section-head p { color: var(--muted); margin: 10px 0 0; }
.kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-bottom: 8px;
}

/* ==========================  SERVICES GRID  ========================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}
.service-card {
  padding: 24px 22px 22px;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft), var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.9); }
.service-icon {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 18px;
  margin-bottom: 16px;
  background: linear-gradient(165deg, rgba(255,255,255,0.85), rgba(180,235,255,0.55));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 6px 14px -6px rgba(60,170,220,0.5);
}
.service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}
.service-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin: 0 0 8px; color: var(--ink); }
.service-card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }

/* ==========================  HOW / WHY STRIP  ========================== */
.why {
  margin-top: 34px;
  padding: 34px clamp(22px, 4vw, 44px);
  border-radius: var(--radius);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 26px;
}
.why-step { position: relative; z-index: 1; }
.why-num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
  background: linear-gradient(180deg, var(--aqua-bright), var(--aqua) 52%, var(--aqua-deep));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 8px 16px -6px rgba(13,143,214,0.6);
}
.why-step h4 { font-family: var(--font-head); margin: 0 0 6px; font-size: 18px; color: var(--ink); }
.why-step p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ==========================  TESTIMONIALS  ========================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 4px;
}
.quote { padding: 24px 22px; border-radius: var(--radius); }
.quote .stars { color: var(--instinct); font-size: 15px; letter-spacing: 2px; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15)); }
.quote p { font-size: 16px; color: var(--ink); margin: 12px 0 16px; line-height: 1.55; }
.quote .who { display: flex; align-items: center; gap: 11px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px;
  background: linear-gradient(165deg, rgba(255,255,255,0.9), rgba(180,235,255,0.6));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
}
.who b { font-family: var(--font-head); color: var(--ink); font-size: 15px; display: block; }
.who span { color: var(--muted); font-size: 13px; }
.placeholder-note {
  text-align: center;
  margin: 18px auto 0;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ==========================  RAIDS  ========================== */
.raid-layout { display: grid; grid-template-columns: 300px 1fr; gap: 22px; align-items: start; }
.boss-panel { padding: 20px; border-radius: var(--radius); }
.boss-panel h3 { font-family: var(--font-head); margin: 2px 0 14px; font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--aqua-deep); }
.boss-list { display: flex; flex-direction: column; gap: 10px; }
.boss-btn {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  cursor: pointer;
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.18s ease, background 0.18s ease;
  font-family: var(--font-body);
  z-index: 1;
}
.boss-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.62); }
.boss-btn .b-thumb {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(165deg, rgba(255,255,255,0.85), rgba(180,235,255,0.5));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
}
.boss-btn .b-thumb img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.boss-btn .b-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink); line-height: 1.15; }
.boss-btn .b-tier { font-size: 12px; font-weight: 700; color: var(--muted); }
.boss-btn.active {
  background: linear-gradient(180deg, rgba(198,247,126,0.7), rgba(143,224,74,0.5));
  border-color: rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 8px 18px -8px rgba(90,200,60,0.7);
}
.boss-btn.active .b-tier { color: var(--lime-deep); }

.counter-panel { padding: 24px clamp(18px, 3vw, 30px); border-radius: var(--radius); min-height: 420px; }
.counter-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-bottom: 18px; border-bottom: 1px solid var(--glass-line); margin-bottom: 6px; }
.boss-art-wrap {
  width: 70px; height: 70px;
  display: grid; place-items: center;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255,255,255,0.85), rgba(180,235,255,0.5));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 6px 14px -6px rgba(60,170,220,0.5);
  overflow: hidden;
  flex: 0 0 auto;
}
.boss-art {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
}
.type-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  flex-shrink: 0;
}
.type-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.03em;
  padding: 4px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.6); color: var(--aqua-ink);
  border: 1px solid var(--glass-border);
}
.counter-head h3 { font-family: var(--font-head); font-weight: 800; font-size: 28px; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
.counter-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.cp-tag { font-size: 12px; font-weight: 800; padding: 4px 11px; border-radius: 999px; color: var(--lime-deep); background: rgba(143,224,74,0.22); border: 1px solid rgba(143,224,74,0.5); }

.counter-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.counter-row {
  display: grid;
  grid-template-columns: 34px 1.4fr 1.6fr 120px;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform 0.15s ease, background 0.18s ease;
}
.counter-row:hover { transform: translateX(3px); background: rgba(255,255,255,0.62); }
.counter-row .rank { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--aqua-deep); text-align: center; }
.counter-row .c-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink); }
.counter-row .c-type {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(51,201,255,0.16);
  color: var(--aqua-ink);
}
.counter-row .c-type .type-icon { margin-right: 0; }
.counter-row .c-move { font-size: 14px; color: var(--ink-soft); }
.rating-cell { display: flex; align-items: center; gap: 9px; }
.rating-bar { flex: 1; height: 10px; border-radius: 999px; background: rgba(120,190,225,0.25); overflow: hidden; box-shadow: inset 0 1px 2px rgba(60,140,190,0.35); }
.rating-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aqua-bright), var(--aqua) 55%, var(--lime));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.rating-num { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--ink); min-width: 26px; text-align: right; }

.col-head { display: grid; grid-template-columns: 34px 1.4fr 1.6fr 120px; gap: 14px; padding: 0 16px; margin-top: 6px; }
.col-head span { font-size: 11px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); }
.col-head span:last-child { text-align: center; }

/* ==========================  FRIENDS  ========================== */
.friends-note {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.5); border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  font-weight: 700; font-size: 14.5px; color: var(--aqua-ink);
  width: fit-content; max-width: 100%;
  margin: 0 auto 26px;
}
.friends-note .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); flex: 0 0 auto; }

.friends-layout { display: grid; grid-template-columns: 340px 1fr; gap: 22px; align-items: start; }
.add-panel { padding: 24px; border-radius: var(--radius); position: sticky; top: 92px; }
.add-panel h3 { font-family: var(--font-head); font-weight: 800; font-size: 21px; margin: 0 0 4px; color: var(--ink); }
.add-panel .sub { margin: 0 0 18px; font-size: 14px; color: var(--muted); }
.field { margin-bottom: 14px; position: relative; z-index: 1; }
.field label { display: block; font-weight: 800; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(120,200,235,0.55);
  background: rgba(255,255,255,0.78);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: inset 0 2px 4px rgba(60,140,190,0.12);
  transition: border 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: inset 0 2px 4px rgba(60,140,190,0.12), 0 0 0 4px rgba(51,201,255,0.22);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.add-panel .btn { width: 100%; margin-top: 6px; }
.form-msg { margin: 12px 0 0; font-size: 13.5px; font-weight: 700; color: var(--lime-deep); min-height: 18px; text-align: center; }

.friends-count { font-size: 14px; font-weight: 700; color: var(--muted); margin: 0 0 14px; padding-left: 4px; }
.friends-list { display: flex; flex-direction: column; gap: 12px; }
.friend-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
}
.friend-card.mine { border-color: rgba(143,224,74,0.7); box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.9), 0 0 0 2px rgba(143,224,74,0.35); }
.f-team {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  flex: 0 0 auto;
}
.team-svg { display: block; }
.f-team.mystic { background: linear-gradient(180deg, #6facff, var(--mystic)); }
.f-team.valor { background: linear-gradient(180deg, #ff8078, var(--valor)); }
.f-team.instinct { background: linear-gradient(180deg, #ffe07a, var(--instinct)); color: #7a5a00; }
.f-main { min-width: 0; }
.f-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.f-name { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--ink); }
.badge {
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
  border: 1px solid var(--glass-border);
}
.badge.mystic { background: rgba(63,139,255,0.16); color: #2a63c9; }
.badge.valor { background: rgba(255,90,82,0.16); color: #c93a34; }
.badge.instinct { background: rgba(247,197,49,0.2); color: #9a7500; }
.badge.mine { background: rgba(143,224,74,0.22); color: var(--lime-deep); }
.badge.lvl { background: rgba(255,255,255,0.6); color: var(--ink-soft); }
.f-code { font-family: "Rubik", monospace; font-weight: 600; letter-spacing: 0.08em; font-size: 17px; color: var(--aqua-deep); margin-top: 6px; }
.f-time { font-size: 13px; color: var(--muted); margin-top: 3px; font-weight: 600; }
.f-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.cooldown-note { font-size: 11.5px; font-weight: 700; color: var(--muted); text-align: right; max-width: 120px; line-height: 1.3; }
.btn-bump { padding: 10px 20px; font-size: 14px; }

/* ==========================  BLOG  ========================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.blog-card {
  border-radius: var(--radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft), var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.9);
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.blog-card-cover {
  position: relative;
  height: 168px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(180,235,255,0.6), rgba(51,201,255,0.25));
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}
.blog-card:hover .blog-card-cover img { transform: scale(1.06); }
.cover-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 42%, rgba(255,255,255,0.25) 100%);
  pointer-events: none;
}
.blog-card-cover-empty {
  display: grid;
  place-items: center;
}
.cover-fallback { opacity: 0.7; }
.blog-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-bottom: 10px;
}
.blog-category {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(143,224,74,0.2);
  color: var(--lime-deep);
  border: 1px solid rgba(143,224,74,0.45);
}
.blog-read { color: var(--muted); }
.blog-card h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(19px, 2.4vw, 22px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.2;
}
.blog-excerpt {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.blog-card-cta {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--aqua-deep);
}
.blog-empty {
  grid-column: 1 / -1;
  padding: 48px clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.blog-empty h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 32px);
  margin: 8px 0 12px;
  color: var(--ink);
}
.blog-empty p { color: var(--ink-soft); margin: 0 0 18px; }

/* Single post page */
.post-page { padding-top: 28px; }
.post-back { margin: 0 0 20px; }
.post-back a {
  font-weight: 800;
  font-size: 14px;
  color: var(--aqua-deep);
}
.post-article {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}
.post-cover {
  position: relative;
  height: clamp(200px, 32vw, 320px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(180,235,255,0.6), rgba(51,201,255,0.25));
}
.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.post-header {
  padding: 28px clamp(24px, 4vw, 44px) 0;
}
.post-header h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.12;
}
.post-author {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}
.post-body {
  padding: 20px clamp(24px, 4vw, 44px) 36px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}
.post-body h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  margin: 28px 0 12px;
}
.post-body p { margin: 0 0 14px; }
.post-body ul {
  margin: 0 0 16px;
  padding-left: 1.4em;
}
.post-body li { margin-bottom: 8px; }

/* Related articles */
.related-section {
  max-width: 1120px;
  margin: 48px auto 0;
  padding-top: 12px;
}
.related-head {
  text-align: center;
  margin-bottom: 28px;
}
.related-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 34px);
  margin: 6px 0 0;
  color: var(--ink);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

/* ==========================  FOOTER  ========================== */
.site-footer { margin: 60px 0 26px; padding: 0 4vw; position: relative; z-index: 2; }
.footer-inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 30px clamp(22px, 4vw, 40px);
  border-radius: var(--radius);
  text-align: center;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--ink); }
.footer-tag { color: var(--ink-soft); font-weight: 600; margin: 6px 0 16px; }
.footer-cap {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(143,224,74,0.18); border: 1px solid rgba(143,224,74,0.45);
  font-weight: 800; font-size: 14px; color: var(--lime-deep);
  margin-bottom: 16px;
}
.footer-disclaimer { max-width: 620px; margin: 0 auto; font-size: 13px; line-height: 1.6; color: var(--muted); }
.footer-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 16px 0 4px; }
.footer-links a { font-weight: 700; font-size: 14px; color: var(--ink-soft); }
.footer-links a:hover { color: var(--aqua-deep); }

/* ==========================  RESPONSIVE  ========================== */
@media (max-width: 880px) {
  .raid-layout { grid-template-columns: 1fr; }
  .friends-layout { grid-template-columns: 1fr; }
  .add-panel { position: static; }
  .boss-list { flex-direction: row; flex-wrap: wrap; }
  .boss-btn { width: auto; flex: 1 1 140px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .counter-row { grid-template-columns: 28px 1fr; row-gap: 8px; }
  .counter-row .c-move { grid-column: 2; }
  .counter-row .rating-cell { grid-column: 1 / -1; }
  .col-head { display: none; }
  .friend-card { grid-template-columns: 46px 1fr; }
  .f-actions { grid-column: 2; align-items: flex-start; flex-direction: row; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .nav-cta { padding: 10px 15px; }
  .field-row { grid-template-columns: 1fr; }
}
