/* Global Styles */
    :root {
      --bg: radial-gradient(circle at 30% 10%, #fff6ec 0%, #f6e7d4 30%, #eddbc3 65%, #d9c3a9 100%);
      --bg-soft: #f1e6d5;
      --bg-softer: #faefe5;

      --text: #0f2719;
      --muted: #375040;

      --accent: #0f2719;
      --accent-soft: rgba(15, 39, 25, 0.1);

      --border-subtle: rgba(0, 0, 0, 0.15);
      --danger: #b33a3a;

      --radius-lg: 18px;
      --radius-md: 12px;
      --radius-pill: 999px;

      --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);

      --section-gap: 5rem;
      --max-width: 1120px;

      --card-bg: rgba(255, 249, 240, 0.72);
      --card-border: rgba(120, 96, 72, 0.25);
      --card-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);

      --panel-bg: linear-gradient(
        to bottom right,
        rgba(255, 246, 233, 0.85),
        rgba(245, 231, 213, 0.92)
      );

      --header-bg: linear-gradient(
        to bottom,
        rgba(255, 246, 233, 0.9),
        rgba(245, 231, 213, 0.7),
        transparent
      );
      --header-border: rgba(120, 96, 72, 0.25);
    }

    .dark {
      --bg: radial-gradient(circle at top, #26232a 0%, #050608 48%, #000 100%);
      --bg-soft: #111219;
      --bg-softer: #181924;

      --text: #f5ebdd;
      --muted: #b7ac9c;

      --accent: #f2c56a;
      --accent-soft: rgba(242, 197, 106, 0.18);

      --border-subtle: rgba(255, 255, 255, 0.08);
      --danger: #ff5c5c;

      --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);

      --card-bg: rgba(10, 12, 18, 0.94);
      --card-border: rgba(255, 255, 255, 0.08);
      --card-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);

      --panel-bg: radial-gradient(circle at top left, rgba(242, 197, 106, 0.18), rgba(17, 18, 25, 0.96));
      --header-bg: linear-gradient(to bottom, rgba(5, 6, 8, 0.94), rgba(5, 6, 8, 0.75), transparent);
      --header-border: rgba(255, 255, 255, 0.04);
    }

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

    html, body {
      height: 100%;
    }

body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(22px);
      background: var(--header-bg);
      border-bottom: 1px solid var(--header-border);
    }

    .header-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 1.4rem 1.25rem 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.25rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

