/* ═══════════════════════════════════════════
   IAAF Design System — Shared Styles
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #1a2a2e;
  --ink-soft: #2a3a3e;
  --parchment: #f7f4ef;
  --warm: #e8e2d8;
  --copper: #b8834a;
  --copper-light: #d4a66a;
  --copper-faint: rgba(184,131,74,0.08);
  --sage: #5a7a6a;
  --sage-light: #7a9a8a;
  --sage-faint: rgba(90,122,106,0.08);
  --muted: #8a8578;
  --faint: #d4cfc6;
  --white: #fefdfb;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;
  --shadow-sm: 0 2px 12px rgba(26,42,46,0.05);
  --shadow-md: 0 8px 30px rgba(26,42,46,0.07);
  --shadow-lg: 0 20px 60px rgba(26,42,46,0.09);
  --radius: 8px;
  --content-width: 1280px;
  --narrow-width: 780px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--parchment);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--copper-light); color: var(--white); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--faint);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 1px 30px rgba(26,42,46,0.06); }
.nav-inner {
  max-width: var(--content-width); margin: 0 auto;
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}
.logo img {
  height: 52px;
  max-height: 52px;
  width: auto;
  max-width: none;
  display: block;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important; color: var(--parchment) !important;
  padding: 0.6rem 1.5rem !important; border-radius: 4px;
  font-size: 0.8rem !important; letter-spacing: 0.06em !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--copper) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--ink); color: var(--parchment);
  padding: 1rem 2.2rem; border: none; border-radius: 4px;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.btn-primary:hover { background: var(--copper); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--ink);
  padding: 1rem 2.2rem; border: 1.5px solid var(--faint); border-radius: 4px;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.78rem; }
.btn-copper { background: var(--copper); }
.btn-copper:hover { background: var(--ink); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 10rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(184,131,74,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-inner {
  max-width: var(--content-width); margin: 0 auto;
}
.page-header .breadcrumb {
  font-size: 0.78rem; color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.page-header .breadcrumb a {
  color: var(--copper); text-decoration: none;
}
.page-header .breadcrumb a:hover { text-decoration: underline; }
.page-header-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.page-header-label::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--copper);
}
.page-header h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 1.2rem;
  max-width: 700px;
}
.page-header h1 em { font-style: italic; font-weight: 500; color: var(--copper); }
.page-header-desc {
  font-size: 1.1rem; line-height: 1.75;
  color: var(--muted); max-width: 600px;
}

/* ── SECTION BASICS ── */
section, .content-section { padding: 5rem 2.5rem; }
.section-inner, .content-inner { max-width: var(--content-width); margin: 0 auto; }
.narrow-inner { max-width: var(--narrow-width); margin: 0 auto; }
.section-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--muted); max-width: 560px;
  margin-bottom: 3rem;
}

/* ── PROSE / ARTICLE ── */
.prose { max-width: var(--narrow-width); margin: 0 auto; }
.prose h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.8rem; color: var(--ink);
  margin: 2.5rem 0 1rem; line-height: 1.25;
}
.prose h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.35rem; color: var(--ink);
  margin: 2rem 0 0.8rem; line-height: 1.3;
}
.prose p {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--ink-soft); margin-bottom: 1.2rem;
}
.prose p.lead {
  font-size: 1.2rem; line-height: 1.75;
  color: var(--muted); font-family: var(--serif);
  font-style: italic; margin-bottom: 2rem;
}
.prose ul, .prose ol {
  margin: 1rem 0 1.5rem 1.5rem;
  font-size: 1.05rem; line-height: 1.85;
  color: var(--ink-soft);
}
.prose li { margin-bottom: 0.5rem; }
.prose blockquote {
  border-left: 3px solid var(--copper);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; line-height: 1.6;
  color: var(--ink);
}
.prose .callout {
  background: var(--copper-faint);
  border-left: 3px solid var(--copper);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.prose .callout p { margin-bottom: 0; color: var(--ink); }
.prose .callout-sage {
  background: var(--sage-faint);
  border-left-color: var(--sage);
}
.prose hr {
  border: none; height: 1px;
  background: var(--faint); margin: 3rem 0;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.35s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-flat { border: none; background: var(--parchment); }
.card-dark {
  background: var(--ink);
  border-color: rgba(247,244,239,0.1);
  color: var(--parchment);
}

/* ── TAGS / BADGES ── */
.tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 3px;
}
.tag-copper { color: var(--copper); background: var(--copper-faint); }
.tag-sage { color: var(--sage); background: var(--sage-faint); }
.tag-muted { color: var(--muted); background: rgba(138,133,120,0.08); }
.tag-outline {
  background: transparent;
  border: 1px solid var(--faint);
  color: var(--muted);
}

/* ── MANIFESTO BAR ── */
.manifesto-bar {
  padding: 4rem 2.5rem;
  background: var(--ink);
  text-align: center;
}
.manifesto-bar p {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.5rem; line-height: 1.5;
  color: var(--parchment); font-style: italic;
  max-width: 700px; margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 4rem 2.5rem 2rem;
  color: rgba(247,244,239,0.5);
}
.footer-inner {
  max-width: var(--content-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,244,239,0.08);
}
.footer-brand {
  margin-bottom: 1rem;
  line-height: 0;
}
.footer-brand img {
  height: 48px;
  max-height: 48px;
  width: auto;
  max-width: 140px;
  display: block;
}
.footer-desc { font-size: 0.88rem; line-height: 1.65; max-width: 320px; }
.footer-heading {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--parchment); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(247,244,239,0.5);
  text-decoration: none; font-size: 0.88rem;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--copper-light); }
