:root {
  --navy: #14304f;
  --gray: #8a9199;
  --bg: #f7f8f9;
  --surface: #ffffff;
  --text: #10253a;
  --border: rgba(20, 48, 79, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg), #eef2f5);
  display: flex;
  flex-direction: column;
}

.page-header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo {
  max-height: 88px;
  height: auto;
  max-width: 100%;
}

.page-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 24px;
}

.hero-card {
  width: 100%;
  max-width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: center;
}

.brand-mark {
  display: none;
}

h1 {
  margin: 0 auto 18px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  max-width: 640px;
  color: var(--navy);
  background: linear-gradient(135deg, #14304f 0%, #3f7bb0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 7px 16px 7px 14px;
  border-radius: 999px;
  background: rgba(20, 48, 79, 0.05);
  border: 1px solid rgba(20, 48, 79, 0.12);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3f7bb0;
  box-shadow: 0 0 0 0 rgba(63, 123, 176, 0.5);
  animation: pulse 2.2s ease-out infinite;
}

.tagline {
  margin: 0 auto;
  max-width: 520px;
  font-size: 1.18rem;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: #55677a;
}

.hero-card > * {
  animation: fadeUp 0.7s ease both;
}

.hero-eyebrow { animation-delay: 0s; }
.hero-card h1 { animation-delay: 0.09s; }
.hero-card .tagline { animation-delay: 0.18s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(63, 123, 176, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(63, 123, 176, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 123, 176, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card > *,
  .pulse-dot {
    animation: none;
  }
}

.subtext {
  margin: 0 auto 28px;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

.signup-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form input {
  width: min(100%, 320px);
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
}

.signup-form input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(20, 48, 79, 0.12);
}

.signup-form button {
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.signup-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(20, 48, 79, 0.16);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.copyright {
  width: 100%;
  padding: 20px 24px;
  background: white;
  border-top: 1px solid var(--border);
  margin-top: 0;
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
}

.footer-contact {
  display: none;
}

.footer-section {
  width: 100%;
  margin-top: 60px;
  padding: 40px 24px;
  background: white;
  border-top: 1px solid var(--border);
  text-align: center;
}

.signup-section {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.signup-section .subtext {
  margin-bottom: 20px;
}

.contact-section {
  margin-top: 40px;
}

.contact-section h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.email-link {
  display: inline-block;
  font-size: 1rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  transition: all 180ms ease;
}

.email-link:hover {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 12px rgba(20, 48, 79, 0.2);
}

.contact-button {
  display: inline-block;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 6px;
  transition: all 180ms ease;
  cursor: pointer;
}

.contact-button:hover {
  background: #255b84;
  border-color: #255b84;
  box-shadow: 0 6px 16px rgba(20, 48, 79, 0.24);
  transform: translateY(-1px);
}

.storefronts-section h3 {
  margin: 0 0 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.storefront-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.storefront-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.storefront-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(20, 48, 79, 0.08);
  color: var(--navy);
  transition: all 180ms ease;
}

.storefront-item a:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 48, 79, 0.16);
}

.storefront-item a svg {
  width: 24px;
  height: 24px;
}

.storefront-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.storefront-item.coming-soon {
  opacity: 0.6;
}

.amazon-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(20, 48, 79, 0.08);
  color: var(--navy);
  cursor: not-allowed;
}

.amazon-placeholder svg {
  width: 24px;
  height: 24px;
}

.storefront-item small {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 400;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.signup-form label {
  display: none;
}

@media (max-width: 600px) {
  .hero-card {
    padding: 36px 22px;
  }

  .signup-form {
    flex-direction: column;
    align-items: stretch;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
  }
}
