.hero-copy {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-ambient::before,
.hero-ambient::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(56px);
  opacity: 0.24;
}

.hero-ambient::before {
  width: 30rem;
  height: 30rem;
  top: -11rem;
  right: -10rem;
  background: radial-gradient(
    circle,
    rgba(255, 122, 0, 0.18) 0%,
    rgba(255, 122, 0, 0.1) 28%,
    rgba(255, 122, 0, 0.03) 56%,
    transparent 82%
  );
}

.hero-ambient::after {
  width: 24rem;
  height: 24rem;
  bottom: -9rem;
  left: -8rem;
  background: radial-gradient(
    circle,
    rgba(255, 42, 0, 0.12) 0%,
    rgba(255, 42, 0, 0.07) 26%,
    rgba(255, 42, 0, 0.025) 54%,
    transparent 82%
  );
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-scene {
  opacity: 0.98;
}

.hero-scene svg {
  display: block;
  width: 100%;
  height: 100%;
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(255, 90, 0, 0.4);
}

.hero-copy p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  max-width: 58ch;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.form-panel {
  padding: 1.4rem;
  max-width: 760px;
  margin: 0 auto;
}

form {
  display: grid;
  gap: 0.95rem;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #dbe6f1;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.9rem 0.95rem;
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7f8da0;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 122, 0, 0.55);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.form-status {
  min-height: 1.5rem;
}

.form-status.is-success {
  color: #d7e3ef;
}

.form-status.is-error {
  color: #ffb4a8;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

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

@media (max-width: 720px) {
  .hero {
    padding-top: 2rem;
  }
}
