/* ==========================================================================
   TruZillah Premium — Global Styles v2.0.0
   Royal blue × electric blue design system.

   Every var(--wp--preset--*) carries a hardcoded --tzn-* fallback so colors
   resolve even when WP's inline preset <style> is missing from a cached
   page (Cloudflare, Rocket Loader, cold loads).
   ========================================================================== */

:root {
  /* Palette — mirrors theme.json exactly */
  --tzn-bg:            #05070f;
  --tzn-surface:       #0b101f;
  --tzn-surface2:      #111a33;
  --tzn-royal:         #3b5bff;
  --tzn-royal-deep:    #2038c7;
  --tzn-electric:      #00d4ff;
  --tzn-electric-pale: #7ee7ff;
  --tzn-text:          #eef2ff;
  --tzn-muted:         #8b93b8;
  --tzn-green:         #34d399;

  /* Signature gradient */
  --tzn-grad:      linear-gradient(135deg, var(--tzn-royal) 0%, var(--tzn-electric) 100%);
  --tzn-grad-soft: linear-gradient(135deg, rgba(59,91,255,0.16) 0%, rgba(0,212,255,0.10) 100%);
  --tzn-grad-text: linear-gradient(100deg, var(--tzn-royal) 0%, var(--tzn-electric) 60%, var(--tzn-electric-pale) 100%);

  /* Transitions */
  --tzn-t-fast: 150ms ease;
  --tzn-t-base: 250ms ease;
  --tzn-t-slow: 400ms ease;

  /* Radii */
  --tzn-r-sm:   8px;
  --tzn-r-md:   14px;
  --tzn-r-lg:   18px;
  --tzn-r-xl:   24px;
  --tzn-r-pill: 999px;

  /* Shadows & glows */
  --tzn-shadow-card:     0 4px 24px rgba(0,0,0,0.45);
  --tzn-shadow-hover:    0 12px 40px rgba(0,0,0,0.55);
  --tzn-glow-royal:      0 0 24px rgba(59,91,255,0.35);
  --tzn-glow-electric:   0 0 24px rgba(0,212,255,0.30);
  --tzn-glow-btn:        0 4px 18px rgba(59,91,255,0.45), 0 0 32px rgba(0,212,255,0.18);
  --tzn-glow-btn-hover:  0 6px 24px rgba(59,91,255,0.55), 0 0 44px rgba(0,212,255,0.30);

  /* Borders */
  --tzn-border:       rgba(139,147,184,0.14);
  --tzn-border-hover: rgba(126,231,255,0.35);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--wp--preset--color--bg, var(--tzn-bg));
  color:      var(--wp--preset--color--text, var(--tzn-text));
  font-family: var(--wp--preset--font-family--dm-sans, 'DM Sans', -apple-system, sans-serif);
  font-size:   var(--wp--preset--font-size--base, 1rem);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--wp--preset--font-family--space-grotesk, 'Space Grotesk', sans-serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--wp--preset--color--text, var(--tzn-text));
}
h4, h5, h6 {
  font-family: var(--wp--preset--font-family--dm-sans, 'DM Sans', sans-serif);
  font-weight: 600;
  letter-spacing: 0;
}

p { margin-bottom: 0; line-height: 1.75; }

a {
  color: var(--wp--preset--color--text, var(--tzn-text));
  text-decoration: none;
  transition: color var(--tzn-t-fast);
}
a:hover { color: var(--wp--preset--color--electric, var(--tzn-electric)); }

img { max-width: 100%; height: auto; display: block; }

code, pre {
  font-family: var(--wp--preset--font-family--dm-mono, 'DM Mono', 'Courier New', monospace);
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  border-radius: var(--tzn-r-sm);
}
code { padding: 0.15em 0.45em; font-size: 0.9em; }
pre  { padding: 1.5rem; overflow-x: auto; border: 1px solid var(--tzn-border); }

