* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #05060c; color: #fff; font-family: 'Outfit', system-ui, sans-serif; -webkit-tap-highlight-color: transparent; }
#sky { position: fixed; inset: 0; width: 100vw; height: 100vh; display: block; z-index: 0; }
main { position: relative; z-index: 1; }
section { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }

/* ---- Hero (matches approved prototype) ---- */
.brand { display: flex; flex-direction: column; align-items: center; }
.brand-main { font-family: 'Jura', sans-serif; font-weight: 700; font-size: clamp(32px, 8.5vw, 90px); letter-spacing: .1em; text-indent: .1em; text-transform: uppercase; line-height: 1; text-shadow: 0 0 38px rgba(120,160,255,.35); animation: rise .9s .05s ease both; }
.brand-sub { font-family: 'Jura', sans-serif; font-weight: 500; margin-top: clamp(6px,1.2vh,12px); font-size: clamp(15px,2.6vw,26px); letter-spacing: .42em; text-indent: .42em; text-transform: uppercase; color: rgba(255,255,255,.4); animation: rise .9s .18s ease both; }
.tagline { margin-top: clamp(40px,8vh,88px); font-size: clamp(20px,3.4vw,34px); font-weight: 300; letter-spacing: .01em; line-height: 1.15; background: linear-gradient(100deg,#c2cdee 0%,#c2cdee 40%,#fff 49%,#fff 52%,#c2cdee 61%,#c2cdee 100%); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: rise 1s .32s ease both, shimmer 7.5s 1.2s linear infinite; }
.contact { margin-top: clamp(46px,9vh,100px); font-family: 'DM Mono', monospace; display: flex; flex-direction: column; align-items: center; gap: 6px; animation: rise 1s .5s ease both; }
.contact .name { font-size: clamp(13px,1.7vw,16px); font-weight: 500; letter-spacing: .04em; color: rgba(255,255,255,.82); margin-bottom: 6px; }
.contact a { font-size: clamp(12px,1.5vw,14px); font-weight: 400; color: rgba(165,195,255,.8); text-decoration: none; letter-spacing: .02em; padding: 4px 10px; border-radius: 6px; transition: color .2s, background .2s; }
.contact a:hover { color: #fff; background: rgba(140,180,255,.1); }

/* ---- Scroll cue ---- */
.scroll-cue { position: absolute; bottom: 28px; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; gap: 4px; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .22em; text-indent: .22em; text-transform: uppercase; color: rgba(255,255,255,.45); text-decoration: none; animation: rise 1s .8s ease both; }
.scroll-cue:hover { color: #fff; }
.scroll-cue .chevron { font-size: 18px; line-height: 1; letter-spacing: 0; text-indent: 0; animation: bob 1.8s ease-in-out infinite; }

/* ---- Contact form ---- */
.form-card { width: 100%; max-width: 460px; background: rgba(12,16,30,.55); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 36px clamp(20px,4vw,40px); text-align: left; }
.form-card h2 { font-family: 'Jura', sans-serif; font-weight: 500; font-size: clamp(20px,3vw,26px); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 22px; text-align: center; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.field label .opt { color: rgba(255,255,255,.35); }
.field input, .field textarea { width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; color: #fff; font-family: 'Outfit', sans-serif; font-size: 15px; padding: 11px 13px; transition: border-color .2s, background .2s; }
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field textarea:focus { outline: none; border-color: rgba(160,190,255,.7); background: rgba(255,255,255,.07); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: rgba(255,120,120,.8); }
.err { display: block; min-height: 14px; margin-top: 5px; font-family: 'DM Mono', monospace; font-size: 11px; color: #ff9a9a; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
button[type="submit"] { width: 100%; margin-top: 6px; padding: 13px; border: 1px solid rgba(160,190,255,.5); border-radius: 8px; background: rgba(140,180,255,.14); color: #fff; font-family: 'Jura', sans-serif; font-weight: 500; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: background .2s, box-shadow .2s; }
button[type="submit"]:hover { background: rgba(140,180,255,.26); box-shadow: 0 0 24px rgba(120,160,255,.25); }
button[type="submit"]:disabled { opacity: .55; cursor: default; box-shadow: none; }
.form-status { min-height: 20px; margin-top: 14px; text-align: center; font-family: 'DM Mono', monospace; font-size: 13px; }
.form-status.ok { color: #9affc4; }
.form-status.bad { color: #ff9a9a; }

@keyframes rise { from { opacity: 0; filter: blur(10px); transform: translateY(12px); } to { opacity: 1; filter: blur(0); transform: none; } }
@keyframes shimmer { 0% { background-position: 120% center; } 100% { background-position: -120% center; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Owner decision (2026-06-02): animations play for all visitors;
   prefers-reduced-motion is intentionally not gated. */
