/* ─── ALWAYSREADY BRAND STYLESHEET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:      #00b8a6;
  --teal-dark: #009e8d;
  --teal-mid:  #00cfc0;
  --teal-lt:   #e6f7f6;
  --teal-xlt:  #f2fbfa;
  --gold:      #ffd700;
  --gold-dark: #e6c200;
  --gold-lt:   #fffae0;
  --cream:     #faf9f6;
  --white:     #ffffff;
  --dark:      #1a2e2d;
  --dark2:     #2d4a48;
  --text:      #2d2d2d;
  --muted:     #555555;
  --muted2:    #888888;
  --border:    rgba(0,184,166,0.15);
  --border2:   rgba(0,184,166,0.08);
  --shadow:    0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --r:         12px;
  --r-lg:      18px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; line-height: 1.1; letter-spacing: -0.03em; color: var(--dark); }
h1 { font-size: clamp(42px, 5.5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
h4 { font-size: 16px; font-weight: 700; font-family: 'Figtree', sans-serif; }
p  { color: var(--muted); line-height: 1.7; }
a  { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.container--sm { max-width: 780px; margin: 0 auto; padding: 0 40px; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
  text-decoration: none; flex-shrink: 0;
  color: var(--dark);
}
.wordmark .w-dot   { color: var(--gold); }
.wordmark .w-ready { color: var(--teal); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-lt); }

.nav-cta {
  height: 40px; padding: 0 20px;
  background: var(--teal); color: var(--white);
  font-family: 'Figtree', sans-serif; font-size: 14px; font-weight: 600;
  border: none; border-radius: 8px; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: background 0.2s, transform 0.1s; white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--teal-dark); color: var(--white); }
.nav-cta:active { transform: scale(0.98); }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--dark); padding: 4px;
}
.nav-toggle svg { display: block; }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 28px;
  font-family: 'Figtree', sans-serif; font-size: 15px; font-weight: 600;
  border-radius: var(--r); border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s, color 0.2s;
  text-decoration: none; white-space: nowrap; letter-spacing: -0.01em;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal-lt); }
.btn-white { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--teal-lt); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn-lg { height: 56px; padding: 0 36px; font-size: 16px; }

/* ─── FORMS ──────────────────────────────────────────────────────────────── */
.form-row { display: flex; gap: 10px; max-width: 480px; }
.email-input {
  flex: 1; height: 52px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 0 18px;
  font-family: 'Figtree', sans-serif; font-size: 15px; color: var(--text);
  outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.email-input::placeholder { color: var(--muted2); }
.email-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,184,166,0.1); }
.form-note { font-size: 12px; color: var(--muted2); margin-top: 12px; }

.thankyou { display: none; align-items: center; gap: 10px; padding: 14px 0; }
.thankyou.show { display: flex; }
.thankyou-text { font-size: 15px; color: var(--teal); font-weight: 500; }
.tick {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-lt); border: 1.5px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--teal); flex-shrink: 0;
}

