@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
  --g1: #2e5e1d;
  --g2: #254b19;
  --g3: #1b3612;   
  --white: #ffffff;
  --off:   #f5faf7;
  --border: rgba(46,94,29,.18);
  --muted: #6a7f72;
  --dark:  #0f2d1a;
  --shadow: 0 20px 60px rgba(10,30,18,.13);
  --r: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; height: 100%; }
body {
  font-family: 'Tajawal', Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  background: var(--white);
  color: var(--dark);
  min-height: 100%;
}
body.modalOpen { overflow: hidden; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
.hidden { display: none !important; }

.heroStage {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.heroCopy {
  flex: 0 0 42%;
  background: linear-gradient(180deg, rgba(46,94,29,.78), rgba(37,75,25,.88));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 48px 60px 52px;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  isolation: isolate;
}

.heroCopy > * {
  position: relative;
  z-index: 4;
}

.heroCopy::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 96%;
  width: 160px;
  height: 120%;
  background: linear-gradient(180deg, rgba(46,94,29,.50), rgba(37,75,25,.62)), url('../img/footer.webp') center center / cover no-repeat;
  border-radius: 0 60% 60% 0 / 0 50% 50% 0;
  z-index: 3;
}

.heroCopy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46,94,29,.50), rgba(37,75,25,.62)), url('../img/footer.webp') center center / cover no-repeat;
  z-index: 1;
}


.heroLogo {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
  position: relative;
  z-index: 4;
  flex-shrink: 0;
}
.heroLogo img {
  width: 124px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 10px 24px rgba(0,0,0,.18));
}

.welcomeBadge {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.22);
}

.heroCopy h1 {
  font-size: clamp(28px, 2.8vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
  position: relative;
  z-index: 4;
}

.heroCopy p {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  max-width: 320px;
  line-height: 1.8;
  margin-bottom: 36px;
  position: relative;
  z-index: 4;
}

.heroSignInBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  padding: 0 28px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: .22s;
  position: relative;
  z-index: 4;
  margin-bottom: 32px;
}
.heroSignInBtn:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.heroLinks { display: none !important; }

.registerPanel {
  flex: 1;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 56px 60px 80px;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.panelForm {
  width: 100%;
  max-width: 400px;
}

.registerTitle {
  text-align: center;
  margin-bottom: 32px;
}
.registerTitle h2 {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  color: var(--g1);
  margin-bottom: 4px;
  line-height: 1.2;
}
.registerTitle p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.fieldGroup { margin-bottom: 16px; }
.fieldGroup label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 7px;
}

