/*
Theme Name: Netraya Digital Agency
Theme URI: https://netraya.agency
Author: Netraya Media
Author URI: https://netraya.agency
Description: Premium multipage WordPress theme for digital marketing agencies. Liquid glass UI, cinematic hero video, portfolio CPT, full Customizer control. No page builder or plugin required.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: netraya
Tags: agency, business, portfolio, blog, custom-logo, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready, block-styles, wide-blocks
*/

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand */
  --nt-primary: #1fa2ff;
  --nt-secondary: #e8397f;
  --nt-primary-soft: rgba(31, 162, 255, 0.14);
  --nt-secondary-soft: rgba(232, 57, 127, 0.14);

  /* Surfaces */
  --nt-bg: #05070d;
  --nt-bg-alt: #080b14;
  --nt-surface: rgba(255, 255, 255, 0.03);
  --nt-surface-strong: rgba(255, 255, 255, 0.06);

  /* Text */
  --nt-text: #eef2f8;
  --nt-muted: #98a2b8;
  --nt-dim: #6b7590;

  /* Lines */
  --nt-line: rgba(255, 255, 255, 0.08);
  --nt-line-strong: rgba(255, 255, 255, 0.16);

  /* Gradients */
  --nt-gradient: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-secondary) 100%);
  --nt-gradient-soft: linear-gradient(135deg, rgba(31,162,255,.18), rgba(232,57,127,.14));
  --nt-glow: radial-gradient(60% 60% at 50% 0%, rgba(31,162,255,.25), transparent 70%);

  /* Shadows */
  --nt-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.35);
  --nt-shadow: 0 18px 48px -18px rgba(0, 0, 0, 0.85);
  --nt-shadow-lg: 0 40px 90px -30px rgba(0, 0, 0, 0.95);
  --nt-shadow-brand: 0 18px 44px -16px rgba(31, 162, 255, 0.55);

  /* Typography */
  --nt-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --nt-fs-hero: clamp(2.6rem, 6.2vw, 5rem);
  --nt-fs-h1: clamp(2.2rem, 4.6vw, 3.6rem);
  --nt-fs-h2: clamp(1.8rem, 3.4vw, 2.75rem);
  --nt-fs-h3: clamp(1.25rem, 2vw, 1.6rem);
  --nt-fs-body: 1.0625rem;
  --nt-fs-sm: 0.9375rem;
  --nt-fs-xs: 0.8125rem;

  /* Layout */
  --nt-container: 1200px;
  --nt-container-wide: 1400px;
  --nt-gutter: 24px;
  --nt-section: clamp(72px, 9vw, 130px);
  --nt-radius-sm: 10px;
  --nt-radius: 16px;
  --nt-radius-lg: 24px;
  --nt-radius-pill: 999px;

  /* Motion */
  --nt-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nt-transition: 0.35s var(--nt-ease);

  --nt-nav-h: 76px;
}

/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--nt-font);
  font-size: var(--nt-fs-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--nt-text);
  background-color: var(--nt-bg);
  background-image:
    radial-gradient(900px 480px at 12% -8%, rgba(31, 162, 255, 0.14), transparent 60%),
    radial-gradient(760px 420px at 92% 4%, rgba(232, 57, 127, 0.12), transparent 62%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nt-no-scroll { overflow: hidden; }

img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
figure { margin: 0 0 1.5rem; }

a { color: var(--nt-primary); text-decoration: none; transition: color var(--nt-transition); }
a:hover { color: var(--nt-secondary); }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.6em;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
}
h1 { font-size: var(--nt-fs-h1); }
h2 { font-size: var(--nt-fs-h2); }
h3 { font-size: var(--nt-fs-h3); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; }

p { margin: 0 0 1.25rem; color: var(--nt-muted); }
p:last-child { margin-bottom: 0; }

strong, b { font-weight: 600; color: #fff; }
small { font-size: var(--nt-fs-xs); }

blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--nt-primary);
  background: var(--nt-surface);
  border-radius: 0 var(--nt-radius) var(--nt-radius) 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--nt-text);
}
blockquote p:last-child { margin-bottom: 0; }

