/* ────────────────────────────────────────────────────────────
   HORUS — Landing page styles
   Base: H-Board design system (Poppins, surfaces, blue→purple)
   Motion direction: dark mesh gradient + grand type + grain subtil
   ──────────────────────────────────────────────────────────── */

:root {
  --horus-abyss: #020617;
  --horus-abyss-2: #050a18;
  --horus-blue: #467BE6;
  --horus-purple: #7C3AED;
  --horus-teal: #14B8A6;
  --horus-ink: #E0E6ED;
  --horus-muted: #8b96a8;
  --horus-border: rgba(255, 255, 255, 0.08);
  --horus-border-strong: rgba(255, 255, 255, 0.14);
  --horus-card: rgba(22, 27, 34, 0.7);
  --horus-card-solid: #0F141C;
  --horus-glass: rgba(255, 255, 255, 0.04);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans, 'Poppins', system-ui, sans-serif);
  color: var(--horus-ink);
  background: var(--horus-abyss);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ─── MESH GRADIENT BACKGROUND (fixed) ─── */
.horus-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 15% 8%, rgba(70, 123, 230, 0.15), transparent 60%),
    radial-gradient(ellipse 60% 45% at 88% 12%, rgba(124, 58, 237, 0.12), transparent 60%),
    radial-gradient(ellipse 75% 55% at 50% 95%, rgba(20, 184, 166, 0.08), transparent 60%),
    radial-gradient(ellipse 55% 40% at 75% 55%, rgba(139, 92, 246, 0.06), transparent 65%),
    var(--horus-abyss);
  background-attachment: fixed;
}
.horus-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ─── NAVBAR ─── */
.horus-nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 50;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms;
  pointer-events: none;
}
.horus-nav-wrap.is-hidden {
  transform: translateY(-140%);
  opacity: 0;
}
.horus-nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 8px 8px 20px;
  background: rgba(12, 16, 24, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--horus-border);
  border-radius: 999px;
  box-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.horus-nav__brand {
  display: flex;
  align-items: center;
  padding-right: 10px;
  margin-right: 6px;
  text-decoration: none;
}
.horus-nav__logo,
.horus-nav .horus-nav__brand img.horus-nav__logo {
  height: 22px !important;
  width: 22px !important;
  max-height: 22px !important;
  display: block;
}