.fieldGroup input,
.fieldGroup textarea,
.fieldGroup select {
  width: 100%;
  min-height: 50px;
  background: #e8f5ee;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: .2s;
  -webkit-appearance: none;
  appearance: none;
}
.fieldGroup input::placeholder { color: #9abfac; }
.fieldGroup input:focus,
.fieldGroup textarea:focus,
.fieldGroup select:focus {
  border-color: var(--g1);
  background: #dff0e8;
  box-shadow: 0 0 0 4px rgba(46,94,29,.1);
}
.fieldGroup textarea { height: 88px; resize: vertical; }

.counterBox {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  background: #e8f5ee;
  border: 1.5px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: .2s;
}
.counterBox:focus-within {
  border-color: var(--g1);
  box-shadow: 0 0 0 4px rgba(46,94,29,.1);
}
.counterBox input {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  min-height: 50px;
}
.counterBtn {
  height: 50px;
  border: 0;
  background: rgba(46,94,29,.12);
  color: var(--g1);
  font-size: 22px;
  font-weight: 700;
  transition: .18s;
  line-height: 1;
}
.counterBtn:hover { background: var(--g1); color: #fff; }

.sessionGroup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sessionGroup label { margin: 0; }
.sessionGroup input { display: none; }
.sessionGroup span {
  display: grid;
  place-items: center;
  height: 50px;
  background: #e8f5ee;
  border: 1.5px solid transparent;
  border-radius: 10px;
  color: var(--g2);
  font-weight: 700;
  font-size: 14px;
  transition: .18s;
  cursor: pointer;
}
.sessionGroup input:checked + span {
  background: var(--g1);
  color: #fff;
}

.submitButton {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 10px;
  background: var(--g1);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .4px;
  box-shadow: 0 10px 28px rgba(46,94,29,.3);
  transition: .22s;
  margin-top: 6px;
}
.submitButton:hover {
  background: var(--g2);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(46,94,29,.36);
}
.submitButton:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.formError {
  padding: 12px 14px;
  background: #fff0f0;
  border: 1px solid #f5c0c0;
  color: #b83232;
  border-radius: 10px;
  margin-bottom: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}

.formFootNote {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.formFootNote { display: none !important; }
.formFootNote a { color: var(--g1); font-weight: 800; }

.siteHeader { display: none; }
.heroBackground, .heroOverlay, .heroContent { display: none !important; }

main {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 56px 0 0;
}
.contactSimple { text-align: center; }
.contactSimple h2 {
  margin: 0 0 10px;
  color: var(--g2);
  font-size: 28px;
  font-weight: 900;
}
.contactIntro {
  width: min(560px, 92%);
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}
.plainIcons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
.plainIcons a {
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--g1);
  font-weight: 600;
  transition: .22s;
}
.plainIcons a:hover { transform: translateY(-4px); }
.plainIcons svg { width: 40px; height: 40px; fill: currentColor; }
.plainIcons span { font-size: 13px; color: var(--dark); }

.footerGreen {
  margin-top: 30px;
  background: var(--g2);
  position: relative;
  min-height: 210px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 26px 18px;
}
.footerImage {
  position: absolute;
  inset: 0;
}
.footerImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  filter: saturate(.9) brightness(.78);
}
.footerGreen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,54,18,.72), rgba(27,54,18,.9));
}
.footerContent {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.footerLogo {
  width: 72px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 10px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.18));
}
.footerContent p {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}
.footerIconsOnly {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footerIconsOnly a {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  transition: .2s;
}
.footerIconsOnly a:hover { color: #fff; background: rgba(255,255,255,.2); transform: translateY(-3px); }
.footerIconsOnly svg { width: 17px; height: 17px; fill: currentColor; }
.footerIconsOnly span { display: none !important; }

.successModalBackdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}
.successBlur {
  position: absolute;
  inset: 0;
  background: rgba(10,30,18,.72);
  backdrop-filter: blur(6px);
}
.successCard {
  position: relative;
  z-index: 2;
  width: min(480px, 92vw);
  padding: 40px 32px 34px;
  border-radius: 28px;
  background: var(--g1);
  border: 1.5px solid rgba(255,255,255,.2);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  text-align: center;
  color: #fff;
  animation: modalIn .26s ease both;
}
.successClose {
  position: absolute;
  top: 16px; left: 18px;
  width: 32px; height: 32px;
  border: 0;
  background: rgba(255,255,255,.14);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  transition: .2s;
}
.successClose:hover { background: rgba(255,255,255,.25); }
.successLogo { width: 88px; margin: 0 auto 16px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.18)); }
.successCard h3 { font-size: 24px; margin: 0; line-height: 1.5; }
.successLine { height: 1px; background: rgba(255,255,255,.25); width: 70%; margin: 16px auto; }
.successCard p { font-size: 16px; line-height: 1.8; }
.successCard strong { font-weight: 800; }

