:root {
  --teal: #00b8a9;
  --teal-dark: #008f85;
  --red: #f21945;
  --ink: #111827;
  --muted: #667085;
  --paper: #ffffff;
  --soft: #f6f7fb;
  --line: rgba(17, 24, 39, 0.10);
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Be Vietnam Pro", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 12%, rgba(242, 25, 69, 0.12), transparent 28%),
    radial-gradient(circle at 8% 82%, rgba(0, 184, 169, 0.13), transparent 32%),
    var(--soft);
  min-height: 100vh;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 58px;
  padding: 58px 0 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 52px;
}

.brand img {
  width: clamp(210px, 27vw, 360px);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(17, 24, 39, 0.10));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 720px;
}

.intro {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
  max-width: 620px;
}

.notify-form {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  max-width: 620px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.notify-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
}

.notify-form button {
  border: 0;
  border-radius: 999px;
  padding: 17px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--red));
  font-family: "Be Vietnam Pro", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(242, 25, 69, 0.22);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-row a,
.footer a {
  color: inherit;
  text-decoration: none;
}

.contact-row a:hover,
.footer a:hover {
  color: var(--red);
}

.hero__visual {
  position: relative;
  min-height: 640px;
  border-radius: 38px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.footer {
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.94rem;
}

.footer p { margin: 0; }
.footer nav { display: flex; gap: 18px; }

.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;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 34px;
  }

  .brand { margin-bottom: 34px; }
  .hero__visual { min-height: 500px; }
  .hero__visual img { min-height: 500px; }
}

@media (max-width: 620px) {
  .page-shell { width: min(100% - 24px, 1180px); }
  .notify-form {
    border-radius: 26px;
    flex-direction: column;
    padding: 10px;
  }

  .notify-form input { padding: 16px 14px; }
  .notify-form button { width: 100%; }
  .hero__visual { min-height: 420px; border-radius: 30px; }
  .hero__visual img { min-height: 420px; }
}
