/* &Offensive Markets LLC static website */

:root {
  --bg: #020617;
  --bg-soft: #07111f;
  --bg-card: rgba(7, 17, 31, 0.78);
  --text: #f8fafc;
  --muted: #aeb9c8;
  --muted-strong: #d4dbe7;
  --line: rgba(148, 163, 184, 0.18);
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.16);
  --magenta: #ec4899;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 26rem),
    radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.08), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--cyan);
}

address {
  font-style: normal;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--bg);
  background: var(--text);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header-solid {
  border-bottom-color: var(--line);
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.42);
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted-strong);
  font-weight: 650;
}

.nav-menu a[aria-current="page"] {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 130px 0 80px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("/assets/hero-futuristic-finance.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.82) 24%, rgba(2, 6, 23, 0.38) 58%, rgba(2, 6, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.08) 44%, rgba(2, 6, 23, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 8.4vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
}

.hero-copy {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.02rem, 1.8vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 760;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #001018;
  background: linear-gradient(135deg, var(--cyan), #7dd3fc);
  border-color: transparent;
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.26);
}

.button-primary:hover {
  color: #001018;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover {
  border-color: rgba(34, 211, 238, 0.48);
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.section-dark {
  background: linear-gradient(180deg, #020617, #050b17);
}

.section-panel {
  background: radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.12), transparent 24rem), #050b17;
}

.two-column {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.section h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-intro {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-card,
.panel,
.legal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.74), rgba(7, 17, 31, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-card {
  padding: clamp(18px, 4vw, 32px);
}

.contact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  color: var(--muted);
  font-weight: 680;
}

.contact-row a,
.contact-row address {
  color: var(--text);
  font-weight: 620;
  overflow-wrap: anywhere;
}

.panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 5vw, 46px);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #020617;
}

.footer-content {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 22px;
}

.legal-page {
  padding-top: 78px;
}

.legal-hero {
  padding: 90px 0 58px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.72)),
    url("/assets/hero-futuristic-finance.png") center / cover;
}

.legal-content {
  max-width: 850px;
  padding: clamp(24px, 5vw, 50px);
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted-strong);
}

.legal-note {
  margin-top: 30px;
  padding: 16px 18px;
  border: 1px solid rgba(236, 72, 153, 0.32);
  border-radius: var(--radius-md);
  background: rgba(236, 72, 153, 0.08);
}

@media (max-width: 820px) {
  .nav-menu {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(18px);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.9) 48%, rgba(2, 6, 23, 0.52) 100%),
      linear-gradient(0deg, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.14) 55%, rgba(2, 6, 23, 0.34) 100%);
  }

  .two-column,
  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-row {
    gap: 6px;
  }

  .panel,
  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .brand {
    font-size: 0.96rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-copy {
    font-size: 1rem;
  }
}

.not-found-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 130px 0 80px;
}

.not-found-content {
  position: relative;
  z-index: 1;
}

.not-found-page h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 8.4vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
}
