@charset "UTF-8";
/* ==========================================================================
   Insight Quantix — Notion-Inspired Premium Theme
   ========================================================================== */
/* Design tokens */
:root {
  --iq-bg: #fcfcfd;
  --iq-bg-alt: #f5f5f7;
  --iq-bg-card: #ffffff;
  --iq-border-subtle: #e4e4ea;
  --iq-border-strong: #d4d4de;
  --iq-text: #1f2933;
  --iq-text-soft: #4b5563;
  --iq-text-muted: #6b7280;
  --iq-text-subtle: #9ca3af;
  --iq-accent: #23d4c1; /* Your IQ turquoise */
  --iq-accent-soft: #e0fbf7;
  --iq-accent-strong: #0f9f90;
  --iq-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --iq-radius-lg: 16px;
  --iq-radius-md: 12px;
  --iq-radius-sm: 8px;
  --iq-radius-pill: 999px;
  --iq-max-width: 880px;
  --iq-font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Segoe UI", sans-serif;
}

/* ==========================================================================
   Reset + Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
}

/* Main body wrapper */
body.iq-body {
  background: radial-gradient(circle at top left, #fdfdfd 0, #f4f4f7 40%, #f9fafb 100%);
  color: var(--iq-text);
  font-family: var(--iq-font-sans);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* General typography */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111827;
}

h1 {
  font-size: clamp(2.25rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 0.75rem;
  color: var(--iq-text-soft);
}

/* Code & pre (for Notes/Insights) */
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.85em;
  background: #f3f4f6;
  padding: 0.12em 0.4em;
  border-radius: 6px;
}

pre {
  background: #111827;
  color: #e5e7eb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  overflow-x: auto;
}

/* Blockquote */
blockquote {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--iq-border-strong);
  background: rgba(243, 244, 246, 0.7);
  border-radius: 0 12px 12px 0;
  color: var(--iq-text-soft);
}

/* Lists */
ul,
ol {
  padding-left: 1.4rem;
  margin: 0 0 0.75rem;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.iq-main {
  max-width: var(--iq-max-width);
  margin: 0 auto;
  padding: 2.6rem 1.4rem 3.4rem;
}

/* Generic content section spacing */
.iq-section {
  margin-top: 2.5rem;
}

/* Divider */
.iq-divider {
  border-top: 1px solid var(--iq-border-subtle);
  margin: 2.5rem 0;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.iq-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(252, 252, 253, 0.9);
  border-bottom: 1px solid rgba(228, 228, 234, 0.75);
}

.iq-header-inner {
  max-width: var(--iq-max-width);
  margin: 0 auto;
  padding: 0.7rem 1.4rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.iq-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.iq-logo-image {
  height: 26px;
  width: auto;
  display: block;
}

.iq-logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.iq-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--iq-accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
}

/* Nav */
.iq-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.iq-nav-link {
  font-size: 0.86rem;
  padding: 0.32rem 0.7rem;
  border-radius: var(--iq-radius-pill);
  color: var(--iq-text-muted);
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.iq-nav-link:hover {
  background: #eef2ff;
  color: #111827;
  border-color: rgba(209, 213, 219, 0.4);
}

.iq-nav-link-active {
  background: var(--iq-accent-soft);
  color: #055c57;
  border-color: rgba(34, 197, 167, 0.3);
}

/* Mobile nav: simple collapse */
@media (max-width: 720px) {
  .iq-header-inner {
    padding-inline: 1rem;
  }
  .iq-nav {
    gap: 0.2rem;
  }
  .iq-nav-link {
    padding-inline: 0.55rem;
  }
}
/* ==========================================================================
   Hero (Homepage)
   ========================================================================== */
.iq-hero {
  margin-top: 2.4rem;
  margin-bottom: 2rem;
}

.iq-hero-inner {
  max-width: 720px;
}

.iq-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--iq-text-subtle);
  margin-bottom: 0.55rem;
}

.iq-hero-title {
  font-size: clamp(2.3rem, 3.3vw, 2.7rem);
  margin: 0 0 0.7rem;
  line-height: 1.08;
}

.iq-hero-subtitle {
  font-size: 0.98rem;
  color: var(--iq-text-soft);
  max-width: 600px;
  margin: 0 0 1.4rem;
}

.iq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.iq-hero-note {
  font-size: 0.9rem;
  color: var(--iq-text-muted);
}

