/* Minification failed. Returning unminified contents.
(8,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(15,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(16,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(21,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(22,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(23,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(24,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(25,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(26,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(32,21): run-time error CSS1039: Token not allowed after unary operator: '-sans'
(33,20): run-time error CSS1039: Token not allowed after unary operator: '-white'
(34,15): run-time error CSS1039: Token not allowed after unary operator: '-text'
(59,20): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(70,42): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(104,30): run-time error CSS1039: Token not allowed after unary operator: '-border-md'
(107,21): run-time error CSS1039: Token not allowed after unary operator: '-sans'
(115,30): run-time error CSS1039: Token not allowed after unary operator: '-sans'
(117,15): run-time error CSS1039: Token not allowed after unary operator: '-text'
(119,51): run-time error CSS1039: Token not allowed after unary operator: '-text-2'
(120,52): run-time error CSS1039: Token not allowed after unary operator: '-text-3'
(121,41): run-time error CSS1039: Token not allowed after unary operator: '-mono'
(121,79): run-time error CSS1039: Token not allowed after unary operator: '-text-4'
(123,21): run-time error CSS1039: Token not allowed after unary operator: '-mono'
(124,42): run-time error CSS1039: Token not allowed after unary operator: '-text-4'
(128,31): run-time error CSS1039: Token not allowed after unary operator: '-text-2'
(129,37): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(132,30): run-time error CSS1039: Token not allowed after unary operator: '-border-md'
(134,33): run-time error CSS1039: Token not allowed after unary operator: '-text-4'
(136,32): run-time error CSS1039: Token not allowed after unary operator: '-text-3'
(137,38): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(142,30): run-time error CSS1039: Token not allowed after unary operator: '-sans'
(145,44): run-time error CSS1039: Token not allowed after unary operator: '-mono'
(145,83): run-time error CSS1039: Token not allowed after unary operator: '-text-3'
(147,30): run-time error CSS1039: Token not allowed after unary operator: '-sans'
(150,64): run-time error CSS1039: Token not allowed after unary operator: '-text-2'
(152,65): run-time error CSS1039: Token not allowed after unary operator: '-text-2'
(153,29): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(156,67): run-time error CSS1039: Token not allowed after unary operator: '-border-md'
(157,34): run-time error CSS1039: Token not allowed after unary operator: '-text-3'
 */
/* =====================================================================
   exnet2.css — shared styles for the Exnet2 partner theme.
   Page-specific styles remain inline in each view's @section styles { }.
   Extracted from the shared <style> headers in exnet_website/*.html.
   ===================================================================== */

:root {
  --white: #fff;
  --grey: #f4f3f0;
  --grey-2: #eceae5;
  --border: rgba(0, 0, 0, .06);
  --border-md: rgba(0, 0, 0, .1);
  --border-strong: rgba(0, 0, 0, .14);
  --text: #0f0f0f;
  --text-2: #3a3a3a;
  --text-3: #6b6b6b;
  --text-4: #9a9a9a;
  --accent: #d96a2b;
  --accent-soft: rgba(217, 106, 43, .07);
  --navy: #0a0e1a;
  --cyan: #0e7490;
  --cyan-soft: rgba(14, 116, 144, .07);
  --green: #15803d;
  --green-soft: rgba(21, 128, 61, .07);
  --mono: 'JetBrains Mono', monospace;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV — fixed, translucent navy bar used on every exnet2 page */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: .9rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10, 14, 26, .6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: .55rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
  transition: transform .15s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(217, 106, 43, .25); }

/* Sign In / Join — Exnet2 pill shape, legacy navy color */
.nav-cta.nav-cta-navy { background: var(--navy); }
.nav-cta.nav-cta-navy:hover { box-shadow: 0 4px 20px rgba(10, 14, 26, .35); }

/* Sign In + Join grouped together with a small gap; parent nav-links `gap` keeps the larger distance from Talk to us */
.nav-auth-group { display: inline-flex; align-items: center; gap: .5rem; }