blockquote {
  border-left: 2px solid var(--wp--preset--color--electric, var(--tzn-electric));
  padding-left: 1.5rem;
  font-family: var(--wp--preset--font-family--space-grotesk, 'Space Grotesk', sans-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* ── GRADIENT TEXT — the signature "pop" ── */
.tzn-grad-text,
h1 em, h2 em {
  font-style: normal;
  background: var(--tzn-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── SITE CANVAS — sticky footer ── */
html, body { height: 100%; }

.wp-site-blocks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--wp--preset--color--bg, var(--tzn-bg));
}
.wp-site-blocks > main,
.wp-site-blocks > .wp-block-group[role="main"] { flex: 1 0 auto; }
.wp-site-blocks > footer { flex-shrink: 0; margin-top: auto; }

/* ── HEADER ──
   The glass blur lives on a ::before pseudo-element, NOT the header
   itself: backdrop-filter on an ancestor makes it the containing block
   for position:fixed descendants, which traps WP's mobile menu overlay
   inside the 68px header bar (menu appears "behind the page"). */
.tzn-header-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--tzn-border);
  transition: border-color var(--tzn-t-base);
}
.tzn-header-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5,7,15,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background var(--tzn-t-base);
}
.tzn-header-shell.scrolled { border-bottom-color: rgba(59,91,255,0.25); }
.tzn-header-shell.scrolled::before { background: rgba(5,7,15,0.97); }

.tzn-header-inner {
  max-width: var(--wp--style--global--wide-size, 1280px);
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.tzn-header-shell .wp-block-site-title a,
.tzn-header-shell .wp-block-site-title {
  font-family: var(--wp--preset--font-family--space-grotesk, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--text, var(--tzn-text)) !important;
  text-decoration: none !important;
}

/* Nav links */
.tzn-header-shell .wp-block-navigation .wp-block-navigation-item__content {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--wp--preset--color--muted, var(--tzn-muted));
  padding: 0.3rem 0;
  transition: color var(--tzn-t-fast);
}
.tzn-header-shell .wp-block-navigation .wp-block-navigation-item__content:hover,
.tzn-header-shell .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content {
  color: var(--wp--preset--color--text, var(--tzn-text));
}

/* Nav CTA — descendant selector on purpose: WP wraps the <a> differently
   across versions, and a > child combinator breaks on some markup. */
.tzn-nav-cta .wp-block-navigation-item__content,
.wp-block-navigation .wp-block-navigation-item.is-style-button .wp-block-navigation-item__content {
  background: var(--tzn-grad) !important;
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: var(--tzn-r-pill) !important;
  font-weight: 600 !important;
  box-shadow: var(--tzn-glow-btn);
  transition: box-shadow var(--tzn-t-fast), transform var(--tzn-t-fast) !important;
}
.tzn-nav-cta .wp-block-navigation-item__content:hover,
.wp-block-navigation .wp-block-navigation-item.is-style-button .wp-block-navigation-item__content:hover {
  box-shadow: var(--tzn-glow-btn-hover);
  transform: translateY(-1px);
  color: #fff !important;
}

/* ── MOBILE NAV OVERLAY — full-screen takeover ──
   position/inset/z-index are forced so the overlay escapes the sticky
   header no matter what; everything is scoped to .is-menu-open so the
   desktop inline nav is completely untouched. */
.wp-block-navigation__responsive-container.is-menu-open {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  background:
    radial-gradient(ellipse 70% 45% at 15% 8%, rgba(59,91,255,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 90% 92%, rgba(0,212,255,0.14) 0%, transparent 60%),
    var(--wp--preset--color--bg, var(--tzn-bg)) !important;
  overflow-y: auto;
  padding: 0 !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  padding: 5.5rem 2rem 2.5rem !important;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  counter-reset: tzn-nav;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
  counter-increment: tzn-nav;
  border-bottom: 1px solid var(--tzn-border);
  animation: tzn-menu-in 0.4s ease both;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:nth-child(1) { animation-delay: 0.05s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:nth-child(2) { animation-delay: 0.10s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:nth-child(3) { animation-delay: 0.15s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:nth-child(4) { animation-delay: 0.20s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:nth-child(5) { animation-delay: 0.25s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:nth-child(6) { animation-delay: 0.30s; }
@keyframes tzn-menu-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  display: flex !important;
  align-items: baseline;
  gap: 1rem;
  font-size: 1.9rem !important;
  font-weight: 700 !important;
  font-family: var(--wp--preset--font-family--space-grotesk, 'Space Grotesk', sans-serif) !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
  padding: 1.1rem 0 !important;
  color: var(--wp--preset--color--text, var(--tzn-text)) !important;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::before {
  content: counter(tzn-nav, decimal-leading-zero);
  font-family: var(--wp--preset--font-family--dm-mono, 'DM Mono', monospace);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--wp--preset--color--electric, var(--tzn-electric));
  flex-shrink: 0;
}

/* CTA item keeps its gradient pill look inside the overlay */
.wp-block-navigation__responsive-container.is-menu-open .tzn-nav-cta {
  border-bottom: none;
  margin-top: 1.75rem;
}
.wp-block-navigation__responsive-container.is-menu-open .tzn-nav-cta .wp-block-navigation-item__content {
  font-size: 1.05rem !important;
  font-family: var(--wp--preset--font-family--dm-sans, 'DM Sans', sans-serif) !important;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1.5rem !important;
}
.wp-block-navigation__responsive-container.is-menu-open .tzn-nav-cta .wp-block-navigation-item__content::before { content: none; }

/* Hamburger + close buttons */
.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
  color: var(--wp--preset--color--text, var(--tzn-text)) !important;
}
.wp-block-navigation__responsive-container-open svg,
.wp-block-navigation__responsive-container-close svg { width: 26px; height: 26px; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
  position: absolute;
  top: 1rem;
  right: 1.35rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tzn-border);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  transition: border-color var(--tzn-t-fast), box-shadow var(--tzn-t-fast);
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:hover {
  border-color: var(--wp--preset--color--electric, var(--tzn-electric));
  box-shadow: var(--tzn-glow-electric);
}

/* ── SECTION EYEBROW TAG ── */
.tzn-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wp--preset--color--electric, var(--tzn-electric));
  margin-bottom: 0.75rem;
  font-family: var(--wp--preset--font-family--dm-mono, 'DM Mono', monospace);
}
.tzn-section-tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tzn-grad);
  border-radius: 2px;
  flex-shrink: 0;
}
.tzn-section-tag--royal { color: var(--wp--preset--color--royal, var(--tzn-royal)); }
.tzn-section-tag--green { color: var(--wp--preset--color--green, var(--tzn-green)); }

/* ── BUTTONS ── */
.tzn-btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--tzn-r-pill);
  font-family: var(--wp--preset--font-family--dm-sans, 'DM Sans', sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--tzn-t-fast), transform var(--tzn-t-fast), background var(--tzn-t-fast), border-color var(--tzn-t-fast);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.01em;
}
.tzn-btn:hover,
.wp-block-button__link:hover { transform: translateY(-2px); }

