:root {
  --navy: #21273f;
  --navy-soft: #2c3358;
  --navy-deep: #161a2d;
  --slate: #8a9bab;
  --slate-light: #c3cdd8;
  --slate-pale: #eef1f4;
  --gold: #e4c181;
  --gold-deep: #c89a55;
  --gold-pale: #f6e7c8;
  --slate-blue: #96a7b7;
  --mist: #eceaed;
  --white: #ffffff;
  --ink: #21273f;
  /* --ink-soft: #5b6376; */
  --ink-soft: #000;
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-data: 'Space Mono', monospace;
  --Merriweather: "Merriweather", serif;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shadow-soft: 0 16px 40px -16px rgba(33, 39, 63, 0.22);
  --shadow-tight: 0 8px 20px -10px rgba(33, 39, 63, 0.25);
  --container: 1300px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: var(--font-body); 
  color: var(--ink); 
  background: var(--white); 
  -webkit-font-smoothing: antialiased; 
  overflow-x: hidden; 
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--navy); line-height: 1.15; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 3px; border-radius: 6px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--Merriweather); font-size: 16px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 900; margin-bottom: 14px; }
.eyebrow .dot, .eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.eyebrow-light { color: var(--gold); }
.eyebrow-light::before { background: var(--gold); }
.section-title { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 18px; }
.text-light { color: var(--white); }
.section-lede { color: var(--ink-soft); font-size: 17px; max-width: 540px; line-height: 1.6; }
.section-head { max-width: 1000px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.text-gold { color: var(--gold); }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 4px; transition: gap .25s, color .25s; }
.text-link svg { width: 18px; height: 18px; transition: transform .25s; }
.text-link:hover { gap: 14px; color: var(--gold-deep); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-body); font-weight: 700; border-radius: 999px; white-space: nowrap; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s; }
.btn-icon { width: 18px; height: 18px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px -8px rgba(228, 193, 129, 0.55); }
.btn-gold:hover { transform: translateY(-4px) scale(1.02); background: var(--gold-deep); box-shadow: 0 16px 30px -8px rgba(200, 154, 85, 0.7); }
.btn-outline-light { border: 2px solid rgba(255, 255, 255, 0.5); color: var(--white); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); transform: translateY(-4px) scale(1.02); }
.btn-ghost { color: var(--navy); border: 2px solid var(--slate-light); }
.btn-ghost:hover { border-color: var(--navy); background: var(--navy); color: var(--white); transform: translateY(-3px); }
.num { font-family: var(--font-data); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }
.colored-text { color: var(--white) !important; margin-bottom: 20px; }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-28px) rotate(12deg); }
}
@keyframes floatFAQImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes floatRods {
  0% { transform: translateY(0); }
  100% { transform: translateY(-60px); }
}
@keyframes spinFloat {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}
@keyframes pulseBadge {
  0% { transform: scale(1) rotate(12deg); }
  100% { transform: scale(1.08) rotate(18deg); }
}
@keyframes pulseBead {
  0% { transform: scale(1); }
  100% { transform: scale(1.03); }
}
@keyframes morphBlob {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1); }
  100% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: scale(1.05); }
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bounceRow {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(24px); }
  50% { transform: translateX(18px); }
  70% { transform: translateX(24px); }
}
@keyframes slideBeadVertical {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255, 255, 255, 0.0); transition: background .35s, box-shadow .35s, padding .35s; padding: 18px 0; }
.site-header.scrolled { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px); box-shadow: 0 8px 24px -16px rgba(33, 39, 63, 0.35); padding: 10px 0; }
.site-header .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header .brand, .site-footer .brand { display: flex; align-items: center; background: #fff; border-radius: 30px; transition: transform 0.3s; }
.site-header .brand:hover { transform: scale(0.98) rotate(-2deg); }
.site-header .brand-logo { width: 226px; height: auto; max-width: 100%; display: block; transition: opacity 0.3s ease; }
.site-header .brand:hover .brand-logo { opacity: 0.9; }
.site-header .main-nav { display: flex; gap: 30px; font-weight: 600; font-size: 15px; }
.site-header .main-nav a { position: relative; padding: 6px 0; transition: color .25s; }
.site-header:not(.scrolled) .main-nav a { color: rgba(255, 255, 255, 0.92); }
.site-header.scrolled .main-nav a { color: var(--navy); }
.site-header .main-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; border-radius: 2px; background: var(--gold); transition: width .3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.site-header .main-nav a:hover::after { width: 100%; }
.site-header .header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.site-header:not(.scrolled) .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.5); }
.site-header:not(.scrolled) .btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.site-header .nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; }
.site-header .nav-toggle span { height: 3px; background: currentColor; border-radius: 3px; transition: transform .25s, opacity .25s; }
.site-header:not(.scrolled) .nav-toggle { color: var(--white); }
.site-header.scrolled .nav-toggle { color: var(--navy); }

