/* Reusable shadow utility */
.shadow {
  box-shadow: -6px 12px 0px 0px rgba(0, 0, 0, 0.06);
}

.shadow-bottom {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}

/* Description text */
.description {
  margin-bottom: 10px;
  margin-left: 5px;
  align-self: flex-start;
  font-size: 18px;
  font-weight: 700;
}

/* Form components */
.form-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.email-input {
  background: #fff;
  border: 2px solid transparent;
  padding: 27px 24px;
  font-size: 20px;
  border-radius: 24px;
  font-family: 'MD Nichrome', serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.8px;
  min-width: 269px;
  max-width: 350px;
  flex-grow: 1;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.email-input::placeholder {
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
}

/* Focus state: subtle black border, no iOS blue outline */
.email-input:focus {
  border-color: #000;
  outline: none;
  box-shadow: none;
}

/* Buttons */
.cta-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 30px 24px;
  font-size: 20px;
  border-radius: 24px;
  cursor: pointer;
  font-family: 'MD Nichrome', 'Polymath Text', serif;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  letter-spacing: 0.8px;
  transition: opacity 120ms ease-in-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.cta-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Hover/active feedback for interactive buttons */
.cta-btn:hover:not(:disabled) {
  opacity: 0.9;
}

.cta-btn:active:not(:disabled) {
  opacity: 0.85;
}

/* Arrow icon - only shows when with-arrow class is applied */
.cta-btn.with-arrow::after {
  content: '';
  display: inline-block;
  width: 16.4px;
  height: 13.3px;
  background-image: url('../assets/icons/arrow-right.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 0px;
}

/* Download button specific styling */
#download-app-btn {
  width: auto;
}

.beta-text {
  font-family: 'Polymath Text', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

/* Success/Error messages */
.response {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 40px;
  color: #000;
}

.response a {
  color: #000;
  text-decoration: underline;
}

.response p {
  font-size: 18px;
  font-weight: 700;
}

.response a:hover {
  text-decoration: none;
}

/* Form validation styles */
input.mce_inline_error {
  border: 2px solid #ff0000 !important;
}

#mce-error-response {
  color: #ff0000;
  margin-top: 10px;
}

#mc_embed_shell {
  width: 100%;
}

div.mce_inline_error {
  display: none !important;
}

/* Main content section styles */
.main-content {
  padding: 80px 30px;
  text-align: center;
  max-width: 1920px;
  margin: 0 auto;
  justify-items: center;
}

.main-headline {
  font-family: 'MD Nichrome', serif;
  font-weight: 800;
  font-size: 96px;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
  max-width: 560px;
}

.content-container {
  max-width: 560px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}

.content-headline {
  font-family: 'MD Nichrome', serif;
  font-weight: 800;
  font-size: 32px;
  color: #000;
  margin-bottom: 24px;
}

.content-container p {
  font-family: 'Polymath Text', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.62px;
  color: #000;
  margin-bottom: 16px;
}

.content-container p.signature {
  font-family: 'Polymath Text', serif;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin-top: 32px;
  margin-bottom: 0;
}
