/* Trellis Work — Coming Soon — Brand Guidelines 2026 */
:root {
  --violet: #7033FF;
  --vine: #8A5CFF;
  --midnight: #141223;
  --white: #FFFFFF;
  --muted: #B9B3D6;
  --lavender: #C9B8FF;
  --card: rgba(255, 255, 255, 0.04);
  --rule: rgba(138, 92, 255, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { height: 100%; }

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--midnight);
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -15%, rgba(112, 51, 255, 0.28), transparent),
    radial-gradient(ellipse 60% 45% at 85% 110%, rgba(138, 92, 255, 0.14), transparent);
  color: var(--white);
  font-family: "Satoshi", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  width: 100%;
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: min(340px, 78vw);
  height: auto;
  margin-bottom: 56px;
}

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9C7BFF;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

h1 .accent { color: var(--vine); }

.sub {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 44px;
}

.sub a {
  color: var(--lavender);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}

.sub a:hover,
.sub a:focus-visible {
  color: var(--white);
  border-color: var(--vine);
}

/* Notify form */
.notify {
  width: 100%;
  max-width: 460px;
  margin-bottom: 16px;
}

.notify-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.notify label.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.notify input[type="email"] {
  flex: 1 1 260px;
  min-width: 0;
  padding: 14px 18px;
  font-size: 16px;
  font-family: inherit;
  color: var(--white);
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease;
}

.notify input[type="email"]::placeholder { color: #8d87ad; }

.notify input[type="email"]:focus {
  border-color: var(--vine);
  box-shadow: 0 0 0 3px rgba(138, 92, 255, 0.25);
}

.notify button {
  flex: 0 0 auto;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--vine));
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
}

.notify button:hover { filter: brightness(1.12); }
.notify button:active { transform: translateY(1px); }
.notify button:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 2px;
}

.hp { display: none; }

.form-note {
  font-size: 13px;
  color: #8d87ad;
  margin-bottom: 48px;
}

.contact {
  font-size: 15px;
  color: var(--muted);
}

.contact a {
  color: var(--lavender);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--white);
  border-color: var(--vine);
}

.contact a:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 3px;
  border-radius: 2px;
}

footer {
  margin-top: 72px;
  font-size: 12.5px;
  color: #8d87ad;
  text-align: center;
  letter-spacing: 0.02em;
}

footer .sep { margin: 0 8px; color: #8d87ad; }

/* Thanks page */
.thanks-mark {
  width: 88px;
  height: auto;
  margin-bottom: 36px;
}

.back-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--lavender);
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 12px 26px;
  transition: background 0.2s ease, color 0.2s ease;
}

.back-link:hover,
.back-link:focus-visible {
  background: rgba(138, 92, 255, 0.15);
  color: var(--white);
}

.back-link:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 2px;
}

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

@media (max-width: 480px) {
  .logo { margin-bottom: 40px; }
  footer { margin-top: 56px; }
}
