* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Roboto, sans-serif;
  background-color: #050816;
  color: #fff;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.placeholder {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #999;
  pointer-events: none;
  font-family: inherit;
  letter-spacing: -0.5px;
}

.placeholder .code {
  color: green;
  font-weight: bold;
}

.section-box-1 {
  background-image: linear-gradient(to bottom, #121a29, #111928);
}
.section-box-2 {
  background-color: #111827;
}
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 16px 150px;
  position: relative;
}
.hero-inner {
  text-align: center;
  max-width: 820px;
  z-index: 99;
}
.ai-showcase {
  padding: 0 16px 30px;
}
.ai-showcase-inner {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 20px;
  /* border: 1px solid rgba(148, 163, 184, 0.2);
  background: #1e2937;
  padding: 18px 22px 26px; */
}
.ai-showcase-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-flow: column;
}
.ai-showcase-icon {
  width: 20px;
  height: 20px;
}
.ai-showcase-text {
  font-size: 13px;
  color: #e5e7eb;
}
.ai-showcase-panel {
  margin-top: 4px;
  border-radius: 18px;
  background: #101827;
  box-shadow: 0 0 0 1px #4b556380;
  padding: 16px 18px;
}
.ai-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 18px;
}
.ai-card {
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.ai-card-symbol {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #93c5fd;
  margin-bottom: 4px;
}
.ai-card-value {
  font-size: 20px;
  font-weight: 800;
}
.ai-card-positive {
  background: #022c22;
}
.ai-card-positive .ai-card-value {
  color: #22c55e;
}
.ai-card-negative {
  background: #3f1c1d;
}
.ai-card-negative .ai-card-value {
  color: #f87171;
}
.ai-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px #0000008c;
}
.stats-section {
  padding: 24px 16px 0;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 16px;
}
.stat-card {
  border-radius: 14px;
  padding: 18px 16px 20px;
  background: #020617;
  box-shadow: 0 0 0 1px #1f2937cc;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.stat-card-blue {
  background: #0b3168;
}
.stat-card-purple {
  background: #312060;
}
.stat-card-gold {
  background: #3a2a0b;
}
.stat-card-green {
  background: #064e3b;
}
.stat-card-violet {
  background: #311b5b;
}
.stat-icon-wrap {
  margin-bottom: 10px;
}
.stat-icon {
  width: 26px;
  height: 26px;
}
.stat-label {
  font-size: 13px;
  color: #d1d5db;
  margin-bottom: 8px;
}
.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px #0000008c;
}
.stats-disclaimer {
  font-size: 11px;
  color: #9ca3af;
}
.section-box-2 {
  padding: 64px 16px 0;
}
.how-it-works {
  padding: 40px 0;
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
}
.how-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #e5f0ff;
}
.how-subtitle {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 40px;
}
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 45px 0 !important;
}
.how-step-card {
  position: relative;
  border-radius: 16px;
  padding: 34px 18px 20px;
  border: 1px solid #374151;
  text-align: center;
  background: #1e2736;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.how-step-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.how-step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background-color: #00c1c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #e5f0ff;
}
.how-step-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #384051;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-step-icon {
  width: 26px;
  height: 26px;
}
.how-step-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  text-align: center;
}
.how-step-text {
  font-size: 13px;
  line-height: 1.6;
  color: #9ca3af;
  text-align: center;
}
.how-step-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px #0000008c;
}
.how-cta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
}
.how-cta-pill {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  color: #fff;
}
.how-cta-pill-left {
  background: #28bff0;
}
.how-cta-pill-right {
  background: #22ac38;
}
.how-cta-main {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  padding: 12px 22px;
  border: 1px solid #26688a;
  background-image: linear-gradient(to right, #1a467d, #0d6458);
  box-shadow:
    0 0 18px #25d36699,
    0 0 40px #2563eb73;
  animation: pulse-scale 3s ease-in-out infinite;
  transition: box-shadow 0.18s ease;
}
.how-cta-main:hover {
  box-shadow:
    0 0 22px #38bdf8bf,
    0 0 46px #25d366b3;
}
.how-cta-icon {
  width: 30px;
  height: 30px;
}
.how-cta-text {
  font-size: 18px;
  font-weight: 600;
  color: #f9fafb;
}
.about-section {
  margin-top: 40px;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-header {
  text-align: center;
  margin-bottom: 40px;
}
.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.about-subtitle {
  font-size: 14px;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  color: #d1d5db;
}
.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}
.about-heading {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}
.about-head2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  color: #c6c9d0;
  margin-bottom: 14px;
}
.about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #c6c9d0;
  margin-bottom: 10px;
}
.about-image-wrap {
  border-radius: 22px;
  overflow: hidden;
}
.about-image {
  width: 94%;
  height: auto;
  display: block;
}
.values-section {
  padding: 24px 16px 80px;
  margin-top: 40px;
}
.values-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.values-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.value-card {
  background-color: #202838;
  border: 1px solid #374151;
  border-radius: 14px;
  padding: 24px 18px 22px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.value-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background-color: #253b5c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.value-icon {
  width: 26px;
  height: 26px;
}
.value-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.value-text {
  font-size: 13px;
  line-height: 1.6;
  color: #d1d5db;
}
.value-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px #0000008c;
}
@keyframes hero-whatsapp-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes pulse-scale {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
.cta-strip {
  padding: 40px 16px 72px;
  background-image: url(./cta-bg-CEPftjTW.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-strip-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 16px 40px;
}
.cta-strip-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-strip-accent {
  color: #00c1c8;
  margin-right: 4px;
}
.cta-strip-main {
  color: #fff;
}
.cta-strip-subtitle {
  font-size: 14px;
  color: #9ca3af;
  max-width: 400px;
  margin: 0 auto 20px;
}
.cta-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: linear-gradient(to bottom, #f5a00b, #eab208);
  box-shadow:
    0 10px 25px #fbbf2499,
    0 0 0 1px #eab308e6;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-top: 15px;
  animation: pulse-scale 3.4s ease-in-out infinite;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.cta-strip-btn:hover {
  background: linear-gradient(to bottom, #ffb020, #f59e0b);
  box-shadow:
    0 14px 32px #fbbf24cc,
    0 0 0 1px #facc15e6;
}
.cta-strip-icon {
  width: 18px;
  height: 18px;
  display: block;
}
.analysis-modal-open {
  overflow: hidden;
}
.analysis-modal-backdrop {
  position: fixed;
  inset: 0;
  background: #0f172abf;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}
.analysis-modal-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}
.analysis-modal {
  position: relative;
  max-width: 460px;
  width: 100%;
  border-radius: 18px;
  padding: 22px 22px 24px;
  background: radial-gradient(circle at top left, #1e40afa6, #020617);
  box-shadow:
    0 24px 60px #0f172ae6,
    0 0 0 1px #94a3b866;
}
.analysis-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: #0f172acc;
  color: #9ca3af;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.analysis-modal-close:hover {
  background: #1f2937f2;
  color: #e5e7eb;
}
.analysis-modal-stage {
  display: none;
  text-align: center;
}
.analysis-modal-stage.is-active {
  display: block;
}
.analysis-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.analysis-modal-text {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 18px;
}
.analysis-spinner {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 3px solid rgba(148, 163, 184, 0.4);
  border-top-color: #3b82f6;
  animation: analysis-spin 0.9s linear infinite;
  margin: 14px auto;
}
.analysis-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(to bottom, #f5a00b, #eab208);
  box-shadow:
    0 10px 25px #fbbf2499,
    0 0 0 1px #eab308e6;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.analysis-modal-cta:hover {
  background: linear-gradient(to bottom, #ffb020, #f59e0b);
  box-shadow:
    0 14px 32px #fbbf24cc,
    0 0 0 1px #facc15e6;
}
.analysis-modal-cta-icon {
  width: 18px;
  height: 18px;
  display: block;
}
.analysis-modal-hint {
  margin-top: 10px;
  font-size: 11px;
  color: #9ca3af;
}
@keyframes analysis-spin {
  to {
    transform: rotate(360deg);
  }
}
.legal-page {
  min-height: calc(100vh - 56px);
  background-color: #050816;
  padding: 40px 16px 60px;
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}
.back-link {
  display: inline-block;
  color: #60a5fa;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}
.back-link:hover {
  color: #93c5fd;
}
.legal-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.legal-updated {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 28px;
}
.legal-content {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.75;
}
.legal-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: #f9fafb;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-content p {
  margin-bottom: 14px;
}
.legal-content p:last-child {
  margin-bottom: 0;
}
.site-footer {
  background-color: #111827;
  padding: 32px 16px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  color: #e5e7eb;
  font-size: 12px;
}
.footer-top {
  border-bottom: 1px solid rgba(55, 65, 81, 0.8);
  padding-bottom: 18px;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-nav-item {
  color: #9ca3af;
}
.footer-nav a.footer-nav-item {
  text-decoration: none;
  color: #9ca3af;
  transition: color 0.2s ease;
}
.footer-nav a.footer-nav-item:hover {
  color: #e5e7eb;
}
.footer-nav-item-active {
  color: #fff;
  font-weight: 600;
}
.footer-nav-separator {
  color: #4b5563;
  font-size: 11px;
}
.footer-disclaimer {
  color: #9ca3af;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #6b7280;
}
.footer-bottom-text {
  font-size: 12px;
}
@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .how-steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .about-image-wrap {
    order: -1;
  }
  .values-section {
    margin-top: 25px;
    padding-bottom: 40px;
  }
  .values-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .ai-showcase {
    padding-bottom: 40px;
  }
  .ai-showcase-inner {
    padding: 14px 12px 20px;
  }
  .ai-showcase-panel {
    padding: 12px 10px;
  }
  .ai-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }
  .how-cta {
    flex-direction: column;
    gap: 16px;
  }
  .how-cta-main {
    width: 100%;
    max-width: 360px;
  }
}
.site-header {
  background: #050816;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 26px;
  height: 26px;
  display: block;
  filter: invert(58%) sepia(93%) saturate(1514%) hue-rotate(142deg)
    brightness(96%) contrast(101%);
}
.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.logo-text span {
  color: #00c1c8;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: #e5e7ebe6;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: #fff;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 10px;
  background: #00c1c8;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 1px #00c1c8;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: #00c1c8;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px #00c1c8;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: #1b2944;
  border: 1px solid #1d3665;
  margin-bottom: 18px;
}
.hero-badge-icon-wrap {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.hero-badge-icon {
  width: 14px;
  height: 14px;
  display: block;
}
.hero-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: #e5e7eb;
}
.hero-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.hero-title span {
  color: #00c1c8;
}
.hero-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 32px;
}
.hero-form-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}
.hero-form {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 10px 18px;
  background-color: transparent;
  border: 1px solid #f3a20c;
  box-shadow:
    0 0 20px #fbbf24b3,
    0 0 40px #f59e0b66;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.hero-input {
  min-width: 480px;
  border: none;
  border-radius: 10px;
  padding: 10px 150px 10px 4px;
  font-size: 15px;
  color: #f9fafb;
  background: transparent;
  outline: none;
}
.hero-input::placeholder {
  color: #f9fafbb3;
}
.hero-input:focus,
.hero-input:focus-visible {
  outline: none;
}
@keyframes hero-input-shake {
  0%,
  to {
    transform: translate(0);
  }
  20% {
    transform: translate(-6px);
  }
  40% {
    transform: translate(6px);
  }
  60% {
    transform: translate(-4px);
  }
  80% {
    transform: translate(4px);
  }
}
.hero-input.hero-input-shake {
  animation: hero-input-shake 0.5s ease-in-out;
}
.hero-submit {
  position: absolute !important;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 10px;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2933;
  background: linear-gradient(to bottom, #f5a00b, #eab208);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.hero-submit:hover {
  background: linear-gradient(to bottom, #fbbf24, #f59e0b);
  box-shadow: 0 8px 18px #fbbf2499;
}
.hero-form-glow {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(./icon-input-flow-D1RjjRYK.png) no-repeat center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.hero-form-glow-left {
  left: -10px;
  top: -10px;
}
.hero-form-glow-right {
  right: -10px;
  bottom: -10px;
}
.hero-input,
.hero-submit {
  position: relative;
  z-index: 1;
}
.hero-trust-text {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  margin-top: 10px;
}
.hero-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(to right, #facc15, #f97316);
  box-shadow:
    0 10px 25px #fbbf2499,
    0 0 0 1px #eab308e6;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-top: 14px;
  animation: hero-whatsapp-float 3s ease-in-out infinite;
  transition:
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.hero-whatsapp-btn:hover {
  filter: brightness(1.05);
  box-shadow:
    0 14px 32px #fbbf24cc,
    0 0 0 1px #facc15e6;
}
.hero-whatsapp-icon {
  width: 18px;
  height: 18px;
  display: block;
}
.hero-image {
  position: absolute;
  bottom: 0;
  right: 12%;
}
@media (max-width: 900px) {
  .header-inner {
    padding: 12px 16px;
    gap: 16px;
  }
  .main-nav {
    display: none;
  }
  .hero-section {
    padding: 40px 16px 56px;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-input {
    min-width: min(100vw - 80px, 360px);
  }
  .hero-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
    background: transparent;
  }
  .hero-input {
    border-radius: 10px;
  }
  .hero-submit {
    border-radius: 999px;
    padding: 10px 26px;
  }
  .hero-form-glow {
    display: none;
  }
  .hero-image {
    inset: 0;
    margin: auto;
    opacity: 0.35;
  }
}