.adminLogin {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--g3), var(--g1));
  padding: 24px;
}
.loginBox {
  width: min(420px, 100%);
  padding: 40px 36px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  text-align: center;
}
.loginBox img { width: 78px; margin: 0 auto 14px; }
.loginBox h1 { margin: 0 0 6px; font-size: 26px; font-weight: 800; color: var(--g2); }
.loginBox p { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.loginBox input {
  width: 100%;
  min-height: 50px;
  margin-bottom: 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #e8f5ee;
  color: var(--dark);
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  transition: .2s;
  text-align: right;
  -webkit-appearance: none;
  appearance: none;
}
.loginBox input::placeholder { color: #9abfac; }
.loginBox input:focus {
  border-color: var(--g1);
  background: #dff0e8;
  box-shadow: 0 0 0 4px rgba(46,94,29,.1);
}
.loginBox button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: var(--g1);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 10px 28px rgba(46,94,29,.28);
  transition: .22s;
}
.loginBox button:hover { background: var(--g2); transform: translateY(-2px); }

.adminShell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: #eef4f0; }
.sideNav {
  padding: 24px 16px;
  background: linear-gradient(180deg, var(--g3), var(--g2));
  color: #fff;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sideNav img { width: 82px; margin: 0 auto 12px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.15)); }
.sideNav h2 { margin: 0 0 20px; font-size: 20px; text-align: center; font-weight: 800; }
.sideNav nav { display: grid; gap: 8px; }
.sideNav a {
  display: flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.9);
  transition: .2s;
}
.sideNav a:hover { background: rgba(255,255,255,.18); }

.dashboard { padding: 28px; }
.dashTop { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 20px; }
.dashTop h1 { margin: 0; font-size: 30px; color: var(--g2); font-weight: 800; }
.dashTop p { margin: 6px 0 0; color: #66756b; font-size: 14px; }
.exportButtons { display: flex; gap: 10px; flex-wrap: wrap; }
.exportButtons a, .filters button, .clearFilter {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px;
  border: 0; border-radius: 12px;
  background: var(--g1); color: #fff;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 6px 18px rgba(46,94,29,.18);
  transition: .2s;
}
.exportButtons a:hover, .filters button:hover { background: var(--g2); }
.clearFilter { background: #e5edea; color: var(--dark); box-shadow: none; }

.statsGrid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; margin-bottom: 20px; }
.compactStats { grid-template-columns: repeat(3,minmax(0,1fr)); }
.statCard, .tableCard, .verifyBox, .editModal {
  background: #fff;
  border: 1px solid rgba(46,94,29,.1);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 20px;
}
.statCard span { display: block; color: #6b776f; font-size: 13px; margin-bottom: 8px; }
.statCard strong { font-size: 28px; color: var(--g2); line-height: 1.1; }

.filters { display: grid; grid-template-columns: 1.5fr .95fr .95fr auto auto; gap: 10px; margin-bottom: 16px; }
.filters input, .filters select {
  width: 100%; min-height: 44px; padding: 0 14px;
  border: 1px solid rgba(46,94,29,.16); border-radius: 12px;
  outline: none; background: #fff; font-size: 14px; transition: .2s;
}
.filters input:focus, .filters select:focus {
  box-shadow: 0 0 0 4px rgba(46,94,29,.08); border-color: var(--g1);
}

.tableWrap { overflow: auto; }
.responsiveTable { width: 100%; min-width: 1080px; border-collapse: collapse; }
.slimTable { min-width: 860px; }
th, td { padding: 13px 12px; border-bottom: 1px solid #eef4f0; text-align: right; font-size: 14px; vertical-align: top; }
th { background: #edf7f2; color: var(--g2); font-weight: 800; position: sticky; top: 0; }

.statusBadge { display: inline-flex; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.statusBadge.confirmed { background: #e3f2e8; color: #2a6840; }
.statusBadge.pending   { background: #fff4dc; color: #a46b19; }
.statusBadge.cancelled { background: #fae7e0; color: #b85a36; }

.rowActions { display: flex; gap: 6px; flex-wrap: wrap; }
.rowActions form { display: inline; }
.rowActions button { padding: 9px 11px; border: 0; border-radius: 10px; background: #e8f2ec; color: var(--dark); font-weight: 700; transition: .2s; }
.rowActions button:hover { background: #d2e8da; }
.rowActions form:nth-child(2) button { background: #fbece6; color: #b85a36; }

.modalBackdrop { position: fixed; inset: 0; background: rgba(10,24,16,.56); display: grid; place-items: center; padding: 18px; z-index: 40; }
.editModal { width: min(560px,100%); }
.editModal h2 { margin: 0 0 16px; font-size: 22px; color: var(--g2); }
.editModal input, .editModal select, .editModal textarea {
  width: 100%; min-height: 44px;
  border: 1px solid rgba(46,94,29,.16); border-radius: 12px;
  margin-bottom: 10px; padding: 10px 14px; outline: none; font-size: 14px; transition: .2s;
}
.editModal textarea { min-height: 100px; resize: vertical; }
.checkLine { display: flex; gap: 8px; align-items: center; font-weight: 700; color: var(--g2); }
.checkLine input { width: auto; min-height: auto; margin: 0; }
.modalActions { display: flex; gap: 10px; margin-top: 8px; }
.modalActions button { flex: 1; min-height: 46px; border: 0; border-radius: 12px; background: var(--g1); color: #fff; font-weight: 800; transition: .22s; }
.modalActions button:hover { background: var(--g2); }
.modalActions button:last-child { background: #edf0ec; color: var(--dark); }

.verifyPage {
  min-height: 100vh;
  display: grid; place-items: center; padding: 20px;
  background: linear-gradient(135deg, var(--g3), var(--g1));
}
.verifyBox {
  width: min(500px,100%); text-align: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 28px; padding: 36px 32px;
  backdrop-filter: blur(12px);
}
.verifyBox img { width: 98px; margin: 0 auto 14px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.18)); }
.verifyBox h1 { margin: 0 0 6px; color: #fff; font-weight: 800; font-size: 26px; }
.verifyBox p { margin: 0 0 18px; color: rgba(255,255,255,.7); }
.verifyBox a {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.3); border-radius: 12px;
  background: rgba(255,255,255,.18); color: #fff; font-weight: 800;
  padding: 12px 18px; width: 100%; transition: .2s;
}
.verifyBox a:hover { background: rgba(255,255,255,.28); }
.verifyMeta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0; }
.verifyMeta > div { padding: 14px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); border-radius: 14px; }
.verifyMeta span { display: block; color: rgba(255,255,255,.6); font-size: 12px; }
.verifyMeta strong { font-weight: 800; color: #fff; }

.sourceSummaryCard { margin-bottom: 18px; }
.sourceSummaryCard h2 { margin: 0 0 14px; color: var(--g2); font-size: 21px; }
.sourceSummaryGrid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 10px; }
.sourceSummaryGrid > div { border: 1px solid rgba(46,94,29,.1); background: #f0f8f3; border-radius: 14px; padding: 14px; }
.sourceSummaryGrid span { display: block; color: #6b776f; font-size: 13px; margin-bottom: 6px; }
.sourceSummaryGrid strong { color: var(--g2); font-size: 22px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to   { opacity: 1; transform: none; }
}


body.pageReady .heroLogo,
body.pageReady .heroCopy h1,
body.pageReady .heroCopy p,
body.pageReady .heroSignInBtn,
body.pageReady .registerPanel {
  animation-duration: .72s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.22,.8,.22,1);
}
body.pageReady .heroLogo { animation-name: heroFadeUp; animation-delay: .05s; }
body.pageReady .heroCopy h1 { animation-name: heroFadeUp; animation-delay: .14s; }
body.pageReady .heroCopy p { animation-name: heroFadeUp; animation-delay: .24s; }
body.pageReady .heroSignInBtn { animation-name: heroFadeUp; animation-delay: .34s; }
body.pageReady .registerPanel { animation-name: heroPanelIn; animation-delay: .18s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroPanelIn {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .reveal { transform: translateY(16px); transition: opacity .45s ease, transform .45s ease; }
  .heroCopy, .registerPanel { will-change: transform, opacity; }

  .heroStage { flex-direction: column; min-height: auto; }

  
  .heroCopy {
    flex: none;
    min-height: auto;
    padding: 48px 28px 72px;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-radius: 0 0 50% 50% / 0 0 10% 10%;
  }
  
  .heroCopy::after {
    display: none;
  }
  .heroCopy::before {
    display: block;
  }

  .heroCopy p { max-width: 100%; }
  .heroSignInBtn { margin-bottom: 24px; }

  
  .registerPanel {
    min-height: auto;
    padding: 72px 28px 48px;
    justify-content: center;
  }
  .panelForm { max-width: 100%; }

  .statsGrid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .adminShell { display: block; }
  .sideNav { position: relative; height: auto; padding: 14px; }
  .sideNav nav { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .dashboard { padding: 16px; }
  .dashTop { display: block; }
  .exportButtons { margin-top: 12px; }
  .filters { grid-template-columns: 1fr; }
  main { padding: 32px 0 0; }
}

@media (max-width: 600px) {
  body.pageReady .heroLogo,
  body.pageReady .heroCopy h1,
  body.pageReady .heroCopy p,
  body.pageReady .heroSignInBtn,
  body.pageReady .registerPanel {
    animation-duration: .6s;
  }

  body { font-size: 14px; }

  
  .heroCopy {
    padding: 40px 24px 68px;
  }
  .heroLogo { margin-bottom: 16px; }
  .heroLogo img { width: 104px; filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0,0,0,.18)); }
  .heroCopy h1 { font-size: 26px; }
  .heroCopy p { font-size: 14px; }
  .heroSignInBtn { min-width: 148px; height: 46px; font-size: 12px; }

  
  .registerPanel { padding: 60px 20px 44px; }
  .registerTitle h2 { font-size: 26px; }
  .registerTitle p { font-size: 13px; }

  
  .fieldGroup input,
  .fieldGroup textarea,
  .fieldGroup select { min-height: 48px; font-size: 14px; padding: 12px 14px; }
  .counterBox input, .counterBtn { height: 48px; }
  .sessionGroup span { height: 48px; font-size: 13px; }
  .submitButton { height: 50px; font-size: 14px; }

  
  .plainIcons { gap: 28px; }
  .plainIcons svg { width: 36px; height: 36px; }

  
  .footerGreen { padding: 36px 18px; margin-top: 28px; min-height: 280px; }
  .footerContent p { font-size: 18px; }

  
  .successCard { padding: 34px 22px 28px; }
  .successCard h3 { font-size: 20px; }

  
  .statsGrid { grid-template-columns: 1fr 1fr; }
  .sideNav nav { grid-template-columns: 1fr; }
  .dashTop h1 { font-size: 22px; }
  .tableWrap { overflow: visible; }
  .responsiveTable { min-width: 0; border-collapse: separate; border-spacing: 0 10px; }
  .responsiveTable thead { display: none; }
  .responsiveTable tbody, .responsiveTable tr, .responsiveTable td { display: block; width: 100%; }
  .responsiveTable tr { background: #fff; border: 1px solid rgba(46,94,29,.1); border-radius: 16px; box-shadow: 0 6px 20px rgba(10,30,18,.08); padding: 8px; }
  .responsiveTable td { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; border: 0; border-bottom: 1px solid #eef4f0; padding: 9px 8px; font-size: 13px; text-align: right; }
  .responsiveTable td:last-child { border-bottom: 0; }
  .responsiveTable td::before { content: attr(data-label); font-weight: 800; color: var(--g2); font-size: 12px; min-width: 90px; }
  .responsiveTable td.rowActions { display: grid; gap: 8px; }
  .rowActions form, .rowActions button { width: 100%; }
  .modalBackdrop { align-items: flex-start; overflow: auto; }
  .modalActions { display: grid; grid-template-columns: 1fr; }
  .sourceSummaryGrid { grid-template-columns: 1fr 1fr; }

  
  .verifyMeta { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .statsGrid { grid-template-columns: 1fr; }
  .sourceSummaryGrid { grid-template-columns: 1fr; }
  .heroCopy { padding: 36px 18px 64px; }
  .registerPanel { padding: 56px 16px 40px; }
}

.welcomeBadge { display: none !important; }


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
