/* ============================================
   pyn.studio - Investor Pitch Website
   Pine Theme - Clean Rebuild
   ============================================ */

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

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colors */
  --bg-dark: #040804;
  --bg-card: #081008;
  --bg-alt: #061006;

  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  --text-white: #ffffff;
  --text-light: #b8d4b8;
  --text-muted: #6a8a6a;

  --border-color: rgba(34, 197, 94, 0.15);
  --glow-color: rgba(34, 197, 94, 0.3);

  /* Typography */
  --font: 'Inter', system-ui, sans-serif;

  /* Sizing */
  --container: 1100px;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-white);
  background: var(--bg-dark);
  overflow-x: hidden;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.divider {
  height: 1px;
  max-width: 200px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--green-700), transparent);
}

/* Pine Tree Divider */
.pine-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  position: relative;
}

.pine-divider::before,
.pine-divider::after {
  content: '';
  flex: 1;
  max-width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-600));
}

.pine-divider::after {
  background: linear-gradient(90deg, var(--green-600), transparent);
}

.pine-icon {
  width: 28px;
  height: 35px;
  filter: drop-shadow(0 0 10px var(--glow-color));
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pine-divider:hover .pine-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--green-800), var(--green-500), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--green-500);
}

.text-secondary {
  color: var(--text-light);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--green-800);
  top: -150px;
  right: -100px;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--green-600);
  bottom: -100px;
  left: -100px;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  background: var(--green-500);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Pine Tree */
.hero-pine,
.closing-pine {
  margin-bottom: 32px;
}

.pine-tree {
  width: 80px;
  height: 100px;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px var(--glow-color));
}

.closing-pine .pine-tree {
  width: 60px;
  height: 75px;
}

.pine-layer {
  animation: pineGrow 0.6s ease-out forwards;
  opacity: 0;
}

.pine-layer-1 {
  animation-delay: 0.3s;
}

.pine-layer-2 {
  animation-delay: 0.4s;
}

.pine-layer-3 {
  animation-delay: 0.5s;
}

@keyframes pineGrow {
  from {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.pine-trunk {
  opacity: 0;
  animation: fadeIn 0.4s ease 0.2s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Hero Title */
.hero-title {
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--green-800), var(--green-500), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease-out 0.5s both;
}

.hero-title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letterIn 0.4s ease-out forwards;
}

.hero-title .letter.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes letterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--text-light);
  letter-spacing: 0.2em;
  text-transform: lowercase;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease-out 0.7s both;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-out 0.9s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.scroll-indicator-text {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-indicator-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--text-muted);
  border-radius: 10px;
  position: relative;
}

.scroll-indicator-wheel {
  width: 3px;
  height: 6px;
  background: var(--green-500);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 0.3;
  }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green-500);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 550px;
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Vision section - always 3 columns on desktop */
.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.vision-cards .card {
  padding: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--green-600);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(34, 197, 94, 0.1);
}

.card-icon {
  margin-bottom: 20px;
}

.icon-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--green-500);
}

.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-lg {
  width: 28px;
  height: 28px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-white);
}

.card-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   PROOF CARDS
   ============================================ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: border-color 0.3s ease;
}

.proof-card:hover {
  border-color: var(--green-600);
}

.proof-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-white);
}

.proof-stats {
  display: flex;
  gap: 20px;
}

.proof-stat {
  text-align: right;
}

.proof-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-400);
}

.proof-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   CALLOUT BOX
   ============================================ */
.callout {
  padding: 32px;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.08), transparent);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  text-align: center;
  margin-top: 48px;
}

.callout-text {
  font-size: 1.25rem;
  color: var(--text-white);
  line-height: 1.6;
}

/* ============================================
   SPECTRUM VISUALIZATION
   ============================================ */
.spectrum {
  max-width: 600px;
  margin: 48px auto;
}

.spectrum-track {
  height: 4px;
  background: linear-gradient(90deg, #f87171, var(--text-muted), var(--green-500));
  border-radius: 2px;
  position: relative;
}

.spectrum-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: var(--green-500);
  border: 3px solid var(--bg-dark);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--glow-color);
}

.spectrum-marker-label {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 700;
  color: var(--green-400);
  white-space: nowrap;
}

.spectrum-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}

.spectrum-label {
  max-width: 150px;
}

.spectrum-label-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.spectrum-label--left .spectrum-label-title {
  color: #f87171;
}

.spectrum-label--right {
  text-align: right;
}

.spectrum-label--right .spectrum-label-title {
  color: var(--green-400);
}

.spectrum-label-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   CHECKLIST
   ============================================ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.checklist-item:hover {
  transform: translateX(4px);
  border-color: var(--green-600);
}

.checklist-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 6px;
  color: var(--green-500);
  flex-shrink: 0;
}

.checklist-text {
  font-size: 1rem;
  color: var(--text-light);
}

.checklist-text strong {
  color: var(--text-white);
}

/* ============================================
   KILL RULES
   ============================================ */
.kill-rules {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 450px;
  margin: 0 auto;
}

.kill-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(248, 113, 113, 0.05);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.kill-rule:hover {
  background: rgba(248, 113, 113, 0.08);
}

.kill-rule-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 113, 113, 0.15);
  border-radius: 6px;
  color: #f87171;
  font-weight: 700;
  font-size: 14px;
}

.kill-rule-text {
  font-size: 1rem;
  color: var(--text-light);
}

/* ============================================
   METRICS GRID
   ============================================ */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
}

.metric {
  text-align: center;
  padding: 24px 16px;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.06), transparent);
  border-radius: var(--radius);
  transition: background 0.3s ease;
}