code, kbd, pre, samp { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.9em; }
code { padding: 0.15em 0.45em; background: var(--nt-surface-strong); border-radius: 6px; color: #ffd9ec; }
pre {
  overflow: auto; padding: 1.25rem; background: #0a0e18;
  border: 1px solid var(--nt-line); border-radius: var(--nt-radius);
}
pre code { background: none; padding: 0; color: inherit; }

hr { border: 0; height: 1px; background: var(--nt-line); margin: 3rem 0; }

ul, ol { margin: 0 0 1.25rem; padding-left: 1.35rem; color: var(--nt-muted); }
li { margin-bottom: 0.5rem; }

table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: var(--nt-fs-sm); }
th, td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--nt-line); text-align: left; }
th { color: #fff; font-weight: 600; }

/* Eyebrow / section heading helpers */
.nt-eyebrow {
  display: inline-block;
  font-size: var(--nt-fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nt-primary);
  margin-bottom: 0.9rem;
}
.nt-gradient-text {
  background: var(--nt-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nt-lead { font-size: 1.15rem; color: var(--nt-muted); max-width: 62ch; }
.nt-text-center { text-align: center; }
.nt-mx-auto { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   4. LAYOUT SYSTEM
   ========================================================================== */
.nt-container {
  width: 100%;
  max-width: var(--nt-container);
  margin-inline: auto;
  padding-inline: var(--nt-gutter);
}
.nt-container--wide { max-width: var(--nt-container-wide); }
.nt-container--narrow { max-width: 820px; }

.nt-section { padding-block: var(--nt-section); position: relative; }
.nt-section--tight { padding-block: clamp(48px, 6vw, 80px); }
.nt-section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.nt-section-head.is-center { margin-inline: auto; text-align: center; }

.nt-grid { display: grid; gap: 24px; }
.nt-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nt-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nt-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.nt-grid--sidebar { grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; }

.nt-stack > * + * { margin-top: 1.25rem; }
.nt-flex { display: flex; gap: 16px; }
.nt-flex--center { align-items: center; justify-content: center; }
.nt-flex--between { align-items: center; justify-content: space-between; }
.nt-flex--wrap { flex-wrap: wrap; }

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.nt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  font-family: inherit;
  font-size: var(--nt-fs-sm);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  border-radius: var(--nt-radius-pill);
  cursor: pointer;
  text-align: center;
  transition: transform var(--nt-transition), box-shadow var(--nt-transition),
    background-color var(--nt-transition), border-color var(--nt-transition), color var(--nt-transition);
}
.nt-btn:hover { transform: translateY(-2px); }
.nt-btn:active { transform: translateY(0); }
.nt-btn:focus-visible { outline: 2px solid var(--nt-primary); outline-offset: 3px; }

.nt-btn--primary {
  background-image: var(--nt-gradient);
  color: #fff;
  box-shadow: var(--nt-shadow-brand);
}
.nt-btn--primary:hover { color: #fff; box-shadow: 0 24px 56px -18px rgba(31, 162, 255, 0.75); }

.nt-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--nt-line-strong);
  color: var(--nt-text);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.nt-btn--ghost:hover { background: rgba(255, 255, 255, 0.09); color: #fff; border-color: rgba(255,255,255,.3); }

.nt-btn--link { padding: 0; background: none; color: var(--nt-primary); border-radius: 0; }
.nt-btn--link:hover { transform: none; color: var(--nt-secondary); }

.nt-btn--sm { padding: 0.65rem 1.15rem; font-size: var(--nt-fs-xs); }
.nt-btn--lg { padding: 1.15rem 2.2rem; font-size: 1rem; }
.nt-btn--block { display: flex; width: 100%; }

/* ==========================================================================
   6. FORMS
   ========================================================================== */
input[type="text"], input[type="email"], input[type="url"], input[type="tel"],
input[type="password"], input[type="search"], input[type="number"], input[type="date"],
select, textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: inherit;
  font-size: var(--nt-fs-sm);
  color: var(--nt-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--nt-line);
  border-radius: var(--nt-radius-sm);
  transition: border-color var(--nt-transition), box-shadow var(--nt-transition), background-color var(--nt-transition);
}
input::placeholder, textarea::placeholder { color: var(--nt-dim); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--nt-primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px var(--nt-primary-soft);
}
textarea { min-height: 150px; resize: vertical; }
label { display: block; margin-bottom: 0.4rem; font-size: var(--nt-fs-sm); font-weight: 500; color: var(--nt-text); }
.nt-field { margin-bottom: 1.1rem; }
.nt-required { color: var(--nt-secondary); }
select option { background: #0a0e18; color: var(--nt-text); }

input[type="submit"], button[type="submit"] { width: auto; }

/* ==========================================================================
   7. LIQUID GLASS COMPONENTS
   ========================================================================== */
.liquid-glass {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px) saturate(140%);
  border: 1px solid var(--nt-line);
  border-radius: var(--nt-radius);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), var(--nt-shadow);
  transition: transform var(--nt-transition), border-color var(--nt-transition), box-shadow var(--nt-transition), background-color var(--nt-transition);
}
.liquid-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 42%);
  opacity: 0.7;
  pointer-events: none;
}
.liquid-glass--hover:hover {
  transform: translateY(-6px);
  border-color: var(--nt-line-strong);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.22), var(--nt-shadow-lg);
}
.liquid-glass--flat { box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15); }