.horus-nav__mark {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 14px;
  box-shadow: 0 4px 12px -3px rgba(59, 130, 246, 0.5);
}
.horus-nav__links {
  display: flex;
  gap: 2px;
}
.horus-nav__link {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--horus-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 180ms;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
}
.horus-nav__link:hover,
.horus-nav__link.is-open {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.horus-nav__link {
  display: inline-flex;
  align-items: center;
}

/* Dropdowns */
.horus-nav__menu { position: relative; display: inline-flex; }
.horus-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12, 16, 24, 0.94);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--horus-border);
  border-radius: 16px;
  padding: 8px;
  min-width: 300px;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: horusDropIn 180ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes horusDropIn {
  from { opacity: 0; transform: translate(-50%, -6px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.horus-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 160ms;
}
.horus-nav__item:hover { background: rgba(255, 255, 255, 0.05); }
.horus-nav__item-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
}
.horus-nav__item-icon svg { width: 16px; height: 16px; }
.horus-nav__item-icon--muted { background: rgba(96, 165, 250, 0.14); color: #60A5FA; }
.horus-nav__item-text { display: flex; flex-direction: column; gap: 1px; }
.horus-nav__item-text b { color: #fff; font-weight: 600; font-size: 13.5px; }
.horus-nav__item-text em { font-style: normal; color: var(--horus-muted); font-size: 12px; }
.horus-nav__cta {
  margin-left: 10px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 20px -6px rgba(59, 130, 246, 0.6);
  transition: all 180ms;
  font-family: inherit;
}
.horus-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -6px rgba(59, 130, 246, 0.8);
}

/* ─── LAYOUT ─── */
.horus-main { position: relative; z-index: 1; }
.horus-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) {
  .horus-section { padding: 0 24px; }
}

/* ─── HERO ─── */
.horus-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
}
@media (max-width: 980px) {
  .horus-hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }
}
.horus-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 999px;
  font-size: 13px;
  color: #93C5FD;
  margin-bottom: 28px;
}
.horus-hero__eyebrow b {
  display: inline-block;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  color: #fff; font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.horus-hero__title {
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
}
.horus-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #F0ABFC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.horus-hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--horus-muted);
  margin: 0 0 40px;
  max-width: 520px;
}
.horus-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.horus-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 200ms;
  font-family: inherit;
  text-decoration: none;
}
.horus-btn--primary {
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(59, 130, 246, 0.55);
}
.horus-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(59, 130, 246, 0.75);
}
.horus-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--horus-border-strong);
  color: #fff;
}
.horus-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
.horus-hero__meta {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  font-size: 13px;
  color: var(--horus-muted);
  flex-wrap: wrap;
}
.horus-hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.horus-hero__meta svg { width: 14px; height: 14px; color: #34D399; }

/* ─── HERO STAGE (animated boards) ─── */
.horus-hero__stage {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 28px;
  mask-image: linear-gradient(to left, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
@media (max-width: 980px) {
  .horus-hero__stage { height: 440px; }
}

/* Marquee variant */
.horus-marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: horus-marquee 36s linear infinite;
  will-change: transform;
}
.horus-marquee--paused { animation-play-state: paused; }
@keyframes horus-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.horus-hero__slot {
  flex: 0 0 auto;
  width: 340px;
  height: 240px;
  overflow: visible;
  position: relative;
}
.horus-hero__slot--tall { height: 320px; }
.horus-hero__slot--tilt-l { transform: rotate(-3deg); }
.horus-hero__slot--tilt-r { transform: rotate(3deg); }

/* Float variant — parallax */
.horus-float {
  position: absolute;
  inset: 0;
}
.horus-float__item {
  position: absolute;
  transform-origin: center;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Stack variant — scroll-stacked cards */
.horus-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.horus-stack__item {
  position: absolute;
  width: 460px;
  height: 300px;
  transition: all 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── SECTION HEADERS ─── */
.horus-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #60A5FA;
  margin-bottom: 18px;
}
.horus-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: #60A5FA;
}
.horus-section-title {
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  max-width: 800px;
}
.horus-section-title em {
  font-style: normal;
  color: var(--horus-muted);
}
.horus-section-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--horus-muted);
  max-width: 600px;
  margin: 0 0 56px;
}

