/* ═══════════════════════════════════════════════════════════
   OMATICON CORPORATION — assets/css/main.css  v2.0
   Brand: pink #d63ea0 → blue #3a6fce → cyan #29b9e8
   Typography: Syne (display) · DM Sans (body) · DM Mono (code)
═══════════════════════════════════════════════════════════ */

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

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --grad-start:    #d63ea0;
  --grad-mid:      #3a6fce;
  --grad-end:      #29b9e8;
  --gradient:      linear-gradient(135deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  --gradient-text: linear-gradient(90deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
  --gradient-h:    linear-gradient(135deg, #e84db5, #4a7fd8, #3fcef5);

  --bg-white:    #ffffff;
  --bg-off:      #f7f8fc;
  --bg-subtle:   #eef0f8;
  --bg-dark:     #1b1d26;
  --bg-dark-2:   #13151d;
  --bg-card:     #ffffff;

  --border:      #e2e6f0;
  --border-md:   #cdd3e8;
  --border-brand:rgba(58,111,206,.25);
  --border-dark: rgba(255,255,255,.08);

  --text-charcoal: #1f2228;
  --text-1:        #2c3040;
  --text-2:        #5a6278;
  --text-3:        #9ba3b8;
  --text-light-1:  #f0f3fb;
  --text-light-2:  #9daac2;
  --text-light-3:  #58698a;

  --blue:     #3a6fce;
  --blue-dim: rgba(58,111,206,.09);
  --pink-dim: rgba(214,62,160,.09);
  --cyan-dim: rgba(41,185,232,.09);
  --brand-dim:rgba(58,111,206,.07);

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --max-w:       1280px;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(28,30,38,.07);
  --shadow-md:   0 8px 32px rgba(28,30,38,.11);
  --shadow-lg:   0 24px 64px rgba(28,30,38,.15);
  --shadow-brand:0 8px 32px rgba(58,111,206,.22);
}

/* ── BASE ───────────────────────────────────────────────── */
html  { scroll-behavior: smooth; font-size: 16px; }
body  { background: var(--bg-white); color: var(--text-1); font-family: var(--font-body); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a     { color: inherit; text-decoration: none; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-off); }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 3px; }

.mono        { font-family: var(--font-mono); }
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.grad-text   { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link:focus { position: fixed; top: 1rem; left: 1rem; z-index: 9999; padding: .75rem 1.5rem; background: var(--gradient); color: #fff; border-radius: var(--radius); font-weight: 700; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .78rem 1.7rem; border-radius: var(--radius);
  font-family: var(--font-display); font-size: .9rem; font-weight: 700;
  letter-spacing: .03em; cursor: pointer; border: 2px solid transparent;
  transition: all .22s ease; white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary { background: var(--gradient); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary::after { content: ''; position: absolute; inset: 0; background: var(--gradient-h); opacity: 0; transition: opacity .22s; }
.btn-primary:hover::after { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-ghost   { background: transparent; color: var(--blue); border-color: var(--border-md); }
.btn-ghost:hover { border-color: var(--blue); background: var(--blue-dim); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-white   { background: #fff; color: var(--blue); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: var(--bg-off); }
.btn-full    { width: 100%; justify-content: center; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96); border-color: var(--border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  height: 72px; display: flex; align-items: center; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img, .nav-logo-img { height: 40px; width: auto; }

.nav-links { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav-links > li > a {
  padding: .5rem .9rem; border-radius: var(--radius);
  font-size: .875rem; font-weight: 500; color: var(--text-2);
  transition: color .2s, background .2s; display: flex; align-items: center; gap: .3rem;
}
.nav-links > li > a:hover  { color: var(--text-charcoal); background: var(--bg-off); }
.nav-links > li > a[aria-current="page"] { color: var(--blue); }
.caret { font-size: .58rem; opacity: .5; transition: transform .2s; }
.nav-dropdown:hover .caret, .nav-dropdown.open .caret { transform: rotate(180deg); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: .6rem; min-width: 285px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s; box-shadow: var(--shadow-lg);
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 11px; height: 11px; background: #fff; border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: flex; align-items: center; gap: .75rem; padding: .65rem 1rem;
  border-radius: 6px; font-size: .85rem; color: var(--text-2); transition: background .15s, color .15s;
}
.dropdown-menu li a:hover  { background: var(--bg-off); color: var(--text-1); }
.dropdown-menu li a .mono  { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: .78rem; }

.nav-cta {
  background: var(--gradient) !important; color: #fff !important; font-weight: 700 !important;
  padding: .5rem 1.25rem !important; border-radius: var(--radius) !important;
  box-shadow: var(--shadow-brand) !important; transition: opacity .2s !important;
}
.nav-cta:hover { opacity: .88 !important; color: #fff !important; background: var(--gradient) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: .5rem; margin-left: auto;
}
.toggle-bar { display: block; width: 22px; height: 2px; background: var(--text-1); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (HOMEPAGE) ────────────────────────────────────── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem; padding: 120px 2rem 80px;
  max-width: var(--max-w); margin: 0 auto; position: relative;
}
.hero-grid-bg {
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, #d0d8ee 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none; z-index: -1; opacity: .4;
  mask-image: radial-gradient(ellipse 90% 70% at 65% 40%, black 20%, transparent 100%);
}
.hero-glow { position: fixed; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: -1; }
.hero-glow-1 { width: 700px; height: 600px; background: radial-gradient(circle, rgba(214,62,160,.07) 0%, rgba(58,111,206,.06) 55%, transparent 100%); top: -200px; left: -120px; }
.hero-glow-2 { width: 550px; height: 500px; background: radial-gradient(circle, rgba(41,185,232,.08) 0%, transparent 100%); bottom: -80px; right: -80px; }

.hero-eyebrow { display: flex; align-items: center; gap: .75rem; font-size: .8rem; color: var(--blue); letter-spacing: .06em; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .6s .1s forwards; }
.eyebrow-dot { width: 8px; height: 8px; background: var(--gradient); border-radius: 50%; box-shadow: 0 0 12px rgba(58,111,206,.6); animation: pulse 2.4s infinite; flex-shrink: 0; }

.hero-headline {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -.025em;
  color: var(--text-charcoal); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .6s .2s forwards;
}
.hero-headline em  { font-style: normal; color: var(--text-2); font-weight: 400; }
.headline-accent   { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }

.hero-sub { color: var(--text-2); font-size: 1.08rem; max-width: 520px; margin-bottom: 2.25rem; line-height: 1.75; opacity: 0; animation: fadeUp .6s .3s forwards; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; opacity: 0; animation: fadeUp .6s .4s forwards; }
.hero-stats   { display: flex; align-items: center; gap: 2.5rem; opacity: 0; animation: fadeUp .6s .5s forwards; }
.stat-num   { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: .75rem; color: var(--text-3); font-family: var(--font-mono); letter-spacing: .04em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-visual { opacity: 0; animation: fadeIn .8s .4s forwards; }

/* Terminal card */
.terminal-card { background: var(--bg-dark); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(58,111,206,.12); }
.terminal-bar  { background: var(--bg-dark-2); border-bottom: 1px solid rgba(255,255,255,.06); padding: .8rem 1.1rem; display: flex; align-items: center; gap: .5rem; }
.t-dot   { width: 12px; height: 12px; border-radius: 50%; }
.t-red   { background: #ff5f57; } .t-yellow { background: #ffbd2e; } .t-green { background: #28c940; }
.t-title { font-size: .78rem; color: rgba(255,255,255,.28); margin-left: .75rem; font-family: var(--font-mono); }
.terminal-body { padding: 1.4rem 1.6rem; font-size: .82rem; line-height: 2.1; color: #c4d0e4; }
.t-line  { display: flex; gap: .75rem; align-items: center; }
.t-prompt { color: var(--grad-start); }
.t-cmd    { color: #e8eef6; }
.t-ok .t-icon { color: var(--grad-end); }
.t-ok .t-val  { color: var(--grad-end); margin-left: auto; font-weight: 500; }
.t-all-ok     { color: var(--grad-end); font-size: 1.1em; }
.t-divider    { color: rgba(255,255,255,.18); font-size: .72rem; padding: .1rem 0; letter-spacing: .05em; }
.t-blink      { animation: blink 1s step-end infinite; color: var(--grad-end); }

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-off); padding: .85rem 0; overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 2rem; animation: marquee 34s linear infinite; white-space: nowrap; width: max-content; }
.marquee-track span { font-family: var(--font-mono); font-size: .78rem; color: var(--text-3); letter-spacing: .05em; }
.marquee-track .sep { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: .55rem; }

/* ── SECTION COMMONS ────────────────────────────────────── */
.section { padding: 100px 0; }
.section-header { margin-bottom: 3.5rem; }
.section-label  {
  display: inline-flex; align-items: center; font-size: .75rem; letter-spacing: .08em;
  margin-bottom: 1rem; padding: .28rem .8rem; border-radius: 4px; font-family: var(--font-mono);
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  border: 1px solid rgba(58,111,206,.2); background-color: rgba(58,111,206,.06);
}
.section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--text-charcoal); margin-bottom: 1rem; }
.title-dim      { color: var(--text-2); font-weight: 400; }
.section-desc   { color: var(--text-2); font-size: 1.04rem; max-width: 560px; line-height: 1.7; }
.section-footer-link { margin-top: 3rem; text-align: center; }

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero, .post-hero {
  padding: 140px 2rem 80px; background: var(--bg-off); position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-glow {
  position: absolute; width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,111,206,.07) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; color: var(--text-charcoal); margin: .75rem 0 1rem; }
.page-hero-sub   { color: var(--text-2); font-size: 1.1rem; max-width: 600px; line-height: 1.7; }

/* Error 404 */
.error-404-section { min-height: 80vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.error-404-inner   { text-align: center; max-width: 600px; margin: 0 auto; padding: 4rem 0; }
.error-code        { font-family: var(--font-display); font-size: 9rem; font-weight: 800; line-height: 1; margin-bottom: 1rem; }
.error-404-inner h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: .75rem; }
.error-404-inner p  { color: var(--text-2); margin-bottom: 2rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.error-search  { max-width: 400px; margin: 0 auto; }
.error-search p { color: var(--text-3); margin-bottom: .75rem; font-size: .875rem; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-3); margin-bottom: .75rem; font-family: var(--font-mono); }
.breadcrumb a { color: var(--text-3); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue); }

/* ── SERVICES GRID ──────────────────────────────────────── */
.services-section { background: var(--bg-off); }
.services-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.service-card {
  position: relative; background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.service-card:hover { border-color: rgba(58,111,206,.4); transform: translateY(-4px); box-shadow: var(--shadow-md), 0 0 0 1px rgba(58,111,206,.12); }
.card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); opacity: 0; transition: opacity .25s; }
.service-card:hover .card-accent { opacity: 1; }
.card-header  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.product-tag  {
  font-size: .73rem; padding: .22rem .6rem; border-radius: 4px; border: 1px solid rgba(58,111,206,.2);
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-color: var(--blue-dim); display: inline-block;
}
.card-icon    { font-size: 1.35rem; color: var(--text-3); line-height: 1; transition: all .25s; }
.service-card:hover .card-icon { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.service-card h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--text-charcoal); margin-bottom: .6rem; }
.service-card h3 a { color: inherit; }
.service-card h3 a:hover { color: var(--blue); }
.service-card p  { font-size: .875rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.2rem; }
.feature-list    { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .42rem; }
.feature-list li { font-size: .82rem; color: var(--text-2); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.feature-list li::before { content: '◦'; position: absolute; left: 0; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.card-link { font-size: .83rem; font-weight: 600; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.card-link:hover { gap: .6rem; }

.featured-card { border: 1px solid rgba(58,111,206,.22); background: linear-gradient(145deg, #fff, #f4f7ff); grid-column: span 2; box-shadow: var(--shadow-sm); }
.featured-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gradient); color: #fff; font-family: var(--font-display); font-size: .67rem; font-weight: 700; letter-spacing: .07em; padding: .2rem .65rem; border-radius: 4px; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner { background: var(--gradient); padding: 5rem 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v5h20v20.5h5V23h20v-5H25V.5h-5z'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-inner  { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; }
.cta-text h2{ font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: #fff; margin-bottom: .4rem; }
.cta-text p { color: rgba(255,255,255,.8); }
.cta-actions{ display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── SOFTWARE GRID ──────────────────────────────────────── */
.software-section { background: var(--bg-white); }
.software-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.software-card    { background: var(--bg-off); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; display: flex; gap: 1.5rem; transition: border-color .25s, box-shadow .25s, transform .25s; }
.software-card:hover { border-color: rgba(58,111,206,.28); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sw-icon-wrap { flex-shrink: 0; width: 52px; height: 52px; background: #fff; border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.sw-icon { font-size: 1.5rem; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sw-content .product-tag { display: inline-block; margin-bottom: .6rem; }
.sw-content h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-charcoal); margin-bottom: .55rem; line-height: 1.35; }
.sw-content h3 a { color: inherit; } .sw-content h3 a:hover { color: var(--blue); }
.sw-content p  { font-size: .875rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1rem; }
.sw-pills      { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pill          { font-family: var(--font-mono); font-size: .7rem; color: var(--blue); background: var(--blue-dim); border: 1px solid rgba(58,111,206,.2); padding: .2rem .55rem; border-radius: 4px; letter-spacing: .03em; }

/* ── WHY / PILLARS ──────────────────────────────────────── */
.why-section  { background: var(--bg-off); }
.why-layout   { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.why-left .section-title { margin-bottom: 1.25rem; }
.why-body     { color: var(--text-2); line-height: 1.8; margin-bottom: 2rem; }
.why-right    { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.pillar       { display: flex; gap: 1rem; }
.pillar-icon  { font-family: var(--font-mono); font-size: .7rem; padding: .28rem .5rem; border-radius: 4px; height: fit-content; flex-shrink: 0; letter-spacing: .05em; background: var(--gradient); color: #fff; font-weight: 500; margin-top: .15rem; }
.pillar-body h4 { font-family: var(--font-display); font-size: .96rem; font-weight: 700; color: var(--text-charcoal); margin-bottom: .4rem; }
.pillar-body p  { font-size: .86rem; color: var(--text-2); line-height: 1.7; }

/* Values / About grid */
.values-grid, .platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value-card, .platform-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: border-color .25s, box-shadow .25s; }
.value-card:hover, .platform-card:hover { border-color: var(--border-brand); box-shadow: var(--shadow-md); }
.value-icon, .platform-icon { font-size: 1.5rem; margin-bottom: 1rem; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.value-card h4, .platform-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-charcoal); margin-bottom: .5rem; }
.value-card p,  .platform-card p  { font-size: .875rem; color: var(--text-2); line-height: 1.7; }

/* About intro */
.about-intro { max-width: 800px; }
.about-intro .section-title { margin-bottom: 1.25rem; }
.about-intro p { color: var(--text-2); line-height: 1.8; margin-bottom: 1rem; font-size: 1.05rem; }

/* ── CONTACT ────────────────────────────────────────────── */
.contact-section { background: var(--bg-white); }
.contact-layout  { display: grid; grid-template-columns: 1fr 1.25fr; gap: 6rem; align-items: start; }
.contact-left .section-title { margin-bottom: 1.25rem; }
.contact-left > p { color: var(--text-2); line-height: 1.8; margin-bottom: 2.5rem; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; }
.channel { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--bg-off); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s; }
.channel:hover { border-color: rgba(58,111,206,.3); box-shadow: var(--shadow-sm); }
.channel-icon  { width: 38px; height: 38px; background: var(--gradient); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; flex-shrink: 0; }
.channel-label { display: block; font-size: .7rem; color: var(--text-3); font-family: var(--font-mono); letter-spacing: .05em; margin-bottom: 2px; }
.channel-value { font-size: .9rem; color: var(--text-1); font-weight: 500; }
.channel-value:hover { color: var(--blue); }

.contact-form  { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group    { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.15rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-1); letter-spacing: .02em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-off); border: 1px solid var(--border); border-radius: var(--radius);
  padding: .75rem 1rem; color: var(--text-1); font-family: var(--font-body); font-size: .9rem;
  transition: border-color .2s, box-shadow .2s; outline: none; resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58,111,206,.1); background: #fff; }
.form-note     { font-size: .76rem; color: var(--text-3); text-align: center; margin-top: .75rem; font-family: var(--font-mono); }

/* CF7 / WPForms overrides */
.wpcf7-form .wpcf7-text, .wpcf7-form .wpcf7-email, .wpcf7-form .wpcf7-select, .wpcf7-form .wpcf7-textarea,
.wpforms-field input, .wpforms-field select, .wpforms-field textarea {
  background: var(--bg-off) !important; border: 1px solid var(--border) !important; border-radius: var(--radius) !important;
  padding: .75rem 1rem !important; color: var(--text-1) !important; font-family: var(--font-body) !important;
  font-size: .9rem !important; width: 100% !important; transition: border-color .2s, box-shadow .2s !important;
}
.wpcf7-form .wpcf7-submit, .wpforms-submit { background: var(--gradient) !important; color: #fff !important; border: none !important; padding: .78rem 1.7rem !important; border-radius: var(--radius) !important; font-family: var(--font-display) !important; font-weight: 700 !important; cursor: pointer !important; width: 100% !important; }
.wpcf7-response-output { margin-top: 1rem !important; padding: .75rem 1rem !important; border-radius: var(--radius) !important; font-size: .875rem !important; }
.wpcf7-mail-sent-ok    { background: rgba(40,201,64,.1) !important; border-color: rgba(40,201,64,.4) !important; color: #166534 !important; }
.wpcf7-validation-errors { background: rgba(214,62,160,.07) !important; border-color: var(--grad-start) !important; }

/* ── BLOG / POSTS ───────────────────────────────────────── */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3.5rem; padding: 4rem 0 6rem; }
.blog-grid   { display: grid; gap: 1.5rem; }
.blog-grid--2{ grid-template-columns: repeat(2, 1fr); }
.blog-grid--3{ grid-template-columns: repeat(3, 1fr); }

.blog-card   { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .25s, box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
.blog-card:hover { border-color: rgba(58,111,206,.3); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-thumb-link { display: block; overflow: hidden; }
.blog-card-thumb, .post-thumb { overflow: hidden; aspect-ratio: 16/9; background: var(--bg-off); }
.blog-card-thumb img, .post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.post-thumb-placeholder { aspect-ratio: 16/9; background: var(--bg-off); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--text-3); }

.blog-card-body  { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat   { font-family: var(--font-mono); font-size: .7rem; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: .06em; margin-bottom: .6rem; display: block; }
.blog-card-title { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; line-height: 1.3; color: var(--text-charcoal); margin-bottom: .65rem; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--blue); }
.blog-card-excerpt { font-size: .875rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1rem; flex: 1; }

/* Post meta */
.post-meta { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--text-3); flex-wrap: wrap; margin-bottom: 1rem; font-family: var(--font-mono); }
.post-meta a { color: var(--text-3); }
.post-meta a:hover { color: var(--blue); }
.meta-sep  { opacity: .4; }
.meta-cats a { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Single post */
.post-hero { padding-bottom: 3rem; }
.post-featured-image { padding: 0 2rem 0; }
.post-featured-image img, .post-hero-img { width: 100%; max-width: var(--max-w); margin: 0 auto; border-radius: var(--radius-lg); display: block; max-height: 500px; object-fit: cover; }
.post-layout  { display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; padding: 4rem 0 5rem; }
.post-cat-badge { display: inline-block; font-family: var(--font-mono); font-size: .72rem; background: var(--gradient); color: #fff; padding: .22rem .65rem; border-radius: 4px; margin-bottom: .75rem; letter-spacing: .05em; }
.post-content-wrap, .page-article { min-width: 0; }
.post-body.entry-content, .page-body.entry-content { font-size: 1.05rem; line-height: 1.85; color: var(--text-1); }
.entry-content h2, .entry-content h3, .entry-content h4 { font-family: var(--font-display); color: var(--text-charcoal); margin: 2.5rem 0 1rem; line-height: 1.2; }
.entry-content h2 { font-size: 1.75rem; }
.entry-content h3 { font-size: 1.4rem; }
.entry-content h4 { font-size: 1.15rem; }
.entry-content p  { margin-bottom: 1.5rem; }
.entry-content a  { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: .4rem; }
.entry-content blockquote { border-left: 4px solid; border-image: var(--gradient) 1; padding: 1rem 1.5rem; margin: 2rem 0; background: var(--bg-off); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--text-2); }
.entry-content pre, .entry-content code { font-family: var(--font-mono); background: var(--bg-dark); color: var(--grad-end); border-radius: var(--radius); }
.entry-content code { font-size: .85em; padding: .15em .4em; }
.entry-content pre  { padding: 1.25rem 1.5rem; overflow-x: auto; margin-bottom: 1.5rem; font-size: .875rem; line-height: 1.6; }
.entry-content pre code { background: none; padding: 0; color: inherit; }
.entry-content img  { border-radius: var(--radius); max-width: 100%; height: auto; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .9rem; }
.entry-content th, .entry-content td { text-align: left; padding: .75rem 1rem; border-bottom: 1px solid var(--border); }
.entry-content th   { font-family: var(--font-display); font-weight: 700; color: var(--text-charcoal); background: var(--bg-off); }
.entry-content .wp-block-image { margin: 2rem 0; }

/* Tags */
.post-tags { display: flex; align-items: center; gap: .75rem; margin: 2rem 0; flex-wrap: wrap; }
.post-tags-label { color: var(--text-3); font-size: .78rem; }
.post-tags a { font-size: .78rem; color: var(--blue); background: var(--blue-dim); border: 1px solid rgba(58,111,206,.2); padding: .22rem .6rem; border-radius: 4px; font-family: var(--font-mono); transition: background .2s; }
.post-tags a:hover { background: var(--blue); color: #fff; }

/* Author card */
.author-card  { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.75rem; background: var(--bg-off); border: 1px solid var(--border); border-radius: var(--radius-lg); margin: 2.5rem 0; }
.author-avatar img, .avatar-img { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.author-label { font-family: var(--font-mono); font-size: .7rem; color: var(--text-3); letter-spacing: .05em; display: block; margin-bottom: .25rem; }
.author-name  { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-charcoal); display: block; margin-bottom: .35rem; }
.author-name:hover { color: var(--blue); }
.author-bio   { font-size: .875rem; color: var(--text-2); line-height: 1.65; }

/* Post navigation */
.post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.5rem 0; }
.post-navigation .nav-previous, .post-navigation .nav-next { padding: 1.25rem; border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s; }
.post-navigation .nav-next { text-align: right; }
.post-navigation a { display: block; color: var(--text-1); }
.post-navigation a:hover .nav-direction { color: var(--blue); }
.nav-direction { font-size: .75rem; font-family: var(--font-mono); color: var(--text-3); display: block; margin-bottom: .25rem; letter-spacing: .04em; }
.nav-title     { font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--text-charcoal); line-height: 1.3; }

/* Pagination */
.pagination    { display: flex; justify-content: center; margin: 3rem 0 0; }
.pagination ul { display: flex; align-items: center; gap: .4rem; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius); font-size: .875rem; font-family: var(--font-display); font-weight: 600; border: 1px solid var(--border); transition: all .2s; color: var(--text-2); }
.pagination a:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }
.pagination .current { background: var(--gradient); color: #fff; border-color: transparent; }
.pagination .prev, .pagination .next { width: auto; padding: 0 1rem; font-size: .8rem; }

/* No results */
.no-results { padding: 3rem 0; }
.no-results h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: .75rem; }
.no-results p  { color: var(--text-2); margin-bottom: 1.5rem; }

/* Related posts */
.related-posts-section { padding: 4rem 0 5rem; background: var(--bg-off); border-top: 1px solid var(--border); }
.section-header--small { margin-bottom: 2rem; }
.related-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text-charcoal); margin-top: .5rem; }

/* ── SIDEBAR ────────────────────────────────────────────── */
.blog-sidebar .widget { margin-bottom: 2rem; padding: 1.5rem; background: var(--bg-off); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.blog-sidebar .widget-title { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--text-charcoal); margin-bottom: 1.1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }

/* Search widget */
.widget-search .search-form { display: flex; gap: .5rem; }
.widget-search .search-field { flex: 1; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: .65rem .9rem; font-family: var(--font-body); font-size: .875rem; color: var(--text-1); outline: none; transition: border-color .2s; }
.widget-search .search-field:focus { border-color: var(--blue); }
.widget-search .search-submit { background: var(--gradient); color: #fff; border: none; border-radius: var(--radius); padding: .65rem 1rem; font-family: var(--font-display); font-size: .8rem; font-weight: 700; cursor: pointer; white-space: nowrap; }

/* Recent posts */
.recent-posts-list { display: flex; flex-direction: column; gap: 1rem; }
.recent-post-item  { display: flex; gap: .75rem; align-items: flex-start; }
.recent-post-thumb { width: 60px; height: 45px; flex-shrink: 0; border-radius: 6px; overflow: hidden; }
.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-title { font-size: .855rem; font-weight: 600; color: var(--text-charcoal); line-height: 1.35; display: block; margin-bottom: .3rem; }
.recent-post-title:hover { color: var(--blue); }
.recent-post-date  { font-family: var(--font-mono); font-size: .7rem; color: var(--text-3); }

/* Categories */
.category-list { display: flex; flex-direction: column; gap: .5rem; }
.category-list a { font-size: .875rem; color: var(--text-2); display: flex; justify-content: space-between; transition: color .2s; }
.category-list a:hover { color: var(--blue); }
.cat-count { font-family: var(--font-mono); font-size: .75rem; color: var(--text-3); }

/* Tags */
.tag-cloud { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag-link   { font-size: .73rem !important; color: var(--blue) !important; background: var(--blue-dim) !important; border: 1px solid rgba(58,111,206,.2) !important; padding: .22rem .6rem !important; border-radius: 4px !important; font-family: var(--font-mono) !important; transition: background .2s !important; -webkit-text-fill-color: unset !important; }
.tag-link:hover { background: var(--blue) !important; color: #fff !important; }

/* Widget CTA */
.widget-cta-mini .widget-cta-inner { background: var(--gradient); border-radius: var(--radius); padding: 1.5rem; }
.widget-cta-inner h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.widget-cta-inner p  { font-size: .85rem; color: rgba(255,255,255,.82); margin-bottom: 1.25rem; }
.widget-cta-mini .btn { background: #fff !important; color: var(--blue) !important; font-size: .85rem !important; }

/* ── TAB NAV (blog/news page) ───────────────────────────── */
.tab-nav    { display: flex; gap: .5rem; margin: 2.5rem 0 0; padding-bottom: 0; border-bottom: 1px solid var(--border); }
.tab-link   { display: inline-flex; align-items: center; gap: .5rem; padding: .65rem 1.25rem; font-family: var(--font-display); font-size: .88rem; font-weight: 600; color: var(--text-2); border-radius: var(--radius) var(--radius) 0 0; border: 1px solid transparent; border-bottom: none; position: relative; bottom: -1px; transition: color .2s, background .2s, border-color .2s; }
.tab-link.active   { background: var(--bg-white); border-color: var(--border); color: var(--text-charcoal); }
.tab-link:hover    { color: var(--text-charcoal); }
.tab-count { background: var(--bg-subtle); color: var(--text-3); font-family: var(--font-mono); font-size: .7rem; padding: .1rem .45rem; border-radius: 3px; }
.tab-link.active .tab-count { background: var(--blue-dim); color: var(--blue); }

/* ── ALERTS / SHORTCODE ─────────────────────────────────── */
.omaticon-alert { display: flex; gap: 1rem; padding: 1rem 1.25rem; border-radius: var(--radius); margin: 1.5rem 0; border: 1px solid; }
.omaticon-alert--info    { background: var(--blue-dim); border-color: rgba(58,111,206,.3); color: #1e3a7b; }
.omaticon-alert--warning { background: rgba(240,165,0,.08); border-color: rgba(240,165,0,.35); color: #7a4f00; }
.omaticon-alert--success { background: rgba(40,201,64,.08); border-color: rgba(40,201,64,.35); color: #166534; }
.alert-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.alert-body { font-size: .9rem; line-height: 1.6; }
.alert-body strong { display: block; margin-bottom: .3rem; }

/* Stat bar shortcode */
.stat-bar { display: flex; align-items: center; gap: 3rem; padding: 2rem; background: var(--bg-off); border: 1px solid var(--border); border-radius: var(--radius-lg); flex-wrap: wrap; justify-content: center; margin: 2rem 0; }

/* ── COMMENTS ───────────────────────────────────────────── */
.comments-area    { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.comments-title   { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 2rem; }
.comment-list     { list-style: none; }
.comment-list .comment, .comment-list .pingback { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.comment-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem; }
.comment-author b { font-family: var(--font-display); font-size: .95rem; font-weight: 700; }
.comment-metadata a { font-family: var(--font-mono); font-size: .75rem; color: var(--text-3); }
.comment-content p { font-size: .9rem; color: var(--text-2); line-height: 1.7; }
.reply a { font-size: .78rem; font-family: var(--font-mono); background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.comment-respond .comment-reply-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 1.5rem; }
.comment-form p   { margin-bottom: 1rem; }
.comment-form label { font-size: .8rem; font-weight: 600; color: var(--text-1); display: block; margin-bottom: .4rem; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { background: var(--bg-off); border: 1px solid var(--border); border-radius: var(--radius); padding: .7rem 1rem; font-family: var(--font-body); font-size: .9rem; color: var(--text-1); width: 100%; outline: none; transition: border-color .2s; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58,111,206,.1); }
.comment-form .submit { background: var(--gradient); color: #fff; border: none; padding: .75rem 1.75rem; border-radius: var(--radius); font-family: var(--font-display); font-size: .9rem; font-weight: 700; cursor: pointer; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,.05); padding-top: 4rem; }
.footer-top  { display: grid; grid-template-columns: 260px 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo-link { display: inline-flex; }
.footer-logo-img  { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: .88; }
.footer-tagline   { color: var(--text-light-3); font-size: .83rem; font-style: italic; margin-top: .85rem; }
.footer-nav  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h5 { font-family: var(--font-display); font-size: .76rem; font-weight: 700; letter-spacing: .08em; color: var(--text-light-1); margin-bottom: 1rem; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a  { font-size: .87rem; color: var(--text-light-3); transition: color .2s; }
.footer-col a:hover { color: var(--grad-end); }
.footer-col a .mono { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: .8rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; }
.footer-copy   { font-size: .76rem; color: var(--text-light-3); }
.footer-legal  { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .79rem; color: var(--text-light-3); transition: color .2s; }
.footer-legal a:hover { color: var(--text-light-2); }

/* ── SEARCH FORM ────────────────────────────────────────── */
.search-form { display: flex; gap: .5rem; }
.search-field { flex: 1; padding: .7rem 1rem; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: .9rem; color: var(--text-1); outline: none; transition: border-color .2s; }
.search-field:focus   { border-color: var(--blue); }
.search-submit { background: var(--gradient); color: #fff; border: none; border-radius: var(--radius); padding: .7rem 1.25rem; font-family: var(--font-display); font-weight: 700; font-size: .875rem; cursor: pointer; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse   { 0%, 100% { box-shadow: 0 0 0 0 rgba(58,111,206,.4); } 50% { box-shadow: 0 0 0 6px transparent; } }
@keyframes blink   { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .featured-card { grid-column: span 1; }
  .values-grid, .platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .blog-layout, .post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { order: -1; }
  .why-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; text-align: center; }
  .hero-content { order: 1; } .hero-visual { order: 2; }
  .hero-sub, .hero-actions, .hero-stats, .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats, .hero-eyebrow { justify-content: center; }
  .blog-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,.97); flex-direction: column; align-items: stretch;
    padding: 1rem; border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px); box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: .75rem 1rem; }
  .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; background: var(--bg-off); margin-top: .4rem; border-radius: var(--radius); box-shadow: none; display: none; }
  .dropdown-menu::before { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .services-grid  { grid-template-columns: 1fr; }
  .software-grid  { grid-template-columns: 1fr; }
  .software-card  { flex-direction: column; }
  .why-right      { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .cta-inner      { flex-direction: column; text-align: center; }
  .cta-inner .cta-actions { justify-content: center; }
  .post-navigation { grid-template-columns: 1fr; }
  .values-grid, .platform-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .container    { padding: 0 1.25rem; }
  .section      { padding: 70px 0; }
  .contact-form { padding: 1.5rem; }
  .footer-nav   { grid-template-columns: 1fr 1fr; }
  .blog-grid--2, .blog-grid--3 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-stats   { gap: 1.5rem; }
  .tab-nav      { overflow-x: auto; white-space: nowrap; }
}

/* ═══════════════════════════════════════════════════════
   STATUS WIDGET — Live terminal card states
═══════════════════════════════════════════════════════ */
/* Row state classes */
.t-ok          { color: #c4d0e4; }
.t-warn        { color: #f59e0b; }
.t-err         { color: #ef4444; }
.t-maintenance { color: #a78bfa; }
.t-unknown     { color: #6b7280; }
.t-ok   .t-icon { color: #29b9e8; }
.t-warn .t-icon { color: #f59e0b; }
.t-err  .t-icon { color: #ef4444; }
.t-maintenance .t-icon { color: #a78bfa; }

.t-svc-name  { flex: 1; white-space: pre; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.t-val       { font-weight: 600; margin-left: .5rem; flex-shrink: 0; }
.t-latency   { font-size: .75em; color: rgba(255,255,255,.35); margin-left: .4rem; }
.t-uptime    { font-size: .75em; color: rgba(255,255,255,.35); margin-left: .4rem; }
.t-cached    { font-size: .7em; color: #f59e0b; margin-left: .5rem; }
.t-fresh     { font-size: .7em; color: #28c940; margin-left: .5rem; }
.t-timestamp { font-size: .75em; color: rgba(255,255,255,.22); margin-top: .2rem; gap: .4rem; }
.t-ts-label  { color: rgba(255,255,255,.25); }
.t-ts        { color: rgba(255,255,255,.4); }
.t-err-msg   { font-size: .85em; color: #ef4444; flex: 1; }

/* Row entry animation */
.t-row { opacity: 0; }

/* Overall status line variants */
.t-overall--operational   .t-overall-text { color: #29b9e8; }
.t-overall--degraded      .t-overall-text { color: #f59e0b; }
.t-overall--partial_outage .t-overall-text { color: #f59e0b; }
.t-overall--major_outage  .t-overall-text { color: #ef4444; }
.t-overall--maintenance   .t-overall-text { color: #a78bfa; }
.t-overall-text { flex: 1; }

/* Copy-code button */
.copy-code-btn {
  position: absolute; top: .6rem; right: .6rem;
  background: rgba(58,111,206,.2); border: 1px solid rgba(58,111,206,.3);
  color: #29b9e8; font-size: .72rem; padding: .25rem .6rem;
  border-radius: 4px; cursor: pointer; transition: background .2s;
  font-family: var(--font-mono);
}
.copy-code-btn:hover { background: rgba(58,111,206,.4); }

/* ═══════════════════════════════════════════════════════
   SVG ILLUSTRATIONS
═══════════════════════════════════════════════════════ */
.card-illustration {
  width: 100%;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}
.card-illustration svg,
.product-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
/* Software card horizontal layout — illustration on right */
.software-card .card-illustration {
  width: 180px;
  flex-shrink: 0;
  margin-bottom: 0;
  align-self: center;
}
@media (max-width: 768px) {
  .software-card .card-illustration { width: 100%; }
}

/* About diagram */
.about-diagram-wrap {
  margin: 3rem 0 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.about-diagram-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero visual illustration (replaces/augments terminal on software pages) */
.product-hero-illustration {
  width: 100%;
  max-width: 520px;
  margin: 2rem auto 0;
}
.product-hero-illustration svg { width: 100%; height: auto; border-radius: var(--radius-lg); }

/* Service card illustration — constrain height so cards stay uniform */
.services-grid .card-illustration { max-height: 160px; }
.services-grid .card-illustration svg { max-height: 160px; object-fit: cover; }

/* Featured card gets taller illustration */
.featured-card .card-illustration { max-height: 180px; }
.featured-card .card-illustration svg { max-height: 180px; }

/* Software grid illustration sizing */
.software-grid .card-illustration { max-height: 140px; }
.software-grid .card-illustration svg { max-height: 140px; }

/* Page hero illustration on product pages */
.page-hero .product-svg,
.page-hero .product-hero-illustration { max-width: 480px; margin: 2rem auto 0; }

/* ═══════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
═══════════════════════════════════════════════════════ */
.product-hero { padding-bottom: 3.5rem; }
.product-hero-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 1.5rem;
}
.product-hero-tag {
  display: inline-block; font-size: .8rem; margin-bottom: .75rem;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  border: 1px solid rgba(58,111,206,.25); background-color: var(--blue-dim);
  padding: .2rem .65rem; border-radius: 4px;
}
.product-hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.product-hero-illustration { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.product-hero-illustration svg, .product-hero-illustration img { width: 100%; height: auto; display: block; }

.product-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; padding: 4rem 0 5rem; }
.product-content-wrap { min-width: 0; }

.product-features-box {
  background: var(--bg-off); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2.5rem;
}
.product-features-box h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text-charcoal); margin-bottom: 1.25rem; }
.product-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.product-feature-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--text-2); line-height: 1.5; }
.feature-check { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; flex-shrink: 0; font-weight: 700; }

/* Product sidebar */
.product-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.product-info-card, .product-status-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.product-info-card h3, .product-status-card h3 {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  color: var(--text-charcoal); margin-bottom: 1rem;
  padding-bottom: .6rem; border-bottom: 1px solid var(--border);
}
.product-facts { display: grid; grid-template-columns: 1fr 1.5fr; gap: .4rem .75rem; margin-bottom: 1.25rem; font-size: .85rem; }
.product-facts dt { color: var(--text-3); font-family: var(--font-mono); font-size: .75rem; letter-spacing: .04em; align-self: center; }
.product-facts dd { color: var(--text-1); font-weight: 500; }
.product-cta-stack { display: flex; flex-direction: column; gap: .75rem; }

/* Inline status indicator */
.product-status-indicator { display: flex; align-items: center; gap: .65rem; margin-bottom: .75rem; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.status-dot--loading { background: var(--text-3); animation: pulse 1.5s infinite; }
.status-dot--operational { background: #28c940; box-shadow: 0 0 6px rgba(40,201,64,.5); }
.status-dot--degraded, .status-dot--partial { background: #f59e0b; }
.status-dot--outage { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,.5); }
.status-dot--maintenance { background: #a78bfa; }
.status-dot--unknown { background: var(--text-3); }
.status-text { font-family: var(--font-mono); font-size: .82rem; font-weight: 600; }
.status-page-link { font-family: var(--font-mono); font-size: .75rem; color: var(--text-3); transition: color .2s; }
.status-page-link:hover { color: var(--blue); }

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { order: -1; flex-direction: row; flex-wrap: wrap; }
  .product-info-card, .product-status-card { flex: 1; min-width: 240px; }
  .product-hero-layout { grid-template-columns: 1fr; }
  .product-features-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   PRESS RELEASE / NEWS
═══════════════════════════════════════════════════════ */
.press-release-body { font-size: 1.05rem; }
.press-source-box {
  padding: 1.25rem 1.5rem; background: var(--bg-off);
  border: 1px solid var(--border); border-radius: var(--radius);
  margin: 2rem 0; font-size: .9rem; color: var(--text-2);
}
.press-source-box a { color: var(--blue); }
.press-boilerplate {
  padding: 1.5rem; border-top: 1px solid var(--border); margin-top: 2.5rem;
  border-radius: var(--radius-lg); background: var(--bg-off);
}
.press-boilerplate h4 { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--text-charcoal); margin-bottom: .6rem; }
.press-boilerplate p { font-size: .875rem; color: var(--text-2); line-height: 1.7; margin-bottom: .5rem; }
.press-contact a { color: var(--blue); }
.incident-list { display: flex; flex-direction: column; gap: 0; }
.incident-item { display: flex; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.incident-date { font-family: var(--font-mono); font-size: .78rem; color: var(--text-3); white-space: nowrap; padding-top: .15rem; min-width: 100px; }
.incident-title { font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--text-charcoal); display: block; margin-bottom: .3rem; }
.incident-title:hover { color: var(--blue); }
.incident-excerpt { font-size: .875rem; color: var(--text-2); }

/* ═══════════════════════════════════════════════════════
   SYSTEM STATUS PAGE
═══════════════════════════════════════════════════════ */
.status-hero {
  padding: 120px 2rem 3rem; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg-off);
  transition: background .4s;
}
.status-hero--major-outage  { background: #fff5f5; }
.status-hero--degraded, .status-hero--partial-outage { background: #fffbeb; }
.status-hero--maintenance   { background: #f5f3ff; }
.status-hero--operational   { background: var(--bg-off); }

.status-overall-banner {
  display: flex; align-items: center; gap: 1.5rem;
  max-width: 900px;
}
.status-overall-icon {
  font-size: 3.5rem; line-height: 1; flex-shrink: 0;
  font-family: monospace;
}
.status-overall-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--text-charcoal); margin-bottom: .35rem;
}
.status-overall-meta { font-size: .78rem; color: var(--text-3); }
.status-refresh-btn { margin-left: auto; flex-shrink: 0; }
.refresh-icon { display: inline-block; transition: transform .6s ease; font-size: 1.1rem; }

.status-section-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--text-charcoal); margin: 2.5rem 0 1.25rem;
  padding-bottom: .6rem; border-bottom: 1px solid var(--border);
}
.status-table-section, .status-history-section { padding-bottom: 1rem; }

.status-table-wrap { overflow-x: auto; }
.status-table {
  width: 100%; border-collapse: collapse; font-size: .9rem;
}
.status-table th {
  text-align: left; padding: .75rem 1rem; font-family: var(--font-display);
  font-size: .78rem; font-weight: 700; color: var(--text-3); letter-spacing: .04em;
  border-bottom: 2px solid var(--border); text-transform: uppercase;
}
.status-table td { padding: 1rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.status-table tr:last-child td { border-bottom: none; }
.status-table tr:hover td { background: var(--bg-off); }

.status-service-name { display: flex; align-items: center; gap: .65rem; }
.status-service-icon { font-size: 1.1rem; flex-shrink: 0; }
.status-service-slug { font-family: var(--font-mono); font-size: .72rem; color: var(--text-3); display: block; }

.status-badge { font-family: var(--font-mono); font-size: .78rem; font-weight: 700; letter-spacing: .06em; }
.status-badge--operational   { color: #28c940; }
.status-badge--degraded, .status-badge--partial-outage { color: #f59e0b; }
.status-badge--major-outage  { color: #ef4444; }
.status-badge--maintenance   { color: #a78bfa; }
.status-badge--unknown       { color: var(--text-3); }

.status-row--operational td   { }
.status-row--major-outage td  { background: rgba(239,68,68,.03); }
.status-row--degraded td      { background: rgba(245,158,11,.03); }
.status-row--maintenance td   { background: rgba(167,139,250,.03); }

/* Uptime bar */
.status-uptime { min-width: 120px; }
.uptime-bar-wrap { background: var(--bg-subtle); border-radius: 3px; height: 5px; overflow: hidden; margin-bottom: .35rem; }
.uptime-bar { height: 100%; background: linear-gradient(90deg, #28c940, #29b9e8); border-radius: 3px; transition: width .4s ease; }
.uptime-pct { font-family: var(--font-mono); font-size: .78rem; color: var(--text-2); }

.status-latency { font-size: .85rem; color: var(--text-2); }
.status-updated { font-size: .78rem; color: var(--text-3); }

.hide-mobile { }
@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .status-overall-banner { flex-wrap: wrap; }
  .status-refresh-btn { margin-left: 0; }
}

.status-all-clear {
  display: flex; align-items: center; gap: 1rem; padding: 1.5rem;
  background: rgba(40,201,64,.06); border: 1px solid rgba(40,201,64,.25);
  border-radius: var(--radius-lg); color: #166534; font-size: .95rem;
}
.status-all-clear span { font-size: 1.5rem; color: #28c940; }

.status-subscribe-banner {
  text-align: center; padding: 2rem 0 3rem; color: var(--text-2); font-size: .9rem;
}
.status-subscribe-banner a { color: var(--blue); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE — values + diagram
═══════════════════════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }
