﻿/* ============================================================
   AFRIXPRESSIONS: African Cultural Hub
   Light warm cream · Forest green accent · Orange accent
   ============================================================ */

:root {
  --forest:        #173D2C;
  --forest-mid:    #1E6B42;
  --forest-light:  #2D8B5A;
  --forest-faint:  #E8F5EE;
  --orange:        #F7941D;
  --orange-deep:   #E07B00;
  --orange-grad:   linear-gradient(135deg, #F7941D 0%, #E07B00 100%);
  --orange-light:  #FFF3E0;
  --gold:          #D4A017;
  --earth:         #173D2C;
  --earth-mid:     #1E6B42;
  --green:         #2D8B5A;
  --green-light:   #E8F5EE;
  --bg:            #FFFBF5;
  --surface:       #FFFFFF;
  --surface-alt:   #FFF8F0;
  --surface-green: #F0FAF4;
  --border:        #E0D5C5;
  --border-light:  #EDE8DE;
  --text:          #0D2B22;
  --text-body:     #2D4A3A;
  --text-muted:    #7A9A85;
  --shadow-xs:     0 1px 6px rgba(13,43,34,0.06);
  --shadow-sm:     0 2px 16px rgba(13,43,34,0.08);
  --shadow-md:     0 6px 32px rgba(13,43,34,0.10);
  --shadow-lg:     0 16px 64px rgba(13,43,34,0.13);
  --shadow-green:  0 8px 32px rgba(26,92,56,0.22);
  --shadow-orange: 0 8px 32px rgba(247,148,29,0.35);
  --shadow-orange-sm: 0 4px 16px rgba(247,148,29,0.22);
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 100px;
  --ff-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-accent:  'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container-max: 1440px;
  --container-px:  clamp(1.5rem, 5vw, 5rem);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--ff-body); background: var(--bg); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
::selection { background: rgba(247,148,29,0.25); }
body.no-scroll { overflow: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

.container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-px); }
.section { padding-block: clamp(4rem, 6vw, 6.5rem); }
.section--alt    { background: var(--surface-alt); }
.section--white  { background: var(--surface); }
.section--green  { background: var(--surface-green); }
.section--dark   { background: linear-gradient(160deg, #1E5040 0%, #173D2C 100%); }
.section--purple { background: var(--surface-green); }
.text-center { text-align: center; }

.display-xl { font-family: var(--ff-display); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; }
.display-lg { font-family: var(--ff-display); font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.07; letter-spacing: -0.025em; }
.display-md { font-family: var(--ff-display); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.display-sm { font-family: var(--ff-display); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.2; }
h1,h2,h3 { font-family: var(--ff-display); color: var(--text); }
.lead { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--text-body); line-height: 1.75; }
.eyebrow { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--forest-mid); margin-bottom: 0.875rem; }
.eyebrow::before { content:''; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; }
.accent        { font-family: var(--ff-accent); font-style: italic; color: var(--forest-mid); }
.accent-orange { font-family: var(--ff-accent); font-style: italic; color: var(--orange); }

.btn { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--ff-display); font-size: 0.875rem; font-weight: 700; cursor: pointer; border: none; border-radius: var(--r-pill); transition: all 0.3s var(--ease); white-space: nowrap; }
.btn--primary  { background: var(--orange-grad); color: #fff; padding: 14px 28px; box-shadow: var(--shadow-orange-sm); }
.btn--primary:hover { background: transparent; color: var(--orange); box-shadow: none; border: 2px solid var(--orange); }
.btn--orange   { background: var(--orange-grad); color: #fff; padding: 14px 28px; box-shadow: var(--shadow-orange-sm); }
.btn--orange:hover { background: transparent; color: var(--orange); box-shadow: none; border: 2px solid var(--orange); }
.btn--secondary { background: var(--surface); color: var(--text); padding: 13px 27px; border: 1.5px solid var(--border); }
.btn--secondary:hover { border-color: var(--forest-mid); color: var(--forest-mid); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--outline-white { background: transparent; color: #fff; padding: 13px 27px; border: 1.5px solid rgba(255,255,255,0.50); }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--white { background: #fff; color: var(--forest); font-weight: 700; }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn--sm { font-size: 12px; padding: 10px 20px; }
.btn--lg { font-size: 1rem; padding: 16px 36px; }

/* ── Accessibility: Focus Rings ──────────────────────────────────── */
:focus { outline: none; }
:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; border-radius: 4px; }

/* ── Button Ripple ───────────────────────────────────────────────── */
.btn { overflow: hidden; position: relative; }
.btn::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--rx,50%) var(--ry,50%), rgba(255,255,255,0.28) 0%, transparent 65%); opacity: 0; transition: opacity 0.5s; pointer-events: none; border-radius: inherit; }
.btn:active::after { opacity: 1; transition: opacity 0s; }

.kente { background: repeating-linear-gradient(90deg,#F7941D 0,#F7941D 28px,#D4A017 28px,#D4A017 56px,#0D2B22 56px,#0D2B22 84px,#B07840 84px,#B07840 112px,#2D8B5A 112px,#2D8B5A 140px); }
.kente-animated { animation: kenteScroll 8s linear infinite; }
@keyframes kenteScroll { 0%{background-position:0 0} 100%{background-position:140px 0} }

.badge { display: inline-flex; align-items: center; gap: 5px; font-family: var(--ff-body); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-pill); }
.badge--purple { background: var(--forest-faint); color: var(--forest-mid); }
.badge--orange { background: var(--orange-light); color: var(--orange-deep); }
.badge--green  { background: var(--forest-faint); color: var(--forest-mid); }

#scroll-track { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 3px; background: transparent; }
#scroll-bar   { height: 100%; background: linear-gradient(90deg, var(--forest-mid), var(--orange)); transform: scaleX(0); transform-origin: left; }

.reveal-up    { opacity: 0; transform: translateY(40px); }
.reveal-left  { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-fade  { opacity: 0; }
.reveal-scale { opacity: 0; transform: scale(0.92); }

/* ── CSS Scroll-Driven Animations (Chrome 115+ / Firefox 110+) */
@supports (animation-timeline: view()) {
  @keyframes sd-reveal-up    { from{opacity:0;translate:0 35px}   to{opacity:1;translate:0 0} }
  @keyframes sd-reveal-left  { from{opacity:0;translate:-35px 0}  to{opacity:1;translate:0 0} }
  @keyframes sd-reveal-right { from{opacity:0;translate:35px 0}   to{opacity:1;translate:0 0} }
  @keyframes sd-reveal-fade  { from{opacity:0}                    to{opacity:1} }
  @keyframes sd-reveal-scale { from{opacity:0;scale:0.9}          to{opacity:1;scale:1} }
  .reveal-up    { animation: sd-reveal-up    linear both; animation-timeline:view(); animation-range:entry 0% entry 40%; }
  .reveal-left  { animation: sd-reveal-left  linear both; animation-timeline:view(); animation-range:entry 0% entry 40%; }
  .reveal-right { animation: sd-reveal-right linear both; animation-timeline:view(); animation-range:entry 0% entry 40%; }
  .reveal-fade  { animation: sd-reveal-fade  linear both; animation-timeline:view(); animation-range:entry 0% entry 40%; }
  .reveal-scale { animation: sd-reveal-scale linear both; animation-timeline:view(); animation-range:entry 0% entry 40%; }
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar { position: fixed; inset: 0 0 auto 0; z-index: 50; padding-block: 0; height: 90px; overflow: visible; background: rgba(255,255,255,1); -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px); box-shadow: 0 1px 0 rgba(232,224,212,0.5); transition: background 0.45s var(--ease), box-shadow 0.45s, padding 0.35s; }
.navbar--scrolled { background: rgba(255,255,255,1); -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); box-shadow: 0 1px 0 var(--border); padding-block: 0; height: 90px; }
.navbar::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:linear-gradient(90deg, transparent 0%, var(--orange) 20%, var(--forest-mid) 65%, transparent 100%); opacity:0; transition:opacity 0.5s; }
.navbar--scrolled::after { opacity:0.65; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; height: 100%; overflow: visible; }
.navbar__logo { display: flex; align-items: center; text-decoration: none; }
.navbar__logo-img { height: 100px; width: auto; display: block; position: relative; z-index: 1; }
.mobile-nav__logo-img { height: 36px; width: auto; display: block; }
.navbar__logo-main { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 800; color: var(--text); transition: color 0.3s; display: flex; align-items: center; gap: 0.5rem; }
.navbar__logo-main::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--orange); border-radius: 2px; transform: rotate(45deg); flex-shrink: 0; transition: transform 0.4s var(--ease); }
.navbar__logo:hover .navbar__logo-main { color: var(--orange); }
.navbar__logo:hover .navbar__logo-main::before { transform: rotate(135deg); }
.navbar__logo-sub { font-family: var(--ff-body); font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.navbar__links { display: none; align-items: center; }
@media (min-width:1024px) { .navbar__links { display: flex; } }
.navbar__link { font-family: var(--ff-body); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.015em; padding: 6px 14px; color: var(--text-body); position: relative; transition: color 0.25s; white-space: nowrap; }
/* Tighten links on small laptops so nothing overflows */
@media (min-width:1024px) and (max-width:1279px) {
  .navbar__link { padding: 6px 8px; font-size: 0.8rem; }
  .navbar__inner { gap: 1.25rem; }
  .navbar__actions { gap: 0.4rem; }
}
.navbar__link::before { content: ''; position: absolute; bottom: -1px; left: 9px; right: 9px; height: 2px; background: var(--orange); border-radius: 2px; scale: 0 1; transition: scale 0.28s var(--ease); }
.navbar__link:hover { color: var(--text); }
.navbar__link:hover:not(.active)::before { scale: 1 1; }
.navbar__link.active { background: var(--forest); color: #fff !important; font-weight: 700; border-radius: 20px; box-shadow: none; }
.navbar__link.active::before { display: none; }
.navbar__sep { width: 1px; height: 14px; background: var(--border); margin-inline: 0.375rem; align-self: center; list-style: none; opacity: 0.7; }
/* ── Platforms Dropdown ──────────────────────────────────── */
.navbar__has-dropdown { position: relative; }
.navbar__dropdown-btn { background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
/* Hover/focus: the standard .navbar__link:hover colour-shift applies automatically —
   no extra rule needed here. Only show the active pill when actually clicked open. */
.navbar__has-dropdown:has([aria-expanded="true"]) .navbar__dropdown-btn { background: var(--forest) !important; color: #fff !important; font-weight: 700; border-radius: 20px; }
.navbar__chevron { display: flex; transition: transform 0.25s var(--ease); }
.navbar__has-dropdown:hover .navbar__chevron,
.navbar__has-dropdown:focus-within .navbar__chevron { transform: rotate(180deg); }
.navbar__dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 296px; background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 0.5rem; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s; z-index: 100; }
.navbar__has-dropdown:hover .navbar__dropdown,
.navbar__has-dropdown:focus-within .navbar__dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.navbar__dropdown-item { display: flex; align-items: center; gap: 0.875rem; padding: 0.75rem 0.875rem; border-radius: var(--r-md); transition: background 0.18s; text-decoration: none; }
.navbar__dropdown-item:hover { background: var(--green-light); }
.navbar__dropdown-item:hover .navbar__dropdown-arrow { transform: translateX(4px); }
.navbar__dropdown-icon { width: 42px; height: 42px; border-radius: var(--r-sm); background: rgba(247,148,29,0.12); display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.navbar__dropdown-info { flex: 1; min-width: 0; }
.navbar__dropdown-info strong { display: block; font-family: var(--ff-display); font-size: 0.875rem; font-weight: 700; color: var(--text); }
.navbar__dropdown-info span { font-family: var(--ff-body); font-size: 0.775rem; color: var(--text-muted); }
.navbar__dropdown-arrow { color: var(--text-muted); transition: transform 0.2s; flex-shrink: 0; }
/* Platforms clicked: keep panel open, rotate chevron, strip previous active-link pill */
.navbar__has-dropdown:has(.navbar__dropdown-btn[aria-expanded="true"]) .navbar__dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.navbar__links:has(.navbar__dropdown-btn[aria-expanded="true"]) .navbar__link.active { background: transparent !important; color: var(--text-body) !important; box-shadow: none !important; font-weight: 400 !important; }
/* Restore hover on the suppressed-active link — selector specificity (0,6,0) beats
   the suppression rule (0,5,0) above even when both use !important */
.navbar__links:has(.navbar__dropdown-btn[aria-expanded="true"]) .navbar__link.active:hover { color: var(--text) !important; }
.navbar__links:has(.navbar__dropdown-btn[aria-expanded="true"]) .navbar__link.active:hover::before { display: block; scale: 1 1; }
.navbar__dropdown-btn[aria-expanded="true"] .navbar__chevron { transform: rotate(180deg); }
/* Mobile platform group */
.mobile-nav__group-label { font-family: var(--ff-body); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); padding: 1rem 0 0.25rem; border-top: 1px solid var(--border-light); margin-top: 0.5rem; list-style: none; }
.mobile-nav__platform-link { padding-left: 0.75rem !important; font-size: 1.25rem !important; opacity: 0.85; }

.navbar__actions { display: flex; align-items: center; gap: 0.75rem; }
.navbar__cta { display: none; }
@media (min-width:1024px) { .navbar__cta { display: inline-flex; } }
.navbar__burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: var(--r-sm); width: 40px; height: 40px; }
@media (min-width:1024px) { .navbar__burger { display: none; } }
.navbar__burger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--text); transition: background 0.3s; }

/* Mobile Nav */
.mobile-nav { position: fixed; inset: 0; z-index: 60; background: var(--surface); display: flex; flex-direction: column; padding: 2rem; transform: translateX(100%); transition: transform 0.4s var(--ease); overflow-y: auto; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; }
.mobile-nav__logo { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 800; color: var(--text); }
.mobile-nav__close { width: 40px; height: 40px; border: none; background: var(--surface-alt); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-body); transition: all 0.2s; }
.mobile-nav__close:hover { background: var(--forest-faint); color: var(--forest-mid); }
.mobile-nav__links { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.mobile-nav__links a { display: flex; align-items: center; gap: 0.75rem; font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--text); padding: 1rem 0.75rem; border-bottom: 1px solid var(--border-light); transition: color 0.2s, background 0.2s, padding-left 0.2s; border-radius: var(--r-md); margin: 0 -0.75rem; }
.mobile-nav__links a:hover { color: var(--forest); padding-left: 1.25rem; background: var(--forest-faint); border-bottom-color: transparent; }
.mobile-nav__links a.active { color: #fff; font-weight: 800; background: linear-gradient(135deg, #0A2018 0%, #1E6B42 100%); border-bottom-color: transparent; border-radius: var(--r-lg); box-shadow: 0 8px 24px rgba(13,43,34,0.22); position: relative; overflow: hidden; }
.mobile-nav__links a.active iconify-icon { color: var(--orange); filter: drop-shadow(0 0 5px rgba(247,148,29,0.55)); }
.mobile-nav__kente { height: 5px; margin: 2rem -2rem -2rem; flex-shrink: 0; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--bg); padding-top: var(--nav-h); }
@keyframes kenBurns { 0%,100%{scale:1.0} 50%{scale:1.09} }
.hero__video-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(0.75) brightness(0.82); will-change:transform; animation:kenBurns 30s ease-in-out infinite; }
.hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 900px 700px at 85% 10%, rgba(26,92,56,0.10) 0%, transparent 55%), radial-gradient(ellipse 700px 600px at 5% 90%, rgba(247,148,29,0.09) 0%, transparent 50%), linear-gradient(160deg, rgba(255,251,245,0.93) 0%, rgba(255,248,240,0.90) 55%, rgba(240,250,244,0.87) 100%); }
.hero__weave { position: absolute; inset: 0; opacity: 0.4; background-image: repeating-linear-gradient(0deg,rgba(13,43,34,0.04) 0,rgba(13,43,34,0.04) 2px,transparent 2px,transparent 28px), repeating-linear-gradient(90deg,rgba(247,148,29,0.04) 0,rgba(247,148,29,0.04) 2px,transparent 2px,transparent 28px); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: 2rem 4rem; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width:900px) { .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 5rem; } }
.hero__title { margin-bottom: 1.25rem; }
.hero__title h1 { text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
.hero__title em { color: var(--orange); font-style: normal; }
.hero__sub { font-family: var(--ff-body); font-size: clamp(1rem,1.5vw,1.1rem); color: var(--text); line-height: 1.75; max-width: 500px; margin-bottom: 2.5rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 3.5rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.hero__stat-num { display: block; font-family: var(--ff-display); font-size: 1.8rem; font-weight: 800; color: var(--forest-mid); line-height: 1; }
.hero__stat-label { font-family: var(--ff-body); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-body); margin-top: 4px; font-weight: 600; }
.hero__kente { position: absolute; bottom: 0; left: 0; right: 0; height: 5px; }
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 360px; }
.hero__orb { width: 340px; height: 340px; border-radius: 50%; background: linear-gradient(135deg, #173D2C 0%, #1E6B42 45%, #F7941D 100%); position: relative; overflow: hidden; box-shadow: var(--shadow-green); animation: morphOrb 8s ease-in-out infinite; }
@media (min-width:480px) { .hero__orb { width: 400px; height: 400px; } }
@keyframes morphOrb {
  0%,100% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; box-shadow: var(--shadow-green); }
  25%      { border-radius: 58% 42% 54% 46% / 44% 56% 44% 56%; }
  50%      { border-radius: 44% 56% 42% 58% / 56% 44% 58% 42%; box-shadow: 0 20px 80px rgba(26,92,56,0.40); }
  75%      { border-radius: 52% 48% 58% 42% / 48% 52% 42% 58%; }
}
.hero__orb-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%) brightness(0.88); transition: filter 1.4s ease; }
.hero__orb:hover .hero__orb-img { filter: grayscale(0%) brightness(1.05); }
.hero__orb-shimmer { position: absolute; inset: 0; background: radial-gradient(ellipse at 35% 25%, rgba(255,255,255,0.12) 0%, transparent 55%); pointer-events: none; }

/* ── Atlas ──────────────────────────────────────────────── */
.atlas-header { border-left: 4px solid var(--orange); padding-left: 1.75rem; margin-bottom: 3rem; }
.atlas-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width:768px) { .atlas-grid { grid-template-columns: 3fr 2fr; grid-template-rows: 1fr 1fr; } }
.atlas-card { position: relative; overflow: hidden; border-radius: var(--r-lg); background: #000; min-height: 200px; }
.atlas-card--large { min-height: 420px; }
@media (min-width:768px) { .atlas-card--large { grid-row: span 2; min-height: 0; } }
.atlas-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: transform 0.7s ease, opacity 0.4s; }
.atlas-card:hover .atlas-card__img { transform: scale(1.05); opacity: 0.85; }
.atlas-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem; }
.atlas-card--large .atlas-card__overlay { padding: 2rem; }
.atlas-card__region { font-family: var(--ff-body); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.25rem; }
.atlas-card__name { font-family: var(--ff-display); font-size: 1.625rem; font-weight: 800; color: #fff; line-height: 1.1; }
.atlas-card--large .atlas-card__name { font-size: 2.5rem; }

/* ── Ecosystem Link Cards ───────────────────────────────── */
.eco-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; max-width: 640px; margin: 0 auto; }
.eco-link { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--r-lg); text-decoration: none; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); position: relative; overflow: hidden; min-width: 260px; flex: 1; }
.eco-link::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(247,148,29,0.07) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.55s ease; pointer-events: none; }
.eco-link:hover::before { transform: translateX(100%); }
.eco-link:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(247,148,29,0.18); }
.eco-link__icon { width: 44px; height: 44px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; transition: background 0.3s, transform 0.3s; }
.eco-link:hover .eco-link__icon { background: var(--orange); color: #fff; transform: scale(1.08); }
.eco-link__body { flex: 1; min-width: 0; }
.eco-link__name { display: block; font-family: var(--ff-display); font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.eco-link__desc { display: block; font-family: var(--ff-body); font-size: 0.775rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.eco-link__arrow { color: var(--text-muted); flex-shrink: 0; transition: transform 0.25s var(--ease), color 0.25s; }
.eco-link:hover .eco-link__arrow { transform: translateX(5px); color: var(--orange); }
.hero__float-card { position: absolute; background: var(--surface); border-radius: var(--r-md); padding: 0.875rem 1.125rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.75rem; animation: floatY 5s ease-in-out infinite; border: 1px solid var(--border); }
.hero__float-card--1 { top: 6%; right: 0; animation-delay: 0s; }
.hero__float-card--2 { bottom: 12%; left: -5%; animation-delay: 1.5s; }
.hero__float-card--3 { top: 50%; right: -3%; animation-delay: 0.9s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero__float-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--forest-faint); display: flex; align-items: center; justify-content: center; color: var(--forest-mid); flex-shrink: 0; }
.hero__float-card strong { display: block; font-family: var(--ff-display); font-size: 0.875rem; font-weight: 700; color: var(--text); }
.hero__float-card span { font-family: var(--ff-body); font-size: 10px; color: var(--text-muted); }

/* ── Disciplines ─────────────────────────────────────────── */
.disc-grid { display: grid; grid-template-columns: 1fr; gap: 0.875rem; margin-top: 3.5rem; max-width: 900px; }
@media (min-width:580px) { .disc-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:860px) { .disc-grid { grid-template-columns: repeat(3,1fr); } }
.disc-card { position: relative; aspect-ratio: 3/2; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.disc-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 14px 36px rgba(0,0,0,0.22); }
.disc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.13) 50%, transparent 65%); transform: translateX(-130%); transition: transform 0.55s ease; z-index: 3; pointer-events: none; }
.disc-card:hover::before { transform: translateX(130%); }
.disc-card__bg { position: absolute; inset: 0; transition: transform 0.7s var(--ease); }
.disc-card:hover .disc-card__bg { transform: scale(1.08); }
.disc-card__bg img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(65%) brightness(0.65); transition: filter 0.65s var(--ease); }
.disc-card:hover .disc-card__bg img { filter: grayscale(0%) brightness(1.05); }
.disc-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.1) 100%); transition: opacity 0.5s; }
.disc-card:hover .disc-card__overlay { opacity: 0.6; }
.disc-card__kente { position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2; }
.disc-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.25rem; z-index: 2; }
.disc-card__icon { color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; transition: transform 0.4s var(--ease), color 0.3s; }
.disc-card:hover .disc-card__icon { transform: rotate(14deg) scale(1.2); color: var(--orange); }
.disc-card__title { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; transition: color 0.3s; }
.disc-card:hover .disc-card__title { color: var(--orange); }
.disc-card__desc { font-family: var(--ff-body); font-size: 0.775rem; color: rgba(255,255,255,0.8); line-height: 1.5; max-height: 0; overflow: hidden; opacity: 0; transform: translateY(6px); transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease) 0.08s, transform 0.35s var(--ease) 0.08s; }
.disc-card:hover .disc-card__desc { max-height: 10rem; opacity: 1; transform: translateY(0); }