.nt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  font-size: var(--nt-fs-xs);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--nt-text);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  border: 1px solid var(--nt-line);
  border-radius: var(--nt-radius-pill);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.nt-badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #3ddc84; box-shadow: 0 0 0 4px rgba(61, 220, 132, 0.16);
}
.nt-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: var(--nt-fs-xs);
  font-weight: 500;
  color: var(--nt-primary);
  background: var(--nt-primary-soft);
  border: 1px solid rgba(31, 162, 255, 0.25);
  border-radius: var(--nt-radius-pill);
}

.nt-card { padding: 28px; }
.nt-card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--nt-gradient-soft);
  border: 1px solid var(--nt-line);
  color: var(--nt-primary);
  font-size: 1.4rem;
}
.nt-card__icon svg { width: 24px; height: 24px; }
.nt-card h3 { margin-bottom: 0.5rem; }
.nt-card p { font-size: var(--nt-fs-sm); }
.nt-card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; font-size: var(--nt-fs-sm); font-weight: 600; }
.nt-card__link span { transition: transform var(--nt-transition); }
.nt-card:hover .nt-card__link span { transform: translateX(4px); }

/* ==========================================================================
   8. HEADER / NAVIGATION
   ========================================================================== */
.nt-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  transition: background-color var(--nt-transition), box-shadow var(--nt-transition), border-color var(--nt-transition);
  border-bottom: 1px solid transparent;
}
.nt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nt-nav-h);
}
.nt-header.is-stuck {
  background: rgba(5, 7, 13, 0.62);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--nt-line);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12), 0 12px 34px -18px rgba(0, 0, 0, 0.9);
}

.nt-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.nt-brand img, .nt-brand .custom-logo { max-height: 44px; width: auto; }
.nt-brand__text { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.nt-brand__text:hover { color: #fff; }
.nt-brand__tag { display: block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--nt-dim); }

.nt-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nt-nav li { position: relative; margin: 0; }
.nt-nav a {
  display: block;
  padding: 0.55rem 0.95rem;
  font-size: var(--nt-fs-sm);
  font-weight: 500;
  color: var(--nt-muted);
  border-radius: var(--nt-radius-pill);
  transition: color var(--nt-transition), background-color var(--nt-transition);
}
.nt-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.nt-nav .current-menu-item > a,
.nt-nav .current_page_item > a,
.nt-nav .current-menu-ancestor > a { color: #fff; background: rgba(255, 255, 255, 0.08); }

/* dropdown */
.nt-nav .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  padding: 8px;
  background: rgba(8, 11, 20, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--nt-line);
  border-radius: var(--nt-radius);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.12), var(--nt-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--nt-transition), transform var(--nt-transition), visibility var(--nt-transition);
}
.nt-nav li:hover > .sub-menu,
.nt-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nt-nav .sub-menu a { border-radius: var(--nt-radius-sm); }

.nt-header__cta { display: flex; align-items: center; gap: 10px; }

