/* Celebrat v2 — dark cyan-glow stylesheet. Lifted verbatim (plain selectors) from the
   Astro /v2/ V2Layout global styles + homepage styles. Visual parity with celebrat.id/v2. */

:root {
  --v2-bg: #06080b;
  --v2-bg-2: #0a0e13;
  --v2-panel: #0e131a;
  --v2-panel-2: #131b24;
  --v2-line: rgba(255,255,255,0.08);
  --v2-line-strong: rgba(120,225,245,0.30);
  --v2-cyan: #1bceea;
  --v2-cyan-soft: #5ddef0;
  --v2-cyan-deep: #0b6c80;
  --v2-text: #eef3f7;
  --v2-muted: #98a6b4;
  --v2-faint: #5a6675;
  --v2-shell: 1200px;
}
* { box-sizing: border-box; }
html { background: var(--v2-bg); scroll-behavior: smooth; }
body { background: var(--v2-bg); color: var(--v2-text); font-family: 'Open Sans','Open Sans Fallback',system-ui,sans-serif; margin: 0; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
.v2-shell { max-width: var(--v2-shell); margin: 0 auto; padding: 0 24px; }
h1,h2,h3,h4,.v2-display { font-family: 'Quicksand','Quicksand Fallback',system-ui,sans-serif; }
a { color: inherit; }

.v2-skip { position: absolute; left: -999px; top: 0; background: var(--v2-cyan); color: #04222a; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 80; font-weight: 700; }
.v2-skip:focus { left: 0; }

/* ── Header ── */
.v2-header { position: fixed; inset: 0 0 auto 0; z-index: 60; transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease; border-bottom: 1px solid transparent; }
.v2-header.is-scrolled { background: rgba(6,8,11,.72); backdrop-filter: blur(14px); border-bottom-color: var(--v2-line); }
.v2-header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.v2-logo img { height: 26px; width: auto; display: block; }
.v2-nav { display: flex; gap: 28px; margin-left: 12px; }
.v2-nav a { color: var(--v2-muted); text-decoration: none; font-size: 15px; font-weight: 600; letter-spacing: .01em; transition: color .2s ease; position: relative; }
.v2-nav a:hover { color: var(--v2-text); }
.v2-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--v2-cyan); box-shadow: 0 0 10px var(--v2-cyan); transition: right .25s ease; }
.v2-nav a:hover::after { right: 0; }
.v2-pill { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; background: var(--v2-cyan); color: #04222a; font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 999px; text-decoration: none; box-shadow: 0 0 0 1px rgba(120,225,245,.4), 0 8px 26px -8px rgba(27,206,234,.7); transition: transform .15s ease, box-shadow .25s ease; }
.v2-pill:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(120,225,245,.6), 0 12px 30px -8px rgba(27,206,234,.9); }
.v2-icons { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.v2-icons a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--v2-muted); transition: color .2s ease, background .2s ease, box-shadow .25s ease; }
.v2-icons a:hover { color: var(--v2-cyan); background: rgba(27,206,234,.12); }
.v2-icons a.is-wa { color: #04222a; background: var(--v2-cyan); box-shadow: 0 0 0 1px rgba(120,225,245,.4), 0 6px 18px -6px rgba(27,206,234,.7); }
.v2-icons a.is-wa:hover { background: var(--v2-cyan-soft); color: #04222a; }
.v2-burger { display: none; margin-left: 8px; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.v2-burger span { width: 24px; height: 2px; background: var(--v2-text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.v2-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-burger.is-open span:nth-child(2) { opacity: 0; }
.v2-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.v2-drawer { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 22px; background: rgba(6,8,11,.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--v2-line); }
.v2-drawer:not([hidden]) { display: flex; }
.v2-drawer a { color: var(--v2-text); text-decoration: none; font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--v2-line); }
.v2-pill-full { justify-content: center; margin-top: 12px; }

/* ── Shared components ── */
.v2-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--v2-cyan-soft); }
.v2-eyebrow::before { content: ''; width: 22px; height: 1px; background: linear-gradient(90deg, transparent, var(--v2-cyan)); }
.v2-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 15px; padding: 14px 26px; border-radius: 999px; text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease; border: 1px solid transparent; }
.v2-btn-primary { background: var(--v2-cyan); color: #04222a; box-shadow: 0 0 0 1px rgba(120,225,245,.45), 0 10px 34px -10px rgba(27,206,234,.8); }
.v2-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(120,225,245,.7), 0 16px 40px -10px rgba(27,206,234,1); }
.v2-btn-ghost { background: rgba(255,255,255,.03); color: var(--v2-text); border-color: var(--v2-line-strong); }
.v2-btn-ghost:hover { transform: translateY(-2px); border-color: var(--v2-cyan); box-shadow: 0 0 26px -8px rgba(27,206,234,.5); }
.v2-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--v2-muted); background: rgba(255,255,255,.04); border: 1px solid var(--v2-line); padding: 7px 14px; border-radius: 999px; }
.v2-chip b { color: var(--v2-text); }
.v2-card { position: relative; background: linear-gradient(180deg, var(--v2-panel-2), var(--v2-panel)); border: 1px solid var(--v2-line); border-radius: 18px; overflow: hidden; transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s ease, box-shadow .3s ease; }
.v2-card:hover { transform: translateY(-6px); border-color: var(--v2-line-strong); box-shadow: 0 24px 50px -24px rgba(0,0,0,.8), 0 0 40px -16px rgba(27,206,234,.5); }
.v2-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(120% 60% at 50% 0%, rgba(27,206,234,.10), transparent 60%); opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.v2-card:hover::after { opacity: 1; }
.v2-section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }

