:root {
  --brand-green: #bfcc34;
  --brand-green-rgb: 191, 204, 52;
  --brand-green-hover: #d0dd46;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  background-color: #050505;
  color: white;
  font-family: "Montserrat", sans-serif;
}
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}
.glow-green {
  box-shadow: 0 0 30px rgba(var(--brand-green-rgb), 0.2);
}
.icon-container {
  background: rgba(var(--brand-green-rgb), 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: var(--brand-green);
}
.form-field {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: white;
  padding: 0.95rem 1rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.form-field:focus {
  border-color: rgba(var(--brand-green-rgb), 0.7);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 4px rgba(var(--brand-green-rgb), 0.12);
}
.form-field::placeholder {
  color: #6b7280;
}
textarea.form-field {
  min-height: 150px;
  resize: vertical;
}
.brand-text {
  color: var(--brand-green);
}
.brand-button {
  background-color: var(--brand-green);
  color: #050505;
}
.brand-button:hover {
  background-color: var(--brand-green-hover);
}
.brand-glow {
  background: rgba(var(--brand-green-rgb), 0.05);
}
.brand-alert {
  border-color: rgba(var(--brand-green-rgb), 0.3);
  background: rgba(var(--brand-green-rgb), 0.1);
  color: rgba(245, 248, 213, 0.95);
}
.hero-device-shell {
  position: relative;
  isolation: isolate;
}
.hero-device-shell::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(var(--brand-green-rgb), 0.24) 0%,
    rgba(var(--brand-green-rgb), 0.08) 38%,
    rgba(0, 0, 0, 0) 72%
  );
  filter: blur(20px);
  z-index: -1;
}
.hero-device-card {
  padding: 1.5rem;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(255, 255, 255, 0.03);
}
.hero-device-image {
  width: min(100%, 420px);
  margin-inline: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}
@media (min-width: 1024px) {
  .hero-copy {
    text-align: left;
  }
}