/* Primary — gradient + glow */
.tzn-btn-primary,
.wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--tzn-grad);
  color: #fff !important;
  box-shadow: var(--tzn-glow-btn);
}
.tzn-btn-primary:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover,
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  box-shadow: var(--tzn-glow-btn-hover);
  color: #fff !important;
}

/* Outline */
.tzn-btn-outline,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--wp--preset--color--text, var(--tzn-text)) !important;
  border: 1px solid rgba(139,147,184,0.35) !important;
  box-shadow: none;
}
.tzn-btn-outline:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--wp--preset--color--electric, var(--tzn-electric)) !important;
  background: rgba(0,212,255,0.06);
  box-shadow: var(--tzn-glow-electric);
}

.tzn-btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

/* ── HERO — full-bleed aurora ──
   .tzn-hero-section must sit in layout:default (not constrained) so the
   pseudo-element backgrounds span the full viewport instead of clipping
   to content width. */
.tzn-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Aurora glow — royal from the left, electric from the right */
.tzn-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 12% 45%, rgba(59,91,255,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 88% 30%, rgba(0,212,255,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 70% 40% at 50% 105%, rgba(32,56,199,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: tzn-aurora 14s ease-in-out infinite alternate;
}
@keyframes tzn-aurora {
  0%   { opacity: 0.85; transform: translateY(0) scale(1); }
  100% { opacity: 1;    transform: translateY(-2%) scale(1.04); }
}

/* Grid overlay */
.tzn-hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126,231,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,231,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.tzn-hero-section > * { position: relative; z-index: 1; }

.tzn-hero-content-wrap {
  max-width: var(--wp--style--global--wide-size, 1280px);
  margin: 0 auto;
  width: 100%;
}

/* ── MARQUEE STRIP — kinetic divider ── */
.tzn-marquee {
  overflow: hidden;
  border-top: 1px solid var(--tzn-border);
  border-bottom: 1px solid var(--tzn-border);
  padding: 0.9rem 0;
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  white-space: nowrap;
  position: relative;
}
.tzn-marquee-inner {
  display: inline-block;
  animation: tzn-marquee 28s linear infinite;
  font-family: var(--wp--preset--font-family--space-grotesk, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wp--preset--color--muted, var(--tzn-muted));
}
.tzn-marquee-inner em {
  font-style: normal;
  background: var(--tzn-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes tzn-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STAT CARDS ── */
.tzn-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.tzn-stat-card {
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-md);
  padding: 1.4rem 1.2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--tzn-t-base), box-shadow var(--tzn-t-base), transform var(--tzn-t-base);
}
.tzn-stat-card:hover {
  border-color: var(--tzn-border-hover);
  transform: translateY(-3px);
  box-shadow: var(--tzn-glow-electric);
}
.tzn-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tzn-grad);
}

