/* ============================================================
   MERGED / DE-DUPLICATED STYLESHEET
   Consolidated from several concatenated page-specific blocks.
   See the changelog at the bottom of this file for what was
   fixed, and an open question about the nav that still needs
   your input before it can be safely deduplicated.
   ============================================================ */

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

:root {
  /* core tokens */
  --bg:          #F0F4FA;
  --surface:     #FFFFFF;
  --accent:      #1A4FCC;
  --accent-lt:   #3B6FE8;
  --accent-glow: #C8D8FA;
  --accent-dark: #0F2E80;
  --text:        #0D1220;
  --muted:       #5A6480;
  --border:      #D4DCF0;
  --radius:      14px;

  /* aliases needed by the later "demo-page" nav block — previously undefined */
  --font-body:    'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;
  --line:         var(--border);
  --navy-950:     var(--text);
  --blue-500:     var(--accent-lt);
  --blue-700:     var(--accent);
}

html {
  scroll-behavior: auto;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; line-height: 1.65; }

/* ── XORNOVA LOGO SVG (inline reusable via <use>) ── */
/* The logo: circle divided into 6 pie segments (like Umbrella Corp) all in blue,
   but the "umbrella" canopy inside is replaced with a scalloped wave arch shape */

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240,244,250,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}
.logo-wrap { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.logo-wrap .xlogo { width: 40px; height: 40px; flex-shrink: 0; }
.brand { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--accent); letter-spacing: -0.02em; }

/* FIXED: was #dcdddf (near-white) on a light, semi-transparent nav background — invisible.
   Now uses the same muted/accent tokens as the rest of the site. */
.nav-links a { font-size: 0.875rem; font-weight: 500; color: #273444; text-decoration: none; transition: color .2s; }


.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    transition: background .2s !important;
}

