/* ============================================================
   ADYTON — holding page
   Faithful static replica of the adyton.me "Coming Soon" page:
   clean white layout, black ADYTON wordmark, email sign-up.
   ============================================================ */

:root {
  --ink:        #171716;
  --ink-soft:   #55555a;
  --paper:      #ffffff;
  --line:       #e6e9eb;

  --brand:      #29ace0;   /* ADYTON cyan-blue */
  --brand-deep: #0177b5;
  --brand-light:#42b3ea;
  --peach:      #fec5a5;   /* hero gradient start */
  --pink:       #fb79a5;   /* hero gradient end   */
  --berry:      #a32d5e;   /* readable accent on the warm hero */

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  color: var(--ink);
  /* The original hero, reproduced exactly: the real (near-transparent,
     faint-white) adyton_background.png layered over a peach→pink gradient. */
  background-color: var(--pink);
  background-image:
    url("../img/adyton_background.png"),
    linear-gradient(90deg, var(--peach) 0%, var(--pink) 100%);
  background-size: cover, auto;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Legal/long-form pages stay on white for readability */
body.legal-page { background: var(--paper); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

/* ---------- Layout ---------- */
.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 9vh, 110px) clamp(22px, 6vw, 48px);
  text-align: center;
}
.holding {
  width: 100%;
  max-width: 640px;
}

/* ---------- Logo ---------- */
.holding__logo {
  width: clamp(190px, 42vw, 320px);
  margin: 0 auto clamp(30px, 5vw, 48px);
}

/* ---------- Copy ---------- */
.holding__title {
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  margin-bottom: .55em;
}
.holding__intro {
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  max-width: 33em;
  margin: 0 auto 1.6em;
}
.holding__intro strong { color: var(--ink); font-weight: 700; }
.holding__lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3.2vw, 1.6rem);
  line-height: 1.4;
  max-width: 22em;
  margin: 0 auto clamp(34px, 6vw, 52px);
}

/* ---------- Sign-up ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--berry);
  margin-bottom: 1.1em;
}
.signup { max-width: 480px; margin-inline: auto; }
.signup__prompt { font-weight: 600; margin-bottom: 16px; }
.signup__form { display: flex; gap: 10px; }
.signup__form input[type="email"] {
  flex: 1; min-width: 0;
  padding: 1em 1.25em;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .25s var(--ease);
}
.signup__form input::placeholder { color: #9aa0a6; }
.signup__form input:focus { outline: none; border-color: var(--brand); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; font-size: .8rem;
  padding: 1em 1.7em; border: 0; border-radius: 999px; cursor: pointer;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(120deg, var(--brand-light), var(--brand-deep));
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(1,119,181,.6); }
.btn:disabled { opacity: .6; cursor: default; transform: none; box-shadow: none; }

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  text-align: left;
  font-size: .8rem; color: var(--ink-soft);
  margin: 18px auto 0; max-width: 440px;
}
.consent input { margin-top: 5px; accent-color: var(--brand); flex: none; }
.consent a { color: var(--brand-deep); }

.form-message { margin-top: 16px; font-weight: 600; color: var(--brand-deep); }
.form-message--error { color: var(--pink); }

/* ---------- Footer ---------- */
.holding-footer {
  text-align: center;
  padding: 26px 22px 34px;
  font-size: .82rem;
  color: var(--ink-soft);
}
.holding-footer__brand { font-weight: 600; color: var(--ink); }
.holding-footer__links { margin-top: 6px; }
.holding-footer__links a { color: var(--ink-soft); }
.holding-footer__links a:hover { color: var(--brand-deep); }

/* Made by Colibri Studios mark */
.made-by {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; text-decoration: none; white-space: nowrap; line-height: 1;
  opacity: .9; transition: opacity .25s var(--ease);
}
.made-by:hover { opacity: 1; }
.made-by__label { font-size: 12px; color: var(--ink-soft); }
.made-by__bird, .made-by__word { height: 22px; width: auto; display: inline-block; vertical-align: middle; }

/* ---------- Legal page ---------- */
.legal { flex: 1; width: min(100% - 44px, 720px); margin: clamp(56px,9vw,96px) auto; }
.legal h1 { font-family: var(--serif); font-size: clamp(2rem,5vw,2.8rem); margin-bottom: .8em; }
.legal h2 { font-family: var(--serif); font-size: 1.5rem; margin: 1.6em 0 .4em; }
.legal p { color: var(--ink-soft); margin-bottom: 1em; }
.legal .back { display: inline-block; margin-top: 2.4em; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--brand-deep); }
.legal .note { font-size: .9rem; background: #f6f8f9; border: 1px solid var(--line); border-radius: 4px; padding: 16px 20px; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 540px) {
  body { font-size: 17px; }
  .signup__form { flex-direction: column; }
  .btn { width: 100%; }
}
