/** Shopify CDN: Minification failed

Line 61:0 All "@import" rules must come first

**/
/*
  THE LEAF ORIGIN — Premium Design System v2
  Palette   : Dark charcoal + lime green + white
  Direction : Vibrant fresh market · Bold sans-serif · Community energy
  Works alongside Horizon 3.4.0 + Tailwind CDN
*/

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Colours */
  --tlo-charcoal:       #111827;
  --tlo-charcoal-80:    #1f2937;
  --tlo-charcoal-60:    #374151;
  --tlo-charcoal-40:    #6b7280;
  --tlo-lime:           #a3e635;
  --tlo-lime-dark:      #84cc16;
  --tlo-lime-deeper:    #65a30d;
  --tlo-lime-light:     #d9f99d;
  --tlo-lime-pale:      #f7fee7;
  --tlo-lime-glow:      rgba(163, 230, 53, 0.15);
  --tlo-white:          #ffffff;
  --tlo-off-white:      #f9fafb;
  --tlo-warm-white:     #fffdf7;
  --tlo-muted:          #9ca3af;
  --tlo-border:         rgba(255, 255, 255, 0.12);
  --tlo-border-dark:    rgba(0, 0, 0, 0.07);

  /* Typography — bold sans-serif everywhere */
  --tlo-font-display:   'Plus Jakarta Sans', 'DM Sans', 'Inter', system-ui, sans-serif;
  --tlo-font-body:      'Plus Jakarta Sans', 'DM Sans', 'Inter', system-ui, sans-serif;

  /* Spacing */
  --tlo-section-py:     5rem;
  --tlo-section-py-sm:  3rem;

  /* Radius */
  --tlo-radius-sm:      0.5rem;
  --tlo-radius-md:      1rem;
  --tlo-radius-lg:      1.5rem;
  --tlo-radius-xl:      2rem;
  --tlo-radius-full:    9999px;

  /* Shadows */
  --tlo-shadow-sm:      0 1px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --tlo-shadow-md:      0 4px 20px rgba(0, 0, 0, 0.12);
  --tlo-shadow-lg:      0 12px 48px rgba(0, 0, 0, 0.18);
  --tlo-shadow-lime:    0 4px 24px rgba(163, 230, 53, 0.3);

  /* Motion */
  --tlo-ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --tlo-transition:     all 0.22s var(--tlo-ease);
  --tlo-transition-slow: all 0.4s var(--tlo-ease);
}

/* ── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── Base ───────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  font-family: var(--tlo-font-body);
  background-color: var(--tlo-off-white);
  color: var(--tlo-charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* ── Container ──────────────────────────────────────────────── */
.tlo-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
}

