/*
Theme Name:   IntelliTides Child
Template:     astra
Description:  IntelliTides — Your Biology, Decoded.
Version:      1.0
Author:       Tim Elliott
*/

/* ─── Design Tokens ─────────────────────────────────────────────────── */
:root {
  --blue:   #1a6fce;
  --blue2:  #1050a0;
  --teal:   #0bbfa0;
  --teal2:  #09d6b2;
  --white:  #ffffff;
  --off:    #f8f9fb;
  --ink:    #141c26;
  --ink2:   #243040;
  --mid:    #556070;
  --light:  #8a9faf;
  --border: #e2eaf2;
  --sky:    #eef5fc;
}

/* ─── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); color: var(--ink); line-height: 1.7; overflow-x: hidden; margin: 0; }

/* ─── NAV ────────────────────────────────────────────────────────────── */
.it-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 70px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.it-logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.it-logo-img { height: 48px !important; width: auto !important; display: block; }
.it-nav-wordmark { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.it-nav-wordmark em { font-style: italic; font-weight: 300; color: var(--teal); }
.it-nav-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.it-nav-links li { white-space: nowrap; }
.it-nav-links a { font-size: 0.82rem; font-weight: 500; color: var(--mid); text-decoration: none; letter-spacing: 0.01em; transition: color 0.2s; white-space: nowrap; }
.it-nav-links a:hover { color: var(--ink); }
.it-nav-cta {
  background: var(--ink); color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.84rem;
  padding: 10px 22px; border-radius: 100px; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s; letter-spacing: 0.01em;
}
.it-nav-cta:hover { background: var(--blue); }
.it-main { padding-top: 70px; }

/* ─── HERO ───────────────────────────────────────────────────────────── */
.it-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 40px 100px;
  background: linear-gradient(170deg, #f0f7ff 0%, #ffffff 55%, #f0fdf8 100%);
  position: relative; overflow: hidden;
}
.it-hero-circle1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,191,160,0.08) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.it-hero-circle2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,206,0.07) 0%, transparent 70%);
  bottom: -80px; left: -80px; pointer-events: none;
}
.it-hero-content { position: relative; z-index: 2; max-width: 780px; }
.it-hero-kicker {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 22px;
  animation: itFadeUp 0.65s ease both;
}
.it-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  animation: itFadeUp 0.65s 0.08s ease both;
}
.it-hero h1 em { font-style: italic; font-weight: 300; color: var(--blue); }
.it-hero-sub {
  font-size: 1.1rem; color: var(--mid); font-weight: 400; line-height: 1.9;
  max-width: 520px; margin: 0 auto 44px;
  animation: itFadeUp 0.65s 0.16s ease both;
}
.it-hero-btns {
  display: flex; align-items: center; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: itFadeUp 0.65s 0.24s ease both;
}
.it-hero-proof {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin-top: 56px; padding-top: 44px;
  border-top: 1px solid var(--border);
  animation: itFadeUp 0.65s 0.32s ease both;
  flex-wrap: wrap;
}
.it-proof-item { text-align: center; }
.it-proof-num {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 2.2rem;
  color: var(--ink); letter-spacing: -0.03em; display: block; line-height: 1;
}
.it-proof-num span { color: var(--teal); }
.it-proof-label { font-size: 0.78rem; color: var(--light); letter-spacing: 0.04em; margin-top: 4px; }
.it-proof-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── BUTTONS ────────────────────────────────────────────────────────── */
.it-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.92rem;
  padding: 15px 30px; border-radius: 100px; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(26,111,206,0.25);
}
.it-btn-primary:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26,111,206,0.35); color: var(--white); }
.it-peptide-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
  padding: 12px 22px; border-radius: 100px; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26,111,206,0.22); margin: 8px 0;
}
.it-peptide-trigger:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,111,206,0.32); }
.it-peptide-trigger-icon { font-size: 1.1em; }
.it-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.92rem;
  padding: 14px 28px; border-radius: 100px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.it-btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

