/* Reset */
* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  background: radial-gradient(circle at 50% 35%, #f7f1ea 0%, #efe4d8 62%);
  color: #6a7478;

  /* Body must be Roboto only */
  font-family: "Roboto", sans-serif;
  font-weight: 300; /* Roboto Light */
}

/* Page structure */
.page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 4vw, 44px);
}

/* Center the whole group */
.center {
  width: min(920px, 100%);
  margin: auto;
  text-align: center;
}

/* Headline: Roboto Condensed SemiBold Italic, all caps */
.title {
  margin: 0 0 16px 0;
  font-family: "Roboto Condensed", sans-serif;
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #f08a00;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 1.05;
}

/* Body copy: Roboto Light */
.body {
  margin: 0 0 12px 0;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.6;
  font-weight: 300;
  color: #6a7478;
}

/* Form: keep input + button inline, never full width */
.form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: nowrap;
}

.email {
  width: clamp(240px, 36vw, 460px);
  height: 40px;
  padding: 0 14px;
  border-radius: 6px;
  border: 1px solid rgba(90, 100, 105, 0.35);
  background: rgba(255,255,255,0.65);

  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 15px;
  outline: none;
}

.email::placeholder {
  color: rgba(90, 100, 105, 0.55);
  font-weight: 300;
}

/* Button: Roboto Condensed, smaller, Title Case */
.button {
  height: 40px;
  padding: 0 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;

  font-family: "Roboto Condensed", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;

  color: #fff;
  background: linear-gradient(180deg, #ff9a1f 0%, #f07f00 100%);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.button:active { transform: translateY(1px); }

/* Logo: centered between form and bottom, responsive sizing */
.logo-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 9vh, 90px); /* more space from form */
}

.logo {
  width: clamp(120px, 18vw, 210px);
  height: auto;
  display: block;
}

/* Footer credit: subtle, bottom */
.footer {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.font-credit {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: rgba(90, 100, 105, 0.28);
}

/* Mobile: still inline, not full-width */
@media (max-width: 520px) {
  .form { gap: 10px; }
  .email { width: 220px; }
  .button { padding: 0 14px; }
  .logo { width: 260px; }
}