.nav-cta:hover {
    background: var(--accent-lt) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* NOTE: .mobile-menu had two conflicting definitions (padding 0.5rem vs 0.75rem,
   plain <a> list vs grouped .mm-group list). Keeping the grouped "upgrade" version
   below since it supports the richer mobile menu markup (.mm-group / .mm-heading / .mm-cta). */

/* ── HERO ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem,10vw,9rem) clamp(1.5rem,5vw,5rem) clamp(3rem,7vw,6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 580px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

h1 em { font-style: normal; color: #273444; }
.hero-sub { font-size: clamp(0.95rem,1.5vw,1.1rem); color: var(--muted); max-width: 520px; margin-bottom: 1rem; }
.hero-sub-2 { font-size: clamp(0.95rem,1.5vw,1.1rem); color: var(--muted); max-width: 520px; margin-bottom: 2.25rem; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { 
    background: var(--accent); 
    color: #fff; border: none; 
    padding: 0.8rem 1.8rem; 
    border-radius: 10px; 
    font-family: 'Inter', sans-serif; 
    font-size: 0.9rem; 
    font-weight: 400; cursor: 
    pointer; text-decoration: none; 
    transition: background .2s, 
    transform .15s; 
    display: inline-block; 
}
.btn-primary:hover { background: var(--accent-lt); transform: translateY(-1px); }
.btn-ghost { 
    background: transparent; 
    color: var(--accent); 
    border: 1.5px solid var(--accent);
    padding: 0.8rem 1.8rem; 
    border-radius: 10px; 
    font-size: 0.9rem; 
    font-weight: 500; cursor: 
    pointer; text-decoration: none; 
    transition: background .2s, 
    transform .15s; display: inline-block; 
}
.btn-ghost:hover {
    background: var(--accent-glow);
    transform: translateY(-1px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb-wrap {
    position: relative;
    width: clamp(240px,38vw,420px);
    aspect-ratio: 1;
}

.orb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--accent-glow) 0%, var(--bg) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px 20px rgba(26,79,204,0.08);
}

.orb .xlogo {
    width: 55%;
    height: 55%;
}

.float-badge {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    box-shadow: 0 4px 16px rgba(26,79,204,0.1);
    white-space: nowrap;
    animation: floatY 4s ease-in-out infinite;
}

.badge-1 {
    top: 40px;
    left: 1px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: 1px;
    animation-delay: 0.5s;
}

.badge-3 {
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
}

.badge-4 {
    bottom: 16px;
    right: 16px;
    animation-delay: 1s;
}

.badge-5 {
    top: 16px;
    right: 16px;
    animation-delay: 1.5s;
}
/* ── STATS ── */

.stats-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem clamp(1.5rem,5vw,5rem);
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.6rem,3vw,2.4rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

/* ── SECTIONS ── */
.section { max-width: 1200px; margin: 0 auto; padding: clamp(3rem,7vw,6rem) clamp(1.5rem,5vw,5rem); }
.section-header { text-align: center; margin-bottom: clamp(2rem,4vw,3.5rem); }
.section-page{
  max-width:1200px;
  margin:0 auto;
  padding:0 clamp(1.25rem,4vw,2.5rem);
}

h1 { font-family:'Syne', sans-serif; 
    font-size:clamp(2.5rem, 5vw, 3rem);
    font-weight:500;
    line-height:1.15;
    margin-bottom:1rem;
    color: #1F2937;
}    
h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #273444;
    margin: .5rem 0 .5rem;
}
h3{
    color: #273444;
    font-family:'Syne',sans-serif;
    font-size: clamp(1.75rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.3;
    margin: .5rem 0 .5rem;
}
h4 {
    font-family:'Syne',sans-serif;
    color: #273444;
    font-size: clamp(1.5rem, 2.5vw, 1.75rem); /* 24px - 28px */
    font-weight: 500;
    line-height: 1.35;
    margin: .5rem 0 .5rem;
}

h5 {
    font-family:'Syne',sans-serif;
    color: #273444;
    font-size: clamp(1.25rem, 2vw, 1.5rem); /* 20px - 24px */
    font-weight: 500;
    line-height: 1.4;
}

p {
    color: #4B5563;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
    margin: 1rem 0 1rem;
}


   
.section-header p {
    color: #4B5563;
    font-size: 1.0625rem;
    max-width: 550px;
    margin: 0.75rem auto 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: box-shadow .25s, transform .25s;
}

.card:hover {
    box-shadow: 0 12px 40px rgba(26,79,204,0.1);
    transform: translateY(-3px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card h3 {
    font-family:'Syne',sans-serif;
    font-size: clamp(1.75rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
}

.platforms-bg {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.platform-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg);
    transition: border-color .2s;
}

.platform-item:hover {
    border-color: var(--accent);
}

.platform-num {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-glow);
    line-height: 1;
    min-width: 2.5rem;
}

.platform-item h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.platform-item p {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ── CTA BANNER ── */

.cta-banner {
    background: var(--accent);
    border-radius: 20px;
    padding: clamp(2.5rem,5vw,4rem);
    text-align: center;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin: 0 auto 2rem;
}

.btn-white {
    background: #fff;
    color: var(--accent);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s;
    display: inline-block;
}

.btn-white:hover {
    opacity: 0.9;
}



/* ── BIG FOOTER ── */
footer {
  background: #0A1628;
  color: #C8D8FA;
  margin-top: clamp(3rem,6vw,5rem);
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,5rem) 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-col .xlogo {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.footer-brand-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-brand-col .brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-brand-col p {
    font-size: 0.875rem;
    color: #8898B8;
    line-height: 1.7;
    max-width: 300px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 2px solid #1E3360;
    background: #0F2040;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8898B8;
    transition: background .2s, color .2s, opacity .2s, transform .2s;
}

.social-btn:hover {
    background: var(--accent);
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-col h4 {
    font-family:'Syne',sans-serif;
    font-size: clamp(1.25rem,2.5vw,1.375rem);
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul a {
    font-size: 0.875rem;
    color: #8898B8;
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul a:hover {
    color: #fff;
}

.footer-divider {
    border: none;
    border-top: 1px solid #1E3360;
    margin: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem clamp(1.5rem,5vw,5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
@media (max-width: 700px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-copy {
    text-align: center;
    width: 100%;
  }
  .footer-badge {
    margin: 0 auto;
  }
}


.footer-bottom-links a {
    font-size: 0.78rem;
    color: #8898B8;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 0.78rem;
    color: #8898B8;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #8898B8;
    background: #0F2040;
    border: 1px solid #1E3360;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
}

.footer-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    display: inline-block;
}

.footer-newsletter {
    margin-top: 1.5rem;
}

.footer-newsletter p {
    font-size: 0.82rem;
    color: #8898B8;
    margin-bottom: 0.6rem;
}

.newsletter-row {
    display: flex;
    gap: 0.5rem;
}

.newsletter-row input {
    flex: 1;
    background: #0F2040;
    border: 1px solid #1E3360;
    border-radius: 8px;
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
    color: #fff;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.newsletter-row input::placeholder {
    color: #4A5878;
}

.newsletter-row input:focus {
    border-color: var(--accent);
}

.newsletter-row button {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}

.newsletter-row button:hover {
    background: var(--accent-lt);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp .65s ease both; }
.fade-up:nth-child(2) { animation-delay: .1s; }
.fade-up:nth-child(3) { animation-delay: .2s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── RESPONSIVE (base layout) ── */
@media (max-width: 1000px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; }
  .hero-text { max-width: 100%; }
  .hero-visual { display: none; }
  .platform-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* ── DROPDOWN NAV ── */
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }

.nav-item { position: relative; }

.nav-link-btn {
  display: flex; align-items: center; gap: 0.3rem;
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 500;
  color: var(--muted); background: none; border: none; cursor: pointer;
  padding: 0.45rem 0.75rem; border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-link-btn:hover { background: var(--accent-glow); color: var(--accent); }

.nav-link-a {
  display: flex; align-items: center;
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  text-decoration: none; padding: 0.45rem 0.75rem; border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-link-a:hover { background: var(--accent-glow); color: var(--accent); }

.chevron {
  width: 14px; height: 14px; flex-shrink: 0;
  transition: transform .25s;
}
.nav-item.open .chevron { transform: rotate(180deg); }
.nav-item.open .nav-link-btn { color: var(--accent); background: var(--accent-glow); }

/* dropdown panel — FIXED: consolidated the two conflicting "top" values
   (calc(100% + 10px) vs calc(100%)) into a single declaration */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(26,79,204,0.14), 0 2px 8px rgba(0,0,0,0.06);
  min-width: 640px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
.dropdown--narrow { min-width: 300px; }
.nav-item.open .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
  display: flex; gap: 0; padding: 1.25rem;
}

.dropdown-col {
  flex: 1; display: flex; flex-direction: column; gap: 0.15rem;
  padding-right: 1.25rem;
}
.dropdown-col:not(:last-child) { border-right: 1px solid var(--border); }
.dropdown-col + .dropdown-col { padding-left: 1.25rem; padding-right: 0; }

.dropdown-heading {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted);
  padding: 0 0.5rem; margin-bottom: 0.5rem;
}

.dropdown-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0.5rem; border-radius: 10px;
  text-decoration: none; color: var(--text);
  transition: background .15s;
}
.dropdown-item:hover { background: var(--bg); }
.dropdown-item:hover strong { color: var(--accent); }
.dropdown-item span:last-child { font-size: 0.8rem; line-height: 1.45; }
.dropdown-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); transition: color .15s; }

.di-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.di-icon svg { width: 16px; height: 16px; }

/* featured CTA column */
.dropdown-cta {
  width: 190px; flex-shrink: 0; padding-left: 1.25rem;
  border-left: 1px solid var(--border);
}
.dropdown-feature {
  background: var(--bg); border-radius: 12px;
  padding: 1rem; margin-top: 0.15rem;
}
.dd-cta-btn {
  display: inline-block; background: var(--accent); color: #ffffff;
  font-size: 0.75rem; font-weight: 700; padding: 0.4rem 0.9rem;
  border-radius: 7px; text-decoration: none;
  transition: background .2s;
}
.dropdown-cta .dd-cta-btn {
  color: #ffffff;
}


/* ── MOBILE MENU (grouped version — supersedes the earlier plain <a> list) ── */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.5rem 1.25rem;
}
.mobile-menu.open { display: flex; }
.mm-group { margin-bottom: 1rem; }
.mm-heading {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.35rem;
}
.mm-group a {
  display: block; padding: 0.45rem 0;
  font-size: 0.875rem; font-weight: 500; color: var(--text);
  text-decoration: none; border-bottom: 1px solid var(--border);
}
.mm-group a:last-child { border-bottom: none; }
.mm-group a:hover { color: var(--accent); }
.mm-cta {
  display: block; text-align: center;
  background: var(--accent); color: #fff !important;
  padding: 0.7rem; border-radius: 10px; font-weight: 700;
  font-size: 0.875rem; text-decoration: none; margin-top: 0.5rem;
}
.mm-cta:hover { background: var(--accent-lt); }

/* ── ABOUT SECTION ── */
.about-bg { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.about-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
}

.about-text { display: flex; flex-direction: column; gap: 1.1rem; }


.about-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}
.about-body em { color: var(--accent); font-style: italic; font-weight: 500; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 0.5rem 0;
}
.pillar {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.pillar-icon {
  width: 36px; height: 36px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.pillar-icon svg { width: 17px; height: 17px; }
.pillar strong { font-size: 0.85rem; font-weight: 700; color: var(--text); display: block; margin-bottom: 0.2rem; }
.pillar p { font-size: 0.78rem; color: var(--muted); line-height: 1.55; margin: 0; }

.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* Right column – logo display */
.about-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-ring {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}
.about-shield {
  width: 200px;
  height: 200px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 40px rgba(26,79,204,0.22));
  animation: shieldFloat 5s ease-in-out infinite;
}
@keyframes shieldFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.orbit-chip {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(26,79,204,0.1);
  white-space: nowrap;
  z-index: 3;
}
.chip-tl {
    top: 20px;
    left: -20px;
    animation: floatChip 4s ease-in-out 0s infinite;
}

.chip-tr {
    top: 16px;
    right: 16px;
    animation: floatChip 4s ease-in-out 0.5s infinite;
}

.chip-bl {
    bottom: 30px;
    left: -30px;
    animation: floatChip 4s ease-in-out 1s infinite;
}

.chip-br {
    bottom: 16px;
    right: 16px;
   animation: floatChip 4s ease-in-out 1.5s infinite;
}

.chip-ph {
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    animation: floatChip 4s ease-in-out infinite;
}
.chip-pl {
    top: 50%;
    left: -55px;
    transform: translateY(-50%);
    animation: floatChip 4s ease-in-out infinite;
}

@keyframes floatChip {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@media (max-width: 960px) {
  .about-section { grid-template-columns: 1fr; gap: 3rem; }
  .about-logo-col { order: -1; }
  .about-logo-ring { width: 280px; height: 280px; }
  .about-shield { width: 160px; height: 160px; }
  .about-pillars { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .about-logo-glow, .about-shield, .orbit-chip { animation: none !important; }
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,79,204,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(26,79,204,0.13);
  transform: translateY(-4px);
  border-color: var(--accent);
}

/* Featured card spans full width on first row */
.product-card--featured {
  grid-column: span 1;
  border-color: var(--accent);
  background: linear-gradient(160deg, #F5F8FF 0%, var(--surface) 60%);
  box-shadow: 0 4px 24px rgba(26,79,204,0.1);
}
.product-card--featured:hover {
  box-shadow: 0 20px 56px rgba(26,79,204,0.18);
}

.product-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(26,79,204,0.25);
}
.product-icon svg {
  width: 24px;
  height: 24px;
}

.product-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}
.product-badge--new  { background: #DCFCE7; color: #15803D; }
.product-badge--pro  { background: #FEF3C7; color: #B45309; }
.product-badge--beta { background: #EDE9FE; color: #6D28D9; }

.product-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.product-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: -0.4rem 0 0;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.25rem 0;
}
.product-features li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.feat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
  gap: 0.75rem;
}

.product-price {
  font-size: 0.82rem;
  color: var(--muted);
}
.product-price strong {
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}

.product-btn {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s, transform .15s;
  display: inline-block;
}
.product-btn:hover { transform: translateY(-1px); }
.product-btn--primary {
  background: var(--accent);
  color: #fff;
}
.product-btn--primary:hover { background: var(--accent-lt); }
.product-btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.product-btn--outline:hover { background: var(--accent-glow); }

@media (max-width: 960px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ── SEO 8-CARD GRID — 4 per row ── */
.seo-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.seo-card-8 {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.seo-card-8:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 32px rgba(26,79,204,.12);
  transform: translateY(-4px);
}
.seo-icon-8 {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(26,79,204,.2); flex-shrink: 0;
}
.seo-icon-8 svg { width: 26px; height: 26px; }
.seo-n8 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: .95rem; color: var(--accent); line-height: 1.3;
}
.seo-d8 {
  font-size: .76rem; color: var(--muted);
  line-height: 1.55; max-width: 180px;
}
.see-all-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: .95rem;
  color: var(--accent); text-decoration: none;
  border: 2px solid var(--accent); padding: .75rem 2rem;
  border-radius: 12px; background: transparent;
  transition: background .2s, color .2s, transform .15s;
}
.see-all-btn svg { width: 18px; height: 18px; transition: transform .2s; }
.see-all-btn:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.see-all-btn:hover svg { transform: translateX(4px); }
@media (max-width: 900px) { .seo-grid-8 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .seo-grid-8 { grid-template-columns: 1fr 1fr; } }

/* ── PRODUCT SELECTOR TABS ──
   NOTE: this block previously had two conflicting definitions — a blue
   "pill" active state and a separate gray/rounded-pill redesign that
   overrode it later in the file. Kept the gray-pill version below since
   it was declared last (i.e. it's the one that was actually winning in
   the cascade); deleted the earlier, fully-shadowed definition. */
.product-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  
  border-radius: 12px;
  padding: 0.4rem;
  justify-content: center;
}
.selector-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  flex: 1 1 160px;
  max-width: 200px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #F1F3F6;
  color: #6B7280;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.selector-btn svg {
  width: 18px;
  height: 18px;
  stroke: #9CA3AF;
  transition: stroke 0.2s ease;
}
.selector-btn:hover {
  background: #E5E9F0;
  color: #4B5563;
}
.selector-btn--active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 10px rgba(26,79,204,0.3);
}
.selector-btn--active svg { stroke: #fff; }
.selector-btn--active:hover {
  background: var(--accent-lt);
  color: #fff;
}

/* ── GROUP FADE ── */
.products-group {
  animation: groupFadeIn .3s ease both;
}
@keyframes groupFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SEO TOOLS PAGE (page-seo-tools.php)
   ============================================================ */

/* ── Breadcrumb bar ── */
.breadcrumb-bar {
  background:var(--surface);
  border-bottom:1px solid var(--border);
  padding:.75rem clamp(1.5rem,5vw,5rem)
}

.breadcrumb {
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:.5rem;
  font-size:.78rem;
  color:var(--muted)
}

.breadcrumb a {
  color:var(--muted);
  text-decoration:none;
  transition:color .2s
}

.breadcrumb a:hover {
  color:var(--accent)
}

.breadcrumb-sep {
  color:var(--border)
}


/* ── Blue gradient page hero ── */
.seo-page-hero {
  background:linear-gradient(135deg,#0A1628 0%,#1A4FCC 60%,#3B6FE8 100%);
  padding:clamp(2.5rem,6vw,4.5rem) clamp(1.5rem,5vw,5rem);
  position:relative;
  overflow:hidden
}

.seo-page-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E")
}

.seo-page-hero-inner {
  max-width:1200px;
  margin:0 auto;
  position:relative;
  z-index:1
}

.seo-page-hero .eyebrow {
  display:inline-block;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  padding:.3rem .85rem;
  border-radius:100px;
  margin-bottom:1rem
}

.seo-page-hero h1 {
  font-family:'Syne',sans-serif;
  font-size:clamp(2.5rem, 5vw, 3rem);
  font-weight:500;
  color:#fff;
  letter-spacing: -0.02em;
  line-height:1.15;
  margin-bottom:.75rem
}

.seo-page-hero p {
  font-size:clamp(.9rem,1.5vw,1.05rem);
  color:rgba(255,255,255,.75);
  max-width:560px;
  line-height:1.7;
  margin-bottom:1.5rem
}

.seo-hero-stats {
  display:flex;
  gap:2rem;
  flex-wrap:wrap
}

.seo-hero-stat strong {
  display:block;
  font-family:'Inter',sans-serif;
  font-size:1.5rem;
  font-weight:800;
  color:#fff;
  line-height:1
}

.seo-hero-stat span {
  font-size:.75rem;
  color:rgba(255,255,255,.6);
  margin-top:.2rem;
  display:block
}
/* ── Page layout: main + right sidebar ── */
.seo-page-wrap {
  max-width:1200px;
  margin:0 auto;
  padding:clamp(2rem,4vw,3.5rem) clamp(1.5rem,5vw,3rem);
  display:grid;
  grid-template-columns:1fr 280px;
  gap:2rem;
  align-items:start;
}

.seo-main {
  min-width:0;
}

.seo-main-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  margin-bottom:1.75rem;
}

.seo-main-header h2 {
  font-family:'Syne',sans-serif;
  font-size:clamp(2rem, 4vw, 2.5rem);
  font-weight:500;
  color:var(--text);
  letter-spacing:-.02em;
}

.seo-results-count {
  font-size:.8rem;
  color:var(--muted);
}

.seo-results-count strong {
  color:var(--accent);
}

@media (max-width:900px) {
  .seo-page-wrap {
    grid-template-columns:1fr;
  }

  .seo-sidebar {
    margin-top:1rem;
    padding-top:1.5rem;
    border-top:1px solid var(--border);
  }
}



/* ── Category selector (tabs) ── */
.seo-product-selector {
  display:flex;
  gap:.4rem;
  margin-bottom:1.75rem;
  background:var(--surface);
  border:1.5px solid var(--border);
  border-radius:12px;
  padding:.4rem;
  width:fit-content;
  flex-wrap:wrap;
}

.seo-selector-btn {
  display:flex;
  align-items:center;
  gap:.45rem;
  font-family:'Inter',sans-serif;
  font-size:.82rem;
  font-weight:600;
  padding:.5rem 1.1rem;
  border-radius:9px;
  border:none;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  transition:background .2s,color .2s,box-shadow .2s;
  white-space:nowrap;
}

.seo-selector-btn svg {
  width:14px;
  height:14px;
  flex-shrink:0;
}

.seo-selector-btn:hover {
  background:var(--accent-glow);
  color:var(--accent);
}

.seo-selector-btn--active {
  background:var(--accent);
  color:#fff;
  box-shadow:0 2px 10px rgba(26,79,204,.3);
}

.seo-selector-btn--active:hover {
  background:var(--accent-lt);
  color:#fff;
}


/* ── SEO tool card grid ── */
.seo-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(190px,1fr));
  gap:1.25rem;
}