/* ── Reveal ── */
.v2-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.v2-reveal.is-in { opacity: 1; transform: none; }
.v2-reveal[data-d="1"] { transition-delay: .08s; }
.v2-reveal[data-d="2"] { transition-delay: .16s; }
.v2-reveal[data-d="3"] { transition-delay: .24s; }
.v2-reveal[data-d="4"] { transition-delay: .32s; }

/* ── Footer ── */
.v2-footer { border-top: 1px solid var(--v2-line); background: linear-gradient(180deg, var(--v2-bg), #04060a); padding: 64px 0 40px; margin-top: 40px; }
.v2-foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.v2-foot-brand img { height: 30px; margin-bottom: 16px; }
.v2-foot-brand p { color: var(--v2-muted); margin: 4px 0; max-width: 32ch; }
.v2-footer h4 { color: var(--v2-text); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.v2-footer a { display: block; color: var(--v2-muted); text-decoration: none; padding: 6px 0; transition: color .2s ease; }
.v2-footer a:hover { color: var(--v2-cyan-soft); }
.v2-foot-faint { color: var(--v2-faint) !important; font-size: 13px; }
.v2-foot-bar { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--v2-line); font-size: 13px; color: var(--v2-faint); }
.v2-foot-meta { font-size: 14px; color: var(--v2-muted); margin: 14px 0 0; }
.v2-foot-meta span { display: block; color: var(--v2-faint); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 3px; }
.v2-foot-meta a { display: inline; padding: 0; color: var(--v2-cyan-soft); }
.v2-foot-social { display: flex; gap: 10px; margin-top: 14px; }
.v2-foot-social a { width: 40px; height: 40px; display: grid; place-items: center; padding: 0; border-radius: 10px; border: 1px solid var(--v2-line); color: var(--v2-muted); transition: color .2s ease, border-color .2s ease; }
.v2-foot-social a:hover { color: var(--v2-cyan); border-color: var(--v2-cyan); }

/* ── FAB ── */
.v2-fab { position: fixed; right: 22px; bottom: 22px; z-index: 55; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--v2-cyan); color: #04222a; box-shadow: 0 0 0 1px rgba(120,225,245,.5), 0 12px 30px -8px rgba(27,206,234,.8); transition: transform .15s ease, box-shadow .25s ease; }
.v2-fab:hover { transform: scale(1.06); box-shadow: 0 0 0 1px rgba(120,225,245,.8), 0 16px 38px -8px rgba(27,206,234,1); }

/* ── Keyframes ── */
@keyframes v2-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes v2-glow { 0%,100% { opacity: .55; transform: scale(1); } 50% { opacity: .9; transform: scale(1.06); } }
@keyframes v2-grid { from { transform: translateY(0); } to { transform: translateY(46px); } }

/* ════════ HOMEPAGE ════════ */
.glow { color: var(--v2-cyan); text-shadow: 0 0 28px rgba(27,206,234,.55), 0 0 6px rgba(27,206,234,.4); }
.h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin: 12px 0 0; }
.head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.head-link { color: var(--v2-cyan-soft); text-decoration: none; font-weight: 700; white-space: nowrap; }
.head-link:hover { text-shadow: 0 0 16px rgba(27,206,234,.6); }
.pt0 { padding-top: 0; }

.hero { position: relative; min-height: 86vh; display: flex; align-items: center; padding: 110px 0 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(58% 65% at 76% 42%, rgba(27,206,234,.18), transparent 68%); }
.hero-grid-bg { position: absolute; inset: -2px; background-image: linear-gradient(rgba(27,206,234,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(27,206,234,.05) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 75% 70% at 70% 35%, #000, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 75% 70% at 70% 35%, #000, transparent 75%); }
.hero-wrap { position: relative; width: 100%; }
.hslides { position: relative; min-height: 480px; }
.hslide { position: absolute; inset: 0; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .6s ease; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.hslide.is-active { position: relative; opacity: 1; visibility: visible; pointer-events: auto; }
.hero-h1 { font-size: clamp(40px, 6.5vw, 76px); font-weight: 700; line-height: 1.0; letter-spacing: -0.03em; margin: 18px 0 0; }
.hero-sub { color: var(--v2-muted); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; max-width: 44ch; margin: 22px 0 0; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hvisual { position: relative; display: grid; place-items: center; min-height: 420px; }
.hglow { position: absolute; width: 76%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(27,206,234,.55), rgba(27,206,234,.12) 45%, transparent 70%); filter: blur(8px); animation: v2-glow 5s ease-in-out infinite; }
.hring { position: absolute; width: 66%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(120,225,245,.18); box-shadow: inset 0 0 60px rgba(27,206,234,.12); }
.hprod { position: relative; width: clamp(220px, 32vw, 430px); height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.6)) drop-shadow(0 0 40px rgba(27,206,234,.28)); animation: v2-float 7s ease-in-out infinite; }
.hero-ctrls { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.harrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--v2-line-strong); background: rgba(255,255,255,.04); color: var(--v2-text); font-size: 22px; line-height: 1; cursor: pointer; transition: all .2s ease; }
.harrow:hover { border-color: var(--v2-cyan); color: var(--v2-cyan); box-shadow: 0 0 22px -8px rgba(27,206,234,.6); }
.hdots { display: flex; gap: 8px; }
.hdot { width: 9px; height: 9px; border-radius: 999px; border: 0; background: rgba(255,255,255,.18); cursor: pointer; transition: all .25s ease; padding: 0; }
.hdot.is-active { width: 26px; background: var(--v2-cyan); box-shadow: 0 0 12px var(--v2-cyan); }

.trust { border-top: 1px solid var(--v2-line); border-bottom: 1px solid var(--v2-line); background: rgba(255,255,255,.015); }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; padding: 20px 24px; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--v2-muted); }
.trust-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--v2-cyan); box-shadow: 0 0 10px var(--v2-cyan); }

