/*
Theme Name: TW3CBOY NeoTech
Theme URI: https://tw3cboy.com/
Author: TW3CBOY
Author URI: https://tw3cboy.com/
Description: A dark, high-contrast technology storefront designed for RayNeo Air 4 Pro and other smart-display products. Includes WooCommerce styling, responsive navigation, customizable hero content, and conversion-focused landing sections.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tw3cboy-neotech
Tags: e-commerce, custom-logo, custom-menu, featured-images, full-width-template, one-column, two-columns, block-styles, wide-blocks, translation-ready
*/

:root {
  --neo-bg: #05070d;
  --neo-bg-soft: #0a0e19;
  --neo-panel: rgba(15, 23, 42, 0.74);
  --neo-panel-solid: #0d1424;
  --neo-line: rgba(148, 163, 184, 0.18);
  --neo-text: #f8fafc;
  --neo-muted: #94a3b8;
  --neo-cyan: #22d3ee;
  --neo-blue: #4f8cff;
  --neo-violet: #8b5cf6;
  --neo-lime: #a3e635;
  --neo-danger: #fb7185;
  --neo-radius-sm: 12px;
  --neo-radius: 20px;
  --neo-radius-lg: 32px;
  --neo-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --neo-content: 1180px;
  --neo-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--neo-bg);
}

body {
  margin: 0;
  color: var(--neo-text);
  background:
    radial-gradient(circle at 15% 8%, rgba(79, 140, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(139, 92, 246, 0.15), transparent 30rem),
    var(--neo-bg);
  font-family: var(--neo-font);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: var(--neo-cyan);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

a:hover,
a:focus {
  color: #a5f3fc;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
input[type="submit"],
input[type="button"] {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 .7em;
  color: var(--neo-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
}

h1 { font-size: clamp(2.8rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p {
  margin: 0 0 1.2em;
}

blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--neo-cyan);
  border-radius: 0 var(--neo-radius-sm) var(--neo-radius-sm) 0;
  background: rgba(34, 211, 238, 0.06);
  color: #dbeafe;
}

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

pre {
  overflow-x: auto;
  padding: 1.2rem;
  border: 1px solid var(--neo-line);
  border-radius: var(--neo-radius-sm);
  background: #020617;
}

::selection {
  color: #020617;
  background: var(--neo-cyan);
}

.screen-reader-text {
  position: absolute;
  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;
  top: 12px;
  left: 12px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: .75rem 1rem;
  clip: auto;
  border-radius: 8px;
  color: #020617;
  background: #fff;
}

.neo-container {
  width: min(calc(100% - 40px), var(--neo-content));
  margin-inline: auto;
}

.neo-section {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0;
}

.neo-section--tight {
  padding: clamp(48px, 6vw, 80px) 0;
}

.neo-section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.neo-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.neo-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  color: #a5f3fc;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.neo-kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--neo-cyan));
}

.neo-muted {
  color: var(--neo-muted);
}

.neo-gradient-text {
  color: transparent;
  background: linear-gradient(115deg, #ffffff 8%, #a5f3fc 42%, #818cf8 78%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.neo-grid {
  display: grid;
  gap: 24px;
}

.neo-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.neo-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.neo-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.neo-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--neo-line);
  border-radius: var(--neo-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015)),
    rgba(9, 14, 25, .72);
  box-shadow: 0 12px 44px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
}

.neo-card::after {
  position: absolute;
  inset: auto -40px -60px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  content: "";
  background: rgba(79, 140, 255, .1);
  filter: blur(18px);
}

.neo-card:hover {
  border-color: rgba(34, 211, 238, .34);
  transform: translateY(-3px);
}

.neo-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(34, 211, 238, .3);
  border-radius: 14px;
  color: var(--neo-cyan);
  background: rgba(34, 211, 238, .08);
  font-size: 1.25rem;
}

.neo-button,
button.neo-button,
a.neo-button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 50px;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #020617;
  background: linear-gradient(105deg, var(--neo-cyan), #67e8f9 52%, #93c5fd);
  box-shadow: 0 10px 30px rgba(34, 211, 238, .18);
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.neo-button:hover,
.neo-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  color: #020617;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(34, 211, 238, .3);
}

.neo-button--ghost {
  border-color: rgba(255, 255, 255, .2);
  color: #e2e8f0;
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
}