.footer-bottom {
  max-width: var(--content-width); margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between;
  font-size: 0.78rem;
}

/* ── LEVELS / TIERS ── */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.tier-card {
  background: var(--white); border: 1px solid var(--faint);
  border-radius: var(--radius); padding: 2rem; position: relative;
  overflow: hidden; transition: all 0.35s;
}
.tier-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; transition: height 0.3s;
}
.tier-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tier-card.t1::before { background: var(--sage); }
.tier-card.t2::before { background: var(--copper); }
.tier-card.t3::before { background: #4a6fa5; }
.tier-card.t4::before { background: var(--ink); }
.tier-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 3px; margin-bottom: 1rem;
}
.tier-badge.free { background: var(--sage-faint); color: var(--sage); }
.tier-badge.paid { background: var(--copper-faint); color: var(--copper); }
.tier-title {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.25rem; color: var(--ink); margin-bottom: 0.3rem;
}
.tier-subtitle {
  font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem;
}
.tier-desc {
  font-size: 0.92rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 1.2rem;
}
.tier-meta {
  list-style: none; padding-top: 1rem; border-top: 1px solid var(--faint);
}
.tier-meta li {
  font-size: 0.82rem; color: var(--muted); padding: 0.35rem 0;
  display: flex; justify-content: space-between;
}
.tier-meta li strong { color: var(--ink); font-weight: 600; }

/* ── RUBRIC TABLE ── */
.rubric-table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
}
.rubric-table th {
  text-align: left; padding: 0.8rem 1rem;
  background: var(--ink); color: var(--parchment);
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em;
}
.rubric-table th:first-child { border-radius: var(--radius) 0 0 0; }
.rubric-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.rubric-table td {
  padding: 0.7rem 1rem; border-bottom: 1px solid var(--faint);
  line-height: 1.5; color: var(--ink-soft); vertical-align: top;
}
.rubric-table tr:nth-child(even) td { background: rgba(247,244,239,0.5); }
.rubric-table td:first-child {
  font-weight: 700; color: var(--ink); white-space: nowrap; width: 70px;
}

/* ── SCORE DISPLAY ── */
.score-bar {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.score-bar-label {
  font-size: 0.78rem; font-weight: 500; color: var(--muted);
  min-width: 140px;
}
.score-bar-track {
  flex: 1; height: 8px; background: var(--faint);
  border-radius: 4px; overflow: hidden;
}
.score-bar-fill {
  height: 100%; border-radius: 4px;
  transition: width 1s ease;
}
.score-bar-value {
  font-family: var(--serif); font-weight: 600;
  font-size: 0.92rem; color: var(--ink); min-width: 36px;
  text-align: right;
}

/* ── UPLOAD PLACEHOLDER ── */
.upload-zone {
  border: 2px dashed var(--faint); border-radius: var(--radius);
  padding: 3rem 2rem; text-align: center;
  transition: all 0.3s; cursor: pointer;
}
.upload-zone:hover,
.upload-zone:focus-visible { border-color: var(--copper); background: var(--copper-faint); }
.upload-zone--drag { border-color: var(--sage); background: var(--sage-faint); }
.upload-icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.5; }
.upload-text { font-size: 1rem; color: var(--muted); margin-bottom: 0.3rem; }
.upload-hint { font-size: 0.78rem; color: var(--faint); }
.upload-status { margin-top: 0.75rem; font-size: 0.82rem; line-height: 1.5; color: var(--muted); min-height: 1.25em; }