/* ── Featured Works ──────────────────────────────────────── */
.works-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 3rem; }
.works-head .btn--secondary { padding: 10px 22px; font-size: 0.875rem; flex-shrink: 0; }
@media (max-width: 767px) {
  .works-head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  /* Disable scroll-driven + GSAP entry animations for works-head children on mobile.
     The heading (reveal-up) starts at translateY(40px) and the button (reveal-right)
     at translateX(40px); in a column layout they visually overlap during the animation
     entry range. Force both to their final visible state immediately on mobile. */
  .works-head .reveal-up,
  .works-head .reveal-right {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
  }
}
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width:580px) { .featured-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .featured-grid { grid-template-columns: repeat(3,1fr); } }
.featured-card { background: var(--surface); border: 1px solid var(--border-light); border-radius: var(--r-lg); overflow: hidden; transition: all 0.4s var(--ease); }
.featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border); }
.featured-card__img { height: 200px; overflow: hidden; position: relative; }
.featured-card__img-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.featured-card:hover .featured-card__img-bg { transform: scale(1.06); }
.featured-card__body { padding: 1.5rem; }
.featured-card__tag { margin-bottom: 0.75rem; }
.featured-card__title { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.375rem; transition: color 0.3s; }
.featured-card:hover .featured-card__title { color: var(--forest-mid); }
.featured-card__artist { font-family: var(--ff-body); font-size: 11px; color: var(--text-muted); margin-bottom: 0.625rem; }
.featured-card__desc { font-family: var(--ff-body); font-size: 0.875rem; color: var(--text-body); line-height: 1.6; }