@media (max-width: 980px) {
  .site-header .brand-logo { width: 180px; }
  .site-header .main-nav, .site-header .header-cta { display: none; }
  .site-header .nav-toggle { display: flex; }
  .site-header .main-nav.open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 10px 20px; box-shadow: 0 14px 30px -18px rgba(0, 0, 0, 0.3); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; }
  .site-header .main-nav.open a { color: var(--navy) !important; padding: 12px 0; border-bottom: 1px solid var(--slate-pale); }
  .site-header .header-cta.open { display: flex; position: absolute; top: calc(100% + 1px); background: var(--white); left: 0; right: 0; padding: 10px 20px; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; }
}

.hero { position: relative; background: linear-gradient(135deg, #21273f 0%, #4f6074 50%, #8a9bab 100%); padding: 150px 0 100px; overflow: hidden; isolation: isolate; }
.hero .hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero .hero-glow { position: absolute; top: -10%; right: -10%; width: 60%; height: 70%; background: radial-gradient(circle, rgba(228, 193, 129, 0.22), transparent 70%); }
.hero .float-sym { position: absolute; font-family: var(--font-display); font-weight: 800; color: rgba(228, 193, 129, 0.25); font-size: 46px; animation: floatY 8s ease-in-out infinite; }
.hero .sym1 { top: 14%; left: 6%; animation-delay: 0s; }
.hero .sym2 { top: 65%; left: 10%; font-size: 34px; color: rgba(138, 155, 171, 0.3); animation-delay: 1.2s; }
.hero .sym3 { top: 24%; left: 46%; font-size: 30px; animation-delay: 2.1s; color: rgba(255, 255, 255, 0.15); }
.hero .sym4 { top: 78%; left: 42%; animation-delay: .6s; color: rgba(138, 155, 171, 0.25); }
.hero .sym5 { top: 10%; left: 88%; font-size: 30px; animation-delay: 1.6s; color: rgba(255, 255, 255, 0.15); }
.hero .sym6 { top: 55%; left: 92%; font-size: 38px; animation-delay: 2.6s; }
.hero .float-dot { position: absolute; border-radius: 50%; animation: floatY 7s ease-in-out infinite; }
.hero .dot1 { top: 36%; left: 24%; width: 12px; height: 12px; background: var(--gold); opacity: .7; animation-delay: .3s; }
.hero .dot2 { top: 80%; left: 60%; width: 9px; height: 9px; background: var(--slate-light); opacity: .6; animation-delay: 1.8s; }
.hero .dot3 { top: 20%; left: 70%; width: 10px; height: 10px; background: var(--gold); opacity: .5; animation-delay: 1s; }
.hero .dot4 { top: 48%; left: 6%; width: 8px; height: 8px; background: var(--white); opacity: .4; animation-delay: 2.4s; }
.hero .hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero .hero-title { font-size: 38px; color: var(--white); margin: 0 18px 20px 0; }
.hero .hero-sub { color: var(--slate-light); font-size: 17px; line-height: 1.7; max-width: 520px; margin-bottom: 34px; }
.hero .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero .hero-trust { display: flex; align-items: center; gap: 22px; }
.hero .trust-stat { display: flex; align-items: baseline; gap: 2px; flex-direction: column; }
.hero .trust-stat .num { font-size: 28px; color: var(--white); font-weight: 700; }
.hero .trust-stat .plus { color: var(--gold); font-family: var(--font-data); font-size: 20px; margin-left: -2px; }
.hero .trust-stat label { font-size: 12.5px; color: var(--slate-light); letter-spacing: .04em; }
.hero .trust-divider { width: 2px; height: 34px; background: rgba(255, 255, 255, 0.15); border-radius: 2px; }
.hero .hero-visual { position: relative; display: flex; justify-content: center; }
.hero .rod-container { position: relative; width: 100%; max-width: 340px; height: 480px; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.hero .abacus-rod-line { position: absolute; top: -20px; bottom: -20px; left: 50%; width: 12px; transform: translateX(-50%); background: linear-gradient(to right, #8a9bab, #c3cdd8, #8a9bab); border-radius: 6px; z-index: 0; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.3); }
.hero .kid-bead-mask { position: relative; z-index: 1; width: 100%; height: 400px; border-radius: 120px; overflow: hidden; border: 8px solid var(--gold); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), inset 0 8px 16px rgba(255, 255, 255, 0.2); background: var(--navy); }
.hero .kid-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero .comic-badge { position: absolute; top: 40px; right: -30px; background: #ffeb3b; border: 4px solid var(--navy-deep); border-radius: 16px; padding: 12px 18px; z-index: 2; box-shadow: 6px 6px 0px var(--gold-deep); transform: rotate(6deg); animation: floatY 4s ease-in-out infinite reverse; }
.hero .comic-text { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--navy-deep); line-height: 1.1; text-transform: uppercase; text-align: center; display: block; }
.hero .comic-tail { position: absolute; bottom: -12px; left: 20px; width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 16px solid var(--navy-deep); }
.hero .comic-tail::after { content: ''; position: absolute; bottom: 5px; left: -8px; width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 12px solid #ffeb3b; }
.hero .float-chip { position: absolute; background: var(--white); color: var(--navy); padding: 12px 20px; border-radius: 20px; font-size: 14px; font-weight: 700; box-shadow: var(--shadow-tight); animation: floatY 6s ease-in-out infinite; border: 2px solid var(--gold-pale); }
.hero .chip-1 { top: 4%; left: -12%; animation-delay: .4s; }
.hero .chip-2 { bottom: -20px; right: 0; animation-delay: 1.4s; }
.hero .hero-wave { position: absolute; left: 0; bottom: -1px; width: 100%; height: 80px; z-index: 1; }
.hero .hero-wave path { fill: var(--white); }
.iao-main{    font-family: "Archivo Black", sans-serif;
    font-size: 6em;
    color: var(--gold);
    text-shadow: 1px 1px 0 #b89245, 2px 2px 0 #333333, 3px 3px 0 #e3a648, 4px 4px 0 #757575, 8px 5px 3px rgb(68 83 104), 0 0 4px rgb(255 165 0 / 45%);
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.35));}
.iao-main span{ display: block; font-size: 32px; color: #fff; margin-bottom: 30px; }

@media (max-width: 980px) {
  .hero { padding: 130px 0 80px; }
  .hero .hero-inner { grid-template-columns: 1fr; }
  .hero .hero-visual { order: -1; margin-bottom: 10px; }
  .hero .float-chip { display: none; }
  .hero .rod-container { height: 400px; max-width: 280px; }
  .hero .kid-bead-mask { height: 320px; }
  .hero .comic-badge { right: -10px; top: 20px; }
}
@media (max-width: 560px) {
  .hero .hero-trust { flex-wrap: wrap; gap: 14px 20px; }
  .hero .trust-divider { display: none; }
}

.about { padding: 110px 0; background: var(--white); position: relative; }
.about::before { content: ''; position: absolute; inset: 0; opacity: 0.4; pointer-events: none; background-image: radial-gradient(var(--slate-pale) 3px, transparent 3px); background-size: 36px 36px; }
.about .about-wrapper { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.about .about-abacus-card { position: relative; border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(8px); width: 100%; max-width: 580px; border: 1px solid var(--navy-soft); box-shadow: 0 24px 48px -12px rgba(33, 39, 63, 0.25); margin: 0 auto; background-color: #E5E5F7; opacity: 0.8; background-image: radial-gradient(#040403a3 1px, #232947 1px); background-size: 10px 10px; }
.about .badge-ring { position: absolute; top: -22px; right: -18px; width: 70px; height: 70px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--font-display); font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.5); border: 5px solid var(--navy-deep); transform: rotate(12deg); animation: pulseBadge 3s infinite alternate; }
.about .abacus-illustration { width: 100%; max-width: 500px; display: block; margin: 0 auto; overflow: visible; }

#col1, #col2, #col3, #col4 {
  animation: slideBeadVertical 3s ease-in-out infinite;
  transform-origin: center center;
}
#col2 { animation-delay: 0.5s; }
#col3 { animation-delay: 1s; }
#col4 { animation-delay: 1.5s; }

.about .abacus-card-tag { text-align: center; margin-top: 18px; font-family: var(--font-display); font-size: 13.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--slate-light); opacity: 0.9; }
.about .about-content .about-text { margin-bottom: 40px; }
.about .about-para { color: var(--ink-soft); font-size: 16.5px; line-height: 1.75; margin-bottom: 26px; }
.about .compact-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about .feature-card { background: var(--mist); border-radius: var(--radius-md); padding: 28px 24px; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s, background 0.4s; border: 2px solid transparent; }
.about .feature-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: var(--shadow-soft); background: var(--white); border-color: var(--gold-pale); }
.about .feature-card-alt { background: var(--white); border: 2px solid var(--slate-pale); }
.about .feature-icon { width: 54px; height: 54px; border-radius: 18px; background: var(--gold-pale); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 4px 12px rgba(228, 193, 129, 0.4); }
.about .feature-icon svg { width: 28px; height: 28px; }
.about .feature-card h3 { font-size: 18px; margin-bottom: 8px; font-family: var(--font-display); }
.about .feature-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 980px) {
  .about .about-wrapper { grid-template-columns: 1fr; gap: 50px; }
  .about .about-visual { order: -1; }
}
@media (max-width: 600px) {
  .about .compact-feature-grid { grid-template-columns: 1fr; }
}