.tzn-stat-val {
  font-family: var(--wp--preset--font-family--space-grotesk, 'Space Grotesk', sans-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
  background: var(--tzn-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tzn-stat-label {
  font-size: 0.72rem;
  color: var(--wp--preset--color--muted, var(--tzn-muted));
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── WAVEFORM (decorative hero version — the player has its own live one) ── */
.tzn-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 72px;
  overflow: hidden;
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-md);
  padding: 0.85rem 1rem;
  margin-top: 1rem;
}
.tzn-waveform-bar {
  flex: 1;
  background: var(--wp--preset--color--royal, var(--tzn-royal));
  opacity: 0.65;
  border-radius: 2px;
  animation: tzn-wave 1.2s ease-in-out infinite;
  transform-origin: bottom;
  min-width: 3px;
}
.tzn-waveform-bar:nth-child(even) {
  background: var(--wp--preset--color--electric, var(--tzn-electric));
  opacity: 0.55;
}
@keyframes tzn-wave {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}

/* ── SERVICES ── */
.tzn-service-card {
  background: var(--wp--preset--color--bg, var(--tzn-bg));
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-md);
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: border-color var(--tzn-t-base), transform var(--tzn-t-base), box-shadow var(--tzn-t-base);
}
.tzn-service-card:hover {
  border-color: rgba(59,91,255,0.5);
  transform: translateY(-4px);
  box-shadow: var(--tzn-glow-royal);
}
.tzn-service-icon {
  width: 44px;
  height: 44px;
  background: var(--tzn-grad-soft);
  border: 1px solid rgba(59,91,255,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--wp--preset--color--electric, var(--tzn-electric));
  flex-shrink: 0;
}
.tzn-service-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--wp--preset--color--text, var(--tzn-text));
}
.tzn-service-desc {
  font-size: 0.88rem;
  color: var(--wp--preset--color--muted, var(--tzn-muted));
  line-height: 1.65;
}

/* Upwork CTA */
.tzn-upwork-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--wp--preset--color--bg, var(--tzn-bg));
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-md);
  padding: 1.5rem 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-decoration: none;
  transition: border-color var(--tzn-t-base), box-shadow var(--tzn-t-base);
  color: var(--wp--preset--color--text, var(--tzn-text));
}
.tzn-upwork-cta:hover {
  border-color: rgba(0,212,255,0.4);
  box-shadow: var(--tzn-glow-electric);
  color: var(--wp--preset--color--text, var(--tzn-text));
}
.tzn-upwork-info { display: flex; align-items: center; gap: 1.25rem; }
.tzn-upwork-badge {
  width: 48px; height: 48px;
  background: #14a800;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.7rem; color: #fff;
  letter-spacing: 0.05em; flex-shrink: 0; text-align: center; line-height: 1.3;
}
.tzn-upwork-text strong { display: block; font-weight: 600; margin-bottom: 0.2rem; }
.tzn-upwork-text span   { font-size: 0.82rem; color: var(--wp--preset--color--muted, var(--tzn-muted)); }

/* ── ARCANOLABS BANNER ── */
.tzn-arcano-banner {
  background: var(--wp--preset--color--surface-2, var(--tzn-surface2));
  border: 1px solid rgba(59,91,255,0.3);
  border-radius: var(--tzn-r-xl);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.tzn-arcano-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.16) 0%, rgba(59,91,255,0.10) 40%, transparent 70%);
  pointer-events: none;
  animation: tzn-orbit 10s ease-in-out infinite alternate;
}
@keyframes tzn-orbit {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-20px, 16px) scale(1.1); }
}

/* ── POST / BLOG CARDS ── */
.tzn-post-card {
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-md);
  overflow: hidden;
  transition: border-color var(--tzn-t-base), transform var(--tzn-t-base), box-shadow var(--tzn-t-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tzn-post-card:hover {
  border-color: var(--tzn-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--tzn-shadow-hover);
}
.tzn-post-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--wp--preset--color--surface-2, var(--tzn-surface2));
  position: relative;
  margin: 0;
}
.tzn-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--tzn-t-slow); }
.tzn-post-card:hover .tzn-post-thumb img { transform: scale(1.04); }