.seo-card {
  background:var(--surface);
  border:1.5px solid var(--border);
  border-radius:14px;
  padding:1.5rem 1.25rem 1.25rem;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.55rem;
  position:relative;
  transition:box-shadow .25s,border-color .25s,transform .25s;
}

.seo-card:hover {
  border-color:var(--accent);
  box-shadow:0 10px 32px rgba(26,79,204,.12);
  transform:translateY(-4px);
}

.seo-card-icon {
  width:54px;
  height:54px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 14px rgba(26,79,204,.2);
}

.seo-card-icon svg {
  width:24px;
  height:24px;
}

.seo-badge {
  font-size:.6rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:.18rem .5rem;
  border-radius:100px;
}

.seo-badge--new {
  background:#DCFCE7;
  color:#15803D;
}

.seo-badge--pro {
  background:#FEF3C7;
  color:#B45309;
}

.seo-badge--beta {
  background:#EDE9FE;
  color:#6D28D9;
}

.seo-name {
  font-family:'Inter',sans-serif;
  font-weight:700;
  font-size:.92rem;
  color:var(--accent);
}

.seo-desc {
  font-size:.76rem;
  color:var(--muted);
  line-height:1.55;
  max-width:170px;
}

.seo-btn {
  margin-top:auto;
  display:inline-block;
  font-size:.72rem;
  font-weight:700;
  padding:.38rem .9rem;
  border-radius:8px;
  background:transparent;
  color:var(--accent);
  border:1.5px solid var(--accent);
  text-decoration:none;
  transition:background .2s,color .2s;
}