/* ── Mission Section ─────────────────────────────────────── */
.mission-quote { font-family: var(--ff-accent); font-size: clamp(1.2rem,2.2vw,1.75rem); font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.65; border-left: 3px solid var(--orange); padding-left: 1.5rem; }

/* ── Submit CTA ──────────────────────────────────────────── */
.submit-card { background: linear-gradient(135deg, #1E5040 0%, #1E6B42 100%); border-radius: var(--r-xl); padding: clamp(3rem,6vw,5rem); text-align: center; position: relative; overflow: hidden; }
.submit-card__glow { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(247,148,29,0.14) 0%, transparent 65%); pointer-events: none; }
.submit-card__kente { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.submit-card__title { font-family: var(--ff-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 800; color: #fff; margin-bottom: 0.875rem; position: relative; z-index: 1; }
.submit-card__sub { font-family: var(--ff-body); font-size: 1.05rem; color: rgba(255,255,255,0.70); max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; position: relative; z-index: 1; }
.submit-card__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; position: relative; z-index: 1; }

/* ── Submit Form ─────────────────────────────────────────── */
.submit-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 768px)  { .submit-layout { grid-template-columns: 300px 1fr; gap: 1.75rem; } }

.submit-info { background: var(--surface); border-radius: var(--r-xl); padding: 1.75rem; border: 1px solid rgba(30,80,64,0.1); }
.submit-info__heading { font-family: var(--ff-body); font-size: 11px; font-weight: 700; color: var(--forest); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.25rem; }
.submit-info__item { display: flex; gap: 0.875rem; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border); }
.submit-info__item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.submit-info__icon { width: 38px; height: 38px; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.submit-info__label { font-family: var(--ff-display); font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.submit-info__desc { font-family: var(--ff-body); font-size: 0.825rem; color: var(--text-body); line-height: 1.55; }

.submit-form-card { background: var(--surface); border-radius: var(--r-xl); padding: 1.75rem 2rem; border: 1px solid rgba(30,80,64,0.1); }
.submit-form-title { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; color: var(--forest); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-label { font-family: var(--ff-body); font-size: 11px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.1em; }
.form-input { font-family: var(--ff-body); font-size: 0.9rem; color: var(--text); background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 0.75rem 1rem; width: 100%; transition: border-color 0.2s, box-shadow 0.2s; outline: none; -webkit-appearance: none; appearance: none; }
.form-input:focus { border-color: var(--forest-mid); box-shadow: 0 0 0 3px rgba(30,80,64,0.1); }
textarea.form-input { resize: vertical; min-height: 90px; }

.form-error { font-size: .875rem; color: #c0392b; background: #fff0f0; border: 1px solid #f5c6cb; border-radius: 8px; padding: .65rem .9rem; margin-top: .5rem; }

.form-success { text-align: center; padding: 4rem 2rem; background: var(--surface); border-radius: var(--r-xl); border: 1px solid rgba(30,80,64,0.1); margin-top: 2.5rem; }
.form-success__icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg,#1E5040,#2D7D32); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success__title { font-family: var(--ff-display); font-size: 1.75rem; font-weight: 800; color: var(--forest); margin-bottom: 0.5rem; }
.form-success__sub { font-family: var(--ff-body); font-size: 0.95rem; color: var(--text-body); line-height: 1.7; max-width: 420px; margin: 0 auto 1.75rem; }

.file-upload { position: relative; }
.file-upload__input { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 1; width: 100%; height: 100%; }
.file-upload__label { display: flex; align-items: center; gap: 0.875rem; border: 1.5px dashed rgba(30,80,64,0.25); border-radius: var(--r-md); padding: 1rem; cursor: pointer; transition: border-color 0.2s, background 0.2s; background: var(--surface-alt); }
.file-upload:hover .file-upload__label,
.file-upload:focus-within .file-upload__label { border-color: var(--forest-mid); background: #ecf8f2; }
.file-upload__icon { color: var(--forest-mid); flex-shrink: 0; }
.file-upload__text { font-family: var(--ff-body); font-size: 0.875rem; color: var(--text-body); margin: 0; }
.file-upload__text strong { color: var(--forest); font-weight: 600; }
.file-upload__name { font-family: var(--ff-body); font-size: 11px; color: var(--forest-mid); font-weight: 600; margin-top: 2px; }

.btn--full        { width: 100%; justify-content: center; }
.btn--submit-top  { margin-top: 0.5rem; }
.spin             { animation: spin 1s linear infinite; }
@keyframes spin   { to { transform: rotate(360deg); } }
.submit-info__heading-icon  { color: var(--orange); vertical-align: middle; margin-right: 5px; }
.submit-form-title__icon    { color: var(--orange); }
.form-label-note { font-family: var(--ff-body); font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-muted); }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: linear-gradient(180deg, #173D2C 0%, #0F2C1E 100%); }
.footer__kente { height: 5px; }
.footer__body { display: grid; grid-template-columns: 1fr; gap: 3rem; padding-block: 5rem 3.5rem; }
@media (min-width:640px)  { .footer__body { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .footer__body { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand-name { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 800; color: #fff; display: block; margin-bottom: 0.25rem; }
.footer__brand-sub  { font-family: var(--ff-body); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.875rem; }
.footer__brand-desc { font-family: var(--ff-body); font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1.5rem; max-width: 280px; }
.footer__socials { display: flex; gap: 0.625rem; }
.footer__social { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); transition: all 0.25s; }
.footer__social:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.footer__col-title { font-family: var(--ff-body); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; }
.footer__links a { font-family: var(--ff-body); font-size: 0.875rem; color: rgba(255,255,255,0.7); padding-block: 0.35rem; transition: color 0.2s, padding-left 0.2s; display: block; }
.footer__links a:hover { color: var(--orange); padding-left: 6px; }
.footer__contact p { font-family: var(--ff-body); font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 0.625rem; display: flex; align-items: flex-start; gap: 0.625rem; line-height: 1.6; }
.footer__contact iconify-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); }
.footer__bottom-inner { padding-block: 1.25rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; font-family: var(--ff-body); font-size: 12px; color: rgba(255,255,255,0.55); }
@media (min-width:640px) { .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__bottom-inner a { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE: Mobile & Tablet passes
   ═══════════════════════════════════════════════════════════ */

/* Hide hero orb on tablet/mobile, single-column layout shows text only */
@media (max-width: 899px) {
  .hero__visual { display: none; }
}

/* ─── MOBILE ≤ 600px ──────────────────────────────────────── */
@media (max-width: 600px) {

  /* 1. Hero: hide heavy video — cream gradient is sufficient */
  .hero__video-bg { display: none; }

  /* 2. Hero text visibility: near-opaque overlay so bg never kills contrast */
  .hero__bg {
    background:
      radial-gradient(ellipse 600px 400px at 85% 10%, rgba(26,92,56,0.07) 0%, transparent 55%),
      radial-gradient(ellipse 500px 400px at 5% 90%, rgba(247,148,29,0.07) 0%, transparent 50%),
      linear-gradient(160deg, rgba(255,251,245,0.97) 0%, rgba(255,248,240,0.96) 60%, rgba(240,250,244,0.95) 100%);
  }
  .hero__title h1 { text-shadow: 0 1px 4px rgba(255,255,255,0.85); }

  /* 3. CTA buttons: side-by-side on mobile */
  .hero__ctas { flex-wrap: wrap; gap: 0.5rem; }
  .hero__ctas .btn {
    flex: 1 1 140px;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.8rem;
    letter-spacing: 0;
    min-width: 0;
  }
  .hero__ctas .btn iconify-icon { display: none; }

  /* 4. Stats: single scrollable row — allow wrap on very small screens */
  .hero__stats { flex-wrap: wrap; gap: 0.75rem 1.5rem; }
  .hero__stat-num   { font-size: 1.25rem; }
  .hero__stat-label { font-size: 8px; letter-spacing: 0.03em; }

  /* 5. Cards: tighter image heights and padding */
  .featured-card__img  { height: 145px; }
  .featured-card__body { padding: 0.875rem; }
  .disc-card__title    { font-size: 0.9rem; }

  /* 6. Atlas: reduce tall card on mobile */
  .atlas-card--large { min-height: 260px; }
  .atlas-card        { min-height: 160px; }

  /* 7. Mission: 3-column value cards */
  .mission-values { grid-template-columns: repeat(3,1fr) !important; gap: 0.625rem !important; margin-top: 1.75rem; }
  .mission-values > div { padding: 0.875rem 0.625rem !important; }
  .mission-values h3 { font-size: 0.78rem !important; margin-bottom: 0 !important; }
  .mission-values p  { display: none !important; }
  .mission-values iconify-icon { margin-bottom: 0.5rem !important; }

  /* 8. Footer: 2-column layout on mobile */
  .footer__body {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    padding-block: 3rem 2rem;
  }
  .footer__body > *:nth-child(1) { grid-column: 1; grid-row: 1; }
  .footer__body > *:nth-child(2) { grid-column: 1; grid-row: 2; }
  .footer__body > *:nth-child(3) { grid-column: 2; grid-row: 1; }
  .footer__body > *:nth-child(4) { grid-column: 2; grid-row: 2; }
  .footer__brand-name  { font-size: 1.1rem; }
  .footer__links a     { font-size: 0.8rem; padding-block: 0.25rem; }
  .footer__contact p   { font-size: 0.8rem; }
  .footer__col-title   { margin-bottom: 0.75rem; }

  /* 9. Spacing: strip excessive gaps on mobile */
  .hero            { min-height: 0; padding-top: var(--nav-h); }
  .hero__inner     { padding-block: 1.5rem 2rem; gap: 1.5rem; }
  .hero__sub       { margin-bottom: 1.25rem; font-size: 0.95rem; max-width: 100%; }
  .hero__ctas      { margin-bottom: 1.5rem; }
  .hero__stats     { padding-top: 1.25rem; }
  .section         { padding-block: 2.25rem !important; }
  .disc-grid       { margin-top: 1.25rem; }
  .featured-grid   { margin-top: 1.5rem; }
  .atlas-header    { margin-bottom: 1.5rem; }
  .submit-card     { padding: 2rem 1.25rem; }
  .footer__body    { padding-block: 2.25rem 1.5rem; }

  /* 10. Eco-links: full width on mobile */
  .eco-links       { flex-direction: column; }
  .eco-link        { min-width: 0; }

  /* 11. Mobile nav links: slightly smaller on very small screens */
  .mobile-nav__links a { font-size: 1.25rem; }
}

/* ─── TABLET 601–1023px ───────────────────────────────────── */
@media (min-width: 601px) and (max-width: 1023px) {
  .mission-grid { gap: 3rem !important; }
  .hero__stats  { gap: 1.25rem; }
  .hero__inner  { padding-block: 3rem 5rem; }
}

/* ── Preloader ───────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: #FFFBF5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .65s cubic-bezier(.4,0,.2,1), visibility .65s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
#preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pre__inner { text-align: center; position: relative; z-index: 1; }
.pre__name {
  display: block;
  font-family: var(--ff-display); font-size: clamp(1.9rem, 7vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.02em;
  animation: preUp .55s cubic-bezier(.22,.61,.36,1) both;
}
.pre__afri  { color: var(--forest-mid); }
.pre__xpre  { color: var(--orange); }
.pre__sub {
  display: block;
  font-family: var(--ff-body); font-size: 10px;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 5px;
  animation: preUp .55s .08s cubic-bezier(.22,.61,.36,1) both;
}
.pre__ring {
  width: 52px; height: 52px; margin: 1.75rem auto 0;
  animation: preUp .45s .15s cubic-bezier(.22,.61,.36,1) both;
}
.pre__arc {
  transform-origin: 26px 26px;
  animation: preArcSpin 1.4s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes preArcSpin {
  0%   { stroke-dashoffset: 138.2; transform: rotate(-90deg); }
  50%  { stroke-dashoffset: 34.5; }
  100% { stroke-dashoffset: 138.2; transform: rotate(270deg); }
}
@keyframes preUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pre__border-top {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--forest-mid), var(--orange), var(--forest-mid));
}