/* ── Visually Hidden (AODA) ─────────────────────────────────── */
.tlo-sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Typography ─────────────────────────────────────────────── */
.tlo-display {
  font-family: var(--tlo-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.tlo-display-2xl { font-size: clamp(2.75rem, 7vw, 5.5rem); }
.tlo-display-xl  { font-size: clamp(2.25rem, 5vw, 4rem); }
.tlo-display-lg  { font-size: clamp(1.875rem, 3.5vw, 3rem); }
.tlo-display-md  { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
.tlo-display-sm  { font-size: clamp(1.25rem, 2vw, 1.75rem); }

.tlo-eyebrow {
  font-family: var(--tlo-font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tlo-lime-dark);
}

.tlo-body-lg { font-size: 1.125rem; line-height: 1.7; color: var(--tlo-charcoal-40); }
.tlo-body    { font-size: 1rem;     line-height: 1.7; color: var(--tlo-charcoal-40); }
.tlo-body-sm { font-size: 0.875rem; line-height: 1.65; color: var(--tlo-muted); }

/* ── Buttons ────────────────────────────────────────────────── */
.tlo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--tlo-font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--tlo-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--tlo-transition);
  white-space: nowrap;
  line-height: 1;
}

.tlo-btn-primary {
  background-color: var(--tlo-lime);
  color: var(--tlo-charcoal);
  box-shadow: var(--tlo-shadow-lime);
}
.tlo-btn-primary:hover {
  background-color: var(--tlo-lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(163, 230, 53, 0.4);
}
.tlo-btn-primary:active { transform: translateY(0); }

.tlo-btn-outline {
  background-color: transparent;
  color: var(--tlo-white);
  border-color: rgba(255, 255, 255, 0.35);
}
.tlo-btn-outline:hover {
  border-color: var(--tlo-lime);
  color: var(--tlo-lime);
}

.tlo-btn-dark {
  background-color: var(--tlo-charcoal);
  color: var(--tlo-white);
}
.tlo-btn-dark:hover {
  background-color: var(--tlo-charcoal-80);
  transform: translateY(-1px);
  box-shadow: var(--tlo-shadow-md);
}

.tlo-btn-ghost {
  background: transparent;
  color: var(--tlo-charcoal);
  border-color: var(--tlo-charcoal);
}
.tlo-btn-ghost:hover {
  background: var(--tlo-charcoal);
  color: var(--tlo-white);
}

.tlo-btn-sm { padding: 0.625rem 1.375rem; font-size: 0.875rem; }
.tlo-btn-lg { padding: 1.125rem 2.5rem; font-size: 1.0625rem; }

/* ── Badges ─────────────────────────────────────────────────── */
.tlo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3125rem 0.875rem;
  font-family: var(--tlo-font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--tlo-radius-full);
  line-height: 1;
}
.tlo-badge-lime   { background: var(--tlo-lime); color: var(--tlo-charcoal); }
.tlo-badge-dark   { background: var(--tlo-charcoal); color: var(--tlo-lime); }
.tlo-badge-outline{ background: transparent; border: 1.5px solid var(--tlo-lime); color: var(--tlo-lime-dark); }
.tlo-badge-white  { background: rgba(255,255,255,0.15); color: var(--tlo-white); border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(6px); }

/* ── Section layout helpers ─────────────────────────────────── */
.tlo-section { padding: var(--tlo-section-py) 0; }
.tlo-section-sm { padding: var(--tlo-section-py-sm) 0; }

.tlo-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

/* ── Card base ──────────────────────────────────────────────── */
.tlo-card {
  background: var(--tlo-white);
  border-radius: var(--tlo-radius-lg);
  border: 1px solid var(--tlo-border-dark);
  box-shadow: var(--tlo-shadow-sm);
  overflow: hidden;
  transition: var(--tlo-transition-slow);
}
.tlo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--tlo-shadow-lg);
}

/* ── Trust pills ─────────────────────────────────────────────── */
.tlo-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--tlo-radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.tlo-trust-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tlo-lime);
  flex-shrink: 0;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes tlo-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tlo-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes tlo-scale {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes tlo-pulse-lime {
  0%, 100% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(163, 230, 53, 0); }
}

.tlo-animate      { animation: tlo-up 0.65s var(--tlo-ease) both; }
.tlo-anim-d1      { animation-delay: 0.1s; }
.tlo-anim-d2      { animation-delay: 0.2s; }
.tlo-anim-d3      { animation-delay: 0.3s; }
.tlo-anim-d4      { animation-delay: 0.45s; }
.tlo-anim-scale   { animation: tlo-scale 0.5s var(--tlo-ease) both; }

@media (prefers-reduced-motion: reduce) {
  .tlo-animate, .tlo-anim-scale {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ── Focus / AODA ───────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--tlo-lime);
  outline-offset: 3px;
  border-radius: 3px;
}

.tlo-skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--tlo-charcoal);
  color: var(--tlo-lime);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 0 0 var(--tlo-radius-md) var(--tlo-radius-md);
  text-decoration: none;
  transition: top 0.2s var(--tlo-ease);
}
.tlo-skip-link:focus { top: 0; }

/* ── Decorative elements ────────────────────────────────────── */
.tlo-lime-glow-bg {
  background: radial-gradient(ellipse at center, var(--tlo-lime-glow) 0%, transparent 65%);
}

.tlo-grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--tlo-off-white); }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 10px; }

/* ── Responsive breakpoints ─────────────────────────────────── */
@media (max-width: 767px) {
  :root {
    --tlo-section-py: 3rem;
    --tlo-section-py-sm: 2rem;
  }
}