.categories { padding: 110px 0; background: var(--slate-blue); position: relative; overflow: hidden; }
.categories .container { position: relative; z-index: 2; }
.categories::after { height: 100%; content: ''; position: absolute; top: 0; bottom: 0; right: -20px; width: 150px; z-index: 0; opacity: 0.05; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 400' fill='%2321273f'%3E%3Crect x='46' y='0' width='8' height='400' rx='4'/%3E%3Crect x='10' y='20' width='80' height='30' rx='15'/%3E%3Crect x='10' y='140' width='80' height='30' rx='15'/%3E%3Crect x='10' y='180' width='80' height='30' rx='15'/%3E%3Crect x='10' y='220' width='80' height='30' rx='15'/%3E%3Crect x='10' y='340' width='80' height='30' rx='15'/%3E%3C/svg%3E"); background-repeat: repeat-y; background-size: 100% auto; }
.categories .tab-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; justify-content: center; }
.categories .tab-btn { display: flex; align-items: center; gap: 12px; padding: 10px; background: var(--white); border-radius: 999px; border: 2px solid transparent; box-shadow: var(--shadow-tight); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, background 0.3s; font-weight: 700; font-size: 15px; color: var(--ink-soft); }
.categories .tab-btn:hover { transform: translateY(-4px) scale(1.02); border-color: var(--gold-pale); }
.categories .tab-btn .tab-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--mist); color: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s, color .25s; }
.categories .tab-btn .tab-icon svg { width: 22px; height: 22px; }
.categories .tab-btn .tab-beads { display: flex; gap: 4px; margin-left: 2px; }
.categories .tab-btn .tab-beads span { width: 8px; height: 8px; border-radius: 50%; background: var(--slate-light); transition: background 0.3s; }
.categories .tab-btn.active { border-color: var(--gold); background: var(--navy); color: var(--white); transform: scale(1.05); }
.categories .tab-btn.active .tab-icon { background: var(--gold); color: var(--navy); box-shadow: 0 0 10px rgba(228, 193, 129, 0.5); }
.categories .tab-btn.active .tab-beads span { background: rgba(255, 255, 255, 0.25); }
.categories .tab-btn.active .tab-beads span.filled { background: var(--gold); }
.categories .tab-btn:not(.active) .tab-beads span.filled { background: var(--gold-deep); }
.categories .tab-panel { display: none; }
.categories .tab-panel.active { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 24px; 
  animation: panelIn .5s cubic-bezier(0.34, 1.56, 0.64, 1); 
}
.categories .cat-card { 
  position: relative; 
  background: var(--white); 
  border-radius: var(--radius-lg); 
  padding: 30px 24px 26px; 
  border-bottom: 6px solid var(--gold); 
  box-shadow: var(--shadow-soft); 
  overflow: hidden; 
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  max-width: 360px;
}
.categories .cat-card:hover { transform: translateY(-8px) rotate(-1deg); }
.categories .cat-card::after { content: ''; position: absolute; top: -30px; right: -30px; width: 100px; height: 100px; border-radius: 50%; background: var(--gold-pale); opacity: .6; z-index: 0; }
.categories .cat-card-rods { display: flex; gap: 6px; margin-bottom: 18px; position: relative; z-index: 1; }
.categories .cat-card-rods span { width: 12px; height: 12px; border-radius: 50%; background: var(--slate-light); }
.categories .cat-card-rods span:nth-child(odd) { background: var(--gold); }
.categories .cat-card h4 { font-family: var(--font-display); font-size: 19px; letter-spacing: .02em; color: var(--navy); margin-bottom: 16px; position: relative; z-index: 1; }
.categories .cat-card dl { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.categories .cat-card dl div { display: flex; justify-content: space-between; gap: 14px; font-size: 14.5px; border-bottom: 2px dotted var(--slate-pale); padding-bottom: 8px; }
.categories .cat-card dl dt { color: var(--ink-soft); font-weight: 600; }
.categories .cat-card dl dd { font-family: var(--font-display); color: var(--navy); font-weight: 700; text-align: right; }

@media (max-width: 640px) {
  .categories .tab-row { 
    flex-direction: row; 
    justify-content: center;
    align-items: center;
    padding: 0 10px;
  }
  .categories .tab-btn { 
    justify-content: center;
    padding: 12px 16px;
    width: 100%;
  }
  .categories .tab-btn span.tab-label-full { 
    display: block; 
    white-space: nowrap;
  }
}

.timeline { padding: 120px 0 140px; background-color: #2c3357; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 40px 40px; background-position: center top; position: relative; overflow: hidden; z-index: 1; }
.timeline::before { content: ''; position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; transform: translate(-50%, -50%); background: radial-gradient(ellipse at center, rgba(228, 193, 129, 0.06) 0%, transparent 60%); z-index: -1; pointer-events: none; }
.timeline .wire-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; z-index: 1; counter-reset: timeline-step; }
.timeline .wire-track::before { content: ''; position: absolute; top: 36px; left: 2%; right: 2%; height: 6px; background: linear-gradient(to bottom, var(--slate), var(--navy-soft), var(--slate)); border-radius: 3px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); z-index: 0; }
.timeline .wire-node { position: relative; text-align: center; counter-increment: timeline-step; z-index: 1; }
.timeline .wire-node::before { content: "0" counter(timeline-step); position: absolute; top: -45px; left: 50%; transform: translateX(-50%); font-family: var(--font-data); font-size: 150px; font-weight: 700; color: rgba(255, 255, 255, 0.03); line-height: 1; z-index: -1; pointer-events: none; transition: color 0.4s ease; }
.timeline .wire-node:hover::before { color: rgba(228, 193, 129, 0.06); }
.timeline .wire-bead { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--gold-deep)); color: var(--navy-deep); margin: 0 auto 30px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 -4px 6px rgba(0, 0, 0, 0.2), 0 10px 20px -5px rgba(228, 193, 129, 0.3); position: relative; z-index: 2; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.timeline .wire-bead svg { width: 24px; height: 24px; z-index: 2; }
.timeline .wire-node:hover .wire-bead { transform: translateY(-8px) scale(1.15); }
.timeline .wire-card { background: rgba(33, 39, 63, 0.65); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 2px solid var(--gold); border-radius: var(--radius-sm); padding: 28px 20px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3); transition: transform 0.3s, background 0.3s, border-color 0.3s; }
.timeline .wire-node:hover .wire-card { background: rgba(33, 39, 63, 0.95); transform: translateY(-4px); border-color: rgba(228, 193, 129, 0.3); }
.timeline .wire-card .wt-eyebrow { font-family: var(--font-data); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.timeline .wire-card h3 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.timeline .wire-card .wt-date { display: inline-block; background: rgb(255, 255, 255); padding: 6px 12px; border-radius: 6px; font-family: var(--font-data); color: #2a3154; font-size: 12.5px; margin-bottom: 16px; font-weight: 700; }
.timeline .wire-card p { color: rgba(255, 255, 255, 0.65); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 980px) {
  .timeline .wire-track { grid-template-columns: 1fr 1fr; gap: 60px 24px; }
  .timeline .wire-track::before { display: none; }
}
@media (max-width: 560px) {
  .timeline .wire-track { grid-template-columns: 1fr; }
}

.faq { padding: 120px 0; background: var(--slate-blue); }
.faq .faq-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.faq .faq-intro { margin-bottom: 40px; }
.faq .faq-visual { position: relative; max-width: 440px; margin-top: 20px; }
.faq .faq-visual-blob { position: absolute; top: -20px; right: -20px; bottom: -20px; left: 20px; background: linear-gradient(135deg, var(--gold-pale), var(--slate-pale)); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; animation: morphBlob 8s ease-in-out infinite alternate; z-index: 0; }
.faq .faq-image { position: relative; z-index: 1; width: 100%; border-radius: var(--radius-lg); animation: floatFAQImage 6s ease-in-out infinite; }
.faq .faq-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); padding: 16px 20px; border-radius: 16px; display: flex; align-items: center; gap: 14px; box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.15); z-index: 2; animation: floatFAQImage 6s ease-in-out infinite 1s; }
.faq .fb-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.faq .fb-icon svg { width: 20px; height: 20px; }
.faq .fb-text { display: flex; flex-direction: column; }
.faq .fb-text strong { font-family: var(--font-display); font-size: 16px; color: var(--navy); line-height: 1.2; }
.faq .fb-text span { font-size: 12.5px; color: var(--ink-soft); }