.iq-hero-invite {
  font-size: 0.93rem;
  color: var(--iq-text-soft);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.iq-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 1.05rem;
  border-radius: var(--iq-radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.iq-button-primary {
  background: var(--iq-accent);
  border-color: var(--iq-accent);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(5, 150, 140, 0.28);
}

.iq-button-primary:hover {
  background: var(--iq-accent-strong);
  border-color: var(--iq-accent-strong);
  box-shadow: 0 10px 24px rgba(5, 150, 140, 0.32);
}

.iq-button-ghost {
  background: var(--iq-bg-card);
  border-color: var(--iq-border-subtle);
  color: #111827;
}

.iq-button-ghost:hover {
  background: #f3f4f6;
}

/* ==========================================================================
   Panels & Sections
   ========================================================================== */
.iq-panel {
  margin-top: 2.4rem;
  padding: 1.8rem 1.7rem;
  background: var(--iq-bg-card);
  border-radius: var(--iq-radius-lg);
  border: 1px solid var(--iq-border-subtle);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.03);
}

.iq-panel-narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.iq-panel-header {
  margin-bottom: 1.2rem;
}

.iq-panel-header p {
  font-size: 0.9rem;
}

/* ==========================================================================
   Grid & Cards
   ========================================================================== */
.iq-grid {
  display: grid;
  gap: 1.2rem;
}

.iq-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.iq-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.iq-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.iq-card {
  border-radius: var(--iq-radius-md);
  border: 1px solid var(--iq-border-subtle);
  background: var(--iq-bg-card);
  padding: 1.4rem 1.5rem 1.3rem;
  transition: box-shadow 0.15s ease, transform 0.12s ease, border-color 0.15s ease, background 0.12s ease;
}

.iq-card:hover {
  box-shadow: var(--iq-shadow-soft);
  border-color: var(--iq-border-strong);
  transform: translateY(-1px);
  background: #ffffff;
}

.iq-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.iq-card p {
  font-size: 0.92rem;
}

.iq-card-meta {
  font-size: 0.8rem;
  color: var(--iq-text-subtle);
  margin-bottom: 0.4rem;
}

.iq-card-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--iq-text-muted);
}

/* Domain cards with icons */
.iq-domain-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
}

.iq-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--iq-accent-soft);
  color: var(--iq-accent-strong);
  border-radius: var(--iq-radius-sm);
  margin-bottom: 0.9rem;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}

.iq-domain-card:hover .iq-card-icon {
  background: var(--iq-accent);
  color: #ffffff;
  transform: scale(1.05);
}

.iq-card-icon svg {
  pointer-events: none;
}

/* For the Domains and Notes cards */
.iq-portfolio-card {
  position: relative;
}

.iq-portfolio-domain {
  font-size: 0.78rem;
  color: var(--iq-text-muted);
  margin-bottom: 0.25rem;
}

/* Small pill label */
.iq-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.6rem;
  border-radius: var(--iq-radius-pill);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--iq-text-subtle);
  background: #f3f4f6;
}

/* ==========================================================================
   Page-specific helpers
   ========================================================================== */
/* Generic page title + subtitle pattern (Domains, Advisory, About, Notes) */
.iq-page-title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.iq-page-subtitle {
  font-size: 0.95rem;
  color: var(--iq-text-muted);
  margin-bottom: 1.5rem;
}

/* Page content link styling */
.iq-page-content a {
  color: var(--iq-accent-strong);
  text-decoration: none;
  border-bottom: 1px solid var(--iq-accent-soft);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.iq-page-content a:hover {
  color: var(--iq-accent);
  border-bottom-color: var(--iq-accent);
}

/* Notes/Insights listing */
.iq-note-snippet {
  padding: 1.2rem 1.3rem;
  border-radius: var(--iq-radius-md);
  border: 1px solid var(--iq-border-subtle);
  background: #ffffff;
  margin-bottom: 1rem;
}

.iq-note-snippet h2,
.iq-note-snippet h3 {
  margin-bottom: 0.3rem;
}

.iq-note-snippet p {
  margin-bottom: 0.35rem;
}

/* About page: two-column layout on wide screens */
.iq-about-layout {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 880px) {
  .iq-about-layout {
    grid-template-columns: 1.3fr 1fr;
  }
}
/* ==========================================================================
   Links & text treatments
   ========================================================================== */
.iq-link {
  font-size: 0.9rem;
  color: var(--iq-accent-strong);
  text-decoration: none;
}

.iq-link:hover {
  text-decoration: underline;
}

.iq-muted {
  color: var(--iq-text-muted);
}

.iq-small {
  font-size: 0.82rem;
  color: var(--iq-text-subtle);
}

/* ==========================================================================
   CTA Panel
   ========================================================================== */
.iq-panel-cta {
  margin-top: 2.25rem;
  background: #ffffff;
  box-shadow: var(--iq-shadow-soft);
}

.iq-panel-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.iq-footer {
  border-top: 1px solid var(--iq-border-subtle);
  padding: 1.2rem 1.5rem 1.5rem;
  background: #f5f5f8;
}

.iq-footer-inner {
  max-width: var(--iq-max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--iq-text-muted);
}

.iq-footer-brand {
  margin: 0;
  font-weight: 500;
  color: var(--iq-text);
}

.iq-footer-meta {
  margin: 0;
  max-width: 600px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 720px) {
  .iq-main {
    padding-inline: 1.1rem;
    padding-top: 2.1rem;
  }
  .iq-panel {
    padding-inline: 1.3rem;
  }
  .iq-hero {
    margin-top: 1.9rem;
  }
}

/*# sourceMappingURL=main.css.map */