.growth-page {
  max-width: 1120px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 48px 20px 72px;
  display: grid;
  gap: 18px;
}

.growth-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.growth-brand img {
  width: 148px;
  height: auto;
}

.growth-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.growth-nav a {
  text-decoration: none;
  color: var(--accent);
  border: 1px solid rgba(15, 76, 92, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.65);
}

.growth-kicker {
  margin: 0;
  color: #6a4a0a;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.growth-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.growth-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.growth-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.growth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.growth-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.25;
}

.growth-card h3 a {
  color: inherit;
  text-decoration: none;
}

.growth-card h3 a:hover {
  text-decoration: underline;
}

.growth-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.growth-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.growth-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  border: 1px solid rgba(15, 76, 92, 0.2);
  background: rgba(15, 76, 92, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.growth-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.growth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.growth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.growth-btn.secondary {
  background: rgba(15, 76, 92, 0.08);
  color: var(--accent);
  border-color: rgba(15, 76, 92, 0.2);
}

.growth-btn.tertiary {
  background: rgba(242, 184, 75, 0.2);
  color: #6a4a0a;
  border-color: rgba(242, 184, 75, 0.55);
}

.growth-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.growth-columns {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
}

.growth-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.growth-panel h2 {
  margin: 0;
  font-size: 1.2rem;
}

.growth-feed-list {
  display: grid;
  gap: 9px;
  max-height: 72vh;
  overflow: auto;
  padding-right: 4px;
}

.growth-feed-item {
  border: 1px solid rgba(15, 76, 92, 0.15);
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}

.growth-feed-item h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.3;
}

.growth-feed-item h3 a {
  color: inherit;
  text-decoration: none;
}

.growth-feed-item h3 a:hover {
  text-decoration: underline;
}

.growth-watch-list {
  display: grid;
  gap: 10px;
}

.growth-watch-item {
  border: 1px solid rgba(15, 76, 92, 0.15);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.growth-watch-item p {
  margin: 0;
  color: var(--ink);
  line-height: 1.35;
}

.growth-step {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6a4a0a;
  text-transform: uppercase;
}

.growth-inline-links {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.growth-inline-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.growth-inline-links a:hover {
  text-decoration: underline;
}

.growth-empty {
  margin: 0;
  border: 1px dashed rgba(15, 76, 92, 0.2);
  border-radius: 12px;
  padding: 12px;
  color: var(--muted);
  background: #fff;
}

@media (max-width: 960px) {
  .growth-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .growth-page {
    padding: 34px 14px 56px;
  }

  .growth-hero,
  .growth-card,
  .growth-panel {
    border-radius: 16px;
    padding: 16px;
  }

  .growth-btn {
    width: 100%;
    justify-content: center;
  }

  .growth-share-row {
    width: 100%;
  }
}