.faq .accordion { display: flex; flex-direction: column; gap: 14px; }
.faq .accordion-item { background: var(--white); border: 1px solid var(--slate-pale); border-radius: var(--radius-sm); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); transition: all 0.3s ease; overflow: hidden; }
.faq .accordion-item:hover { border-color: var(--slate-light); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); transform: translateY(-2px); }
.faq .accordion-item.open { border-color: var(--gold); box-shadow: 0 12px 32px rgba(228, 193, 129, 0.15); transform: translateY(0); }
.faq .accordion-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; text-align: left; font-family: var(--font-display); font-size: 17px; color: var(--navy); font-weight: 600; }
.faq .accordion-q-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--mist); flex-shrink: 0; position: relative; transition: background 0.3s, transform 0.35s, box-shadow 0.3s; }
.faq .accordion-q-icon::before, .faq .accordion-q-icon::after { content: ''; position: absolute; background: var(--navy); transition: transform 0.3s, background 0.3s; }
.faq .accordion-q-icon::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq .accordion-q-icon::after { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq .accordion-item.open .accordion-q-icon { background: var(--gold); transform: rotate(180deg); box-shadow: 0 4px 10px rgba(228, 193, 129, 0.4); }
.faq .accordion-item.open .accordion-q-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq .accordion-item.open .accordion-q-icon::before { background: var(--navy); }
.faq .accordion-a-wrap { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq .accordion-a { padding: 0 24px 24px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; max-width: 560px; }

@media (max-width: 980px) {
  .faq .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .faq .faq-visual { margin: 0 auto; max-width: 100%; }
}

.winners { padding: 130px 0; background: var(--mist); position: relative; overflow: hidden; }
.winners .container { position: relative; z-index: 2; }
.winners .section-head.center { text-align: center; margin-bottom: 60px; }
.winners .winners-bg { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.winners .wb-rod { position: absolute; top: 0; bottom: 0; width: 14px; background: linear-gradient(to right, rgba(33, 39, 63, 0.01), rgba(33, 39, 63, 0.04), rgba(33, 39, 63, 0.01)); }
.winners .wb-hex-bead { position: absolute; width: 95vw; max-width: 1200px; height: 85%; clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); background: linear-gradient(7deg, rgb(212 171 104 / 66%) 0%, rgba(33, 39, 63, 0.01) 100%); display: flex; align-items: center; justify-content: center; animation: pulseBead 10s ease-in-out infinite alternate; }
.winners .wb-hex-bead::after { content: ''; width: 18%; height: 40%; background: var(--mist); clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }

.winners .podium { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 24px; align-items: end; margin-bottom: 60px; position: relative; z-index: 1; }
.winners .podium-card { background: var(--white); border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 36px 24px 30px; text-align: center; box-shadow: var(--shadow-soft); position: relative; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.winners .podium-card:hover { transform: translateY(-10px); }
.winners .podium-card.rank-1 { padding-top: 48px; transform: translateY(-16px); border-top: 6px solid var(--gold); }
.winners .podium-card.rank-1:hover { transform: translateY(-24px); }
.winners .podium-card.rank-2 { border-top: 6px solid var(--slate); }
.winners .podium-card.rank-3 { border-top: 6px solid var(--gold-deep); }
.winners .podium-rank { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--navy); background: var(--gold); box-shadow: 0 8px 18px -4px rgba(0, 0, 0, 0.35); border: 3px solid var(--white); }
.winners .podium-card.rank-2 .podium-rank { background: var(--slate-light); }
.winners .podium-card.rank-3 .podium-rank { background: var(--gold-pale); }
.winners .avatar { width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 32px; color: var(--white); border: 5px solid var(--white); box-shadow: 0 0 0 4px var(--gold); }
.winners .podium-card.rank-2 .avatar { box-shadow: 0 0 0 4px var(--slate); width: 130px; height: 130px; font-size: 26px; }
.winners .podium-card.rank-3 .avatar { box-shadow: 0 0 0 4px var(--gold-deep); width: 130px; height: 130px; font-size: 26px; }
.winners .podium-card h3 { font-size: 19px; margin-bottom: 6px; font-family: var(--font-display); }
.winners .podium-card .flag { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; display: block; font-weight: 600; }
.winners .podium-card .score-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--mist); padding: 8px 16px; border-radius: 999px; font-family: var(--font-display); font-size: 14.5px; font-weight: 800; color: var(--navy); border: 2px solid var(--white); }