.neo-button--ghost:hover,
.neo-button--ghost:focus {
  border-color: rgba(34, 211, 238, .45);
  color: #fff;
  background: rgba(34, 211, 238, .08);
}

.neo-button--small {
  min-height: 42px;
  padding: .7rem 1rem;
  font-size: .9rem;
}

.neo-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Announcement */
.neo-announcement {
  position: relative;
  z-index: 70;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(34, 211, 238, .18);
  color: #dffbff;
  background: linear-gradient(90deg, rgba(6, 182, 212, .16), rgba(79, 70, 229, .18));
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  background: rgba(5, 7, 13, .72);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--neo-line);
  background: rgba(5, 7, 13, .9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 74px;
  gap: 28px;
}

.site-branding {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-height: 44px;
}

.site-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-title::before {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(34, 211, 238, .45);
  border-radius: 9px;
  content: "T3";
  color: var(--neo-cyan);
  background: linear-gradient(145deg, rgba(34, 211, 238, .1), rgba(139, 92, 246, .15));
  font-size: .65rem;
  line-height: 28px;
  text-align: center;
}

.primary-navigation {
  margin-left: auto;
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation a {
  display: block;
  padding: .7rem .85rem;
  border-radius: 10px;
  color: #cbd5e1;
  font-size: .92rem;
  font-weight: 700;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-action-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--neo-line);
  border-radius: 12px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .035);
}

.site-action-link:hover {
  border-color: rgba(34, 211, 238, .35);
  color: #fff;
  background: rgba(34, 211, 238, .08);
}

.site-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border: 2px solid var(--neo-bg);
  border-radius: 999px;
  color: #020617;
  background: var(--neo-cyan);
  font-size: .68rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--neo-line);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-active span { opacity: 0; }
.menu-toggle.is-active::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-active::after { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.neo-hero {
  position: relative;
  min-height: calc(100vh - 110px);
  overflow: hidden;
  padding: clamp(72px, 8vw, 120px) 0 76px;
}

.neo-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(148, 163, 184, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 82%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 82%);
}

.neo-hero::after {
  position: absolute;
  top: -100px;
  right: -120px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(34, 211, 238, .1);
  border-radius: 50%;
  pointer-events: none;
  content: "";
  box-shadow:
    0 0 0 80px rgba(79, 140, 255, .035),
    0 0 0 160px rgba(139, 92, 246, .025);
}

.neo-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.neo-hero__copy {
  max-width: 690px;
}

.neo-hero__copy h1 {
  margin-bottom: 22px;
}

.neo-hero__copy p {
  max-width: 620px;
  color: #aebbd0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.neo-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 32px;
  color: #cbd5e1;
  font-size: .9rem;
  font-weight: 700;
}

.neo-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.neo-hero__meta span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--neo-lime);
  box-shadow: 0 0 12px rgba(163, 230, 53, .7);
}

.neo-hero__visual {
  position: relative;
  min-height: 520px;
}

.neo-device-stage {
  position: absolute;
  inset: 40px 0 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 48%, rgba(34, 211, 238, .14), transparent 36%),
    linear-gradient(150deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  box-shadow: var(--neo-shadow), inset 0 0 80px rgba(79, 140, 255, .05);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  backdrop-filter: blur(14px);
}

.neo-device-stage::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(34, 211, 238, .15);
  border-radius: 50%;
  content: "";
  animation: neo-pulse 4s ease-in-out infinite;
}

.neo-device-stage img {
  position: relative;
  z-index: 2;
  width: min(92%, 600px);
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 40px 42px rgba(0, 0, 0, .62));
}

.neo-floating-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
  padding: 14px 16px;
  border: 1px solid rgba(34, 211, 238, .24);
  border-radius: 15px;
  background: rgba(3, 7, 18, .75);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.neo-floating-chip strong {
  font-size: 1rem;
}