.seo-btn:hover {
  background:var(--accent);
  color:#fff;
}

.seo-group {
  animation:seoFadeUp .3s ease both;
}

@keyframes seoFadeUp {
  from {
    opacity:0;
    transform:translateY(10px);
  }

  to {
    opacity:1;
    transform:translateY(0);
  }
}


/* ── Right sidebar ── */
.seo-sidebar {
  display:flex;
  flex-direction:column;
  gap:1.25rem;
  position:sticky;
  top:84px;
}

.seo-sidebar-widget {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:14px;
  padding:1.25rem;
  overflow:hidden;
}

.seo-widget-title {
  font-family:'Inter',sans-serif;
  font-size:.75rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--text);
  margin-bottom:.85rem;
  padding-bottom:.55rem;
  border-bottom:2px solid var(--accent);
}

.seo-sidebar-search {
  position:relative;
}

.seo-sidebar-search input {
  width:100%;
  background:var(--bg);
  border:1.5px solid var(--border);
  border-radius:10px;
  padding:.6rem .85rem .6rem 2.2rem;
  font-size:.82rem;
  color:var(--text);
  outline:none;
  font-family:'Inter',sans-serif;
  transition:border-color .2s;
}

.seo-sidebar-search input:focus {
  border-color:var(--accent);
}

.seo-sidebar-search input::placeholder {
  color:var(--muted);
}

.seo-sidebar-search-icon {
  position:absolute;
  left:.65rem;
  top:50%;
  transform:translateY(-50%);
  color:var(--muted);
  pointer-events:none;
}

.seo-sidebar-search-icon svg {
  width:14px;
  height:14px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
}

.seo-cat-item {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.45rem .5rem;
  border-radius:8px;
  text-decoration:none;
  font-size:.82rem;
  color:var(--muted);
  cursor:pointer;
  transition:background .15s,color .15s;
}

.seo-cat-item:hover,
.seo-cat-item.active {
  background:var(--accent-glow);
  color:var(--accent);
}

.seo-cat-item.active {
  font-weight:600;
}

.seo-cat-count {
  background:var(--bg);
  border-radius:100px;
  padding:.12rem .45rem;
  font-size:.68rem;
  font-weight:700;
  color:var(--accent);
}

.seo-cat-item.active .seo-cat-count {
  background:var(--accent);
  color:#fff;
}

.seo-popular-tool {
  display:flex;
  align-items:center;
  gap:.85rem;
  padding:.6rem .5rem;
  border-radius:10px;
  text-decoration:none;
  transition:background .15s;
}

.seo-popular-tool:hover {
  background:var(--bg);
}

.seo-popular-tool:hover .seo-pt-name {
  color:var(--accent);
}