.tzn-post-body { padding: 1.5rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.tzn-post-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wp--preset--color--electric, var(--tzn-electric));
  margin-bottom: 0.6rem;
}
.tzn-post-cat a { color: inherit; }
.tzn-post-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0.6rem;
  font-family: var(--wp--preset--font-family--dm-sans, 'DM Sans', sans-serif);
  flex: 1;
}
.tzn-post-title a { color: var(--wp--preset--color--text, var(--tzn-text)); }
.tzn-post-title a:hover { color: var(--wp--preset--color--electric-pale, var(--tzn-electric-pale)); }
.tzn-post-excerpt { font-size: 0.85rem; color: var(--wp--preset--color--muted, var(--tzn-muted)); line-height: 1.65; margin-bottom: 1rem; }
.tzn-post-meta    { font-size: 0.75rem; color: var(--wp--preset--color--muted, var(--tzn-muted)); display: flex; align-items: center; gap: 0.5rem; }

/* ── BLOG — magazine view ──────────────────────────────────────────────
   First post renders as a full-width split spotlight; the rest fall into
   a numbered editorial grid that echoes the track-list aesthetic. */
.tzn-blog-header {
  padding: 7.5rem 0 3rem;
  position: relative;
}
.tzn-blog-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100vw; height: 100%;
  background:
    radial-gradient(ellipse 50% 80% at 20% 0%, rgba(59,91,255,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 70% at 85% 10%, rgba(0,212,255,0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.tzn-blog-header > * { position: relative; z-index: 1; }

.tzn-blog-query { counter-reset: tzn-post; }
.tzn-blog-query .wp-block-post-template {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
.tzn-blog-query .wp-block-post-template > li { counter-increment: tzn-post; min-width: 0; }

/* Spotlight — first post spans the full row as a horizontal split card */
.tzn-blog-query .wp-block-post-template > li:first-child { grid-column: 1 / -1; }
.tzn-blog-query .wp-block-post-template > li:first-child .tzn-post-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 360px;
  border-color: rgba(59,91,255,0.35);
  background:
    radial-gradient(ellipse 60% 100% at 100% 0%, rgba(0,212,255,0.07) 0%, transparent 60%),
    var(--wp--preset--color--surface, var(--tzn-surface));
}
.tzn-blog-query .wp-block-post-template > li:first-child .tzn-post-thumb {
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}
.tzn-blog-query .wp-block-post-template > li:first-child .tzn-post-body {
  padding: 2.5rem 2.5rem 2.25rem;
  justify-content: center;
  position: relative;
}
.tzn-blog-query .wp-block-post-template > li:first-child .tzn-post-body::before {
  content: 'Latest Drop';
  display: inline-block;
  align-self: flex-start;
  font-family: var(--wp--preset--font-family--dm-mono, 'DM Mono', monospace);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--tzn-grad);
  border-radius: var(--tzn-r-pill);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--tzn-glow-btn);
}
.tzn-blog-query .wp-block-post-template > li:first-child .tzn-post-title {
  font-family: var(--wp--preset--font-family--space-grotesk, 'Space Grotesk', sans-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  flex: 0 0 auto;
}
.tzn-blog-query .wp-block-post-template > li:first-child .tzn-post-excerpt {
  font-size: 0.95rem;
  -webkit-line-clamp: 3;
}

/* Editorial numbering on the grid cards — 01 / 02 / 03 like the playlist */
.tzn-blog-query .wp-block-post-template > li:not(:first-child) .tzn-post-body::before {
  content: counter(tzn-post, decimal-leading-zero);
  font-family: var(--wp--preset--font-family--dm-mono, 'DM Mono', monospace);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--electric, var(--tzn-electric));
  opacity: 0.85;
  margin-bottom: 0.6rem;
}

/* Clamp excerpts so card heights stay musical */
.tzn-post-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card top accent sweeps in on hover */
.tzn-post-card { position: relative; }
.tzn-post-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--tzn-grad);
  transition: width var(--tzn-t-slow);
}
.tzn-post-card:hover::after { width: 100%; }

.tzn-read-time { white-space: nowrap; }

/* Pagination */
.tzn-blog-query .wp-block-query-pagination {
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--wp--preset--font-family--dm-mono, 'DM Mono', monospace);
  font-size: 0.85rem;
}
.tzn-blog-query .wp-block-query-pagination a,
.tzn-blog-query .wp-block-query-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.75rem;
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-sm);
  color: var(--wp--preset--color--muted, var(--tzn-muted));
  transition: border-color var(--tzn-t-fast), color var(--tzn-t-fast), box-shadow var(--tzn-t-fast);
}
.tzn-blog-query .wp-block-query-pagination a:hover {
  border-color: var(--wp--preset--color--electric, var(--tzn-electric));
  color: var(--wp--preset--color--text, var(--tzn-text));
  box-shadow: var(--tzn-glow-electric);
}
.tzn-blog-query .wp-block-query-pagination .page-numbers.current {
  background: var(--tzn-grad);
  border-color: transparent;
  color: #fff;
}