.metric:hover {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.12), transparent);
}

.metric-value {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--green-400);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   FUNNEL
   ============================================ */
.funnel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 450px;
  margin: 0 auto;
}

.funnel-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.funnel-label {
  width: 100px;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}

.funnel-bar {
  height: 36px;
  background: linear-gradient(90deg, var(--green-800), var(--green-500));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  min-width: 80px;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 32px;
  max-width: 550px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--green-800), var(--green-500), var(--green-400));
}

/* Pine tree at end of timeline */
.timeline::after {
  content: '';
  position: absolute;
  left: -6px;
  bottom: -30px;
  width: 16px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 20'%3E%3Cpolygon points='8,0 2,8 14,8' fill='%2322c55e'/%3E%3Cpolygon points='8,4 0,14 16,14' fill='%23166534'/%3E%3Crect x='6' y='14' width='4' height='6' fill='%2314532d'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--green-500);
  border: 2px solid var(--bg-dark);
  border-radius: 50%;
}

.timeline-period {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-400);
  margin-bottom: 6px;
}

.timeline-content {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.timeline-highlight {
  color: var(--green-300);
  font-weight: 600;
}

/* ============================================
   EXIT METRICS
   ============================================ */
.exit-metrics {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.exit-metric {
  text-align: center;
}

.exit-metric-value {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.exit-metric-label {
  font-size: 1rem;
  color: var(--text-light);
}

/* ============================================
   VISION QUOTE
   ============================================ */
.vision-quote {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.vision-quote-line {
  display: block;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease;
}

.vision-quote-line.revealed {
  opacity: 1;
  transform: translateY(0);
}

.vision-quote-line:last-child {
  color: var(--green-400);
}

/* ============================================
   CLOSING
   ============================================ */
.closing {
  text-align: center;
  padding: 100px 24px;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.1), transparent 70%);
  pointer-events: none;
}

.closing-logo {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-800), var(--green-500), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.closing-tagline {
  font-size: 1.25rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
}

.closing-description {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   DECORATIVE PINE TREES
   ============================================ */
.criteria-pine {
  position: absolute;
  bottom: 40px;
  right: 40px;
  opacity: 0.08;
  pointer-events: none;
}

.criteria-pine svg {
  width: 80px;
  height: 100px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger>* {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-stagger.is-visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.animate-stagger.is-visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.animate-stagger.is-visible>*:nth-child(3) {
  transition-delay: 0.15s;
}

.animate-stagger.is-visible>*:nth-child(4) {
  transition-delay: 0.2s;
}

.animate-stagger.is-visible>*:nth-child(5) {
  transition-delay: 0.25s;
}

.animate-stagger.is-visible>*:nth-child(6) {
  transition-delay: 0.3s;
}

.animate-stagger.is-visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mt-12 {
  margin-top: 48px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
    padding: 80px 24px;
  }

  .scroll-indicator {
    display: none;
  }

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

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

  .proof-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-stats {
    width: 100%;
    justify-content: space-between;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .metric {
    padding: 16px 12px;
  }

  .exit-metrics {
    flex-direction: column;
    gap: 40px;
  }

  .spectrum-labels {
    flex-direction: column;
    gap: 16px;
  }

  .spectrum-label--right {
    text-align: left;
  }

  .funnel-step {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .funnel-label {
    text-align: left;
    width: auto;
  }

  .funnel-bar {
    width: 100% !important;
  }

  .timeline {
    padding-left: 24px;
  }

  .timeline-item::before {
    left: -29px;
  }

  .criteria-pine {
    display: none;
  }

  .vision-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .card {
    padding: 24px;
  }

  .proof-stats {
    flex-direction: column;
    gap: 12px;
    text-align: left;
  }

  .proof-stat {
    text-align: left;
  }

  .pine-divider {
    padding: 24px 0;
  }

  .pine-icon {
    width: 20px;
    height: 25px;
  }
}

/* ============================================
   ADDITIONAL PINE TREE DECORATIONS
   ============================================ */

/* Section corner pine trees */
.section-pine {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

.section-pine svg {
  width: 120px;
  height: 150px;
}

.section-pine.top-right {
  top: 40px;
  right: 40px;
}

.section-pine.bottom-left {
  bottom: 40px;
  left: 40px;
  transform: rotate(-15deg);
}

/* Inline pine decoration */
.inline-pine {
  display: inline-block;
  width: 16px;
  height: 20px;
  vertical-align: middle;
  margin: 0 4px;
}

/* Pine tree forest background (subtle) */
.pine-forest-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60' preserveAspectRatio='none'%3E%3Cpolygon points='10,60 5,35 15,35' fill='%23166534' opacity='0.1'/%3E%3Cpolygon points='30,60 22,25 38,25' fill='%23166534' opacity='0.08'/%3E%3Cpolygon points='50,60 42,30 58,30' fill='%23166534' opacity='0.12'/%3E%3Cpolygon points='70,60 62,20 78,20' fill='%23166534' opacity='0.06'/%3E%3Cpolygon points='90,60 82,28 98,28' fill='%23166534' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 400px 100px;
  background-repeat: repeat-x;
  pointer-events: none;
}

/* Enhanced criteria section decoration */
.criteria-pine {
  position: absolute;
  bottom: 60px;
  right: 60px;
  opacity: 0.1;
  pointer-events: none;
}

.criteria-pine svg {
  width: 100px;
  height: 125px;
}

/* Pine bullet points */
.pine-bullet::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 15px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 50'%3E%3Cpolygon points='20,0 8,16 32,16' fill='%2322c55e'/%3E%3Cpolygon points='20,10 4,30 36,30' fill='%23166534'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}