.seo-pt-icon {
  width:36px;
  height:36px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.seo-pt-icon svg {
  width:17px;
  height:17px;
  stroke:#fff;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.seo-pt-info {
  flex:1;
  min-width:0;
}

.seo-pt-name {
  font-size:.82rem;
  font-weight:600;
  color:var(--text);
  display:block;
  transition:color .15s;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.seo-pt-meta {
  font-size:.7rem;
  color:var(--muted);
}

.seo-pt-badge {
  font-size:.6rem;
  font-weight:700;
  padding:.15rem .45rem;
  border-radius:100px;
  flex-shrink:0;
}

.seo-pt-badge--hot {
  background:#FEE2E2;
  color:#DC2626;
}

.seo-pt-badge--new {
  background:#DCFCE7;
  color:#15803D;
}

.seo-sidebar-cta {
  background:linear-gradient(135deg,var(--accent),var(--accent-lt));
  border:none;
  border-radius:14px;
  padding:1.25rem;
  text-align:center;
  color:#fff;
}

.seo-sidebar-cta .seo-widget-title {
  color:rgba(255,255,255,.7);
  border-bottom-color:rgba(255,255,255,.25);
}

.seo-sidebar-cta h3 {
  font-family:'Syne',sans-serif;
  font-size:clamp(1.75rem, 3vw, 2rem);
  font-weight:500;
  color:#fff;
  margin-bottom:.4rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.seo-sidebar-cta p {
  font-size:.75rem;
  color:rgba(255,255,255,.8);
  line-height:1.55;
  margin-bottom:.9rem;
}

.seo-sidebar-cta-btn {
  display:block;
  background:#fff;
  color:var(--accent);
  font-size:.78rem;
  font-weight:700;
  padding:.5rem 1rem;
  border-radius:8px;
  text-decoration:none;
  transition:opacity .2s;
}

.seo-sidebar-cta-btn:hover {
  opacity:.9;
}

/* ── FOOTER-MIN (secondary pages) ── */

.xlogo {
    width: 42px;
    height: 42px;
    display: block;
    flex-shrink: 0;
    fill: currentColor;
    color: #5B8AF5;
}

.footer-brand-text {
    font-family: "Syne", sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
}

.footer-minimal {
    background: #0A1628;
    color: #C8D8FA;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.footer-minimal-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem clamp(1.5rem, 5vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-minimal-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.footer-minimal-copy {
    font-size: 0.78rem;
    color: #8898B8;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .footer-minimal-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-minimal-brand,
    .footer-minimal-copy {
        width: 100%;
        text-align: left;
    }
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: currentColor;
    opacity: 0.75;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes socialJump {
    0%   { transform: translateY(0); }
    35%  { transform: translateY(-3px); }
    70%  { transform: translateY(1px); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        width: 100%;
    }
}

html,body{margin:0;padding:0;font-family:var(--font-body);color:var(--text);background:#F7F9FD;}


/* ── NAV ── */
nav {
  position:sticky;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(255,255,255,0.86);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.nav-inner {
  max-width:1280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 1.5rem;
  height:72px;
}

.logo-wrap {
  display:flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
  color:var(--text);
  position:relative;
}

.xlogo {
    display: block;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.brand {
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.15rem;
  letter-spacing:-0.01em;
  color:var(--navy-950);
}

/* signature: live-signal pulse dot beside brand, nodding to "24/7 AI" */
.logo-wrap::after {
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--blue-500);
  margin-left:2px;
  margin-top:-14px;
  box-shadow:0 0 0 0 rgba(59,111,232,0.6);
  animation:pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow:0 0 0 0 rgba(59,111,232,0.55);
  }

  70% {
    box-shadow:0 0 0 8px rgba(59,111,232,0);
  }

  100% {
    box-shadow:0 0 0 0 rgba(59,111,232,0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-wrap::after {
    animation:none;
  }
}

.nav-links {
  list-style:none;
  display:flex;
  align-items:center;
  gap:.25rem;
  margin:0;
  padding:0;
}

.nav-item {
  position:relative;
}

.nav-link-btn,
.nav-link-a {
  display:flex;
  align-items:center;
  gap:.3rem;
  background:none;
  border:none;
  cursor:pointer;
  font-family:var(--font-body);
  font-size:.92rem;
  font-weight:500;
  color:var(--navy-950);
  text-decoration:none;
  padding:.6rem .8rem;
  border-radius:8px;
  transition:color .15s ease, background .15s ease;
}

.nav-link-btn:hover,
.nav-link-a:hover {
  color:var(--blue-700);
  background:rgba(26,79,204,0.06);
}

.nav-link-btn:focus-visible,
.nav-link-a:focus-visible,
.nav-cta:focus-visible,
.hamburger:focus-visible {
  outline:2px solid var(--blue-500);
  outline-offset:2px;
}

.chevron {
  width:15px;
  height:15px;
  transition:transform .2s ease;
}

.nav-item.open .chevron {
  transform:rotate(180deg);
}

.nav-cta {
  background:var(--blue-700);
  color:#fff;
  padding:.6rem 1.25rem;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  font-size:.9rem;
  transition:background .15s ease, transform .15s ease;
  margin-left:.5rem;
}

.nav-cta:hover {
  background:var(--navy-950);
}
/* ── DROPDOWN (desktop mega menu) ── */
.dropdown{
  position:absolute;top:calc(100%);left:50%;
  transform:translate(-50%,8px);
  width:560px;
  background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 18px 40px -12px rgba(10,22,40,0.18);
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  z-index:50;
}
.dropdown--narrow{width:300px;left:0;transform:translate(0,8px);}
.nav-item.open .dropdown{opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%,0);}
.nav-item.open .dropdown--narrow{transform:translate(0,0);}

.dropdown-inner{display:flex;gap:0;padding:1.1rem;}
.dropdown-col{flex:1;display:flex;flex-direction:column;gap:.15rem;}
.dropdown-heading{
  font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;
  color:var(--muted);margin:.2rem .6rem .5rem;
}
.dropdown-item{
  display:flex;align-items:flex-start;gap:.7rem;
  padding:.55rem .6rem;border-radius:8px;
  text-decoration:none;color:var(--text);
  transition:background .15s ease;
}
.dropdown-item:hover{background:#F1F5FD;}
.dropdown-item strong{font-size:.86rem;font-weight:600;color:var(--navy-950);}
.dropdown-item span span{font-size:.78rem;color:var(--muted);line-height:1.4;}
.di-icon{
  width:32px;height:32px;border-radius:8px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.di-icon svg{width:16px;height:16px;}

.dropdown-cta{
  flex:0 0 190px;background:linear-gradient(160deg,#F1F5FD,#E7EEFB);
  border-radius:10px;padding:1rem;margin-left:.4rem;
}
.dropdown-feature{}

.dd-cta-btn:hover{text-decoration:none;background: var(--accent-lt); }

/* hamburger (mobile) */
.hamburger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:40px;height:40px;background:none;border:none;cursor:pointer;padding:0;
}
.hamburger span{
  width:22px;height:2px;background:var(--navy-950);border-radius:2px;
  transition:transform .25s ease, opacity .2s ease;
  margin:0 auto;
}
.hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.active span:nth-child(2){opacity:0;}
.hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ── RESPONSIVE ── */
@media (max-width:920px){
  .nav-links{display:none;}
  .hamburger{display:flex;}
}

/* ── MOBILE PANEL (centered modal) ── */
.nb-mobile-panel{
  position:fixed;top:56%;left:50%;
  width:min(340px,86vw);
  max-height:85vh;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 24px 60px -16px rgba(10,22,40,0.35);
  padding:1.1rem 1.1rem 1.5rem;
  overflow-y:auto;
  transform:translate(-50%,-50%) scale(0.94);
  opacity:0;visibility:hidden;
  transition:transform .22s ease, opacity .22s ease, visibility .22s;
  z-index:1001;
}
.nb-mobile-panel.open{
  transform:translate(-50%,-50%) scale(1);
  opacity:1;visibility:visible;
}

.nb-mobile-search{
  display:flex;align-items:center;gap:.5rem;
  background:#F1F5FD;border-radius:9px;
  padding:.6rem .75rem;margin-bottom:1rem;
}
.nb-mobile-search input{
  border:none;background:none;outline:none;
  font-family:var(--font-body);font-size:.88rem;color:var(--text);width:100%;
}
.nb-mobile-search input::placeholder{color:var(--muted);}

.nb-mobile-group-label{
  font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;
  color:var(--muted);margin:1.1rem 0 .4rem;
}
.nb-mobile-group-label:first-of-type{margin-top:.2rem;}

.nb-mobile-link{
  display:block;padding:.65rem .2rem;
  font-size:.92rem;font-weight:500;color:var(--navy-950);
  text-decoration:none;border-bottom:1px solid var(--line);
}
.nb-mobile-link:hover{color:var(--blue-700);}

.nb-mobile-cta{
  display:block;text-align:center;
  background:var(--blue-700);color:#fff;
  font-weight:600;font-size:.9rem;
  padding:.85rem;border-radius:8px;text-decoration:none;
  margin-top:1.4rem;
}
.nb-mobile-cta:hover{background:var(--navy-950);}

/* dim backdrop behind the mobile panel */
.nb-backdrop{
  position:fixed;inset:0;top:72px;
  background:rgba(10,22,40,0.28);
  opacity:0;visibility:hidden;
  transition:opacity .25s ease;
  z-index:998;
}
.nb-backdrop.open{opacity:1;visibility:visible;}

@media (min-width:921px){
  .nb-mobile-panel,.nb-backdrop{display:none;}
}
/* Hero style on seo tool pages */
.para-hero {
    background:linear-gradient(135deg,#0F2E80 0%,#1A4FCC 55%,#3B6FE8 100%);
    border-radius:16px;
    padding:36px 24px;
    text-align:center;
    color:#fff;
    margin-bottom:20px;
}

.para-hero-inner {
    max-width:760px;
    margin:0 auto;
}

.para-hero .eyebrow {
    display:inline-block;
    font-family:'Inter',sans-serif;
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    background:rgba(255,255,255,.14);
    padding:6px 14px;
    border-radius:999px;
    margin-bottom:14px;
}

.para-hero h1 {
    font-family:'Syne',sans-serif;
    font-weight:500;
    font-size:clamp(2.5rem, 5vw, 3rem);
    line-height:1.15;
    margin:0 0 10px;
    color:#ffffff;
    letter-spacing: -0.02em;
}

.para-hero p {
    font-family:'Inter',sans-serif;
    font-weight:300;
    font-size:15px;
    opacity:.92;
    margin:0;
    color: #ffffff;
}

/* SEO Tools Category selector responsive — 2 buttons per row, no slider */
@media (max-width: 700px) {
  .product-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.4rem;
  }

  .selector-btn {
    justify-content: center;
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 0.55rem 0.75rem;
  }
}


/* ── FINAL CTA ── */
.cta-section {
    background: linear-gradient(135deg,var(--accent-dark),var(--accent) 55%,var(--accent-lt));
    border-radius: 0px;
    padding: clamp(2.75rem,6vw,4.5rem);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-inline: auto;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(420px 260px at 15% 0%,rgba(255,255,255,.16),transparent 60%),radial-gradient(420px 260px at 85% 100%,rgba(255,255,255,.12),transparent 60%);
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: #fff;
    font-family: 'Syne',sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.cta-section p {
    color: rgba(255,255,255,.85);
    max-width: 560px;
    margin: 1rem auto 0;
    font-size: 1.02rem;
}

.cta-actions {
    display: flex;
    gap: .9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--accent-dark);
    box-shadow: 0 8px 20px -8px rgba(0,0,0,.35);
}

.cta-section .btn-primary:hover {
    background: #EEF2FF;
    transform: translateY(-2px);
}

.cta-section .btn-ghost {
    border-color: rgba(255,255,255,.4);
    color: #fff;
}

.cta-section .btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
}

@media(max-width:480px){
  .cta-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .cta-actions .btn{
    width:100%;
    text-align:center;
  }
}
/* ── For Text with Two Colors ── */
.brand-blue {
  color: #5B8AF5;
}
/* ============================================================
   BLOG ARTICLE — shared styles
   Reuses sitewide tokens already defined elsewhere in style.css:
   --bg, --surface, --accent, --accent-lt, --accent-glow, --text,
   --muted, --border, --radius, plus the Inter / Inter font stacks.

   Covers three templates that all share this same CSS:
     1. Single column article            -> .article-wrap
     2. Article + sidebar on the RIGHT   -> .blog-page-wrap
     3. Article + sidebar on the LEFT    -> .blog-page-wrap.blog-page-wrap--left

   Markup reminder for the left-sidebar template: keep .blog-main
   BEFORE .blog-sidebar in the HTML (for accessibility/SEO — real
   content first), and add the extra class "blog-page-wrap--left"
   on the wrapper. CSS `order` handles flipping it visually left.
   ============================================================ */

/* ── Layout: single column (no sidebar) ── */
.article-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
}

/* ── Layout: two column (article + sidebar), right sidebar by default ── */
.blog-page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 860px) 300px;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  justify-content: center;
}
.blog-main { min-width: 0; }

/* Left-sidebar variant: add class="blog-page-wrap blog-page-wrap--left"
   on the wrapper. DOM order stays main-then-sidebar; these rules flip
   the visual order so the sidebar renders on the left on desktop. */
.blog-page-wrap--left {
  grid-template-columns: 300px minmax(0, 860px);
}
.blog-page-wrap--left .blog-main { order: 2; }
.blog-page-wrap--left .blog-sidebar { order: 1; }

/* ── Meta row ── */
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 100px;
  background: var(--accent-glow); color: var(--accent);
}
.tag-alt { background: #FEF3C7; color: #B45309; }
.meta-sep { color: var(--border); }
.meta-date, .meta-read { font-size: 0.78rem; color: var(--muted); }

/* ── Lead ── */

.article-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}
/* The two-column layout has a narrower content column, so its
   title/lead run very slightly smaller at the top of the clamp. */
.blog-page-wrap .article-title { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.blog-page-wrap .article-lead { font-size: clamp(1rem, 1.5vw, 1.1rem); }

/* ── Author row ── */
.author-row {
  display: flex; align-items: center; gap: 0.85rem;
  padding-bottom: 2rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; }
.author-info strong { font-size: 0.9rem; color: var(--text); }
.author-info span { font-size: 0.78rem; color: var(--muted); }

/* ── Cover art ── */
.article-cover {
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #0A1628 0%, var(--accent) 70%, var(--accent-lt) 130%);
  display: flex; align-items: flex-end;
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.article-cover::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(360px 220px at 85% 0%, rgba(255,255,255,.14), transparent 60%);
}
.cover-label {
  position: relative; z-index: 1;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.8rem;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 0.35rem 0.85rem; border-radius: 100px;
}

/* ── Body typography ── */

.article-body li { margin-bottom: 0.6rem; line-height: 1.65; }
.article-body li strong { color: var(--text); }

.article-body blockquote {
  border-left: 3px solid var(--accent);
  background: var(--accent-glow);
  border-radius: 0 10px 10px 0;
  padding: 1.1rem 1.4rem;
  font-size: 1.02rem; font-style: italic;
  color: var(--text);
  margin: 1.75rem 0;
}
.article-body blockquote cite {
  display: block; margin-top: 0.6rem;
  font-size: 0.8rem; font-style: normal; font-weight: 600;
  color: var(--accent);
}

.callout {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.callout strong { display: block; font-size: 0.92rem; margin-bottom: 0.4rem; color: var(--text); }
.callout p { 
    font-size: 0.9rem; 
    color: #4B5563;
    margin: 0; }

.article-body pre {
  background: #0A1628; color: #C8D8FA;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  font-size: 0.85rem;
  margin: 1.75rem 0;
}
.article-body code { font-family: 'SFMono-Regular', Consolas, monospace; }

/* ── Tags + share ── */
.article-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 2.5rem 0 1.5rem;
}
.share-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.85rem;
  padding-top: 1.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.share-label { font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.share-btn {
  font-size: 0.82rem; font-weight: 600; color: var(--text);
  text-decoration: none; padding: 0.4rem 0.9rem;
  border: 1px solid var(--border); border-radius: 100px;
  transition: border-color .2s, color .2s;
}
.share-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   SIDEBAR — shared by both left- and right-sidebar templates.
   Sticky on desktop, drops below/above the article on narrower
   screens (order is reset there so it stacks after the content).
   ============================================================ */
.blog-sidebar {
  display: flex; flex-direction: column; gap: 1.25rem;
  position: sticky; top: 88px;
}
.blog-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.blog-widget-title {
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text);
  margin-bottom: 0.9rem; padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--accent);
}

/* Author card */
.widget-author { display: flex; flex-direction: column; align-items: center; text-align: center; }
.widget-author .author-avatar { width: 56px; height: 56px; font-size: 1.1rem; margin-bottom: 0.75rem; }
.widget-author strong { font-size: 0.92rem; color: var(--text); margin-bottom: 0.2rem; }
.widget-author span { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.85rem; }
.widget-author p { 
    font-size: 0.82rem; 
    color: #4B5563;
    line-height: 1.7; }

/* Table of contents */
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.15rem; }
.toc-list a {
  display: block; font-size: 0.84rem; color: var(--muted);
  text-decoration: none; padding: 0.45rem 0.5rem; border-radius: 8px;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.toc-list a:hover { background: var(--accent-glow); color: var(--accent); }

/* Newsletter widget */
.widget-newsletter {
  background: linear-gradient(160deg, var(--accent), var(--accent-lt));
  border: none; color: #fff;
}
.widget-newsletter .blog-widget-title {
  color: rgba(255,255,255,.75); border-bottom-color: rgba(255,255,255,.3);
}
.widget-newsletter p { 
    font-size: 0.82rem; 
    color: rgba(255,255,255,.85); 
    line-height: 1.55; 
    margin-bottom: 0.9rem; }
.widget-newsletter input {
  width: 100%; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3); border-radius: 8px;
  padding: 0.6rem 0.8rem; font-size: 0.82rem; color: #fff;
  outline: none; margin-bottom: 0.6rem; font-family: 'Inter', sans-serif;
}
.widget-newsletter input::placeholder { color: rgba(255,255,255,.65); }
.widget-newsletter button {
  width: 100%; background: #fff; color: var(--accent);
  border: none; border-radius: 8px; padding: 0.6rem;
  font-size: 0.82rem; font-weight: 700; cursor: pointer;
  transition: opacity .2s;
}
.widget-newsletter button:hover { opacity: 0.9; }

/* Related posts (compact, sidebar version) */
.widget-related-item {
  display: flex; flex-direction: column; gap: 0.2rem;
  text-decoration: none; padding: 0.6rem 0.4rem; border-radius: 8px;
  transition: background .15s;
}
.widget-related-item:hover { background: var(--bg); }
.widget-related-item:hover strong { color: var(--accent); }
.widget-related-item strong 
{ font-size: 0.84rem; color: #4B5563; line-height: 1.4; transition: color .15s; }
.widget-related-item span { font-size: 0.72rem; color: var(--muted); }

/* Tag cloud widget */
.widget-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }

/* ============================================================
   RELATED (grid version) — used only by the single-column
   template's "Continue Reading" section at the bottom.
   ============================================================ */
.related { margin-top: 2.5rem; }
.related h2 {
  font-family: 'Syne', sans-serif; 
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--text); 
  margin-bottom: 1.25rem;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.related-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  height: 100%;
  transition: border-color .2s, transform .2s;
}
.related-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.related-card h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  color: #273444;
  margin: 0;
}