/* ── SINGLE POST — reading experience ── */
.tzn-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--tzn-grad);
  box-shadow: 0 0 12px rgba(0,212,255,0.55);
  z-index: 300;
  pointer-events: none;
}

.tzn-single-hero {
  padding: 7.5rem 0 2rem;
  position: relative;
}
.tzn-single-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100vw; height: 100%;
  background: radial-gradient(ellipse 55% 90% at 50% 0%, rgba(59,91,255,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.tzn-single-hero > * { position: relative; }

/* Drop cap on the opening paragraph */
.tzn-single-post .tzn-entry-content > p:first-child::first-letter {
  font-family: var(--wp--preset--font-family--space-grotesk, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 3.4em;
  line-height: 0.85;
  float: left;
  padding: 0.08em 0.12em 0 0;
  background: var(--tzn-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tzn-entry-content { font-size: 1.05rem; }
.tzn-entry-content p { color: #c9cfe6; }
.tzn-entry-content h2::before {
  content: '';
  display: block;
  width: 34px; height: 3px;
  border-radius: 2px;
  background: var(--tzn-grad);
  margin-bottom: 0.75rem;
}
.tzn-entry-content a { color: var(--wp--preset--color--electric-pale, var(--tzn-electric-pale)); border-bottom: 1px solid rgba(0,212,255,0.35); }
.tzn-entry-content a:hover { border-bottom-color: var(--wp--preset--color--electric, var(--tzn-electric)); }
.tzn-entry-content img { border-radius: var(--tzn-r-md); }
.tzn-entry-content blockquote {
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  border-left: 3px solid transparent;
  border-image: var(--tzn-grad) 1;
  border-radius: 0 var(--tzn-r-md) var(--tzn-r-md) 0;
  padding: 1.5rem 1.75rem;
}

/* Author card */
.tzn-author-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-lg);
  padding: 1.5rem 1.75rem;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}
.tzn-author-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tzn-grad);
}
.tzn-author-card .wp-block-avatar img { border-radius: 50%; border: 2px solid rgba(0,212,255,0.4); }
.tzn-author-name { font-family: var(--wp--preset--font-family--space-grotesk, 'Space Grotesk', sans-serif); font-weight: 700; font-size: 1.05rem; }
.tzn-author-bio  { font-size: 0.85rem; color: var(--wp--preset--color--muted, var(--tzn-muted)); margin-top: 0.2rem; }

/* Prev / next navigation */
.tzn-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.tzn-post-nav .wp-block-post-navigation-link {
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-md);
  padding: 1.2rem 1.4rem;
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  transition: border-color var(--tzn-t-base), box-shadow var(--tzn-t-base), transform var(--tzn-t-base);
  font-size: 0.92rem;
  font-weight: 600;
  min-width: 0;
}
.tzn-post-nav .wp-block-post-navigation-link:hover {
  border-color: var(--tzn-border-hover);
  box-shadow: var(--tzn-glow-electric);
  transform: translateY(-2px);
}
.tzn-post-nav .post-navigation-link-next { text-align: right; }
.tzn-post-nav .wp-block-post-navigation-link .post-navigation-link__label {
  display: block;
  font-family: var(--wp--preset--font-family--dm-mono, 'DM Mono', monospace);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wp--preset--color--electric, var(--tzn-electric));
  margin-bottom: 0.35rem;
}
.tzn-post-nav .wp-block-post-navigation-link a {
  color: var(--wp--preset--color--text, var(--tzn-text));
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .tzn-blog-query .wp-block-post-template { grid-template-columns: 1fr 1fr; }
  .tzn-blog-query .wp-block-post-template > li:first-child .tzn-post-card { grid-template-columns: 1fr; }
  .tzn-blog-query .wp-block-post-template > li:first-child .tzn-post-thumb { aspect-ratio: 16/9; min-height: 0; }
}
@media (max-width: 600px) {
  .tzn-blog-query .wp-block-post-template { grid-template-columns: 1fr; }
  .tzn-post-nav { grid-template-columns: 1fr; }
}

/* ── GEAR TAGS ── */
.tzn-gear-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.tzn-gear-tag {
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-pill);
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  color: var(--wp--preset--color--muted, var(--tzn-muted));
  font-weight: 500;
  transition: border-color var(--tzn-t-fast), color var(--tzn-t-fast);
}
.tzn-gear-tag:hover { border-color: var(--tzn-border-hover); color: var(--wp--preset--color--text, var(--tzn-text)); }
.tzn-gear-tag--hot {
  background: var(--tzn-grad-soft);
  border-color: rgba(0,212,255,0.3);
  color: var(--wp--preset--color--electric-pale, var(--tzn-electric-pale));
}