/* ─── DASHBOARD CARD ─────────────────────────────────────────────────────── */
.dash-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-lg);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.dash-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.dash-card-title { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted2); }
.dash-live { font-size: 11px; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 5px; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.6)} }
.dash-home { font-size: 13px; color: var(--muted); margin-bottom: 20px; font-weight: 500; }
.domain-row { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border2); }
.domain-row:last-of-type { border-bottom: none; }
.d-name { font-size: 13px; font-weight: 600; color: var(--dark); width: 88px; flex-shrink: 0; }
.d-bar-bg { flex: 1; height: 6px; background: var(--teal-lt); border-radius: 99px; overflow: hidden; }
.d-bar { height: 100%; border-radius: 99px; width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.bar-g { background: #00b8a6; }
.bar-a { background: #f0a028; }
.bar-r { background: #e05555; }
.d-pct { font-size: 12px; font-weight: 700; min-width: 30px; text-align: right; }
.c-g { color: #00b8a6; } .c-a { color: #f0a028; } .c-r { color: #e05555; }
.dash-footer {
  margin-top: 18px; display: flex; align-items: center; justify-content: space-between;
  background: var(--teal-lt); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 12px 16px;
}
.dash-footer-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.dash-footer-val { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; color: var(--teal); }

/* ─── FEATURES GRID ──────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feat-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1.5px solid var(--border2);
  border-top: 3px solid var(--teal);
  padding: 36px 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feat-num { font-family: 'Inter', sans-serif; font-size: 48px; font-weight: 900; color: var(--teal-lt); line-height: 1; margin-bottom: 20px; }
.feat-card h3 { margin-bottom: 10px; font-size: 18px; }
.feat-card p { font-size: 14px; line-height: 1.7; }

/* ─── SECTOR CHIPS ───────────────────────────────────────────────────────── */
.sector-label-sm {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin: 28px 0 10px; display: block;
}
.sector-label-sm:first-child { margin-top: 0; }
.sector-divider { height: 1px; background: var(--border); margin: 20px 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 99px;
  font-size: 13px; font-weight: 500; border: 1.5px solid;
  transition: transform 0.15s; cursor: default;
}
.chip:hover { transform: translateY(-2px); }
.chip-on { background: var(--teal-lt); border-color: rgba(0,184,166,0.35); color: var(--teal-dark); }
.chip-off { background: var(--white); border-color: var(--border); color: var(--muted); }
.chip-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.chip-on .chip-dot { background: var(--teal); }
.chip-off .chip-dot { background: var(--muted2); }

/* ─── STEPS (Platform page) ──────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.step { padding: 48px 40px; position: relative; }
.step:not(:last-child)::after {
  content: '→'; position: absolute; right: -12px; top: 56px;
  font-size: 20px; color: var(--teal); font-weight: bold;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; }
.step p  { font-size: 14px; }

/* ─── USER TYPE CARDS (Platform page) ───────────────────────────────────── */
.user-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.user-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.user-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.user-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-lt);
  padding: 4px 10px; border-radius: 99px; margin-bottom: 16px;
}
.user-card h3 { font-size: 18px; margin-bottom: 10px; }
.user-card p { font-size: 14px; }

/* ─── PRICING CARD ───────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 32px;
  background: var(--white);
}
.pricing-card.featured {
  border-color: var(--teal); background: var(--dark);
  position: relative;
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 99px; white-space: nowrap;
}
.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .price-note,
.pricing-card.featured ul li { color: var(--white); }
.price { font-family: 'Inter', sans-serif; font-size: 48px; font-weight: 900; color: var(--dark); line-height: 1; margin: 16px 0 4px; }
.price span { font-size: 18px; font-weight: 400; font-family: 'Figtree', sans-serif; }
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-card ul li { font-size: 14px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.pricing-card ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── GUIDE CARDS (Resources page) ──────────────────────────────────────── */
.guides-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.guide-card {
  background: var(--white); border: 1.5px solid var(--border2);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.guide-card:hover { box-shadow: var(--shadow); border-color: var(--border); transform: translateY(-3px); }
.guide-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-lt);
  padding: 3px 10px; border-radius: 99px; margin-bottom: 14px;
  width: fit-content;
}
.guide-card h3 { font-size: 17px; margin-bottom: 10px; font-family: 'Figtree', sans-serif; font-weight: 600; line-height: 1.4; flex: 1; }
.guide-card p  { font-size: 13px; margin-bottom: 20px; }
.guide-read { font-size: 13px; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 6px; margin-top: auto; }
.guide-read::after { content: '→'; transition: transform 0.2s; }
.guide-card:hover .guide-read::after { transform: translateX(4px); }

/* ─── FAQ (Resources + Platform page) ───────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item input[type="checkbox"] { display: none; }
.faq-label {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--dark);
  user-select: none; gap: 16px;
}
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--teal-lt); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--teal); transition: transform 0.2s, background 0.2s; }
.faq-item input:checked ~ .faq-label .faq-icon { transform: rotate(45deg); background: var(--teal); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item input:checked ~ .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 0 20px; font-size: 15px; color: var(--muted); }

/* ─── DOWNLOAD CARD ──────────────────────────────────────────────────────── */
.download-card {
  background: var(--dark); border-radius: var(--r-lg); padding: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.download-card h2, .download-card h3 { color: var(--white); }
.download-card p  { color: rgba(255,255,255,0.6); }
.download-file-icon {
  width: 80px; height: 80px; border-radius: var(--r);
  background: rgba(0,184,166,0.15); border: 1.5px solid rgba(0,184,166,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; flex-shrink: 0;
}

/* ─── CTA SECTION ────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--teal);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); }
.cta-section p  { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 32px; }
.cta-section .form-row { margin: 0 auto; justify-content: center; }
.cta-section .email-input { background: rgba(255,255,255,0.95); }
.cta-section .email-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,215,0,0.25); }
.cta-section .form-note { color: rgba(255,255,255,0.6); text-align: center; }

/* ─── TRUST BAR ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark); padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-bar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center;
}
.trust-item { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ─── PAGE HERO VARIANTS ─────────────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--teal-xlt) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.page-hero p  { font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ─── ABOUT PAGE ─────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--white); border: 1.5px solid var(--border2);
  border-radius: var(--r); padding: 28px 24px;
}
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-card h4 { font-size: 15px; margin-bottom: 6px; }
.value-card p  { font-size: 13px; }
.founder-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 40px;
}
.founder-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--teal-lt); border: 3px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 20px;
}
.founder-card h3 { margin-bottom: 4px; }
.founder-role { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 16px; display: block; }
.founder-card p { font-size: 15px; }
.quote-block {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  background: var(--gold-lt);
  border-radius: 0 var(--r) var(--r) 0;
  margin-top: 24px;
}
.quote-block p { font-size: 17px; font-style: italic; color: var(--dark); line-height: 1.6; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 64px 0 0;
}
.footer-grid {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .wordmark { font-size: 22px; }
.footer-brand .wordmark .w-dot { color: var(--gold); }
.footer-brand .wordmark .w-ready { color: var(--teal); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 12px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,184,166,0.1); border: 1px solid rgba(0,184,166,0.2);
  border-radius: 8px; padding: 10px 14px; margin-bottom: 10px;
  font-size: 12px; font-weight: 500; color: var(--teal);
}
.footer-bottom {
  max-width: 1160px; margin: 0 auto; padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ─── SECTION ALTERNATING ────────────────────────────────────────────────── */
section.alt { background: var(--white); }
section.dark { background: var(--dark); }
section.dark h2 { color: var(--white); }
section.dark p  { color: rgba(255,255,255,0.6); }
section.dark .section-label { color: var(--teal); }
section.teal-lt { background: var(--teal-xlt); }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ─── MOBILE ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px; gap: 4px;
  }
  .features-grid, .guides-grid, .user-cards, .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .download-card { flex-direction: column; text-align: center; padding: 36px 28px; }
  section { padding: 64px 0; }
  .page-hero { padding: 120px 0 60px; }
  .container, .container--sm { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .footer-grid, .footer-bottom { padding-left: 24px; padding-right: 24px; }
  .form-row { flex-direction: column; }
  .btn { width: 100%; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .trust-bar-inner { gap: 20px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
}

/* ─── ACCESSIBILITY ──────────────────────────────────────────────────────── */
/* Keyboard focus styles - critical for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .dash-card { animation: none; }
  .d-bar { transition: none; }
}

/* Skip to main content link for screen readers */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--teal);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Ensure sufficient colour contrast on muted text */
.form-note { color: #666; }
