/* ============================================================
   TTW VENTURES, LLC — Main Stylesheet
   Light theme · Indigo + gold accent system
   ============================================================ */

:root {
  --bg: #F6F8FC;
  --surface: #FFFFFF;
  --ink: #1A2340;
  --ink-soft: #4A5370;
  --indigo: #4F46E5;
  --indigo-deep: #3B36C6;
  --indigo-dark: #2E2AA0;
  --gold: #D9A441;
  --gold-deep: #B8872F;
  --pale: #E4E7FB;
  --line: #E8EAF5;
  --line-strong: #D6DBF0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(26, 35, 64, 0.08);
  --shadow-lg: 0 18px 48px rgba(26, 35, 64, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--indigo-deep);
  text-decoration: none;
}

a:hover {
  color: var(--indigo);
}

/* ---------- Shared layout ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 84px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background-color: var(--gold);
}

/* ---------- TAB-INDICATOR TOP BAR ---------- */
.tab-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(26, 35, 64, 0.04);
}

.tab-nav::after {
  content: "";
  display: block;
  height: 3px;
  background-color: var(--gold);
}

.tab-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--indigo-deep);
  white-space: nowrap;
}

.brand:hover {
  color: var(--indigo-deep);
}

.tab-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tab-nav-links a {
  position: relative;
  display: block;
  padding: 26px 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}

.tab-nav-links a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) scale(0);
  background-color: var(--indigo);
  transition: transform 0.18s ease;
}

.tab-nav-links a:hover {
  color: var(--indigo-deep);
}

.tab-nav-links a:hover::before,
.tab-nav-links a.active::before {
  transform: translateX(-50%) scale(1);
}

.tab-nav-links a.active {
  color: var(--indigo-deep);
}

.nav-cta {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: var(--indigo);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.18s ease;
}

.nav-cta:hover {
  background-color: var(--indigo-dark);
  color: #FFFFFF;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- GROWTH CHART HERO ---------- */
.chart-hero {
  padding: 96px 0 88px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
}

.chart-hero .container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-copy h1 .accent {
  color: var(--indigo-deep);
}

.hero-copy p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.15s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--indigo);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--indigo-dark);
  color: #FFFFFF;
}

.btn-outline {
  border: 2px solid var(--line-strong);
  color: var(--indigo-deep);
  background-color: transparent;
}

.btn-outline:hover {
  border-color: var(--indigo);
  color: var(--indigo-deep);
}

.chart-panel {
  position: relative;
  background-color: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--indigo);
  padding: 40px 36px 34px;
}

.chart-label {
  position: absolute;
  top: -14px;
  left: 20px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: var(--indigo);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.chart-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}

.bar-chart {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  height: 240px;
  padding: 0 6px;
}

.bar-chart::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: var(--ink);
}

.bar-chart .grid-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--line);
}

.bar-chart .grid-line.g1 {
  bottom: 33%;
}

.bar-chart .grid-line.g2 {
  bottom: 66%;
}