/* ── NEWSLETTER ── */
.tzn-newsletter-block { text-align: center; padding: 5rem 2rem; }
.tzn-newsletter-icon {
  width: 52px; height: 52px;
  background: var(--tzn-grad-soft);
  border: 1px solid rgba(59,91,255,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.5rem;
}
.tzn-newsletter-title { margin-bottom: 0.75rem; }
.tzn-newsletter-sub   { color: var(--wp--preset--color--muted, var(--tzn-muted)); margin-bottom: 1.75rem; font-size: 0.97rem; }
.tzn-newsletter-form  { display: flex; gap: 0.75rem; max-width: 440px; margin: 0 auto; }
.tzn-newsletter-input {
  flex: 1;
  background: var(--wp--preset--color--bg, var(--tzn-bg));
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-pill);
  padding: 0.8rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--wp--preset--color--text, var(--tzn-text));
  outline: none;
  transition: border-color var(--tzn-t-fast), box-shadow var(--tzn-t-fast);
  min-width: 0;
}
.tzn-newsletter-input::placeholder { color: var(--wp--preset--color--muted, var(--tzn-muted)); }
.tzn-newsletter-input:focus {
  border-color: var(--wp--preset--color--electric, var(--tzn-electric));
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}
.tzn-newsletter-note { font-size: 0.78rem; color: var(--wp--preset--color--muted, var(--tzn-muted)); margin-top: 0.75rem; }

