/* InterCure — Shared Design System */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --dark:        #1e2530;
  --dark-2:      #252e3d;
  --green:       #3d4756;
  --green-vivid: #089df8;
  --green-light: #e6f4fe;
  --green-muted: #b3d9f8;
  --white:       #ffffff;
  --off-white: #089df840;

  --text:        #1e2530;
  --text-muted:  #6b7585;
  --border:      #d5dae3;
  --slate:       #a1acbd;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --radius: 2px;
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── NAV ────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.01em;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 28px; height: 28px;
  background: var(--green-vivid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 14px; height: 14px; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active { border-bottom: 1px solid var(--green-vivid); padding-bottom: 1px; }
.nav-ticker {
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 500;
  color: var(--green-vivid);
  letter-spacing: 0.06em;
  border: 1px solid rgba(52,168,90,0.4);
  padding: 5px 12px;
  border-radius: 2px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.3;
  text-align: center;
}

/* ── STATS BAR ──────────────────────────────── */
.stats-bar {
  background: var(--dark-2);
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-item {
  flex: 1;
  padding: 18px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num span { color: var(--green-vivid); font-size: 16px; }
.stat-label {
  font-size: 10.5px; font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── SECTION LAYOUTS ────────────────────────── */
.section { padding: 96px 48px; }
.section--dark { background: var(--dark); }
.section--off { background: var(--off-white); }
.section--green { background: var(--green-light); }

.section-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-eyebrow--light { color: var(--green-vivid); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
  text-wrap: pretty;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 16px; line-height: 1.65;
  color: var(--text-muted);
  max-width: 560px;
  text-wrap: pretty;
}
.section-sub--light { color: rgba(255,255,255,0.55); }

.section-header { margin-bottom: 56px; }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px;
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--green-vivid);
  color: #fff;
  border-color: var(--green-vivid);
}
.btn-primary:hover { background: #2d9650; border-color: #2d9650; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); }
.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-dark:hover { background: var(--green); color: #fff; }

/* ── CARDS ──────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.card--dark:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

.card-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 20px; height: 20px; color: var(--green); }
.card-icon--dark { background: rgba(52,168,90,0.12); }
.card-icon--dark svg { color: var(--green-vivid); }

.card-label {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.card-label--dark { color: var(--green-vivid); }

.card-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.card-title--dark { color: var(--white); }

.card-body {
  font-size: 14px; line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.card-body--dark { color: rgba(255,255,255,0.5); }

.card-metrics {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: auto;
}
.card-metric {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--text-muted);
}
.card-metric::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--green-vivid);
  border-radius: 50%;
  flex-shrink: 0;
}
.card-metric--dark { color: rgba(255,255,255,0.45); }

/* ── GRID UTILS ─────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

/* ── PILL / BADGE ───────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  background: var(--green-light);
  color: var(--green);
  font-size: 11.5px; font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.badge--dark { background: rgba(52,168,90,0.15); color: var(--green-vivid); }

/* ── IMAGE PLACEHOLDERS ─────────────────────── */
.img-placeholder {
  background: repeating-linear-gradient(
    45deg,
    #e6ede9,
    #e6ede9 6px,
    #dde7e0 6px,
    #dde7e0 12px
  );
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-placeholder--dark {
  background: repeating-linear-gradient(
    45deg,
    #1e2530,
    #1e2530 6px,
    #252e3d 6px,
    #252e3d 12px
  );
}
.img-placeholder-label {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: rgba(0,0,0,0.3);
  text-align: center;
  padding: 12px;
  line-height: 1.4;
}
.img-placeholder-label--dark { color: rgba(255,255,255,0.2); }

/* ── DIVIDER ────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0 48px; }
.divider--dark { background: rgba(255,255,255,0.07); margin: 0; }

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 64px 48px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand { max-width: 260px; }
.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-contact { font-size: 12.5px; color: rgba(255,255,255,0.35); line-height: 1.8; }
.footer-contact a { color: var(--green-vivid); text-decoration: none; }
.footer-col-title {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-nasdaq { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; }

/* ── HERO ────────────────────────────────────── */
.hero {
  background: var(--dark);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 48px;
  gap: 64px;
  position: relative;
  overflow: hidden;
}
.hero-vanta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(8,157,248,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-vivid);
  margin-bottom: 20px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--green-vivid); border-radius: 50%; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.hero-title em { color: var(--green-vivid); font-style: normal; }
.hero-sub {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  max-width: 480px;
  text-wrap: pretty;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; z-index: 2; }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  background: var(--dark);
  padding: 80px 48px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(8,157,248,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 640px; }

/* ── BOTANICO HEADER (title left, desc+CTA right; stacks on mobile) ── */
.botanico-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

/* ── BOTANICO GRID ───────────────────────────── */
.botanico-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.botanico-cell {
  background: var(--dark);
  padding: 32px;
  transition: background var(--transition);
}
.botanico-cell:hover { background: rgba(255,255,255,0.03); }
.botanico-cell-metric {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--green-vivid);
  margin-bottom: 6px;
  line-height: 1;
}
.botanico-cell-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.botanico-cell-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.botanico-cell-body {
  font-size: 13.5px; line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

/* ── NEWS CARD ───────────────────────────────── */
.news-card {
  border-top: 2px solid var(--border);
  padding: 24px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  transition: border-color var(--transition);
}
.news-card:hover { border-color: var(--green); }
.news-date {
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 80px;
  padding-top: 3px;
}
.news-title {
  font-size: 15px; font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}
.news-title a { text-decoration: none; color: inherit; }
.news-title a:hover { color: var(--green); }

/* ── FILING ROW ──────────────────────────────── */
.filing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.filing-row:first-child { border-top: 1px solid var(--border); }
.filing-name {
  font-size: 14px; font-weight: 500;
  color: var(--text);
}
.filing-meta { font-size: 12px; color: var(--text-muted); }
.filing-link {
  font-size: 12.5px; font-weight: 600;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.filing-link:hover { color: var(--green-vivid); }

/* ── MAP PLACEHOLDER ─────────────────────────── */
.map-wrap {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

/* ── UTILITY ─────────────────────────────────── */
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }
.max-w-640 { max-width: 640px; }

/* ── HAMBURGER BUTTON ────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ───────────────────────── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 199;
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.nav-drawer .nav-links li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-drawer .nav-links a {
  display: block;
  padding: 18px 0;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}
.nav-drawer .nav-links a.active { color: #fff; border-bottom: none; }
.nav-drawer .nav-ticker {
  margin-top: 32px;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    gap: 40px;
    padding: 0 32px;
  }
  .section { padding: 72px 32px; }
  .footer { padding: 56px 32px 32px; }
  .nav { padding: 0 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* NAV */
  .nav { padding: 0 14px; gap: 8px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Stock ticker on mobile — compact, label above live price (same layout as desktop) */
  .nav-ticker {
    padding: 4px 10px;
    font-size: 9.5px;
    gap: 2px;
    line-height: 1.25;
  }
  .nav-ticker .nav-stock-row { font-size: 11.5px; gap: 4px; }
  .nav-ticker .nav-stock-change { font-size: 9.5px; }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0 20px;
    gap: 0;
  }
  .hero-content { padding: 56px 0 32px; }
  .hero-visual { display: none; }

  /* STATS BAR */
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    padding: 28px 12px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  /* SECTIONS */
  .section { padding: 56px 20px; }
  .section-header { margin-bottom: 36px; }

  /* GRIDS */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; gap: 32px; }
  .grid-1-2 { grid-template-columns: 1fr; gap: 32px; }

  /* BOTANICO GRID */
  .botanico-grid { grid-template-columns: 1fr; }
  .botanico-header {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 32px;
  }
  .botanico-header .section-title { font-size: clamp(28px, 7vw, 36px); }
  .botanico-header .btn { width: 100%; justify-content: center; margin-top: 16px !important; }

  /* FOOTER */
  .footer { padding: 48px 20px 28px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* PAGE HERO */
  .page-hero { padding: 48px 20px 40px; }

  /* BUTTONS */
  .btn { padding: 12px 22px; font-size: 13px; }

  /* NEWS CARD */
  .news-card { grid-template-columns: 1fr; gap: 6px; }
  .news-date { width: auto; }
}