.bar {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.bar .bar-fill {
  width: 100%;
  max-width: 56px;
  border-radius: 6px 6px 0 0;
  transition: height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar.bar-1 .bar-fill { background-color: var(--indigo); height: 42%; }
.bar.bar-2 .bar-fill { background-color: var(--gold); height: 58%; }
.bar.bar-3 .bar-fill { background-color: var(--indigo); height: 70%; }
.bar.bar-4 .bar-fill { background-color: var(--gold); height: 84%; }
.bar.bar-5 .bar-fill { background-color: var(--indigo); height: 100%; }

.bar .bar-year {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---------- STATEMENT ROW ---------- */
.statement-row {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: var(--surface);
}

.statement-row p {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.statement-row p .mark {
  color: var(--indigo-deep);
}

.statement-row p .gold-mark {
  display: inline-block;
  border-bottom: 4px solid var(--gold);
}

/* ---------- CAPABILITY GRID ---------- */
.capability-grid {
  background-color: var(--bg);
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
  margin: 14px 0 16px;
}

.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cap-card {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--pale);
}

.cap-icon {
  width: 26px;
  height: 26px;
  background-color: var(--indigo);
  border-radius: 5px;
  margin-bottom: 20px;
}

.cap-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.cap-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- TABBED CONTENT ---------- */
.tabbed-content {
  background-color: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tab-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--line);
}

.tab-btn {
  position: relative;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
}

.tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background-color: var(--indigo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.tab-btn:hover {
  color: var(--indigo-deep);
}

.tab-btn.active {
  color: var(--indigo-deep);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.tab-panel p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 860px;
}

.tab-panel p:last-child {
  margin-bottom: 0;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-section {
  background-color: var(--bg);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question .faq-sign {
  flex: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--pale);
  color: var(--indigo-deep);
  font-size: 20px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-sign {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- SPLIT CTA BAND ---------- */
.split-cta {
  background-color: var(--indigo-deep);
  padding: 0;
}

.split-cta .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.split-cta h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.split-cta p {
  font-size: 17px;
  color: #E4E7FB;
  max-width: 560px;
}

.split-cta .cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.split-cta .btn-primary {
  background-color: #FFFFFF;
  color: var(--indigo-deep);
}

.split-cta .btn-primary:hover {
  background-color: var(--gold);
  color: #1A2340;
}

.split-cta .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}

.split-cta .btn-outline:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* ---------- ASYMMETRIC FOOTER ---------- */
.asym-footer {
  background-color: #161C33;
  color: #C8CDE0;
}

.asym-footer .footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  padding: 64px 0 56px;
}

.footer-brand-zone {
  padding-right: 48px;
}

.footer-brand-zone .brand {
  font-size: 24px;
  color: #FFFFFF;
}

.footer-brand-zone .footer-desc {
  margin: 18px 0 26px;
  font-size: 15px;
  color: #C8CDE0;
  max-width: 460px;
  line-height: 1.7;
}

.footer-contact {
  list-style: none;
  margin-top: 8px;
}

.footer-contact li {
  font-size: 15px;
  color: #C8CDE0;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #E4E7FB;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-link-zone {
  padding-left: 48px;
  border-left: 2px solid var(--gold);
}

.footer-link-zone h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-link-zone ul {
  list-style: none;
}

.footer-link-zone li {
  margin-bottom: 12px;
}

.footer-link-zone a {
  color: #E4E7FB;
  font-size: 15px;
}

.footer-link-zone a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid #2A3252;
  padding: 20px 0;
  font-size: 13px;
  color: #8A93AD;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Secondary page heroes ---------- */
.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow {
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ---------- Services page ---------- */
.service-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.service-block:nth-of-type(even) {
  background-color: var(--surface);
}

.service-block .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.service-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 12px;
}

.service-block h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

.service-block p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.service-block p:last-child {
  margin-bottom: 0;
}

.process-overview {
  background-color: var(--indigo-deep);
  color: #FFFFFF;
}

.process-overview h2 {
  color: #FFFFFF;
}

.process-overview p {
  color: #E4E7FB;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gold);
  color: #1A2340;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: #E4E7FB;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

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

.stat-item .stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--indigo-deep);
  letter-spacing: -0.02em;
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  padding: 64px 0;
}

.contact-info h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.contact-details {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-soft);
}

.contact-details .detail-icon {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background-color: var(--indigo);
  margin-top: 3px;
}

.contact-details a {
  color: var(--indigo-deep);
  font-weight: 600;
}

.contact-details strong {
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.hours-list {
  list-style: none;
  margin-top: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}

.hours-list li span:first-child {
  font-weight: 600;
  color: var(--ink);
}

.contact-form-card {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
}

.contact-form-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-form-card .form-note {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background-color: #FFFFFF;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--pale);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background-color: #E4F3EC;
  color: #15653B;
  border: 1px solid #BFE3D1;
}

.form-status.error {
  background-color: #FBE9E9;
  color: #9C2A2A;
  border: 1px solid #F0C9C9;
}

.contact-faq {
  padding: 64px 0;
  background-color: var(--surface);
  border-top: 1px solid var(--line);
}

.contact-faq .faq-list {
  margin-top: 8px;
}

/* ---------- Scroll reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .chart-hero .container {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-block .container {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .asym-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-link-zone {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid var(--gold);
    padding-top: 28px;
  }

  .footer-brand-zone {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .tab-nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(26, 35, 64, 0.12);
    padding: 8px 24px 20px;
    display: none;
  }

  .tab-nav-links.open {
    display: flex;
  }

  .tab-nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .tab-nav-links a::before {
    top: 20px;
    left: 0;
    transform: scale(0);
  }

  .tab-nav-links a:hover::before,
  .tab-nav-links a.active::before {
    transform: scale(1);
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .statement-row p {
    font-size: 24px;
  }

  .section-head h2 {
    font-size: 28px;
  }

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

  .split-cta .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-cta .cta-actions {
    justify-content: flex-start;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .bar-chart {
    height: 180px;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}