/* ── CONTACT FORM ── */
.tzn-contact-form-wrap {
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-lg);
  padding: 2.5rem;
}
.tzn-form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wp--preset--color--muted, var(--tzn-muted));
  margin-bottom: 0.5rem;
}
.tzn-form-input, .tzn-form-select, .tzn-form-textarea {
  width: 100%;
  background: var(--wp--preset--color--bg, var(--tzn-bg));
  border: 1px solid var(--tzn-border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--wp--preset--color--text, var(--tzn-text));
  outline: none;
  transition: border-color var(--tzn-t-fast), box-shadow var(--tzn-t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.tzn-form-input::placeholder, .tzn-form-textarea::placeholder { color: var(--wp--preset--color--muted, var(--tzn-muted)); }
.tzn-form-input:focus, .tzn-form-select:focus, .tzn-form-textarea:focus {
  border-color: var(--wp--preset--color--electric, var(--tzn-electric));
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}
.tzn-form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.tzn-form-select   { cursor: pointer; }
.tzn-form-group    { margin-bottom: 1rem; }
.tzn-form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.tzn-form-upwork-note {
  background: rgba(20,168,0,0.08);
  border: 1px solid rgba(20,168,0,0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--wp--preset--color--green, var(--tzn-green));
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tzn-contact-success { display: none; color: var(--tzn-green); font-weight: 600; padding: 0.75rem 0; }
.tzn-contact-error   { display: none; color: #f87171; font-weight: 600; padding: 0.75rem 0; }

/* ── SOCIAL LINKS ── */
.tzn-social-links { display: flex; gap: 0.6rem; }
.tzn-social-btn {
  width: 34px; height: 34px;
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  border: 1px solid var(--tzn-border);
  border-radius: var(--tzn-r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  color: var(--wp--preset--color--muted, var(--tzn-muted));
  cursor: pointer;
  transition: border-color var(--tzn-t-fast), color var(--tzn-t-fast), box-shadow var(--tzn-t-fast);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.tzn-social-btn:hover {
  border-color: var(--wp--preset--color--electric, var(--tzn-electric));
  color: var(--wp--preset--color--electric, var(--tzn-electric));
  box-shadow: var(--tzn-glow-electric);
}

/* ── FOOTER ── */
.tzn-footer {
  border-top: 1px solid var(--tzn-border);
  padding: 3.5rem 2rem 2.5rem;
  background: var(--wp--preset--color--bg, var(--tzn-bg));
  position: relative;
}
.tzn-footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: min(480px, 60vw); height: 1px;
  background: var(--tzn-grad);
  opacity: 0.7;
}
.tzn-footer-inner {
  max-width: var(--wp--style--global--wide-size, 1280px);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.tzn-footer-logo {
  font-family: var(--wp--preset--font-family--space-grotesk, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.tzn-footer-logo em {
  font-style: normal;
  background: var(--tzn-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tzn-footer-tagline { font-size: 0.85rem; color: var(--wp--preset--color--muted, var(--tzn-muted)); line-height: 1.65; margin-bottom: 1.5rem; }
.tzn-footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wp--preset--color--muted, var(--tzn-muted));
  margin-bottom: 1.25rem;
}
.tzn-footer-col ul { list-style: none; }
.tzn-footer-col ul li { margin-bottom: 0.6rem; }
.tzn-footer-col ul li a { font-size: 0.88rem; color: var(--wp--preset--color--muted, var(--tzn-muted)); }
.tzn-footer-col ul li a:hover { color: var(--wp--preset--color--electric-pale, var(--tzn-electric-pale)); }

.tzn-footer-bottom {
  max-width: var(--wp--style--global--wide-size, 1280px);
  margin: 0 auto;
  padding-top: 1.75rem;
  border-top: 1px solid var(--tzn-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.tzn-footer-copy  { font-size: 0.8rem; color: var(--wp--preset--color--muted, var(--tzn-muted)); }
.tzn-footer-legal { display: flex; gap: 1.5rem; }
.tzn-footer-legal a { font-size: 0.8rem; color: var(--wp--preset--color--muted, var(--tzn-muted)); }
.tzn-footer-legal a:hover { color: var(--wp--preset--color--text, var(--tzn-text)); }

/* ── CONTACT LINK ROW ── */
.tzn-contact-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: var(--wp--preset--color--muted, var(--tzn-muted));
  transition: color var(--tzn-t-fast);
  text-decoration: none;
}
.tzn-contact-link:hover { color: var(--wp--preset--color--text, var(--tzn-text)); }
.tzn-contact-link-icon {
  width: 36px; height: 36px;
  background: var(--wp--preset--color--surface, var(--tzn-surface));
  border: 1px solid var(--tzn-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  flex-shrink: 0;
  transition: border-color var(--tzn-t-fast);
}
.tzn-contact-link:hover .tzn-contact-link-icon { border-color: var(--wp--preset--color--electric, var(--tzn-electric)); }

/* ── SCROLL FADE IN ── */
.tzn-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.tzn-fade-up.is-visible { opacity: 1; transform: translateY(0); }
.tzn-fade-up.delay-1 { transition-delay: 0.1s; }
.tzn-fade-up.delay-2 { transition-delay: 0.2s; }
.tzn-fade-up.delay-3 { transition-delay: 0.3s; }

/* ── DIVIDER ── */
.tzn-divider { width: 100%; height: 1px; background: var(--tzn-border); border: none; margin: 0; }
.wp-block-separator.tzn-divider { background-color: var(--tzn-border) !important; opacity: 1; }

/* ── ARCHIVE / SINGLE POST LAYOUT ── */
.tzn-page-title { padding: 7rem 0 1rem; }
.tzn-entry-content > * { margin-bottom: 1.25rem; }
.tzn-entry-content h2, .tzn-entry-content h3 { margin-top: 2.5rem; }

/* ── UTILITY ── */
.tzn-text-electric { color: var(--wp--preset--color--electric, var(--tzn-electric)) !important; }
.tzn-text-royal    { color: var(--wp--preset--color--royal, var(--tzn-royal)) !important; }
.tzn-text-muted    { color: var(--wp--preset--color--muted, var(--tzn-muted)) !important; }
.tzn-bg-surface    { background: var(--wp--preset--color--surface, var(--tzn-surface)) !important; }
.tzn-bg-surface-2  { background: var(--wp--preset--color--surface-2, var(--tzn-surface2)) !important; }
.tzn-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── ACCESSIBILITY ── */
:focus-visible {
  outline: 2px solid var(--wp--preset--color--electric, var(--tzn-electric));
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .tzn-fade-up { opacity: 1; transform: none; }
  .tzn-marquee-inner { animation: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tzn-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tzn-arcano-banner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .tzn-hero-section { padding: 100px 1.25rem 60px; min-height: auto; }
  .tzn-footer-inner { grid-template-columns: 1fr; }
  .tzn-footer-bottom { flex-direction: column; text-align: center; }
  .tzn-footer-legal { justify-content: center; }
  .tzn-newsletter-form { flex-direction: column; }
  .tzn-newsletter-form .tzn-btn { width: 100%; justify-content: center; }
  .tzn-arcano-banner { padding: 2.5rem 1.5rem; }
  .tzn-upwork-cta { flex-direction: column; align-items: flex-start; }
  .tzn-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tzn-stat-grid { grid-template-columns: 1fr; }
}
