/* True Shine Toddy — placeholder site
   Palette pulled from the logo: navy, sky blue, sunset gold. */

:root {
  --navy-900: #060f24;
  --navy-800: #0a1733;
  --navy-700: #0d1e42;
  --navy-600: #16305e;
  --line:     rgba(255, 255, 255, 0.12);
  --line-str: rgba(255, 255, 255, 0.24);

  --sky:      #4fb3f6;
  --sky-soft: #8fd0fb;
  --gold:     #f5a623;

  --ink:      #f3f8ff;
  --ink-soft: #b6c6e0;
  --ink-mute: #8195b6;

  --radius:   18px;
  --radius-sm: 12px;
  --shadow:   0 24px 60px -20px rgba(0, 0, 0, 0.65);
  --maxw:     640px;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 50% -10%, var(--navy-600) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  background-color: var(--navy-900);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Soft ambient light blooms behind the content */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
}
.glow-a { top: -180px; left: -120px; width: 460px; height: 460px; background: var(--sky); }
.glow-b { bottom: -220px; right: -140px; width: 520px; height: 520px; background: var(--gold); opacity: 0.16; }

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 22px 48px;
}

/* ---------- Hero ---------- */

.hero { text-align: center; }

.logo-disc {
  width: 216px;
  height: 216px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  padding: 8px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5),
    0 0 0 10px rgba(79, 179, 246, 0.10),
    var(--shadow);
}
.logo-disc img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky-soft);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 8vw, 3.1rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, var(--sky-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 300;
}

/* ---------- Buttons ---------- */

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }

.btn-primary {
  color: #041226;
  background: linear-gradient(180deg, #6fc2fa 0%, var(--sky) 100%);
  box-shadow: 0 10px 26px -10px rgba(79, 179, 246, 0.9);
}
.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-str);
}

.btn:hover { transform: translateY(-2px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.10); }
.btn:active { transform: translateY(0); }

.btn-block { width: 100%; padding: 15px 22px; margin-top: 6px; }
.btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }

/* ---------- Contact card ---------- */

.card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card h2 {
  margin: 0 0 4px;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.card-sub {
  margin: 0 0 22px;
  color: var(--ink-mute);
  font-size: 0.93rem;
}

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field { margin-bottom: 16px; }

label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}
.opt { color: var(--ink-mute); font-weight: 400; }

input, textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  background: rgba(4, 12, 28, 0.55);
  border: 1px solid var(--line-str);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
textarea { resize: vertical; min-height: 118px; }

input::placeholder, textarea::placeholder { color: #5f7295; }

input:focus, textarea:focus, .btn:focus-visible, a:focus-visible {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(79, 179, 246, 0.28);
}
.btn:focus-visible, a:focus-visible { border-radius: 6px; }
.btn:focus-visible { border-radius: 999px; }

input[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: #ff8080;
  box-shadow: 0 0 0 3px rgba(255, 128, 128, 0.18);
}

/* Honeypot — off-screen rather than display:none, which some bots skip */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.status {
  margin: 16px 0 0;
  min-height: 1.4em;
  font-size: 0.92rem;
  text-align: center;
}
.status.ok    { color: #7ee2a8; }
.status.error { color: #ff9b9b; }

/* ---------- Footer ---------- */

footer {
  margin-top: 44px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-mute);
}
footer p { margin: 0 0 8px; }
footer a { color: var(--ink-soft); text-decoration: none; }
footer a:hover { color: var(--sky); text-decoration: underline; }
.dot { margin: 0 10px; color: var(--line-str); }
.fine { font-size: 0.8rem; color: #61759a; }

/* ---------- Responsive ---------- */

@media (max-width: 520px) {
  .wrap { padding: 40px 18px 36px; }
  .logo-disc { width: 168px; height: 168px; margin-bottom: 24px; }
  .row { grid-template-columns: 1fr; gap: 0; }
  .actions { gap: 10px; }
  .btn { width: 100%; }
  .card { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .btn:hover { transform: none; }
}
