.growth-tool {
  margin: clamp(32px, 6vw, 64px) 0;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #101116;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.growth-tool__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #c8cad3;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.site-reading .growth-tool h2,
.growth-tool h2 {
  margin: 0 0 10px;
  color: #f5f5f7;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  letter-spacing: -0.035em;
}

body.site-reading .growth-tool :is(p, li) {
  color: #c2c3ca;
}

body.site-reading .growth-tool .growth-tool__intro,
body.site-reading .growth-tool .growth-tool__privacy,
body.site-reading .growth-tool .growth-tool__status,
.growth-tool__intro,
.growth-tool__privacy,
.growth-tool__status {
  color: #aaacb5;
}

.growth-tool__intro {
  max-width: 68ch;
  margin: 0 0 26px;
}

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

.growth-tool__field {
  display: grid;
  gap: 8px;
}

.growth-tool__field label,
.growth-tool__legend {
  color: #e3e3e8;
  font-size: 0.82rem;
  font-weight: 620;
  letter-spacing: 0.02em;
}

.growth-tool select,
.growth-tool input[type="text"] {
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: #17181e;
  color: #f5f5f7;
  font: inherit;
}

.growth-tool select:focus-visible,
.growth-tool input:focus-visible,
.growth-tool button:focus-visible {
  outline: 2px solid #f4f4f7;
  outline-offset: 3px;
}

.growth-tool__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.growth-tool button {
  min-height: 46px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: transparent;
  color: #f5f5f7;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.growth-tool button[type="submit"] {
  border-color: #f3f3f6;
  background: #f3f3f6;
  color: #0b0c10;
}

.growth-tool button:hover:not(:disabled) {
  border-color: #ffffff;
  background: #ffffff;
  color: #0b0c10;
}

.growth-tool button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.growth-tool__result {
  margin-top: 22px;
  padding: 20px;
  border-left: 2px solid #efeff3;
  background: #16171c;
}

.growth-tool__result[hidden] {
  display: none;
}

.growth-tool__result h3 {
  margin: 0 0 10px;
  color: #f5f5f7;
  font-size: 1rem;
}

.growth-tool__result p,
.growth-tool__result li {
  color: #c2c3ca;
}

.growth-tool__result p:last-child,
.growth-tool__result ul:last-child {
  margin-bottom: 0;
}

.growth-tool__privacy,
.growth-tool__status {
  margin: 12px 0 0;
  font-size: 0.78rem;
}

.growth-disclosure,
.tool-note {
  border-left: 2px solid rgba(255, 255, 255, 0.45);
  background: #13141a;
  color: #b9bac2;
}

.growth-disclosure {
  margin: 28px 0;
  padding: 16px 18px;
}

.tool-note {
  margin: -22px 0 42px;
  padding: 14px 18px;
  font-size: 0.88rem;
}

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

  .growth-tool {
    border-radius: 14px;
  }

  .growth-tool__actions button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .growth-tool button {
    transition: none;
  }
}