.nt-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  border: 1px solid var(--nt-line);
  border-radius: 12px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
  cursor: pointer;
}
.nt-burger span {
  display: block; width: 20px; height: 2px; margin-inline: auto;
  background: #fff; border-radius: 2px;
  transition: transform var(--nt-transition), opacity var(--nt-transition);
}
.nt-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nt-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nt-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile panel */
.nt-mobile {
  position: fixed;
  inset: var(--nt-nav-h) 0 0 0;
  z-index: 998;
  padding: 28px var(--nt-gutter) 48px;
  overflow-y: auto;
  background: rgba(5, 7, 13, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--nt-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--nt-transition), transform var(--nt-transition), visibility var(--nt-transition);
}
.nt-mobile.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nt-mobile ul { list-style: none; margin: 0 0 24px; padding: 0; }
.nt-mobile li { margin: 0; border-bottom: 1px solid var(--nt-line); }
.nt-mobile a { display: block; padding: 1rem 0.25rem; font-size: 1.05rem; font-weight: 500; color: var(--nt-text); }
.nt-mobile a:hover { color: var(--nt-primary); }
.nt-mobile .sub-menu { margin: 0 0 0 1rem; }
.nt-mobile .sub-menu a { font-size: var(--nt-fs-sm); color: var(--nt-muted); }

/* ==========================================================================
   9. HERO
   ========================================================================== */
.nt-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: calc(var(--nt-nav-h) + 48px);
  padding-bottom: 72px;
  overflow: hidden;
  isolation: isolate;
}
.nt-hero__media { position: absolute; inset: 0; z-index: -2; }
.nt-hero__media video,
.nt-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.nt-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.72) 0%, rgba(5, 7, 13, 0.82) 45%, var(--nt-bg) 100%),
    radial-gradient(80% 60% at 20% 20%, rgba(31, 162, 255, 0.22), transparent 65%),
    radial-gradient(70% 60% at 85% 30%, rgba(232, 57, 127, 0.18), transparent 65%);
}
.nt-hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center; width: 100%; }
.nt-hero h1 { font-size: var(--nt-fs-hero); margin-bottom: 1.25rem; }
.nt-hero__sub { font-size: 1.15rem; max-width: 56ch; margin-bottom: 2rem; }
.nt-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.75rem; }

.nt-hero__float { display: grid; gap: 18px; }
.nt-float-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  animation: nt-float 6s var(--nt-ease) infinite;
}
.nt-float-card:nth-child(2) { animation-delay: 1.2s; transform: translateX(24px); }
.nt-float-card:nth-child(3) { animation-delay: 2.4s; }
.nt-float-card__icon {
  display: grid; place-items: center; flex: 0 0 auto;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--nt-gradient-soft); border: 1px solid var(--nt-line);
}
.nt-float-card strong { display: block; font-size: var(--nt-fs-sm); }
.nt-float-card span { font-size: var(--nt-fs-xs); color: var(--nt-muted); }

@keyframes nt-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.nt-float-card:nth-child(2) {
  animation-name: nt-float-offset;
}
@keyframes nt-float-offset {
  0%, 100% { transform: translate(24px, 0); }
  50% { transform: translate(24px, -12px); }
}

/* client logos */
.nt-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 34px; }
.nt-logos__label { font-size: var(--nt-fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--nt-dim); }
.nt-logos__item { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.42); transition: color var(--nt-transition); }
.nt-logos__item:hover { color: rgba(255, 255, 255, 0.85); }

/* ==========================================================================
   10. STATS / COUNTERS
   ========================================================================== */