.neo-floating-chip small {
  color: var(--neo-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.neo-floating-chip--a { top: 10px; left: -20px; }
.neo-floating-chip--b { right: -12px; bottom: 48px; }
.neo-floating-chip--c { left: 18px; bottom: 12px; }

@keyframes neo-pulse {
  0%, 100% { opacity: .4; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* Metrics */
.neo-metrics {
  position: relative;
  z-index: 4;
  margin-top: -18px;
}

.neo-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--neo-line);
  border-radius: var(--neo-radius);
  background: rgba(8, 12, 22, .78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
  backdrop-filter: blur(16px);
}

.neo-metric {
  padding: 24px 26px;
  border-right: 1px solid var(--neo-line);
}

.neo-metric:last-child { border-right: 0; }

.neo-metric strong {
  display: block;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.neo-metric span {
  display: block;
  margin-top: 8px;
  color: var(--neo-muted);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Product showcase */
.neo-showcase {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.neo-showcase__media {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--neo-line);
  border-radius: var(--neo-radius-lg);
  background:
    radial-gradient(circle at 50% 45%, rgba(79, 140, 255, .2), transparent 36%),
    #070b14;
}

.neo-showcase__media::before {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(139, 92, 246, .2);
  border-radius: 50%;
  content: "";
}

.neo-showcase__media img {
  position: relative;
  z-index: 2;
  width: 88%;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 36px 45px rgba(0, 0, 0, .58));
}

.neo-price {
  margin: 18px 0;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 900;
}

.neo-price del {
  margin-right: .4rem;
  color: #64748b;
  font-size: .8em;
}

.neo-price ins {
  color: #fff;
  text-decoration: none;
}

.neo-checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.neo-checklist li {
  position: relative;
  padding-left: 30px;
  color: #cbd5e1;
}

.neo-checklist li::before {
  position: absolute;
  top: .42em;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "✓";
  color: #020617;
  background: var(--neo-cyan);
  font-size: .7rem;
  font-weight: 900;
}

/* Use cases */
.neo-usecase {
  min-height: 320px;
  padding: 30px;
}

.neo-usecase__number {
  display: block;
  margin-bottom: 72px;
  color: rgba(148, 163, 184, .42);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.neo-usecase h3 {
  margin-bottom: 10px;
}

.neo-usecase p {
  color: var(--neo-muted);
}

/* Compatibility */
.neo-compatibility {
  overflow: hidden;
  border-block: 1px solid var(--neo-line);
  background: linear-gradient(90deg, rgba(34, 211, 238, .04), rgba(139, 92, 246, .05));
}

.neo-device-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.neo-device-pill {
  padding: .85rem 1.15rem;
  border: 1px solid var(--neo-line);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .035);
  font-size: .9rem;
  font-weight: 750;
}

/* FAQ */
.neo-faq {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-inline: auto;
}

.neo-faq details {
  border: 1px solid var(--neo-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
}

.neo-faq summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  cursor: pointer;
  color: #eef2ff;
  font-weight: 800;
  list-style: none;
}

.neo-faq summary::-webkit-details-marker { display: none; }

.neo-faq summary::after {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--neo-line);
  border-radius: 50%;
  content: "+";
  color: var(--neo-cyan);
}

.neo-faq details[open] summary::after { content: "−"; }

.neo-faq__answer {
  padding: 0 22px 22px;
  color: var(--neo-muted);
}

/* CTA */
.neo-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 80px);
  border: 1px solid rgba(34, 211, 238, .25);
  border-radius: var(--neo-radius-lg);
  background:
    radial-gradient(circle at 12% 20%, rgba(34, 211, 238, .2), transparent 26rem),
    radial-gradient(circle at 88% 80%, rgba(139, 92, 246, .22), transparent 25rem),
    #08101f;
  text-align: center;
  box-shadow: var(--neo-shadow);
}

.neo-cta::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(circle, #000 0, transparent 72%);
  mask-image: radial-gradient(circle, #000 0, transparent 72%);
}

.neo-cta > * { position: relative; z-index: 1; }
.neo-cta p { max-width: 680px; margin-inline: auto; color: #b7c3d8; }
.neo-cta .neo-button-group { justify-content: center; }

/* Content pages */
.site-main {
  min-height: 60vh;
}

.content-area {
  padding: clamp(56px, 8vw, 96px) 0;
}

.entry-header,
.archive-header {
  max-width: 880px;
  margin-bottom: 42px;
}

.entry-title,
.archive-title {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  color: var(--neo-muted);
  font-size: .85rem;
}

.entry-content,
.entry-summary {
  color: #cbd5e1;
}

.entry-content > * {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.entry-content > .alignwide {
  max-width: var(--neo-content);
}

.entry-content > .alignfull {
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.post-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--neo-line);
  border-radius: var(--neo-radius);
  background: rgba(255, 255, 255, .025);
}

.post-card__media {
  min-height: 230px;
  background: var(--neo-panel-solid);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  padding: 28px;
}

.post-card__body p {
  color: var(--neo-muted);
}

.navigation.pagination .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
}

.page-numbers,
.nav-previous a,
.nav-next a {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: .6rem .9rem;
  border: 1px solid var(--neo-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
}

.page-numbers.current {
  color: #020617;
  background: var(--neo-cyan);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="password"],
input[type="search"],
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: .78rem .95rem;
  border: 1px solid var(--neo-line);
  border-radius: 12px;
  outline: 0;
  color: #f8fafc;
  background: rgba(2, 6, 23, .72);
}

textarea { min-height: 150px; }

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(34, 211, 238, .58);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, .1);
}