.brand-mark {
      width: 40px;
      height: 40px;
      border-radius: 22px;
      background: radial-gradient(circle at 30% 15%, #f2c56a 0%, #e9c788 40%, #eddbc3 95%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
      overflow: hidden;
    }

    .dark .brand-mark {
      background: radial-gradient(circle at 30% 15%, #f2c56a 0, #d49a3a 32%, #050608 85%);
    }

    .brand-mark span {
      font-weight: 700;
      letter-spacing: 0.08em;
      font-size: 0.8rem;
      text-transform: uppercase;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .brand-name {
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .brand-tagline {
      font-size: 0.78rem;
      color: var(--muted);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-links {
      display: none;
      gap: 1.5rem;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.15rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width 0.18s ease-out;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .badge-pill {
      padding: 0.2rem 0.7rem;
      border-radius: var(--radius-pill);
      background: #e8d3b8;
      border: 1px solid rgba(15, 39, 25, 0.25);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text);
    }

    .dark .badge-pill {
      color: #bcffd8;
      background: rgba(62, 255, 147, 0.12);
      border: 1px solid rgba(62, 255, 147, 0.4);
    }

    .btn {
      position: relative;
      border-radius: var(--radius-pill);
      padding: 0.6rem 1.4rem;
      border: 1px solid transparent;
      font-size: 0.84rem;
      font-weight: 500;
      cursor: pointer;
      background: transparent;
      color: var(--text);
      transition: all 0.16s ease-out;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #f8cf79, #e5ad3b);
      color: #1a1204;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
    }

    .btn-primary:hover {
      filter: brightness(1.03);
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.4);
      border-color: rgba(120, 96, 72, 0.3);
    }

    .dark .btn-ghost {
      background: rgba(10, 12, 18, 0.8);
      border-color: rgba(255, 255, 255, 0.18);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.65);
      border-color: rgba(15, 39, 25, 0.35);
    }

    .dark .btn-ghost:hover {
      background: rgba(24, 26, 36, 0.95);
      border-color: rgba(255, 255, 255, 0.26);
    }

main {
      flex: 1;
    }

    .hero {
      padding-top: 3.5rem;
      padding-bottom: 2.5rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
      gap: 2.8rem;
      align-items: center;
    }

    .eyebrow {
      font-size: 0.82rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.9rem;
    }

    .eyebrow span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: var(--accent-soft);
      border: 1px solid rgba(15, 39, 25, 0.45);
      font-size: 0.65rem;
    }

    .dark .eyebrow span {
      border: 1px solid rgba(242, 197, 106, 0.8);
    }

    .hero-title {
      font-size: clamp(2.4rem, 3.2vw + 1.4rem, 3.4rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 1rem;
    }

    .hero-highlight {
      background: linear-gradient(120deg, #0f2719, #4a6a57);
      -webkit-background-clip: text;
      color: transparent;
    }

    .dark .hero-highlight {
      background: linear-gradient(120deg, #f7d384, #f9f1e4);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-body {
      font-size: 0.98rem;
      color: var(--muted);
      max-width: 32rem;
    }

    .hero-meta {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      margin-top: 1.6rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }

    .hero-footnote {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      font-size: 0.82rem;
      color: var(--muted);
    }

    .hero-metric {
      padding: 0.65rem 0.85rem;
      border-radius: var(--radius-md);
      background: linear-gradient(to bottom right, rgba(255, 249, 240, 0.75), rgba(238, 221, 197, 0.9));
      border: 1px solid rgba(15, 39, 25, 0.25);
      min-width: 10rem;
    }

    .dark .hero-metric {
      background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.4));
      border: 1px solid var(--border-subtle);
    }

    .hero-metric strong {
      display: block;
      font-size: 1rem;
      color: var(--text);
    }

    .hero-card {
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.4rem 1.2rem;
      background: var(--panel-bg);
      border: 1px solid var(--card-border);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

.dark .hero-card {
      box-shadow: var(--card-shadow);
}

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: flex-start;
    }

    .hero-card-title {
      font-size: 0.88rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .hero-card-main {
      margin-top: 0.2rem;
    }

    .hero-card-main strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
    }

    .hero-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.6rem;
    }

    .chip {
      font-size: 0.75rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: #e8d3b8;
      border: 1px solid rgba(15, 39, 25, 0.25);
      color: var(--text);
    }

    .dark .chip {
      color: var(--muted);
      background: rgba(5, 6, 8, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .pay-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      font-size: 0.85rem;
    }

    .pay-block strong {
      display: block;
      font-size: 1.05rem;
      color: var(--accent);
    }

    .pay-note {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 0.3rem;
    }

    .hero-list {
      list-style: none;
      font-size: 0.85rem;
      color: var(--muted);
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0.4rem;
    }

    .hero-list li::before {
      content: "•";
      margin-right: 0.45rem;
      color: var(--accent);
    }

    section {
      scroll-margin-top: 5rem;
    }

    .section {
      padding-top: var(--section-gap);
    }

    .section-header {
      margin-bottom: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .section-title {
      font-size: 1.5rem;
      letter-spacing: -0.02em;
    }

    .section-intro {
      font-size: 0.93rem;
      color: var(--muted);
      max-width: 34rem;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 2.3rem;
      align-items: flex-start;
    }

    .card {
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.5rem;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      box-shadow: var(--card-shadow);
    }

    .card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.6rem;
    }

    .card p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.8rem;
    }

    .pill {
      font-size: 0.78rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(15, 39, 25, 0.25);
      color: var(--muted);
      background: #e8d3b8;
    }

    .dark .pill {
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(5, 6, 8, 0.9);
    }

    .list {
      font-size: 0.9rem;
      color: var(--muted);
      padding-left: 1rem;
    }

    .list li {
      margin-bottom: 0.4rem;
    }

    .list li strong {
      color: var(--text);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.4rem;
      margin-top: 1.2rem;
    }

    .team-card {
      border-radius: var(--radius-md);
      padding: 1.1rem 1.2rem;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
    }

    .dark .team-card {
      background: rgba(10, 12, 18, 0.94);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .team-role {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.2rem;
    }

    .team-name {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .team-bio {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .progress-steps {
      list-style: none;
      counter-reset: step-counter;
      display: grid;
      gap: 0.75rem;
      font-size: 0.9rem;
      color: var(--muted);
      margin-top: 0.8rem;
    }

    .progress-steps li {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 0.75rem;
      align-items: flex-start;
    }

    .progress-steps li::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      width: 26px;
      height: 26px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      background: var(--accent-soft);
      border: 1px solid rgba(15, 39, 25, 0.45);
      color: var(--accent);
      margin-top: 0.1rem;
    }

    .dark .progress-steps li::before {
      border: 1px solid rgba(242, 197, 106, 0.7);
    }

    .progress-steps strong {
      display: block;
      color: var(--text);
      margin-bottom: 0.15rem;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
      gap: 2.2rem;
      align-items: flex-start;
    }

    .faq-list {
      list-style: none;
      display: grid;
      gap: 0.9rem;
    }

    .faq-item {
      border-radius: var(--radius-md);
      padding: 0.8rem 1rem;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .dark .faq-item {
      box-shadow: none;
    }


    .faq-item h4 {
      font-size: 0.92rem;
      margin-bottom: 0.2rem;
    }

    .faq-item p {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .cta-banner {
      margin-top: var(--section-gap);
      border-radius: 22px;
      padding: 1.6rem 1.5rem;
      background: var(--panel-bg);
      border: 1px solid var(--card-border);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
      gap: 1.5rem;
      align-items: center;
    }

.dark .cta-banner {
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

    .cta-banner h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }

    .cta-banner p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .cta-right {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      align-items: flex-start;
      justify-content: center;
    }

    .cta-right small {
      font-size: 0.78rem;
      color: var(--muted);
    }

footer {
      border-top: 1px solid rgba(15, 39, 25, 0.25);
      padding: 1.2rem 1.25rem 1.5rem;
      font-size: 0.8rem;
      color: var(--muted);
      background: #e8d3b8;
      margin-top: auto;
      width: 100%;
    }

.dark footer {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      background: #050608;
      color: var(--muted);
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      justify-content: space-between;
      align-items: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }

    .footer-links a {
      text-decoration: underline;
      text-decoration-color: rgba(183, 172, 156, 0.4);
      text-underline-offset: 3px;
    }

/* Apply Form Fields — Light & Dark Mode */
.form-field {
      width: 100%;
      padding: 0.55rem 0.6rem;
      border-radius: 8px;
      border: 1px solid rgba(15, 39, 25, 0.25);
      background: #f6e7d4;
      color: var(--text);
      font-size: 0.85rem;
}

.form-field::placeholder {
      color: var(--muted);
}

.form-field:focus {
      outline: none;
      border-color: rgba(15, 39, 25, 0.45);
      box-shadow: 0 0 0 2px rgba(15, 39, 25, 0.12);
}

.dark .form-field {
      background: rgba(5, 6, 8, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--text);
}

.dark .form-field::placeholder {
      color: var(--muted);
}


.dark .form-field:focus {
      border-color: rgba(242, 197, 106, 0.6);
      box-shadow: 0 0 0 2px rgba(242, 197, 106, 0.15);
}

/* Login Page Components */
.login-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.dark .login-card {
  box-shadow: var(--card-shadow);
}

.login-title {
  margin-bottom: 1rem;
  text-align: center;
}

.forgot-link {
  display: block;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--accent);
}

.login-brand {
  margin: 0 auto 1rem auto;
  display: flex;
  justify-content: center;
}

.login-logo {
  height: 64px;
  margin: 0 auto 1rem auto;
  display: block;
}

/* Login Button */
.btn-login {
  padding: 0.55rem 1.4rem;
  background: #0f2719;        /* brand green */
  color: #eddbc3;             /* brand cream */
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-login:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-login:active {
  transform: translateY(0);
}

.dark .btn-login {
  background: #f2c56a;        /* gold highlight for dark mode */
  color: #050608;             /* deep grey text for contrast */
}

.dark .btn-login:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.auth-container {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-label {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.35rem;
  text-align: left;
}


.form-field + .form-field {
  margin-top: 1rem;
}

/* Theme‑Switched Logos */
.logo-light,
.logo-dark {
  height: 42px;
  width: auto;
  display: block;
}

/* Light mode → show light logo */
.logo-light {
  display: block;
}
.logo-dark {
  display: none;
}

/* Dark mode → show dark logo */
.dark .logo-light {
  display: none;
}
.dark .logo-dark {
  display: block;
}

/* --- Global Notification Banner Styles --- */
.notification-bar {
    width: 100%;
    background: #060f0a;
    color: #eddbc3;
    padding: 1.85rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    position: relative;
    z-index: 15;
    display: flex;
    align-items: center;
}

.notification-scroll {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 16s linear infinite;
    font-size: 1.55rem;
    letter-spacing: 0.05em;
    font-weight: 750;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

@keyframes scrollText {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .grid-2,
      .faq-grid,
      .cta-banner {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 2.4rem;
      }

      .hero-card {
        order: -1;
      }

      .team-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (min-width: 720px) {
      .nav-links {
        display: flex;
      }
    }

    @media (max-width: 640px) {
      .hero-title {
        font-size: 2.25rem;
      }

      .shell {
        padding-inline: 1.1rem;
      }
    }