.nt-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.nt-stat { padding: 30px 24px; text-align: center; }
.nt-stat__value {
  display: block;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: var(--nt-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nt-stat__label { display: block; margin-top: 0.5rem; font-size: var(--nt-fs-sm); color: var(--nt-muted); }

/* ==========================================================================
   11. PAGE HERO / BREADCRUMB
   ========================================================================== */
.nt-pagehero {
  position: relative;
  padding-top: calc(var(--nt-nav-h) + clamp(56px, 8vw, 104px));
  padding-bottom: clamp(48px, 6vw, 80px);
  text-align: center;
  border-bottom: 1px solid var(--nt-line);
  background-image: var(--nt-glow);
}
.nt-pagehero h1 { margin-bottom: 0.75rem; }
.nt-pagehero p { max-width: 62ch; margin-inline: auto; }
.nt-breadcrumb { margin-bottom: 1rem; font-size: var(--nt-fs-xs); color: var(--nt-dim); }
.nt-breadcrumb a { color: var(--nt-muted); }
.nt-breadcrumb span { margin-inline: 0.4rem; }

/* ==========================================================================
   12. CARDS: SERVICE / PORTFOLIO / TESTIMONIAL / POST
   ========================================================================== */
.nt-service-card { display: flex; flex-direction: column; height: 100%; }
.nt-service-card p { flex: 1; }

.nt-portfolio-card { overflow: hidden; display: flex; flex-direction: column; height: 100%; padding: 0; }
.nt-portfolio-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--nt-surface-strong); }
.nt-portfolio-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--nt-ease); }
.nt-portfolio-card:hover .nt-portfolio-card__media img { transform: scale(1.06); }
.nt-portfolio-card__body { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 1; padding: 24px; }
.nt-portfolio-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0.85rem; }
.nt-portfolio-card__result {
  margin-top: 1.1rem; padding-top: 1.1rem;
  border-top: 1px solid var(--nt-line);
  font-size: var(--nt-fs-sm); font-weight: 600; color: var(--nt-primary);
}

.nt-testimonial { display: flex; flex-direction: column; gap: 18px; height: 100%; }
.nt-testimonial__quote { font-size: 1.02rem; color: var(--nt-text); }
.nt-testimonial__person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.nt-testimonial__avatar {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--nt-gradient); color: #fff; font-weight: 700;
}
.nt-testimonial__name { font-size: var(--nt-fs-sm); font-weight: 600; color: #fff; }
.nt-testimonial__role { font-size: var(--nt-fs-xs); color: var(--nt-muted); }
.nt-stars { color: #ffc857; letter-spacing: 2px; font-size: var(--nt-fs-sm); }

.nt-post-card { display: flex; flex-direction: column; height: 100%; padding: 0; overflow: hidden; }
.nt-post-card__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--nt-surface-strong); }
.nt-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--nt-ease); }
.nt-post-card:hover .nt-post-card__media img { transform: scale(1.05); }
.nt-post-card__body { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 1; padding: 24px; }
.nt-post-card h3 { font-size: 1.15rem; }
.nt-post-card h3 a { color: #fff; }
.nt-post-card h3 a:hover { color: var(--nt-primary); }
.nt-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; font-size: var(--nt-fs-xs); color: var(--nt-dim); }
.nt-meta a { color: var(--nt-muted); }

/* team */
.nt-team-card { text-align: center; padding: 30px 24px; }
.nt-team-card__avatar {
  display: grid; place-items: center;
  width: 92px; height: 92px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--nt-gradient-soft);
  border: 1px solid var(--nt-line-strong);
  font-size: 1.6rem; font-weight: 700; color: #fff;
  overflow: hidden;
}
.nt-team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.nt-team-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.nt-team-card__role { font-size: var(--nt-fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--nt-primary); }

/* process steps */
.nt-step { position: relative; padding: 28px; }
.nt-step__num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; margin-bottom: 16px;
  border-radius: 12px;
  background: var(--nt-gradient);
  font-weight: 700; color: #fff;
}

/* filters */
.nt-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.nt-filter {
  padding: 0.55rem 1.15rem;
  font-size: var(--nt-fs-sm); font-weight: 500;
  color: var(--nt-muted);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  border: 1px solid var(--nt-line);
  border-radius: var(--nt-radius-pill);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all var(--nt-transition);
}
.nt-filter:hover { color: #fff; border-color: var(--nt-line-strong); }
.nt-filter.is-active { color: #fff; background-image: var(--nt-gradient); border-color: transparent; box-shadow: var(--nt-shadow-brand); }

/* ==========================================================================
   13. CTA BANNER
   ========================================================================== */
.nt-cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  border-radius: var(--nt-radius-lg);
  background-image: var(--nt-gradient-soft), var(--nt-glow);
}
.nt-cta-banner h2 { max-width: 20ch; margin-inline: auto; }
.nt-cta-banner p { max-width: 60ch; margin-inline: auto; }
.nt-cta-banner__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 2rem; }

