/* Base Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #0f172a; background: #fafaf9; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Layout */
.page { min-height: 100%; display: grid; grid-template-rows: auto 1fr auto; position: relative; overflow: hidden; }
.header, .footer { width: 100%; max-width: 1100px; margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; }
.header.transparent { background: transparent; position: absolute; top: 0; left: 0; right: 0; z-index: 3; }
.masthead { position: relative; min-height: calc(100svh - 0px); display: grid; place-items: center; background: #000; }
.bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,6,23,0.80) 0%, rgba(2,6,23,0.50) 60%, rgba(2,6,23,0.80) 100%); z-index: 1; }
.masthead .container { position: relative; z-index: 2; text-align: center; padding: 24px; max-width: 860px; }

/* Background */
/* Removed gradient and accent in favor of background image + overlay */

/* Branding */
.brand { display: inline-flex; align-items: center; gap: 12px; color: #0f172a; text-decoration: none; }
.brand:hover .brand-mark { transform: rotate(20deg) scale(1.06); }
.brand-mark { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, #1d4ed8 0%, #0ea5a4 100%); color: #ffffff; font-weight: 800; transition: transform 220ms ease; }
.brand-name { font-weight: 600; letter-spacing: 0.2px; }

/* Card */
/* Removed card/glass visuals */

/* Typography */
h1 { margin: 0 0 16px; font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-weight: 700; font-size: clamp(48px, 7vw, 86px); line-height: 1.02; letter-spacing: 0; color: #ffffff; text-transform: none; }
.divider { width: 120px; height: 4px; margin: 18px auto 20px; background: rgba(255, 255, 255, 0.8); border: 0; border-radius: 2px; }
.lead { margin: 0 0 28px; color: #e2e8f0; font-size: clamp(18px, 2.4vw, 22px); }

/* Countdown removed */

/* Form */
.btn { appearance: none; border: none; padding: 16px 22px; border-radius: 12px; background: #ffffff; color: #0f172a; font-weight: 800; cursor: pointer; transition: transform 120ms ease, box-shadow 200ms ease, filter 200ms ease; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); font-size: 18px; }
.btn.primary { background: #22d3ee; color: #0f172a; }
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); filter: none; }
/* Form styles removed */

/* Social buttons removed */

/* CTA row removed */

/* Links */
/* Links list removed in redesign */

/* Footer */
.footer p { margin: 0; color: #475569; font-size: 16px; }

/* Responsive */
@media (max-width: 720px) {
  .masthead .container { padding: 28px; }
}

@media (max-width: 440px) {
  .field { grid-template-columns: 1fr; }
}