/* ─── BOARD FEATURE BLOCKS ─── */
.horus-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0;
  position: relative;
}
.horus-block--reverse { grid-template-columns: 1.15fr 1fr; }
.horus-block--reverse .horus-block__visual { order: -1; }
@media (max-width: 980px) {
  .horus-block, .horus-block--reverse {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 0;
  }
  .horus-block--reverse .horus-block__visual { order: 0; }
}
.horus-block__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(124, 58, 237, 0.05));
  border: 1px solid var(--horus-border);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.horus-block__visual-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.horus-block__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.horus-block__chip--canvas { background: rgba(59, 130, 246, 0.14); color: #93C5FD; border: 1px solid rgba(59, 130, 246, 0.25); }
.horus-block__chip--kanban { background: rgba(168, 85, 247, 0.14); color: #D8B4FE; border: 1px solid rgba(168, 85, 247, 0.25); }
.horus-block__chip--db     { background: rgba(16, 185, 129, 0.14); color: #6EE7B7; border: 1px solid rgba(16, 185, 129, 0.25); }
.horus-block__title {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}
.horus-block__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--horus-muted);
  margin: 0 0 32px;
  max-width: 460px;
}
.horus-block__features {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.horus-block__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.horus-block__feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
}
.horus-block__feature-icon svg { width: 16px; height: 16px; }
.horus-block__feature-text b {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
.horus-block__feature-text span {
  color: var(--horus-muted);
  font-size: 14px;
  line-height: 1.5;
}
.horus-block__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #60A5FA;
  text-decoration: none;
  cursor: pointer;
}
.horus-block__link:hover { color: #93C5FD; }
.horus-block__link svg { width: 14px; height: 14px; transition: transform 200ms; }
.horus-block__link:hover svg { transform: translateX(3px); }

/* ─── PRICING ─── */
.horus-pricing {
  padding: 120px 0;
}
.horus-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 920px) { .horus-pricing__grid { grid-template-columns: 1fr; } }
.horus-price {
  background: var(--horus-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--horus-border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.horus-price--popular {
  border-color: rgba(59, 130, 246, 0.4);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.06), rgba(124, 58, 237, 0.04)), rgba(22, 27, 34, 0.7);
  box-shadow: 0 30px 80px -30px rgba(59, 130, 246, 0.3);
  position: relative;
}
.horus-price__badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.horus-price__name {
  font-size: 14px;
  color: var(--horus-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 20px;
}
.horus-price__amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.horus-price__amount b {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.horus-price__amount span {
  color: var(--horus-muted);
  font-size: 15px;
}
.horus-price__desc {
  color: var(--horus-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 28px;
}
.horus-price__feats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.horus-price__feats li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--horus-ink);
  line-height: 1.45;
}
.horus-price__feats svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #34D399;
  margin-top: 2px;
}

/* ─── APPS ECOSYSTEM ─── */
.horus-apps {
  padding: 120px 0;
}
.horus-apps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 980px) { .horus-apps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .horus-apps__grid { grid-template-columns: 1fr; } }
.horus-app {
  background: var(--horus-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--horus-border);
  border-radius: 18px;
  padding: 28px;
  transition: all 240ms;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.horus-app--ready:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(59, 130, 246, 0.35);
}
.horus-app__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 24px;
}
.horus-app__icon svg { width: 22px; height: 22px; }
.horus-app__name {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}
.horus-app__desc {
  font-size: 13px;
  color: var(--horus-muted);
  line-height: 1.45;
  margin: 0 0 14px;
}
.horus-app__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #34D399;
}
.horus-app__tag--soon { color: #FBBF24; }
.horus-app__tag--later { color: #9CA3AF; }
.horus-app__tag::before {
  content: '';
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 0 10px currentColor;
}
.horus-app--locked { opacity: 0.7; }

/* ─── DEMO ─── */
.horus-demo {
  padding: 120px 0;
}
.horus-demo__shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--horus-border);
  background: var(--horus-card-solid);
  box-shadow: 0 50px 120px -40px rgba(0, 0, 0, 0.8);
  margin-top: 48px;
}
.horus-demo__tabs {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--horus-border);
  background: rgba(0, 0, 0, 0.3);
  align-items: center;
}
.horus-demo__dot {
  width: 12px; height: 12px; border-radius: 999px;
}
.horus-demo__tab {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--horus-muted);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  transition: all 180ms;
}
.horus-demo__tab svg { width: 14px; height: 14px; }
.horus-demo__tab.is-active {
  background: rgba(59, 130, 246, 0.14);
  color: #93C5FD;
  border-color: rgba(59, 130, 246, 0.3);
}
.horus-demo__tab:hover:not(.is-active) { color: #fff; background: rgba(255,255,255,0.04); }
.horus-demo__body {
  height: 540px;
  position: relative;
}
@media (max-width: 720px) { .horus-demo__body { height: 420px; } }

/* ─── DOCS teaser ─── */
.horus-docs {
  padding: 80px 0;
}
.horus-docs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 820px) { .horus-docs__grid { grid-template-columns: 1fr; } }
.horus-doc {
  background: var(--horus-glass);
  border: 1px solid var(--horus-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 240ms;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.horus-doc:hover { border-color: var(--horus-border-strong); transform: translateY(-2px); }
.horus-doc__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(96, 165, 250, 0.14);
  color: #60A5FA;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.horus-doc__icon svg { width: 18px; height: 18px; }
.horus-doc h4 { margin: 0 0 6px; color: #fff; font-size: 16px; font-weight: 600; }
.horus-doc p { margin: 0; color: var(--horus-muted); font-size: 14px; line-height: 1.5; }
.horus-doc__arrow {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #60A5FA;
}
.horus-doc__arrow svg { width: 13px; height: 13px; transition: transform 180ms; }
.horus-doc:hover .horus-doc__arrow svg { transform: translateX(3px); }

/* ─── CTA FOOTER ─── */
.horus-final {
  padding: 120px 0 40px;
  text-align: center;
  position: relative;
}
.horus-final__box {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(59, 130, 246, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(22, 27, 34, 0.8), rgba(15, 20, 28, 0.95));
  border: 1px solid var(--horus-border);
  border-radius: 28px;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.horus-final__title {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}
.horus-final__sub {
  font-size: 17px;
  color: var(--horus-muted);
  max-width: 500px;
  margin: 0 auto 32px;
}
.horus-final__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.horus-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--horus-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--horus-muted);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}
.horus-footer a { color: var(--horus-muted); text-decoration: none; margin-left: 22px; }
.horus-footer a:hover { color: #fff; }