.related-card span:last-child {
  margin-top: auto;
}
.related-card span { font-size: 0.74rem; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .blog-page-wrap {
    grid-template-columns: 1fr;
    max-width: 860px;
  }
  .blog-page-wrap--left .blog-main { order: 1; }
  .blog-sidebar {
    order: 2;
    position: static;
    border-top: 1px solid var(--border);
    padding-top: 1.75rem;
    margin-top: 0.5rem;
  }
  .widget-author { flex-direction: row; text-align: left; align-items: center; gap: 0.85rem; }
  .widget-author .author-avatar { margin-bottom: 0; }
  .widget-author .widget-author-text { display: flex; flex-direction: column; }
  .widget-author p { display: none; } /* trim bio in the compact horizontal card */
}
@media (max-width: 700px) {
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .blog-page-wrap { padding: clamp(2rem, 8vw, 2.5rem) 1.25rem; }
  .article-wrap { padding: clamp(2rem, 8vw, 2.5rem) 1.25rem; }
  .share-row { gap: 0.6rem; }
}
/* ============================================================
   ABOUT PAGE — extends the shared blog-article styles/tokens
   (.article-wrap, .article-title, .article-lead, .article-body,
   .article-cover, .tag, .callout are already defined in
   blog-article.css / style.css and are reused as-is here).

   New components added for this page only:
     .stats-row     — 3–4 quick proof-point numbers
     .values-grid   — 3 short value/principle cards
     .team-grid     — team member cards
     .cta-band      — closing call-to-action block
   ============================================================ */

