:root {
  --bg: #ffffff;
  --text-main: #0b0c0d;
  --text-muted: #555555;
  --border-subtle: #d8d8d8;
  --input-bg: #f9f9f9;
  --focus-ring: #000000;
}

/* Reset / base */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

/* Layout */

.page {
  width: 100%;
  max-width: 760px;               /* overall max width */
  margin: 3.5rem auto 2.5rem;
  padding: 0 1.5rem;
}

header {
  text-align: center;
  margin-bottom: 3rem;
}

/* text column under logo */
.content {
  max-width: 640px;               /* same visual width as logo */
  margin: 0 auto;
  text-align: left;
}

main {
  margin-bottom: 3rem;
}

footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;                /* bold copyright line */
}

/* Logo */

.main-logo {
  display: block;
  max-width: 640px;               /* match content width */
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Hero section */

.hero-heading {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.hero-copy {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Form */

form {
  width: 100%;
}

.field-group {
  margin-bottom: 1.25rem;
}

label {
  font-size: 0.9rem;
}

.text-input {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border-radius: 0;
  border: 1px solid var(--border-subtle);
  background-color: var(--input-bg);
  color: var(--text-main);
  font-size: 0.98rem;
  outline: none;
}

.text-input::placeholder {
  color: #a0a0a0;
}

.text-input:focus-visible {
  border-color: var(--focus-ring);
  box-shadow: 0 0 0 1px var(--focus-ring);
}

/* Consent line */

.checkbox-row {
  display: flex;                  /* full-width block, keeps button on next line */
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-row input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

/* Subscribe button clearly below consent */

button[type="submit"] {
  display: inline-block;
  margin-top: 0;                  /* tight to consent line, like WP look */
  padding: 0.75rem 2.4rem;
  border-radius: 0;
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 120ms ease-out, box-shadow 120ms ease-out, background 120ms ease-out;
}

button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

button[type="submit"]:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.fine-print {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Honeypot (hidden from users) */

.honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Mobile tweaks */

@media (max-width: 640px) {
  .page {
    margin-top: 2.5rem;
  }

  .hero-heading {
    font-size: 1.9rem;
  }
}