/* ═══════════════════════════════════════════════════════════════
   Fortress Cloud — landing page design system
   Brand language: Fortress Protocol (fortresshub.net)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #050816;
  --card: rgba(13, 18, 36, 0.72);
  --primary: #3b82f6;
  --secondary: #36cafb;
  --accent: #8b5cf6;
  --text: #f8fbff;
  --soft: #d9e5f5;
  --muted: #93a4bd;
  --success: #34d399;
  --warning: #fbbf24;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --glow: 0 20px 60px rgba(54, 202, 251, 0.14);
  --radius: 26px;
  --max: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100%;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: rgba(54, 202, 251, 0.35); }

/* ── Background visuals ──────────────────────────────────────── */
.aurora { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.45; animation: drift 20s ease-in-out infinite; }
.aurora .a1 { width: 520px; height: 520px; background: rgba(59, 130, 246, 0.35); top: -120px; left: -80px; }
.aurora .a2 { width: 480px; height: 480px; background: rgba(54, 202, 251, 0.28); top: 8%; right: -120px; animation-delay: -5s; }
.aurora .a3 { width: 560px; height: 560px; background: rgba(139, 92, 246, 0.22); bottom: -160px; left: 30%; animation-delay: -10s; }
@keyframes drift { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(60px, -40px) scale(1.1); } 66% { transform: translate(-50px, 40px) scale(0.95); } }

.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.2;
  background:
    linear-gradient(rgba(54, 202, 251, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 202, 251, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 75%);
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

#glow-cursor {
  position: fixed; width: 440px; height: 440px; top: 0; left: 0;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 202, 251, 0.1), transparent 70%);
  mix-blend-mode: screen;
}

/* ── Header / nav ────────────────────────────────────────────── */
header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(5, 8, 22, 0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}
.nav-wrap {
  max-width: var(--max); margin: 0 auto; padding: 1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.9rem; min-width: 0; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 30% 20%, rgba(54, 202, 251, 0.18), rgba(11, 16, 34, 0.6) 60%), rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 14px 34px rgba(0, 0, 0, 0.35);
  overflow: hidden; flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-copy { display: flex; flex-direction: column; min-width: 0; }