/* ─── MARQUEE ────────────────────────────────────────────────────────── */
.it-marquee-wrap { background: var(--ink); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.it-marquee-track { display: inline-flex; animation: itMarquee 28s linear infinite; }
.it-marquee-item {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); padding: 0 28px;
  display: inline-flex; align-items: center; gap: 28px;
}
.it-marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--teal); opacity: 0.6; display: inline-block; }
@keyframes itMarquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── SECTIONS ───────────────────────────────────────────────────────── */
.it-sec { padding: 96px 52px; }
.it-sec-inner { max-width: 1120px; margin: 0 auto; }
.it-sec-kicker { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.it-sec-h {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.12; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 14px;
}
.it-sec-h em { font-style: italic; font-weight: 300; color: var(--blue); }
.it-sec-p { font-size: 1rem; color: var(--mid); line-height: 1.9; max-width: 480px; }

/* ─── WHAT ARE PEPTIDES ──────────────────────────────────────────────── */
#it-what { background: var(--off); }
.it-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 56px; }
.it-split-text p { font-size: 1rem; color: var(--mid); line-height: 2; margin-bottom: 20px; }
.it-split-text strong { color: var(--ink); font-weight: 600; }
.it-fact-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.it-fact-chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 7px 14px;
  font-size: 0.8rem; color: var(--ink2); font-weight: 500;
}
.it-fact-chip b { color: var(--blue); }
.it-mol-card {
  background: linear-gradient(145deg, var(--blue2) 0%, var(--blue) 50%, var(--teal) 100%);
  border-radius: 20px; padding: 40px 32px; position: relative; overflow: hidden;
}
.it-mol-card::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px);
}
.it-mol-lbl { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 26px; text-align: center; position: relative; }
.it-mol-chain { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; position: relative; }
.it-mol-aa { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.it-mol-c { width: 54px; height: 54px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.63rem; font-weight: 700; color: #fff; }
.it-mol-n { font-size: 0.5rem; color: rgba(255,255,255,0.4); }
.it-mol-bond { width: 20px; height: 2px; background: rgba(255,255,255,0.35); margin-bottom: 18px; }
.it-mol-caption { text-align: center; font-size: 0.71rem; color: rgba(255,255,255,0.4); border-top: 1px solid rgba(255,255,255,0.12); padding-top: 16px; margin-top: 6px; position: relative; }
.it-mol-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.12); border-radius: 10px; overflow: hidden; margin-top: 18px; position: relative; }
.it-mol-stat { background: rgba(255,255,255,0.06); padding: 14px 8px; text-align: center; }
.it-mol-stat-n { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; color: #fff; display: block; line-height: 1; }
.it-mol-stat-l { font-size: 0.58rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 3px; display: block; }

/* ─── PEPTIDE CARDS ──────────────────────────────────────────────────── */
#it-peptides { background: var(--white); }
.it-filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 40px; }
.it-filt {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8rem; font-weight: 600;
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--white); color: var(--mid);
  cursor: pointer; transition: all 0.2s;
}
.it-filt:hover { border-color: var(--blue); color: var(--blue); }
.it-filt.on { background: var(--ink); border-color: var(--ink); color: var(--white); }
.it-p-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.it-p-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 28px;
  cursor: pointer; transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative; overflow: hidden;
}
.it-p-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--teal)); opacity: 0; transition: opacity 0.22s; }
.it-p-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(26,111,206,0.1); border-color: rgba(26,111,206,0.3); }
.it-p-card:hover::after { opacity: 1; }
.it-p-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.it-p-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--sky); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.it-p-cat { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; }
.it-cr { background: #e8f8f2; color: #0a8a5a; }
.it-cg { background: #e8f0fd; color: #1558a8; }
.it-cm { background: #fef5e6; color: #b06800; }
.it-cl { background: #f0eeff; color: #6040c0; }
.it-cs { background: #fdeef2; color: #b02860; }
.it-p-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.35rem; color: var(--ink); margin-bottom: 3px; letter-spacing: -0.01em; }
.it-p-alias { font-size: 0.72rem; color: var(--light); font-style: italic; margin-bottom: 12px; line-height: 1.5; }
.it-p-desc { font-size: 0.875rem; color: var(--mid); line-height: 1.85; margin-bottom: 18px; }
.it-p-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
.it-p-tag { font-size: 0.67rem; font-weight: 500; color: var(--mid); background: var(--off); border: 1px solid var(--border); border-radius: 4px; padding: 3px 8px; }
.it-p-cta { font-size: 0.8rem; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 5px; }
.it-p-card:hover .it-p-cta svg { transform: translateX(3px); }
.it-p-cta svg { transition: transform 0.2s; }

/* ─── HOW IT WORKS ───────────────────────────────────────────────────── */
#it-how { background: var(--off); }
.it-how-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 56px; }
.it-steps-list { display: flex; flex-direction: column; }
.it-step-row { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.it-step-row:last-child { border-bottom: none; }
.it-step-badge {
  width: 38px; height: 38px; min-width: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1rem; color: #fff;
}
.it-step-body { padding-top: 4px; }
.it-step-title { font-weight: 700; font-size: 1.02rem; color: var(--ink); margin-bottom: 7px; }
.it-step-p { font-size: 0.88rem; color: var(--mid); line-height: 1.85; }
.it-how-visual {
  background: linear-gradient(150deg, var(--blue2), var(--blue) 50%, var(--teal));
  border-radius: 20px; padding: 36px 28px; position: sticky; top: 90px;
}
.it-pathway-lbl { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 22px; text-align: center; }
.it-pathway-steps { display: flex; flex-direction: column; gap: 10px; }
.it-pathway-step { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 14px 18px; }
.it-pathway-step-num { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.it-pathway-step-title { font-weight: 700; color: #fff; font-size: 0.9rem; }
.it-pathway-step-sub { font-size: 0.73rem; color: rgba(255,255,255,0.6); margin-top: 3px; line-height: 1.5; }
.it-pathway-arrow { text-align: center; color: rgba(255,255,255,0.3); font-size: 1.1rem; line-height: 1; }
.it-pathway-result { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); border-radius: 12px; padding: 14px 18px; margin-top: 4px; }

/* ─── GLP-1 ──────────────────────────────────────────────────────────── */
#it-glp1 { background: var(--white); }
.it-glp-card {
  background: var(--off); border: 1.5px solid var(--border); border-radius: 20px;
  padding: 44px 40px; margin-top: 44px; position: relative; overflow: hidden;
}
.it-glp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
.it-glp-meta { margin-bottom: 36px; }
.it-glp-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.it-glp-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.55rem; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.it-glp-sub { font-size: 0.9rem; color: var(--mid); }
.it-glp-flow { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.it-glp-node { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.it-glp-node:not(:last-child)::after { content: '→'; position: absolute; right: -10px; top: 22px; font-size: 1rem; color: var(--light); font-weight: 700; }
.it-glp-circle { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 12px; border: 2px solid transparent; }
.it-glp-node-title { font-weight: 700; font-size: 0.8rem; color: var(--ink); margin-bottom: 5px; line-height: 1.3; }
.it-glp-node-desc { font-size: 0.72rem; color: var(--mid); line-height: 1.6; }
.it-glp-hr { height: 1px; background: var(--border); margin: 32px 0; }
.it-glp-drugs { display: flex; gap: 10px; flex-wrap: wrap; }
.it-glp-drug { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 16px; flex: 1; min-width: 155px; transition: border-color 0.2s; }
.it-glp-drug:hover { border-color: var(--blue); }
.it-glp-drug-icon { font-size: 1.3rem; }
.it-glp-drug-name { font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.it-glp-drug-sub { font-size: 0.7rem; color: var(--light); margin-top: 1px; }

/* ─── CATEGORIES ─────────────────────────────────────────────────────── */
#it-categories { background: var(--off); }
.it-bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 44px; }
.it-bc { border-radius: 16px; padding: 28px; background: var(--white); border: 1.5px solid var(--border); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.it-bc:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,111,206,0.08); border-color: rgba(26,111,206,0.3); }
.it-bc.it-s2 { grid-column: span 2; }
.it-bc-emoji { font-size: 1.8rem; margin-bottom: 12px; }
.it-bc-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.it-bc-desc { font-size: 0.86rem; color: var(--mid); line-height: 1.85; }
.it-bc-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.it-bc-pill { font-size: 0.67rem; font-weight: 600; background: var(--sky); color: var(--blue); padding: 3px 10px; border-radius: 100px; border: 1px solid var(--border); }

/* ─── COMPARE ────────────────────────────────────────────────────────── */
#it-compare { background: var(--white); }
.it-tbl-wrap { overflow-x: auto; margin-top: 40px; border-radius: 14px; border: 1.5px solid var(--border); box-shadow: 0 4px 24px rgba(26,111,206,0.06); }
.it-tbl-wrap table { width: 100%; border-collapse: collapse; background: var(--white); }
.it-tbl-wrap thead { background: var(--ink); }
.it-tbl-wrap th { padding: 15px 20px; text-align: left; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.it-tbl-wrap td { padding: 14px 20px; font-size: 0.86rem; color: var(--mid); border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.7; }
.it-tbl-wrap tr:last-child td { border-bottom: none; }
.it-tbl-wrap tr:hover td { background: var(--off); }
.it-tbl-wrap td:first-child { font-family: 'Fraunces', serif; font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.it-st { display: inline-block; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 10px; border-radius: 6px; }
.it-s-a { background: #e8f8f2; color: #0a8a5a; }
.it-s-p3 { background: #e8f0fd; color: #1558a8; }
.it-s-r { background: #f0eeff; color: #6040c0; }
.it-s-pre { background: #fef5e6; color: #b06800; }

/* ─── DISCLAIMER BAR ─────────────────────────────────────────────────── */
.it-disc { background: #fffbeb; border-top: 2px solid #e8c840; border-bottom: 2px solid #e8c840; padding: 20px 52px; font-size: 0.86rem; color: #6b5000; text-align: center; line-height: 1.85; }
.it-disc strong { color: #9a7000; font-weight: 700; }

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.it-footer { background: var(--ink); padding: 52px 52px 36px; }
.it-footer-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.it-footer-brand { max-width: 260px; }
.it-footer-wordmark { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.4rem; color: var(--white); text-decoration: none; letter-spacing: -0.01em; display: inline-block; }
.it-footer-wordmark em { font-style: italic; font-weight: 300; color: var(--teal); }
.it-footer-logo-link { display: inline-block; background: #fff; border-radius: 8px; padding: 6px 12px; margin-bottom: 4px; line-height: 0; }
.it-footer-logo-img { height: 36px !important; width: auto !important; display: block; }
.it-footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.3); margin-top: 10px; line-height: 1.75; }
.it-footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.it-footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.it-footer-links a:hover { color: rgba(255,255,255,0.7); }
.it-footer-bottom { max-width: 1120px; margin: 22px auto 0; font-size: 0.73rem; color: rgba(255,255,255,0.18); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ─── MODAL ──────────────────────────────────────────────────────────── */
.it-m-bg { position: fixed; inset: 0; z-index: 800; background: rgba(10,20,36,0.55); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s; padding: 20px; }
.it-m-bg.open { opacity: 1; pointer-events: all; }
.it-m-box { background: var(--white); border-radius: 20px; max-width: 620px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 44px; position: relative; transform: scale(0.97) translateY(10px); transition: transform 0.25s; box-shadow: 0 24px 80px rgba(20,28,38,0.18); }
.it-m-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--teal)); border-radius: 20px 20px 0 0; }
.it-m-bg.open .it-m-box { transform: scale(1) translateY(0); }
.it-m-x { position: absolute; top: 16px; right: 18px; background: var(--off); border: 1px solid var(--border); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--mid); font-size: 0.9rem; cursor: pointer; transition: background 0.2s; }
.it-m-x:hover { background: var(--border); }
.it-m-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 2rem; color: var(--ink); margin: 10px 0 4px; letter-spacing: -0.02em; }
.it-m-alias { font-size: 0.78rem; color: var(--light); font-style: italic; margin-bottom: 26px; }
.it-m-sec { margin-bottom: 22px; }
.it-m-sec h4 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 9px; }
.it-m-sec p { font-size: 0.9rem; color: var(--mid); line-height: 1.9; }
.it-m-note { background: #fffbeb; border: 1.5px solid #e8c840; border-radius: 10px; padding: 13px 16px; font-size: 0.82rem; color: #7a5500; line-height: 1.75; }
.it-m-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.it-m-tag { font-size: 0.75rem; font-weight: 500; color: var(--blue); background: var(--sky); border-radius: 6px; padding: 5px 12px; border: 1px solid var(--border); }

/* ─── BLOG ───────────────────────────────────────────────────────────── */
.it-blog-wrap { max-width: 860px; margin: 0 auto; padding: 80px 40px; }
.it-blog-title-area { text-align: center; margin-bottom: 56px; }
.it-blog-title-area h1 { font-family: 'Fraunces', serif; font-weight: 700; font-size: clamp(2rem,5vw,3.4rem); color: var(--ink); letter-spacing: -0.025em; margin-bottom: 12px; }
.it-blog-title-area p { font-size: 1rem; color: var(--mid); }
.it-post-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 16px;
  padding: 36px; margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none; display: block; color: inherit;
}
.it-post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(26,111,206,0.09); border-color: rgba(26,111,206,0.25); }
.it-post-meta { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.it-post-card-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.45rem; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.015em; line-height: 1.25; }
.it-post-card-excerpt { font-size: 0.9rem; color: var(--mid); line-height: 1.9; }
.it-post-read-more { font-size: 0.8rem; font-weight: 700; color: var(--blue); margin-top: 18px; display: flex; align-items: center; gap: 5px; }
.it-no-posts { text-align: center; padding: 80px 40px; color: var(--mid); }
.it-no-posts h2 { font-family: 'Fraunces', serif; font-size: 1.8rem; color: var(--ink); margin-bottom: 12px; }
.it-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.it-pagination a, .it-pagination span { padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; border: 1.5px solid var(--border); color: var(--mid); text-decoration: none; transition: all 0.2s; }
.it-pagination a:hover, .it-pagination .current { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ─── SINGLE POST ────────────────────────────────────────────────────── */
.it-single-wrap { max-width: 720px; margin: 0 auto; padding: 80px 40px; }
.it-single-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.it-single-meta { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; display: flex; gap: 16px; align-items: center; }
.it-single-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: clamp(1.8rem,4vw,2.8rem); color: var(--ink); letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 0; }
.it-single-content { font-size: 1rem; color: var(--ink2); line-height: 1.9; }
.it-single-content h2 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.6rem; color: var(--ink); margin: 40px 0 16px; letter-spacing: -0.02em; }
.it-single-content h3 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.25rem; color: var(--ink); margin: 32px 0 12px; }
.it-single-content p { margin-bottom: 20px; }
.it-single-content ul, .it-single-content ol { padding-left: 24px; margin-bottom: 20px; }
.it-single-content li { margin-bottom: 8px; }
.it-single-content a { color: var(--blue); }
.it-single-content blockquote { border-left: 3px solid var(--blue); padding-left: 20px; margin: 28px 0; color: var(--mid); font-style: italic; }
.it-single-content img { max-width: 100%; border-radius: 12px; margin: 8px 0; }
.it-single-content strong { color: var(--ink); font-weight: 600; }
.it-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--mid); text-decoration: none; margin-bottom: 36px; transition: color 0.2s; }
.it-back-link:hover { color: var(--blue); }
.it-post-disclaimer { background: #fffbeb; border: 1.5px solid #e8c840; border-radius: 12px; padding: 18px 22px; font-size: 0.83rem; color: #7a5500; line-height: 1.8; margin-top: 40px; }
.it-post-disclaimer strong { color: #9a7000; }

/* ─── ANIMATION ──────────────────────────────────────────────────────── */
@keyframes itFadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }
.it-rv { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.it-rv.in { opacity: 1; transform: none; }

/* ─── MOBILE MENU ────────────────────────────────────────────────────── */
/* Hamburger — hidden on desktop, shown on mobile via media query */
.it-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  z-index: 600;
}
.it-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.it-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.it-hamburger.open span:nth-child(2) { opacity: 0; }
.it-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — always display:none, only shown when JS adds .open */
.it-mobile-menu {
  display: none;
}
.it-mobile-menu.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 599;
  background: #fff;
  padding: 8px 24px 40px;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.it-mobile-links {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.it-mobile-links li { border-bottom: 1px solid var(--border); }
.it-mobile-links a {
  display: block;
  padding: 16px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.it-mobile-links a:active { color: var(--blue); }
.it-mobile-cta { align-self: flex-start; margin-top: 4px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media(max-width:900px) {
  .it-nav { padding: 0 22px; }
  .it-nav-links { display: none; }
  .it-nav-cta-desktop { display: none; }
  .it-hamburger { display: flex; }
  .it-hero { padding: 110px 24px 80px; }
  .it-split, .it-how-layout { grid-template-columns: 1fr; }
  .it-bento { grid-template-columns: 1fr; }
  .it-bc.it-s2 { grid-column: span 1; }
  .it-glp-flow { grid-template-columns: 1fr 1fr; }
  .it-glp-node:not(:last-child)::after { display: none; }
  .it-sec { padding: 68px 22px; }
  .it-disc { padding: 18px 24px; }
  .it-footer { padding: 44px 22px 28px; }
  .it-proof-divider { display: none; }
}
@media(max-width:560px) {
  .it-glp-flow { grid-template-columns: 1fr; }
  .it-hero-proof { gap: 20px; }
  .it-blog-wrap, .it-single-wrap { padding: 60px 22px; }
}