/* ── Stats row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Values grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.value-card strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Team grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.1rem;
  margin: 0 auto 0.85rem;
}
.team-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.team-role {
  display: block;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.team-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(160deg, var(--accent), var(--accent-lt));
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin: 2.5rem 0 1rem;
}
.cta-band h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #fff;
  margin: 0 0 0.6rem;
}
.cta-band p {
  font-size: 0.92rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 1.25rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-primary {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  transition: opacity .2s;
}
.cta-band .btn-primary:hover { opacity: 0.9; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .stat-card { padding: 1.1rem 0.6rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .stats-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
/* ============================================================
     PAGE-SPECIFIC STYLES — Products page only.
     Shared classes (.eyebrow, .section, .btn-primary, .btn-ghost,
     .btn-white, .feat-dot, .cta-banner, .fade-up, nav/footer, etc.)
     already live in assets/style.css and are intentionally NOT
     redefined here — only new components introduced by this page.

     Spacing note: this page no longer defines its own container
     (the earlier .section-page wrapper is gone). Every section
     below nests its content inside the sitewide .section class
     instead, the same way the CryptoSkillLab product page and the
     homepage do — so max-width, horizontal padding, and vertical
     section spacing all come from one place instead of being
     redefined per page. Only true one-offs (the hero's background
     glow, the spotlight visual's own internal padding) stay local.
     ============================================================ */

  .products-hero{
    padding-top:clamp(1rem,3vw,1.75rem);
    background:
      radial-gradient(600px 300px at 85% -10%, rgba(26,79,204,.09), transparent 70%),
      var(--bg,#fff);
  }
  .hero-head{max-width:900px;}
  .hero-head h1{font-size:clamp(2.5rem, 5vw, 3rem); font-weight:500; margin-top:.9rem;}
  .hero-head h1 em{font-style:normal; color:var(--primary,#1A4FCC);}
  .hero-head p{margin-top:1.1rem; font-size:clamp(1rem,1.6vw,1.15rem); max-width:56ch;}

  
  /* ---- Spotlight sections ----
     Vertical rhythm now comes from the sitewide .section that each
     spotlight wraps around its content — .spotlight itself only
     contributes the border and scroll offset, not spacing. */
  .spotlight{
    scroll-margin-top:5.5rem;
    border-top:1px solid var(--border,#E4E9F3);
  }
  .spotlight-inner{
    display:grid; gap:2.2rem;
    grid-template-columns:1fr;
    align-items:center;
  }
  @media (min-width:992px){
    .spotlight-inner{grid-template-columns:0.85fr 1.15fr; gap:3.5rem;}
    .spotlight--reverse .spotlight-inner{grid-template-columns:1.15fr 0.85fr;}
    .spotlight--reverse .spotlight-visual{order:2;}
    .spotlight--reverse .spotlight-content{order:1;}
  }

  .spotlight-visual{
    position:relative;
    border-radius:var(--radius-lg,22px);
    padding:clamp(2rem,5vw,3rem);
    min-height:260px;
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
    box-shadow:var(--shadow-md,0 12px 32px rgba(15,32,90,.10));
  }
  .spotlight-visual .glyph{
    width:clamp(88px,14vw,128px); height:clamp(88px,14vw,128px);
    border-radius:28px; background:rgba(255,255,255,.16);
    display:flex; align-items:center; justify-content:center;
    backdrop-filter:blur(2px);
  }
  .spotlight-visual .glyph svg{width:52%; height:52%;}
  .spotlight-visual::before{
    content:""; position:absolute; inset:-40%;
    background:radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 55%);
    pointer-events:none;
  }
  .spotlight-visual .ring{
    position:absolute; border:1.5px solid rgba(255,255,255,.28); border-radius:50%;
  }
  .ring-a{width:190%; height:190%;}
  .ring-b{width:140%; height:140%;}

  .spotlight-content .eyebrow{margin-bottom:.6rem;}
  .spotlight-name{font-family:var(--font-display,'Syne',sans-serif); font-size:clamp(1.6rem,3.4vw,2.3rem); font-weight:800; margin:0;}
  .spotlight-tagline{font-weight:600; color:var(--text-soft,#8592AC); font-size:.98rem; margin-top:.3rem;}
  .spotlight-desc{margin-top:1rem; font-size:1rem; max-width:52ch; color:var(--text-muted,#5B6B8C);}

  .spotlight-features{
    list-style:none; margin:1.4rem 0 0; padding:0;
    display:grid; gap:.55rem;
  }
  .spotlight-features li{
    display:flex; align-items:flex-start; gap:.6rem;
    font-size:.92rem; color:var(--text,#0E162E);
  }
  .spotlight-features .feat-dot{margin-top:.5rem;}

  .spotlight-footer{
    display:flex; flex-wrap:wrap; align-items:center; gap:1rem;
    margin-top:1.8rem;
  }
  .status-badge{
    display:inline-flex; align-items:center; gap:.4rem;
    font-size:.78rem; font-weight:600; padding:.4rem .75rem; border-radius:999px;
    border:1px solid var(--border,#E4E9F3); color:var(--text-muted,#5B6B8C);
  }

  /* per-product accents */
  .spotlight[data-accent="blue"]   .spotlight-visual{background:linear-gradient(135deg,#1A4FCC,#3B6FE8);}
  .spotlight[data-accent="amber"]  .spotlight-visual{background:linear-gradient(135deg,#B45309,#F59E0B);}
  .spotlight[data-accent="purple"] .spotlight-visual{background:linear-gradient(135deg,#6D28D9,#3B6FE8);}
  .spotlight[data-accent="dark"]   .spotlight-visual{background:linear-gradient(135deg,#0A1628,#1A4FCC);}

  .spotlight[data-accent="blue"]   .feat-dot,.spotlight[data-accent="blue"] .eyebrow::before{background:#1A4FCC;}
  .spotlight[data-accent="amber"]  .feat-dot,.spotlight[data-accent="amber"] .eyebrow::before{background:#B45309;}
  .spotlight[data-accent="purple"] .feat-dot,.spotlight[data-accent="purple"] .eyebrow::before{background:#6D28D9;}
  .spotlight[data-accent="dark"]   .feat-dot,.spotlight[data-accent="dark"] .eyebrow::before{background:#0A1628;}
  .spotlight[data-accent="blue"]   .eyebrow{color:#1A4FCC;}
  .spotlight[data-accent="amber"]  .eyebrow{color:#B45309;}
  .spotlight[data-accent="purple"] .eyebrow{color:#6D28D9;}
  .spotlight[data-accent="dark"]   .eyebrow{color:#0A1628;}

  /* scroll-triggered reveal, distinct from the sitewide .fade-up
     (which runs on page load in the hero) since these fire on scroll */
  .reveal-up{
    opacity:0; transform:translateY(18px);
    transition:opacity .7s ease, transform .7s ease;
  }
  .reveal-up.is-visible{opacity:1; transform:translateY(0);}

  @media (prefers-reduced-motion: reduce){
    .reveal-up{transition:none; opacity:1; transform:none;}
  }


#products .product-tagline {
  min-height: 2.6em;
  line-height: 1.3;
  margin: 0 0 8px;
}