.winners .winners-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; position: relative; z-index: 1; }
.winners .winner-card { width: calc(33.333% - 14px); min-width: 280px; background: var(--white); border-radius: var(--radius-md); padding: 20px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-tight); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s; }
.winners .winner-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-soft); }
.winners .winner-card .avatar { width: 75px; height: 75px; font-size: 18px; box-shadow: 0 0 0 3px var(--gold-pale); margin: 0; flex-shrink: 0; }
.winners .winner-card .wc-name { font-weight: 800; font-family: var(--font-display); font-size: 16px; color: var(--navy); }
.winners .winner-card .wc-meta { font-size: 13.5px; color: var(--ink-soft); font-family: var(--font-display); font-weight: 600; }
.winners .podium-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

.year-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; }
.year-btn { padding: 12px 20px; background: var(--white); border: 2px solid var(--slate-light); border-radius: 999px; font-weight: 700; transition: all 0.3s; }
.year-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.winner-banner {
  margin-top: 80px; min-height: 130px; padding: 25px 40px; display: flex; align-items: center; gap: 28px;
  position: relative; overflow: hidden; border-radius: 22px;
  background: linear-gradient(135deg, #202743 0%, #283052 50%, #202743 100%);
  border: 1px solid rgba(228,193,129,.55);
  box-shadow: inset 0 0 25px rgba(228,193,129,.08), 0 18px 45px rgba(0,0,0,.45);
  transition: transform .35s ease, border-color .35s ease;
}
.winner-banner:hover { transform: translateY(-5px); border-color: #e4c181; }
.winner-banner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at left, rgba(228,193,129,.18), transparent 35%);
}
.winner-icon { font-size: 72px; width: 70px; background: linear-gradient(180deg, #fff7cf, #e4c181, #b37a28); -webkit-background-clip: text; color: transparent; filter: drop-shadow(0 0 12px rgba(228,193,129,.45)); }
.winner-divider { width: 1px; height: 80px; background: linear-gradient(transparent, rgba(228,193,129,.8), transparent); }
.winner-content { flex: 1; }
.winner-content h3 { margin: 0; color: #fff; font-size: 30px; font-weight: 800; }
.winner-content h2 { margin: 8px 0 0; font-size: 31px; font-weight: 900; background: linear-gradient(180deg, #ffe8a5, #e4b85e); -webkit-background-clip: text; color: transparent; }
.winner-text { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.6; font-weight: 600; }
.winner-trophy { font-size: 70px; filter: drop-shadow(0 8px 15px rgba(228,193,129,.45)); }

@media (max-width: 900px) {
  .winners .podium { grid-template-columns: 1fr; gap: 20px; }
  .winners .podium-card.rank-1 { order: -1; transform: none; }
  .winners .winners-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .winner-banner { flex-direction: column; text-align: center; padding: 35px 25px; }
  .winner-divider { display: none; }
  .winner-content h3 { font-size: 25px; }
  .winner-content h2 { font-size: 26px; }
  .winner-text br { display: none; }
}
@media (max-width: 560px) {
  .winners .winners-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .winners .winners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .winners { padding: 80px 0; }
  .winners .podium { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
  .winners .podium-card.rank-1 { order: -1; transform: none; }
  .winners .winners-grid { grid-template-columns: 1fr; }
  .year-tabs { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 480px) {
  .winners .winner-card { flex-direction: column; text-align: center; gap: 10px; padding: 24px; }
  .winners .winner-card .avatar { margin-bottom: 8px; }
}

.cta-strip { background: var(--navy); padding: 70px 0; position: relative; overflow: hidden; }
.cta-strip::after { content: ''; position: absolute; right: -5%; top: -50%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(228, 193, 129, 0.15), transparent 70%); }
.cta-strip .cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-strip h2 { color: var(--white); font-size: 30px; margin-bottom: 10px; }
.cta-strip p { color: var(--slate-light); font-size: 16px; max-width: 480px; line-height: 1.6; }

.site-footer { background: var(--navy-deep); color: var(--slate-light); padding: 80px 0 0; }
.site-footer .footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.site-footer .footer-brand p { margin: 18px 0 22px; font-size: 15px; line-height: 1.75; max-width: 320px; }
.site-footer .social-row { display: flex; gap: 12px; }
.site-footer .social-row a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); display: flex; align-items: center; justify-content: center; transition: background 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.site-footer .social-row a svg { width: 18px; height: 18px; fill: var(--slate-light); transition: fill 0.3s; }
.site-footer .social-row a:hover { background: var(--gold); transform: translateY(-5px) scale(1.1); }
.site-footer .social-row a:hover svg { fill: var(--navy); }
.site-footer .footer-col h4 { color: var(--white); font-size: 17px; font-family: var(--font-display); margin-bottom: 20px; letter-spacing: .02em; }
.site-footer .footer-col a { display: block; font-size: 15px; padding: 8px 0; color: var(--slate-light); transition: color .2s, padding-left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.site-footer .footer-col a:hover { color: var(--gold); padding-left: 8px; }
.site-footer .footer-newsletter p { font-size: 14.5px; margin-bottom: 16px; }
.site-footer #newsletterForm { display: flex; gap: 10px; }
.site-footer #newsletterForm input { flex: 1; min-width: 0; padding: 12px 16px; border-radius: 12px; border: 2px solid rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.08); color: var(--white); font-size: 14.5px; transition: border-color 0.3s; }
.site-footer #newsletterForm input:focus { border-color: var(--gold); outline: none; }
.site-footer #newsletterForm input::placeholder { color: rgba(255, 255, 255, 0.5); }
.site-footer #newsletterForm button { width: 46px; height: 46px; border-radius: 12px; background: var(--gold); color: var(--navy); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background .2s, transform 0.3s; }
.site-footer #newsletterForm button:hover { background: var(--white); transform: scale(1.05); }
.site-footer #newsletterForm button svg { width: 20px; height: 20px; }
.site-footer .newsletter-msg { font-size: 13.5px; color: var(--gold); margin-top: 12px; min-height: 16px; }
.site-footer .footer-wire { color: rgba(255, 255, 255, 0.15); }
.site-footer .footer-wire svg { width: 100%; height: 20px; }
.site-footer .footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 26px 0; font-size: 13.5px; color: rgba(255, 255, 255, 0.45); }
.footer-logo-wrap { display: inline-block; background: var(--white); padding: 10px; border-radius: 8px; margin-bottom: 10px; }

@media (max-width: 900px) {
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer .footer-top { grid-template-columns: 1fr; }
}

.to-top { position: fixed; bottom: 30px; right: 30px; width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity .4s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background .3s; z-index: 80; border: 2px solid var(--navy-soft); }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-6px) scale(1.05); }
.to-top svg { width: 24px; height: 24px; }

.faq { 
  padding: 120px 0; 
  background: var(--slate-blue); 
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 2px, transparent 2px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 2px, transparent 2px);
  background-size: 60px 60px;
}

.faq::before {
  content: "+\÷\×";
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 160px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  line-height: 1.0;
  white-space: pre;
  top: 5%;
  right: 40px;
  transform: rotate(15deg);
  letter-spacing: 10px;
  z-index: 0;
}

.faq::after {
  content: "7  3\=  9";
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 140px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  line-height: 1.1;
  white-space: pre;
  bottom: 5%;
  left: 20px;
  transform: rotate(-10deg);
  letter-spacing: 20px;
  z-index: 0;
}

.categories {
  position: relative;
  overflow: hidden;
}

.cat-doodle {
  position: absolute;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.cat-doodle svg {
  width: 70px;
  height: auto;
  display: block;
}

.doodle-left {
  top: 12%;
  left: 6%;
  transform: rotate(-15deg);
  animation: gentleFloatY 8s ease-in-out infinite;
}

.doodle-mid {
  top: 38%;
  right: 42%;
  transform: rotate(12deg);
  animation: gentleFloatYMid 10s ease-in-out infinite 1s;
}

.doodle-bottom {
  bottom: 8%;
  left: 12%;
  transform: rotate(-8deg);
  animation: gentleFloatY 9s ease-in-out infinite 0.5s;
}

@keyframes gentleFloatY {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50% { transform: translateY(-20px) rotate(-11deg); }
}

.faq .container {
  position: relative;
}

.faq .container::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 0;
  width: 300px;
  height: 250px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 4a3 3 0 0 0-3 3 3 3 0 0 0-1 5.8A3 3 0 0 0 8 17a3 3 0 0 0 4-1M9 4a3 3 0 0 1 3 2v10M15 4a3 3 0 0 1 3 3 3 3 0 0 1 1 5.8A3 3 0 0 1 16 17a3 3 0 0 1-4-1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .1;
  pointer-events: none;
  z-index: 0;
  animation: slowFloatLeft 9s ease-in-out infinite;
}

.faq .container::after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 0;
  width: 300px;
  height: 250px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 4h8v5a4 4 0 0 1-8 0V4zM8 5H5a3 3 0 0 0 3 4M16 5h3a3 3 0 0 1-3 4M10 17h4M9 21h6M12 13v4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .1;
  pointer-events: none;
  z-index: 0;
  animation: slowFloatRight 8s ease-in-out infinite 1s;
}

@keyframes slowFloatLeft {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50% { transform: translateY(-20px) rotate(-8deg); }
}

@keyframes slowFloatRight {
  0%, 100% { transform: translateY(0) rotate(18deg); }
  50% { transform: translateY(-15px) rotate(26deg); }
}

/* --- Upcoming Tab / Countdown Styles --- */
.upcoming-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 540px;
    box-shadow: var(--shadow-soft);
    border-top: 6px solid var(--gold);
    margin: 0 auto;
    animation: panelIn .5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .upcoming-card .uc-icon {
        width: 72px;
        height: 72px;
        background: var(--gold-pale);
        color: var(--gold-deep);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        box-shadow: 0 4px 12px rgba(228, 193, 129, 0.4);
    }

        .upcoming-card .uc-icon svg {
            width: 34px;
            height: 34px;
        }

    .upcoming-card h4 {
        font-size: 24px;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .upcoming-card p {
        color: var(--ink-soft);
        font-size: 14px;
        margin-bottom: 30px;
        font-weight: 500;
    }

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--slate-pale);
    padding: 14px;
    border-radius: var(--radius-sm);
    min-width: 85px;
    border: 1px solid var(--slate-light);
}

.cd-num {
    font-family: var(--font-data);
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.cd-label {
    font-size: 12px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

@media (max-width: 560px) {
    .countdown {
        gap: 10px;
    }

    .cd-item {
        min-width: 70px;
        padding: 14px 10px;
    }

    .cd-num {
        font-size: 24px;
    }
}