/* ==========================================================================
   14. SINGLE / CONTENT
   ========================================================================== */
.nt-entry-content { font-size: 1.075rem; }
.nt-entry-content > * + * { margin-top: 1.4rem; }
.nt-entry-content h2 { margin-top: 2.5rem; }
.nt-entry-content h3 { margin-top: 2rem; }
.nt-entry-content img { border-radius: var(--nt-radius); }
.nt-entry-content a { text-decoration: underline; text-underline-offset: 3px; }

.nt-featured { margin-bottom: 40px; border-radius: var(--nt-radius-lg); overflow: hidden; }
.nt-featured img { width: 100%; }

.nt-share { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--nt-line); }
.nt-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

.nt-author-box { display: flex; gap: 18px; margin-top: 48px; padding: 26px; }
.nt-author-box img { border-radius: 50%; flex: 0 0 auto; }

.nt-post-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 40px; }
.nt-post-nav__item { padding: 22px; }
.nt-post-nav__label { font-size: var(--nt-fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--nt-dim); }
.nt-post-nav__item a { display: block; margin-top: 0.4rem; font-weight: 600; color: #fff; }
.nt-post-nav__item a:hover { color: var(--nt-primary); }
.nt-post-nav__item--next { text-align: right; }

/* pagination */
.nt-pagination { display: flex; justify-content: center; margin-top: 56px; }
.nt-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.nt-pagination .page-numbers {
  display: grid; place-items: center;
  min-width: 44px; height: 44px; padding: 0 0.8rem;
  font-size: var(--nt-fs-sm); font-weight: 500;
  color: var(--nt-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--nt-line);
  border-radius: 12px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: all var(--nt-transition);
}
.nt-pagination .page-numbers:hover { color: #fff; border-color: var(--nt-line-strong); }
.nt-pagination .page-numbers.current { color: #fff; background-image: var(--nt-gradient); border-color: transparent; }

/* ==========================================================================
   15. COMMENTS
   ========================================================================== */
.nt-comments { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--nt-line); }
.nt-comments .comment-list { list-style: none; margin: 0 0 40px; padding: 0; }
.nt-comments .comment-list ol.children { list-style: none; margin: 1rem 0 0 1.5rem; padding: 0; }
.nt-comment { padding: 22px; margin-bottom: 16px; }
.nt-comment__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.nt-comment__head img { border-radius: 50%; }
.nt-comment__author { font-weight: 600; color: #fff; }
.nt-comment__date { font-size: var(--nt-fs-xs); color: var(--nt-dim); }
.nt-comment .reply a { font-size: var(--nt-fs-xs); font-weight: 600; }
.comment-respond { padding: 28px; }
.comment-reply-title { font-size: 1.3rem; }
.comment-form .form-submit { margin-bottom: 0; }
.comment-notes, .logged-in-as { font-size: var(--nt-fs-xs); color: var(--nt-dim); }

/* ==========================================================================
   16. SIDEBAR / WIDGETS
   ========================================================================== */
.nt-sidebar .widget { padding: 24px; margin-bottom: 24px; }
.nt-sidebar .widget-title, .nt-sidebar .wp-block-heading {
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;
}
.nt-sidebar ul { list-style: none; margin: 0; padding: 0; }
.nt-sidebar li { padding: 0.5rem 0; border-bottom: 1px solid var(--nt-line); font-size: var(--nt-fs-sm); }
.nt-sidebar li:last-child { border-bottom: 0; }
.nt-sidebar a { color: var(--nt-muted); }
.nt-sidebar a:hover { color: var(--nt-primary); }
.nt-search-form { display: flex; gap: 8px; }
.nt-search-form input[type="search"] { flex: 1; }

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.nt-footer {
  margin-top: clamp(64px, 8vw, 110px);
  padding-top: clamp(56px, 7vw, 90px);
  border-top: 1px solid var(--nt-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 40%);
}
.nt-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 44px; }
.nt-footer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; margin-bottom: 1.1rem; }
.nt-footer ul { list-style: none; margin: 0; padding: 0; }
.nt-footer li { margin-bottom: 0.6rem; }
.nt-footer a { font-size: var(--nt-fs-sm); color: var(--nt-muted); }
.nt-footer a:hover { color: var(--nt-primary); }
.nt-footer__about p { font-size: var(--nt-fs-sm); max-width: 40ch; }
.nt-contact-list li { display: flex; gap: 10px; font-size: var(--nt-fs-sm); color: var(--nt-muted); }
.nt-socials { display: flex; gap: 10px; margin-top: 20px; }
.nt-social {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  border: 1px solid var(--nt-line);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
  color: var(--nt-muted);
  transition: all var(--nt-transition);
}
.nt-social:hover { color: #fff; transform: translateY(-3px); border-color: var(--nt-line-strong); }
.nt-social svg { width: 18px; height: 18px; }
.nt-footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: clamp(40px, 5vw, 64px); padding-block: 26px;
  border-top: 1px solid var(--nt-line);
  font-size: var(--nt-fs-xs); color: var(--nt-dim);
}
.nt-footer__bottom ul { display: flex; gap: 18px; }
.nt-footer__bottom li { margin: 0; }

/* ==========================================================================
   18. 404 / SEARCH / EMPTY
   ========================================================================== */
.nt-404 { display: grid; place-items: center; min-height: 82svh; padding-top: var(--nt-nav-h); text-align: center; }
.nt-404__code {
  font-size: clamp(6rem, 20vw, 12rem); font-weight: 700; line-height: 0.9; letter-spacing: -0.05em;
  background: var(--nt-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nt-empty { padding: 48px; text-align: center; }

/* ==========================================================================
   19. WORDPRESS CORE CLASSES
   ========================================================================== */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  position: fixed !important; top: 12px; left: 12px;
  width: auto; height: auto; padding: 12px 20px; margin: 0;
  clip: auto; z-index: 100000;
  background: #0a0e18; color: #fff; border-radius: 10px; border: 1px solid var(--nt-line-strong);
}
.skip-link { position: absolute; }

.alignleft { float: left; margin: 0.4rem 1.6rem 1.2rem 0; }
.alignright { float: right; margin: 0.4rem 0 1.2rem 1.6rem; }
.aligncenter { display: block; margin-inline: auto; }
.alignwide { max-width: min(1140px, 92vw); margin-inline: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text, .wp-element-caption { font-size: var(--nt-fs-xs); color: var(--nt-dim); text-align: center; margin-top: 0.5rem; }
.sticky .nt-post-card { border-color: var(--nt-primary); }
.bypostauthor > .nt-comment { border-color: var(--nt-primary); }
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.gallery-item img { border-radius: var(--nt-radius-sm); }

/* ==========================================================================
   20. SCROLL ANIMATIONS
   ========================================================================== */
.nt-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--nt-ease), transform 0.8s var(--nt-ease); }
.nt-reveal.is-visible { opacity: 1; transform: none; }
.nt-reveal[data-delay="1"] { transition-delay: 0.09s; }
.nt-reveal[data-delay="2"] { transition-delay: 0.18s; }
.nt-reveal[data-delay="3"] { transition-delay: 0.27s; }
.nt-reveal[data-delay="4"] { transition-delay: 0.36s; }
.nt-reveal[data-delay="5"] { transition-delay: 0.45s; }

.nt-fade-in { animation: nt-fade-in 0.9s var(--nt-ease) both; }
@keyframes nt-fade-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   21. RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .nt-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nt-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nt-grid--sidebar { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .nt-nav, .nt-header__cta .nt-btn { display: none; }
  .nt-burger { display: flex; }
  .nt-hero__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .nt-hero__float { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); display: grid; }
  .nt-float-card:nth-child(2) { transform: none; animation-name: nt-float; }
  .nt-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nt-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  :root { --nt-gutter: 18px; }
  .nt-grid--2, .nt-grid--3, .nt-grid--4 { grid-template-columns: minmax(0, 1fr); }
  .nt-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .nt-post-nav { grid-template-columns: minmax(0, 1fr); }
  .nt-post-nav__item--next { text-align: left; }
  .nt-hero__actions .nt-btn { width: 100%; }
  .nt-footer__bottom { flex-direction: column; align-items: flex-start; }
  .nt-author-box { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .nt-reveal { opacity: 1; transform: none; }
}