/* MOBILE HAMBURGER */
.mobile-menu-toggle {
  display: none; background: transparent; border: none; cursor: pointer;
  padding: .5rem; color: #fff; -webkit-tap-highlight-color: transparent; z-index: 101;
}
.mobile-menu-toggle svg { width: 24px; height: 24px; display: block; }
.mobile-menu-panel {
  display: none; position: fixed; inset: 0;
  background: #0a0e1a; z-index: 99; padding: 5rem 2rem 2rem;
  flex-direction: column; gap: .75rem;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.mobile-menu-panel.open { opacity: 1; pointer-events: auto; }
.mobile-menu-panel a {
  color: #fff; text-decoration: none; font-size: 1.35rem; font-weight: 500;
  padding: .25rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: color .15s ease;
}
.mobile-menu-panel a:hover { color: #d96a2b; }
.mobile-menu-panel .nav-cta {
  margin-top: .5rem; display: inline-flex; align-self: flex-start;
  background: #d96a2b; color: #fff; padding: .85rem 1.5rem;
  border-radius: 8px; border: none; font-weight: 600;
}

/* FOOTER — appears on landing + legal + static pages */
.site-footer {
  background: #f5f4f1;
  border-top: 1px solid var(--border-md);
  margin-top: 0;
  padding: 64px 0 32px;
  font-family: var(--sans);
}
.footer-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 72px; align-items: start;
}
.footer-col { min-width: 0; }
.footer-brand-name {
  font-family: 'Inter', var(--sans);
  font-weight: 700; font-size: 1.1rem; letter-spacing: .02em;
  color: var(--text); margin-bottom: 1rem;
}
.footer-brand-line { font-size: 1rem; color: var(--text-2); line-height: 1.5; max-width: 36ch; margin-bottom: .4rem; }
.footer-brand-sub { font-size: .88rem; color: var(--text-3); line-height: 1.55; max-width: 38ch; margin-bottom: 1.25rem; }
.footer-brand-micro { font-family: var(--mono); font-size: .7rem; color: var(--text-4); letter-spacing: .02em; font-style: italic; }
.footer-col-label {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-4); font-weight: 600; margin-bottom: 1.1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: var(--text-2); text-decoration: none; font-size: .92rem; transition: color .15s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1320px; margin: 48px auto 0; padding: 24px 3rem 0;
  border-top: 1px solid var(--border-md);
  display: flex; justify-content: center; align-items: center; gap: 2rem;
  font-size: .8rem; color: var(--text-4); flex-wrap: wrap;
}
.footer-bottom a { color: var(--text-3); text-decoration: none; transition: color .15s ease; }
.footer-bottom a:hover { color: var(--accent); }

/* LEGAL PAGE TEMPLATE (cookies, ethics, privacy, terms share near-identical rules) */
.legal-wrap { max-width: 780px; margin: 0 auto; padding: 140px 2rem 100px; }
.legal-wrap h1 {
  font-family: 'Inter', var(--sans); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; letter-spacing: -.02em; margin-bottom: .5rem; line-height: 1.15;
}
.legal-wrap .legal-sub { font-family: var(--mono); font-size: .78rem; color: var(--text-3); letter-spacing: .05em; margin-bottom: 3rem; }
.legal-wrap h2 {
  font-family: 'Inter', var(--sans); font-size: 1.35rem; font-weight: 700;
  margin-top: 2.5rem; margin-bottom: 1rem; letter-spacing: -.01em;
}
.legal-wrap p { font-size: 1rem; line-height: 1.7; color: var(--text-2); margin-bottom: 1rem; }
.legal-wrap ul { margin: 1rem 0 1rem 1.5rem; }
.legal-wrap li { font-size: 1rem; line-height: 1.7; color: var(--text-2); margin-bottom: .45rem; }
.legal-wrap a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-wrap a:hover { color: #b85822; }
.legal-footer-note {
  margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border-md);
  font-size: .88rem; color: var(--text-3); line-height: 1.6;
}

/* Responsive — shared mobile adjustments */
@media (max-width: 900px) {
  .mobile-menu-toggle { display: inline-flex; }
  .mobile-menu-panel { display: flex; }
  nav { position: fixed; z-index: 100; padding: .75rem 1.25rem !important; }
  .nav-links { gap: .75rem !important; }
  .nav-links a:not(.nav-cta) { display: none !important; }
  .nav-cta { padding: .5rem 1rem !important; font-size: .82rem !important; }
  .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem 1.5rem !important;
    padding: 0 1.5rem !important;
  }
  .footer-col.footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column !important; gap: .5rem !important;
    text-align: center !important; padding: 24px 1.5rem 0 !important; margin-top: 32px !important;
  }
}
/* Below this width the nav row can't fit Talk to us + Sign In + Join + hamburger
   on one line with breathing room next to the EXNET logo — drop Talk to us; it
   stays available in the mobile menu panel. */
@media (max-width: 560px) {
  nav .nav-cta:not(.nav-cta-navy) { display: none !important; }
}
@media (max-width: 600px) {
  .legal-wrap { padding: 110px 1.25rem 60px; }
}

