/* Orcus Ventures – marketing site
   Owner of Global IT Manager (GIM)™ and all GIM products. Silicon Security.
   orcusventures.us */

:root {
  --bg: #0a0e17;
  --bg-elevated: #0f1420;
  --bg-card: #141b28;
  --border: #1e293b;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-muted: rgba(245, 158, 11, 0.15);
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --font: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-hover);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}
.logo:hover {
  color: var(--text);
  opacity: 0.9;
}

.logo-img {
  height: 88px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo .logo-text {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #0a0e17;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover {
  color: var(--text);
}

.nav-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  position: relative;
  display: none;
}
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--transition);
}
.nav-toggle::before {
  top: 12px;
}
.nav-toggle::after {
  bottom: 12px;
}
.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav a:last-child {
    border-bottom: none;
  }
  .nav-toggle {
    display: block;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-lead {
  margin: 0 0 32px;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.hero-lead a {
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-shine {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #0a0e17;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.35);
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
}

.section-lead {
  margin: 0 auto 40px;
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.65;
}

.section-subtitle {
  margin: 40px 0 12px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.section-about {
  background: var(--bg-elevated);
}

.section-gim {
  background: var(--bg);
}

.gim-section-head {
  text-align: center;
  margin-bottom: 8px;
}

.gim-logo {
  display: block;
  margin: 0 auto 12px;
  height: 64px;
  width: auto;
  object-fit: contain;
}

.section-consulting {
  background: var(--bg-elevated);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.about-block h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.about-block p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mailing-address {
  margin: 14px 0 0;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-cta {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
  padding: 80px 0 88px;
}

/* Cards (GIM products) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.cards-gim .card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}
.cards-gim .card h3 a {
  color: var(--text);
}
.cards-gim .card h3 a:hover {
  color: var(--accent);
}

sup.tm {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.05em;
}

.cards-gim .card h3 .tm {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.05em;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.gim-tm-note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.9;
}

.gim-more {
  margin: 8px 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.licensed-brand {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.licensed-brand-title {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.licensed-brand-lead {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.licensed-brand .consulting-link {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Consulting box */
.consulting-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.consulting-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.consulting-note {
  margin: 14px 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA / Contact */
.cta-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.contact-email {
  margin: 16px 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
}
.contact-email a {
  color: var(--accent);
}

.contact-note {
  margin: 20px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 48px 0 32px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.logo-img-footer {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand .logo-icon {
  width: 32px;
  height: 32px;
  font-size: 0.65rem;
}

.footer-brand .logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.footer-tagline {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.footer-trademark {
  margin: 0 0 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.9;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.footer-proprietary {
  margin: 0 0 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.9;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.9;
}

.footer-domain {
  color: var(--text-muted);
  opacity: 0.8;
  font-weight: 500;
}

.site-footer a {
  color: var(--accent);
  font-weight: 500;
}

/* Cookie consent notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-notice--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-notice-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-notice-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}
.cookie-notice-text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-notice-text a:hover {
  color: var(--accent-hover);
}
.cookie-notice-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a0e17;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.cookie-notice-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}
.cookie-notice-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (max-width: 640px) {
  .cookie-notice-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-notice-btn {
    align-self: center;
  }
}