.upload-zone--processing {
  border-color: var(--sage);
  border-style: solid;
  cursor: wait;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.upload-zone--processing::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    125deg,
    rgba(90, 122, 106, 0.14) 0%,
    rgba(184, 131, 74, 0.12) 30%,
    rgba(247, 244, 239, 0.9) 50%,
    rgba(90, 122, 106, 0.14) 70%,
    rgba(184, 131, 74, 0.12) 100%
  );
  background-size: 400% 400%;
  animation: upload-gradient-shift 5s ease infinite;
  z-index: 0;
}
.upload-zone--processing > * { position: relative; z-index: 1; }

.upload-processing-banner {
  margin-top: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 6px;
  border: 1px solid var(--faint);
  background: linear-gradient(135deg, var(--sage-faint), var(--copper-faint), var(--parchment));
  background-size: 220% 220%;
  animation: upload-gradient-shift 4s ease infinite;
}
.upload-processing-banner[hidden] { display: none !important; }
.upload-processing-banner .proc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.upload-processing-banner .proc-title {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.upload-processing-banner .proc-sub {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}
.upload-processing-banner .proc-spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--faint);
  border-top-color: var(--sage);
  animation: upload-spin 0.9s linear infinite;
  flex-shrink: 0;
}
.upload-processing-banner .proc-dots {
  display: inline-flex;
  gap: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.upload-processing-banner .proc-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
  animation: upload-dot-pulse 1.4s ease-in-out infinite;
}
.upload-processing-banner .proc-dots span:nth-child(2) { animation-delay: 0.18s; }
.upload-processing-banner .proc-dots span:nth-child(3) { animation-delay: 0.36s; }

.upload-results { margin-top: 1rem; }
.upload-results--ready {
  animation: upload-fade-in 0.5s ease;
}
.upload-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.7rem 1.35rem;
  background: var(--ink);
  color: var(--parchment);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.upload-download-btn:hover {
  background: var(--sage);
  transform: translateY(-1px);
}
.upload-download-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.upload-download-secondary {
  display: inline-block;
  margin-top: 0.55rem;
  margin-left: 0.75rem;
  font-size: 0.78rem;
  color: var(--copper);
  font-weight: 600;
  text-decoration: none;
}
.upload-download-secondary:hover { text-decoration: underline; }

@keyframes upload-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes upload-spin {
  to { transform: rotate(360deg); }
}
@keyframes upload-dot-pulse {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}
@keyframes upload-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.upload-results .output-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.upload-results .output-table th { text-align: left; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding: 0.4rem 0.3rem; border-bottom: 1px solid var(--faint); }
.upload-results .output-table td { padding: 0.45rem 0.3rem; border-bottom: 1px solid var(--faint); color: var(--ink-soft); }
.upload-results .output-table td:last-child { text-align: right; font-weight: 600; }
.upload-results .sc-high { color: var(--sage); }
.upload-results .sc-mid { color: var(--copper); }
.upload-results .sc-low { color: #c0392b; }

/* ── CONTACT FORMS ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-aside-card {
  background: var(--parchment);
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-aside-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.contact-aside-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.contact-aside-card a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--copper);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.contact-aside-card a:hover { text-decoration: underline; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--faint);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--copper);
}
.form-status {
  font-size: 0.88rem;
  line-height: 1.55;
  margin-top: 1rem;
  min-height: 1.4em;
}
.form-status.is-error { color: #c0392b; }
.form-status.is-success { color: var(--sage); }
.faq-section { margin-top: 4rem; }
.faq-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.faq-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 640px;
}
.faq-group { margin-bottom: 2.5rem; }
.faq-group-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.2rem;
  color: var(--copper);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-item .faq-answer a { color: var(--copper); }
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}
.partnership-type-card {
  background: var(--white);
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.partnership-type-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.partnership-type-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}
a.contact-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s;
}
a.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .partnership-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  section, .content-section { padding: 3rem 1.5rem; }
  .page-header { padding: 7rem 1.5rem 3rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .tier-grid { grid-template-columns: 1fr; }
}