.plist { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pcard { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.pplate { display: grid; place-items: center; background: rgba(255,255,255,.94); border-radius: 14px; margin: 12px; aspect-ratio: 1; overflow: hidden; }
.pplate img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .4s cubic-bezier(.16,1,.3,1); }
.pcard:hover .pplate img { transform: scale(1.06); }
.pbody { padding: 2px 18px 20px; display: flex; flex-direction: column; gap: 7px; }
.pcat { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--v2-cyan-soft); }
.pname { font-size: 15px; font-weight: 600; line-height: 1.35; min-height: 2.7em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pfoot { display: flex; justify-content: space-between; align-items: center; margin-top: 2px; }
.pcolors { font-size: 12px; color: var(--v2-faint); }
.parrow { font-size: 13px; font-weight: 700; color: var(--v2-muted); transition: color .2s ease; }
.pcard:hover .parrow { color: var(--v2-cyan); }

.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat { text-decoration: none; color: inherit; }
.cat-img { aspect-ratio: 4/3; display: grid; place-items: center; padding: 26px; background: radial-gradient(circle at 50% 35%, rgba(27,206,234,.12), transparent 70%); }
.cat-img img { max-width: 78%; max-height: 100%; object-fit: contain; transition: transform .4s cubic-bezier(.16,1,.3,1); filter: drop-shadow(0 16px 26px rgba(0,0,0,.5)); }
.cat:hover .cat-img img { transform: scale(1.08) translateY(-4px); }
.cat-body { padding: 0 20px 22px; }
.cat-name { font-size: 19px; font-weight: 700; margin: 0; }
.cat-blurb { color: var(--v2-muted); font-size: 13px; margin: 6px 0 12px; }
.cat-count { font-size: 13px; font-weight: 700; color: var(--v2-cyan-soft); }

.mp-head { display: block; text-align: center; margin-bottom: 44px; }
.mp-head .h2 { margin-inline: auto; }
.mp-sub { color: var(--v2-muted); max-width: 52ch; margin: 16px auto 0; }
.mp-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.mp-card { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px 14px; text-decoration: none; color: var(--v2-muted); }
.mp-card:hover { color: var(--v2-text); }
.mp-plate { width: 100%; height: 64px; display: grid; place-items: center; background: rgba(255,255,255,.95); border-radius: 12px; padding: 12px; }
.mp-plate img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mp-plate.wa { background: var(--v2-cyan); color: #04222a; }
.mp-name { font-size: 13px; font-weight: 600; }

.cta-band { position: relative; overflow: hidden; text-align: center; padding: clamp(40px, 6vw, 72px) 28px; border: 1px solid var(--v2-line); border-radius: 22px; background: linear-gradient(180deg, var(--v2-panel-2), var(--v2-panel)); }
.cta-glow { position: absolute; top: -40%; left: 50%; width: 520px; height: 520px; transform: translateX(-50%); background: radial-gradient(circle, rgba(27,206,234,.22), transparent 65%); filter: blur(16px); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band .h2 { margin-inline: auto; }
.cta-copy { color: var(--v2-muted); font-size: 16px; line-height: 1.65; max-width: 56ch; margin: 16px auto 26px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .hslide { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 100px; }
  .hslides { min-height: 600px; }
  .hvisual { order: -1; min-height: 280px; }
  .plist, .cats { grid-template-columns: repeat(2, 1fr); }
  .mp-grid { grid-template-columns: repeat(3, 1fr); }
  .head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 880px) {
  .v2-nav { display: none; }
  .v2-burger { display: flex; }
  .v2-foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 520px) {
  .plist, .cats, .mp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  .v2-reveal { opacity: 1; transform: none; }
}
