*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #130b24;
  background: #ffffff;
}

body {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 24px;
  display: flex;
  flex-direction: column;
}

/* Header */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(19, 11, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-mark img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.78rem;
  opacity: 0.7;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11, 23, 38, 0.08);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.nav-link:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 40, 70, 0.08);
  transform: translateY(-1px);
}

/* Main / Hero */

.main {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  align-items: center;
  gap: 40px;
  padding-bottom: 32px;
}

.hero-content {
  max-width: 540px;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b46c1;
  font-weight: 600;
  margin: 0 0 12px;
}

.hero-title {
  margin: 0 0 16px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.4rem, 3vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.accent {
  color: #7c3aed;
}

.hero-subtitle {
  margin: 0 0 24px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(9, 21, 37, 0.82);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Notify form */

.notify-form {
  padding: 16px 18px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 23, 38, 0.06);
  box-shadow: 0 16px 40px rgba(16, 42, 70, 0.08);
}

.notify-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(9, 21, 37, 0.75);
  margin-bottom: 10px;
}

.notify-row {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
}

.notify-row input[type="email"] {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(9, 21, 37, 0.14);
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
  background: #f9fbff;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.notify-row input[type="email"]:focus {
  border-color: #7c3aed;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.2);
}

.notify-row button {
  border-radius: 999px;
  border: none;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #6b46c1);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 114, 184, 0.32);
  transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.12s ease;
}

.notify-row button:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(124, 58, 237, 0.4);
}

.notify-row button:active {
  transform: translateY(0);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.32);
}

.notify-help {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(9, 21, 37, 0.6);
}

/* Contact card */

.contact-card {
  padding: 16px 18px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 23, 38, 0.065);
  backdrop-filter: blur(8px);
}

.contact-card h2 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.contact-text {
  margin: 0 0 14px;
  font-size: 0.86rem;
  color: rgba(9, 21, 37, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item--wide {
  grid-column: 1 / -1;
}

.label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(9, 21, 37, 0.6);
}

.value {
  font-size: 0.86rem;
  font-weight: 500;
}

.value:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* Right visual */

.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-gradient {
  position: absolute;
  inset: 12%;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(167, 139, 250, 0.32), transparent 55%),
    radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.26), transparent 60%),
    linear-gradient(145deg, #f7f3ff, #ece4ff);
  box-shadow:
    0 28px 80px rgba(9, 30, 66, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.7);
}

.card {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 16px 18px;
  max-width: 280px;
}

.glass-card {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  box-shadow: 0 18px 40px rgba(12, 40, 72, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.card-label {
  margin: 0 0 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(9, 21, 37, 0.6);
}

.card-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
}

.card-body {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(9, 21, 37, 0.72);
}

.stat-card {
  background: linear-gradient(135deg, #6b46c1, #7c3aed);
  color: #ffffff;
  position: absolute;
  bottom: 6%;
  right: 4%;
  padding: 14px 16px;
  max-width: 230px;
  box-shadow: 0 20px 40px rgba(107, 70, 193, 0.55);
}

.stat-label {
  margin: 0 0 4px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
}

.stat-value {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
}

/* Footer */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(11, 23, 38, 0.06);
  font-size: 0.8rem;
  color: rgba(9, 21, 37, 0.6);
}

.footer-right {
  text-align: right;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .hero-visual {
    order: -1;
    min-height: 200px;
    margin-bottom: 8px;
  }

  .page {
    padding-top: 24px;
  }

  .header {
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 16px 14px 18px;
  }

  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .brand {
    flex-direction: column;
    gap: 8px;
  }

  .brand-text {
    align-items: center;
  }

  .hero {
    gap: 22px;
  }

  .hero-title {
    font-size: 1.9rem;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .notify-row {
    flex-direction: column;
  }

  .notify-row button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page {
    padding-inline: 12px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .hero {
    padding-bottom: 20px;
  }

  .hero-visual {
    min-height: 180px;
  }

  .card {
    padding: 14px 16px;
    max-width: 260px;
  }

  .stat-card {
    right: 2%;
    bottom: 4%;
    max-width: 210px;
  }

  .contact-card {
    padding: 14px 14px 16px;
  }

  .nav-link {
    width: 100%;
    text-align: center;
  }
}