input[type="submit"],
button[type="submit"] {
  min-height: 48px;
  padding: .75rem 1.25rem;
  border: 0;
  border-radius: 999px;
  color: #020617;
  background: var(--neo-cyan);
  font-weight: 850;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--neo-line);
  background: #04060b;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(160px, .55fr));
  gap: 54px;
  padding: 68px 0 52px;
}

.footer-brand p {
  max-width: 420px;
  color: var(--neo-muted);
}

.footer-heading {
  margin-bottom: 18px;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-menu,
.widget ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu a,
.widget a {
  color: var(--neo-muted);
}

.footer-menu a:hover,
.widget a:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--neo-line);
  color: #64748b;
  font-size: .78rem;
}

/* Reveal */
.neo-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.neo-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* WordPress utility */
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--neo-muted); font-size: .85rem; }
.gallery-caption { color: var(--neo-muted); }
.bypostauthor { outline: 1px solid rgba(34, 211, 238, .2); }
.sticky { border-color: rgba(34, 211, 238, .3); }

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

  .neo-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .neo-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .neo-hero__grid,
  .neo-showcase { grid-template-columns: 1fr; }
  .neo-hero__copy { max-width: 820px; }
  .neo-hero__visual { min-height: 480px; }
  .neo-showcase__media { min-height: 440px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  body.admin-bar .site-header { top: 46px; }
  .menu-toggle { display: block; margin-left: auto; }
  .primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--neo-line);
    border-radius: 16px;
    background: rgba(5, 7, 13, .97);
    box-shadow: var(--neo-shadow);
  }
  .primary-navigation.is-open { display: block; }
  .primary-navigation ul { display: grid; }
  .primary-navigation a { padding: .9rem; }
  .site-actions .neo-button { display: none; }
  .neo-metrics__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .neo-metric:nth-child(2) { border-right: 0; }
  .neo-metric:nth-child(-n+2) { border-bottom: 1px solid var(--neo-line); }
  .post-card { grid-template-columns: 1fr; }
  .post-card__media { min-height: 260px; }
}

@media (max-width: 680px) {
  .neo-container { width: min(calc(100% - 28px), var(--neo-content)); }
  .neo-grid--2,
  .neo-grid--3,
  .neo-grid--4 { grid-template-columns: 1fr; }
  .neo-hero { min-height: auto; padding-top: 62px; }
  .neo-hero__grid { gap: 36px; }
  .neo-hero__visual { min-height: 390px; }
  .neo-device-stage { inset: 26px 0 0; border-radius: 28px; transform: none; }
  .neo-floating-chip { min-width: 110px; padding: 11px 12px; }
  .neo-floating-chip--a { left: -4px; }
  .neo-floating-chip--b { right: -4px; }
  .neo-floating-chip--c { display: none; }
  .neo-metrics__grid { grid-template-columns: 1fr; }
  .neo-metric,
  .neo-metric:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--neo-line); }
  .neo-metric:last-child { border-bottom: 0; }
  .neo-showcase__media { min-height: 350px; }
  .neo-usecase { min-height: auto; }
  .neo-usecase__number { margin-bottom: 38px; }
  .site-actions .site-action-link:first-child { display: none; }
  .site-footer__top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; }
  .neo-button-group .neo-button { width: 100%; }
}
