/* === Growth Timeline === */

.gt-hero {
  background: linear-gradient(160deg, #1a1208, #0c0a06);
  border-bottom: 1px solid var(--line);
  padding: 60px 24px 40px;
}
.gt-hero-inner { max-width: 1140px; margin: 0 auto }
.gt-hero-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; line-height: 1.1; margin-bottom: 14px;
}
.gt-hero-sub {
  color: var(--text2); font-size: 16px;
  max-width: 600px; line-height: 1.65;
}

/* Controls */
.gt-controls-section { margin-top: 40px }
.gt-controls {
  display: flex; gap: 16px; align-items: flex-end; flex-wrap: wrap;
  background: linear-gradient(160deg, #1c1812, #13100c);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 14px; padding: 20px 24px;
}
.gt-control-group { display: flex; flex-direction: column; gap: 6px }
.gt-label {
  font-size: 11px; color: var(--text3); text-transform: uppercase;
  letter-spacing: .8px; font-weight: 600;
}
.gt-input {
  background: var(--dark2); border: 1px solid var(--line);
  border-radius: 8px; padding: 10px 14px;
  color: var(--text); font-family: var(--sans); font-size: 14px;
  outline: none; min-width: 180px;
}
.gt-input:focus { border-color: var(--gold) }
.gt-control-hint { align-self: center; margin-left: auto }

/* Chart */
.gt-chart-section { margin-top: 24px }
.gt-chart-wrap {
  background: linear-gradient(160deg, #1c1812, #13100c);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 14px; padding: 20px;
  position: relative;
}
.gt-chart-wrap canvas {
  width: 100%; height: 400px; display: block;
}
.gt-legend {
  display: flex; gap: 20px; justify-content: center;
  margin-top: 12px; flex-wrap: wrap;
}
.gt-legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text3);
}
.gt-legend-swatch {
  width: 20px; height: 3px; border-radius: 2px; display: inline-block;
}
.gt-legend-swatch--dashed {
  width: 20px; height: 0; display: inline-block;
  border-top: 2px dashed rgba(180,160,140,.6);
}

/* Chart disclaimer */
.gt-chart-disclaimer {
  margin-top: 14px; padding: 14px 18px;
  background: rgba(201,168,76,.04);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 10px; text-align: center;
}
.gt-chart-disclaimer-cagr {
  font-size: 13px; color: var(--text2); line-height: 1.5; margin-bottom: 6px;
  font-weight: 500;
}
.gt-chart-disclaimer-warn {
  font-size: 11px; color: var(--text3); line-height: 1.5;
}
.gt-chart-disclaimer-warn a {
  color: var(--gold); text-decoration: underline;
}

/* Summary */
.gt-summary {
  margin-top: 20px; padding: 20px 24px;
  border-radius: 12px; font-size: 14px;
  line-height: 1.6; color: var(--text2);
}
.gt-summary--green {
  background: rgba(90,170,122,.06);
  border: 1px solid rgba(90,170,122,.25);
}
.gt-summary--amber {
  background: rgba(212,135,58,.06);
  border: 1px solid rgba(212,135,58,.25);
}
.gt-summary--red {
  background: rgba(194,80,80,.06);
  border: 1px solid rgba(194,80,80,.25);
}
.gt-summary strong { color: var(--text) }
.gt-summary .gt-summary-zone {
  font-family: var(--serif); font-size: 18px;
  font-weight: 700; margin-bottom: 6px;
}

/* Zone cards */
.gt-cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 16px; margin-top: 40px;
}
.gt-card {
  padding: 24px; border-radius: 12px;
  background: var(--dark3);
}
.gt-card--green { border: 1px solid rgba(90,170,122,.3) }
.gt-card--amber { border: 1px solid rgba(212,135,58,.3) }
.gt-card--red { border: 1px solid rgba(194,80,80,.3) }
.gt-card-icon { margin-bottom: 12px }
.gt-card-title { font-size: 15px; font-weight: 700; margin-bottom: 8px }
.gt-card-desc { font-size: 13px; color: var(--text2); line-height: 1.6 }

/* Risk callout */
.gt-risk-callout {
  margin-top: 48px; padding: 32px;
  background: rgba(194,80,80,.04);
  border: 1px solid rgba(194,80,80,.25);
  border-radius: 14px; position: relative;
}
.gt-risk-callout-badge {
  position: absolute; top: -12px; left: 24px;
  background: rgba(194,80,80,.15); border: 1px solid rgba(194,80,80,.4);
  color: rgba(220,120,120,.9); font-size: 11px; font-weight: 600;
  padding: 3px 12px; border-radius: 999px; text-transform: uppercase;
  letter-spacing: .5px;
}
.gt-risk-callout-title {
  font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600; color: var(--text); margin-bottom: 14px; line-height: 1.2;
}
.gt-risk-callout-text {
  font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 12px;
}
.gt-risk-callout-text strong { color: var(--text) }
.gt-risk-points { display: flex; flex-direction: column; gap: 10px; margin-top: 16px }
.gt-risk-point {
  display: flex; gap: 10px; font-size: 14px; color: var(--text2); line-height: 1.5;
}
.gt-risk-point strong { color: var(--text) }
.gt-risk-point-icon { font-size: 18px; font-weight: 700; flex-shrink: 0 }

/* CTA */
.gt-cta {
  text-align: center; padding: 60px 24px; margin-top: 48px; margin-bottom: 40px;
  background: linear-gradient(160deg, #1c1812, #13100c);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .gt-cards { grid-template-columns: 1fr }
  .gt-controls { flex-direction: column; align-items: stretch }
  .gt-control-hint { margin-left: 0; align-self: flex-start }
  .gt-input { min-width: auto; width: 100% }
}
@media (max-width: 600px) {
  .gt-hero { padding: 40px 16px 30px }
  .gt-chart-wrap { padding: 12px }
  .gt-chart-wrap canvas { height: 300px }
  .gt-risk-callout { padding: 24px 16px }
  .gt-cta { padding: 40px 16px }
}