.brand-copy strong {
  font-size: 1rem; letter-spacing: 0.08em; font-weight: 900; white-space: nowrap;
  background: linear-gradient(45deg, #fff, #cfe8ff, #36cafb);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.brand-copy span {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); white-space: nowrap;
}

.desktop-nav ul { list-style: none; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.desktop-nav a { color: var(--muted); font-size: 0.9rem; font-weight: 700; position: relative; padding: 0.35rem 0; transition: 0.25s; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: 0.25s;
}
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { left: 0; width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 0.8rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn, .btn-outline, .hamburger { border: none; border-radius: 16px; font-weight: 800; transition: 0.28s; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.25rem; color: #fff;
  background: linear-gradient(90deg, #2563eb, #36cafb);
  background-size: 200% auto;
  box-shadow: 0 14px 34px rgba(54, 202, 251, 0.22);
}
.btn:hover { transform: translateY(-2px); background-position: right center; box-shadow: 0 18px 40px rgba(54, 202, 251, 0.4); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.2rem; color: #fff;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-outline:hover { transform: translateY(-2px); border-color: rgba(54, 202, 251, 0.24); box-shadow: var(--glow); }

.hamburger {
  display: none; width: 46px; height: 46px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); position: relative;
}
.hamburger span, .hamburger::before, .hamburger::after {
  content: ""; position: absolute; left: 11px; right: 11px; height: 2px;
  background: #fff; border-radius: 4px; transition: 0.28s;
}
.hamburger span { top: 22px; }
.hamburger::before { top: 15px; }
.hamburger::after { top: 29px; }
.hamburger.active span { opacity: 0; }
.hamburger.active::before { top: 22px; transform: rotate(45deg); }
.hamburger.active::after { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  display: none; border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(7, 11, 24, 0.97); backdrop-filter: blur(18px);
}
.mobile-menu.open { display: block; animation: fadeDown 0.32s ease; }
.mobile-menu-inner { max-width: var(--max); margin: 0 auto; padding: 1rem 1.4rem 1.4rem; display: grid; gap: 0.8rem; }
.mobile-menu a {
  color: var(--soft); padding: 0.9rem 1rem; border-radius: 14px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.04); font-weight: 700;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero { position: relative; z-index: 2; padding: 9rem 1.4rem 4rem; min-height: 100vh; display: flex; align-items: center; }
.container { max-width: var(--max); margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1.5rem; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.55rem 0.9rem; border-radius: 999px;
  color: var(--secondary); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase;
  background: rgba(54, 202, 251, 0.08); border: 1px solid rgba(54, 202, 251, 0.16); margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(3rem, 6.5vw, 6rem); line-height: 0.98; letter-spacing: -0.05em; font-weight: 950; margin-bottom: 1.2rem;
}
.hero h1 span {
  display: block;
  background: linear-gradient(135deg, #fff, #dcecff 45%, #36cafb 80%, #8b5cf6);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gtext 7s ease infinite;
}
@keyframes gtext { 0%, 100% { background-position: 0 center; } 50% { background-position: 100% center; } }
.hero p { color: var(--soft); font-size: 1.1rem; line-height: 1.85; max-width: 620px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.6rem 0 2rem; }
.badge {
  padding: 0.75rem 1rem; border-radius: 16px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--soft); font-weight: 700; font-size: 0.92rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.glass {
  background: var(--card); border: 1px solid rgba(54, 202, 251, 0.16); border-radius: 28px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: var(--shadow);
}
.hero-panel { padding: 0.75rem; position: relative; overflow: visible; }

.hero-art {
  position: relative; border-radius: 26px; overflow: hidden; aspect-ratio: 1 / 1;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.35s ease, filter 0.35s ease;
  box-shadow:
    0 28px 80px rgba(54, 202, 251, 0.18),
    0 14px 34px rgba(139, 92, 246, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: radial-gradient(120% 120% at 30% 20%, rgba(59, 130, 246, 0.12), rgba(11, 16, 34, 0.7) 60%);
  will-change: transform;
}
.hero-art img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  filter: saturate(1.06) brightness(1.06) contrast(1.02);
  transform: translateZ(35px);
}
.hero-art::before {
  content: ""; position: absolute; inset: -30%;
  background:
    radial-gradient(60% 60% at 65% 20%, rgba(54, 202, 251, 0.2), transparent 60%),
    radial-gradient(60% 60% at 30% 80%, rgba(139, 92, 246, 0.18), transparent 60%);
  filter: blur(32px); opacity: 0.7; pointer-events: none; transform: translateZ(1px);
  animation: heroGlow 18s linear infinite;
}
.hero-panel::after {
  content: ""; position: absolute; left: 8%; right: 8%; bottom: -12px; height: 26px;
  filter: blur(14px);
  background: radial-gradient(60% 100% at 50% 0%, rgba(0, 0, 0, 0.45), transparent 70%);
  pointer-events: none;
}
.hero-art:hover {
  box-shadow:
    0 34px 96px rgba(54, 202, 251, 0.26),
    0 18px 44px rgba(139, 92, 246, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  filter: drop-shadow(0 0 24px rgba(54, 202, 251, 0.18));
}
@keyframes heroGlow { 0% { transform: rotate(0deg) translateZ(1px); } 100% { transform: rotate(360deg) translateZ(1px); } }

/* ── Sections ────────────────────────────────────────────────── */
.section { position: relative; z-index: 2; padding: 4.5rem 1.4rem 0; }
.section-head { margin-bottom: 1.8rem; max-width: 860px; }
.kicker {
  display: inline-block; color: var(--secondary); font-size: 0.82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 0.8rem;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -0.04em; font-weight: 900; margin-bottom: 0.8rem; }
.section-head p { color: var(--muted); line-height: 1.85; font-size: 1.04rem; }

/* ── Grids & cards ───────────────────────────────────────────── */
.grid-2, .grid-3, .feature-grid, .pricing-grid { display: grid; gap: 1.3rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); }

.card, .pricing-card, .timeline-card, .suite-card {
  background: var(--card); border: 1px solid rgba(255, 255, 255, 0.07); border-radius: var(--radius);
  padding: 1.5rem; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}
.revealed { opacity: 1 !important; transform: translateY(0) !important; }
.card:hover, .pricing-card:hover, .timeline-card:hover, .suite-card:hover {
  border-color: rgba(54, 202, 251, 0.24);
  box-shadow: 0 32px 80px rgba(54, 202, 251, 0.08);
  transform: translateY(-4px);
}
.card::before, .pricing-card::before, .timeline-card::before, .suite-card::before {
  content: ""; position: absolute; top: 0; left: -100%; height: 3px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent); transition: left 0.75s;
}
.card:hover::before, .pricing-card:hover::before, .timeline-card:hover::before, .suite-card:hover::before { left: 100%; }

.icon {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  color: var(--secondary); font-weight: 900; margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(54, 202, 251, 0.15));
  border: 1px solid rgba(54, 202, 251, 0.18);
}
.icon svg { width: 22px; height: 22px; }
.tag { color: var(--secondary); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.13em; font-weight: 800; margin-bottom: 0.85rem; }
h3 { font-size: 1.35rem; font-weight: 850; letter-spacing: -0.02em; margin-bottom: 0.55rem; }
.card p, .pricing-card p, .timeline-card p, .suite-card p { color: var(--muted); line-height: 1.75; font-size: 1rem; }
.card ul, .pricing-card ul, .suite-card ul { list-style: none; margin-top: 1rem; display: grid; gap: 0.72rem; }
.card li, .pricing-card li, .suite-card li { position: relative; padding-left: 1.25rem; color: var(--soft); line-height: 1.65; }
.card li::before, .pricing-card li::before, .suite-card li::before {
  content: "✦"; position: absolute; left: 0; top: 0; color: var(--secondary);
  font-size: 0.82rem; text-shadow: 0 0 12px rgba(54, 202, 251, 0.45);
}

/* ── Suite cards ─────────────────────────────────────────────── */
.suite-card.featured {
  grid-column: 1 / -1;
  padding: 2.75rem 3rem;
  background: linear-gradient(145deg, rgba(54, 202, 251, 0.12), rgba(139, 92, 246, 0.09));
  border: 1px solid rgba(54, 202, 251, 0.35);
  box-shadow: 0 30px 90px rgba(54, 202, 251, 0.25), 0 10px 40px rgba(139, 92, 246, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.suite-card.featured::before { content: none; }
.suite-label {
  display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.45rem 0.75rem; border-radius: 999px;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--secondary);
  border: 1px solid rgba(54, 202, 251, 0.16); background: rgba(54, 202, 251, 0.08); margin-bottom: 1rem;
}
.suite-card.featured .suite-label { font-size: 1rem; letter-spacing: 1.5px; color: #36cafb; }
.app-logo {
  width: 64px; height: 64px; border-radius: 24%;
  background: radial-gradient(120% 120% at 30% 20%, rgba(54, 202, 251, 0.18), rgba(11, 16, 34, 0.6) 60%), rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 14px 34px rgba(0, 0, 0, 0.35);
  display: grid; place-items: center; overflow: hidden; margin-bottom: 1rem; flex-shrink: 0;
}
.app-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.suite-card.featured .app-logo { width: 110px; height: 110px; box-shadow: 0 20px 50px rgba(54, 202, 251, 0.3); }
.suite-card.featured h3 { font-size: 2rem; margin-bottom: 0.35rem; }
.app-icon-letter {
  color: #9dbbe0; font-size: 1.4rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── Split / security ────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-visual { position: relative; }
.split-art {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: 0 28px 80px rgba(139, 92, 246, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(-1deg);
}
.split-art img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(54, 202, 251, 0.14), transparent 40%, rgba(139, 92, 246, 0.16));
  pointer-events: none;
}
.split-badge {
  position: absolute; right: -14px; bottom: 22px; padding: 0.9rem 1.2rem; border-radius: 18px;
  background: rgba(11, 16, 34, 0.9); border: 1px solid rgba(54, 202, 251, 0.24);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4); backdrop-filter: blur(12px);
}
.split-badge strong { display: block; font-size: 1.35rem; font-weight: 950; background: linear-gradient(90deg, #fff, #36cafb); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.split-badge span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.check-list { list-style: none; margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--soft); font-size: 1rem; line-height: 1.6; }
.check-list li::before {
  content: "✓"; flex: none; width: 22px; height: 22px; border-radius: 8px; margin-top: 2px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #36cafb); color: #fff;
}

/* ── Timeline ────────────────────────────────────────────────── */
.timeline-card { padding: 1.8rem 1.8rem 1.4rem; }
.timeline { position: relative; display: grid; gap: 1.2rem; }
.timeline::before {
  content: ""; position: absolute; left: 23px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(180deg, rgba(54, 202, 251, 0.55), rgba(139, 92, 246, 0.28));
}
.timeline-item { position: relative; padding-left: 4.2rem; }
.timeline-dot {
  position: absolute; left: 10px; top: 14px; width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #36cafb);
  box-shadow: 0 0 0 6px rgba(54, 202, 251, 0.08), 0 0 18px rgba(54, 202, 251, 0.24);
  animation: pulse 3s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(54, 202, 251, 0.08), 0 0 18px rgba(54, 202, 251, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(54, 202, 251, 0.02), 0 0 26px rgba(54, 202, 251, 0.5); }
}
.timeline-phase { color: var(--secondary); font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.5rem; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-card { display: flex; flex-direction: column; }
.pricing-card.featured { transform: translateY(-6px); border-color: rgba(54, 202, 251, 0.28); box-shadow: 0 30px 80px rgba(54, 202, 251, 0.13); }
.price { font-size: 2.6rem; font-weight: 950; margin: 0.8rem 0 0.2rem; line-height: 1; }
.price span { font-size: 1rem; font-weight: 700; }
.price-sub { color: var(--muted); margin-bottom: 1rem; font-size: 0.94rem; }
.pricing-card .btn, .pricing-card .btn-outline { margin-top: auto; width: 100%; text-align: center; justify-content: center; }

/* ── CTA ─────────────────────────────────────────────────────── */
.cta {
  margin-top: 1.5rem; padding: 2rem; border-radius: 32px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(54, 202, 251, 0.08)), rgba(11, 16, 34, 0.92);
  border: 1px solid rgba(54, 202, 251, 0.18); box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.4rem; align-items: center;
}
.cta h3 { font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 0.7rem; }
.cta p { color: var(--muted); line-height: 1.8; }
.cta-box { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 1.2rem; }
.cta-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); color: var(--soft); font-size: 0.95rem; }
.cta-row:last-child { border-bottom: none; }
.cta-row span:last-child { color: var(--muted); text-align: right; }

/* ── Footer ──────────────────────────────────────────────────── */
footer { position: relative; z-index: 2; padding: 3rem 1.4rem 2.5rem; text-align: center; }
.foot-wrap { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.copy { color: rgba(147, 164, 189, 0.78); font-size: 0.9rem; letter-spacing: 0.04em; }
.copy a { color: var(--secondary); font-weight: 700; }
.socials { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.8rem; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); color: var(--soft); font-weight: 700;
}
.social-link:hover { border-color: rgba(54, 202, 251, 0.24); box-shadow: var(--glow); color: #fff; transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; opacity: 0.9; }

/* ── Animations & responsive ─────────────────────────────────── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float { animation: floaty 6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-art { transition: none; transform: none !important; }
  .hero-art::before { animation: none; }
  .hero-panel.float { animation: none; }
  .aurora span { animation: none; }
  .card, .pricing-card, .timeline-card, .suite-card { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .hero-grid, .cta, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .desktop-nav, .nav-cta .btn-outline, .nav-cta .btn { display: none; }
  .hamburger { display: inline-block; }
  .hero-grid, .grid-2, .grid-3, .pricing-grid, .cta, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 8rem; }
  .brand-copy span { display: none; }
}

@media (max-width: 640px) {
  .hero, .section, footer { padding-left: 1rem; padding-right: 1rem; }
  .hero h1 { font-size: 2.8rem; }
  .section-head p, .hero p { font-size: 0.98rem; }
  .cta { padding: 1.3rem; }
  .cta h3 { font-size: 1.55rem; }
  .card, .pricing-card, .timeline-card, .suite-card, .hero-panel { padding: 1.2rem; }
  .suite-card.featured { padding: 1.6rem; }
  .suite-card.featured h3 { font-size: 1.6rem; }
  .split-art img { aspect-ratio: 4 / 3; }
}
