/*
Theme Name: Brackits Neon Theme
Theme URI: https://example.com/
Author: OpenAI
Description: Animated dark-mode WordPress theme for Brackits with futuristic portfolio and PikaMood landing pages.
Version: 3.5
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: brackits-neon
*/

/* =========================================================
   1. ROOT COLORS + GLOBAL TOKENS
   Change these if you want to adjust the whole theme quickly
========================================================= */
:root{
  --bg:#060816;
  --bg2:#0b1020;
  --bg3:#0f1730;
  --panel:rgba(10,16,32,0.76);
  --panel-strong:rgba(12,19,38,0.9);
  --soft-panel:rgba(255,255,255,0.05);
  --text:#edf3ff;
  --muted:#9ea9ca;
  --line:rgba(255,255,255,0.09);
  --line-strong:rgba(255,255,255,0.15);
  --cyan:#63e8ff;
  --violet:#9a7bff;
  --pink:#ff5ebc;
  --green:#74ffce;
  --orange:#ff7a1a;
  --orange-2:#ff9f43;
  --amber:#ffd166;
  --shadow:0 12px 40px rgba(0,0,0,.28);
  --glow:0 0 22px rgba(99,232,255,.16), 0 0 58px rgba(154,123,255,.12);
  --radius:24px;
  --radius-sm:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(99,232,255,.12), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(154,123,255,.18), transparent 26%),
    radial-gradient(circle at 50% 78%, rgba(255,94,188,.12), transparent 28%),
    linear-gradient(180deg,var(--bg),var(--bg2) 55%, var(--bg3));
  min-height:100vh;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:radial-gradient(circle at center, black 38%, transparent 88%);
  pointer-events:none;
}

a{color:var(--cyan);text-decoration:none}
a:hover{opacity:.94}
img{max-width:100%;display:block}

/* =========================================================
   2. MAIN CONTAINER + GLOBAL SPACING
   This controls how close content gets to screen edges
========================================================= */
.container{
  width:min(1240px, calc(100% - 72px));
  margin:0 auto;
}

.section{
  padding:72px 0;
}

.section-lg{
  padding:96px 0;
}

/* =========================================================
   3. HEADER / NAV
   Floating premium glass navigation
========================================================= */
.site-header{
  position:sticky;
  top:18px;
  z-index:120;
  background:transparent;
  padding:0;
}

.site-header .container{
  width:min(1240px, calc(100% - 36px));
}

.nav-shell{
  position:relative;
  max-width:1120px;
  margin:0 auto;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(7,11,24,.78), rgba(10,14,30,.56));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:
    0 18px 60px rgba(0,0,0,.30),
    0 0 0 1px rgba(255,255,255,.03) inset,
    0 0 26px rgba(99,232,255,.05),
    0 0 34px rgba(255,122,26,.04);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  overflow:hidden;
}

.nav-shell::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(
    120deg,
    rgba(99,232,255,.22),
    rgba(255,255,255,.04) 28%,
    rgba(255,122,26,.20) 70%,
    rgba(255,255,255,.03)
  );
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.nav-shell::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform:translateX(-120%);
  animation:navSweep 8s linear infinite;
  pointer-events:none;
}

.nav-wrap{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:72px;
  padding:0 20px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#fff;
  font-size:14px;
  white-space:nowrap;
}

.brand-mark{
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--cyan), var(--orange));
  box-shadow:0 0 18px rgba(99,232,255,.35), 0 0 26px rgba(255,122,26,.22);
  animation:pulseDot 2.4s ease-in-out infinite;
}

.brand-text{
  color:#fff;
}

.nav-center{
  flex:1;
  display:flex;
  justify-content:center;
}

.main-nav{
  display:flex;
  justify-content:center;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:6px;
  margin:0;
  padding:6px;
  list-style:none;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.nav-menu li{
  margin:0;
  padding:0;
  list-style:none;
}

.nav-menu a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  color:rgba(255,255,255,.88);
  font-size:14px;
  font-weight:500;
  transition:transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:8px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,122,26,.95), transparent);
  opacity:0;
  transform:scaleX(.4);
  transition:.22s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a{
  color:#fff;
  background:rgba(255,255,255,.055);
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,.16);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after{
  opacity:1;
  transform:scaleX(1);
}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:162px;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  color:#fff;
  font-weight:700;
  background:linear-gradient(135deg, var(--orange), var(--orange-2));
  border:1px solid rgba(255,187,132,.35);
  box-shadow:0 14px 34px rgba(255,122,26,.20), 0 0 0 1px rgba(255,255,255,.04) inset;
  transition:transform .22s ease, box-shadow .22s ease;
}

.nav-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(255,122,26,.28), 0 0 0 1px rgba(255,255,255,.05) inset;
}

/* =========================================================
   4. TYPOGRAPHY
========================================================= */
h1,h2,h3,h4{line-height:1.02;margin:0 0 16px}
h1{font-size:clamp(42px,6.4vw,84px);letter-spacing:-.05em}
h2{font-size:clamp(32px,5vw,64px);letter-spacing:-.04em}
h3{font-size:clamp(24px,3vw,34px);letter-spacing:-.02em}
h4{font-size:20px}

p{
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
  margin:0 0 16px;
}

.small{font-size:15px}
.mono, code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace}

.gradient-text{
  background:linear-gradient(90deg,var(--cyan),#fff,var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.orange-shift{
  background:linear-gradient(90deg,var(--cyan),#fff,var(--orange),var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* =========================================================
   5. SMALL UI ELEMENTS
========================================================= */
.kicker,
.mini-kicker,
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--cyan);
  background:rgba(99,232,255,.06);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.mini-kicker{
  padding:7px 10px;
  color:var(--pink);
  background:rgba(255,94,188,.08);
}

.tag{
  padding:7px 11px;
  color:var(--text);
  background:rgba(255,255,255,.03);
  letter-spacing:0;
  text-transform:none;
}

/* =========================================================
   6. BUTTONS
========================================================= */
.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:16px;
  border:1px solid var(--line-strong);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  color:#fff;
  font-weight:700;
  box-shadow:var(--glow);
  transition:.24s transform,.24s opacity,.24s border-color,.24s background;
}

.btn:hover{
  transform:translateY(-2px);
  border-color:rgba(99,232,255,.45);
}

.btn.secondary{
  box-shadow:none;
  color:var(--muted);
}

.btn.orange{
  background:linear-gradient(135deg,var(--orange),var(--orange-2));
  border-color:rgba(255,170,94,.45);
  box-shadow:0 16px 46px rgba(255,122,26,.24);
}

/* =========================================================
   7. GLASS PANELS / CARDS
========================================================= */
.card,
.glass,
.soft-card,
.code-card,
.device-shell,
.faq-item,
.timeline-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow), var(--glow);
}

.glass,
.card,
.big-panel,
.soft-panel,
.privacy-card,
.timeline-card{
  background:var(--panel);
  backdrop-filter:blur(16px);
}

.big-panel,
.glass,
.soft-panel,
.soft-card,
.privacy-card,
.faq-item,
.timeline-card{
  padding:24px;
}

.soft-card,
.privacy-card{
  background:linear-gradient(180deg, rgba(255,245,250,.09), rgba(255,255,255,.04));
  border-color:rgba(255,210,230,.16);
}

.glass,
.big-panel,
.soft-panel,
.service-card,
.pricing-card,
.hero-status,
.metric{
  position:relative;
}

.glass::before,
.big-panel::before,
.soft-panel::before,
.service-card::before,
.pricing-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,.18),
    rgba(255,255,255,.02) 35%,
    rgba(255,122,26,.14) 70%,
    rgba(255,255,255,.04)
  );
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

/* =========================================================
   8. HERO SECTION
========================================================= */
.hero,
.page-hero{
  position:relative;
}

.hero-ai{
  padding:156px 0 64px;
  overflow:hidden;
  isolation:isolate;
}

.hero-ai::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 16% 18%, rgba(99,232,255,.16), transparent 26%),
    radial-gradient(circle at 78% 16%, rgba(255,122,26,.18), transparent 24%),
    radial-gradient(circle at 65% 60%, rgba(154,123,255,.14), transparent 28%);
  z-index:-3;
}

.hero-grid{
  display:grid;
  gap:28px;
}

.hero-grid-premium{
  grid-template-columns:minmax(560px, 1.02fr) minmax(420px, .98fr);
  align-items:center;
}

.hero-copy h1{
  max-width:9ch;
  margin-bottom:18px;
}

.hero-lead{
  max-width:34ch;
  font-size:21px;
  line-height:1.65;
}

.hero-status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  margin:0 0 18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(10px);
  font-size:13px;
  letter-spacing:.04em;
  color:rgba(255,255,255,.82);
}

.status-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#ff8a1d;
  box-shadow:0 0 14px rgba(255,138,29,.9);
  animation:pulseDot 2s infinite ease-in-out;
}

.hero-grid-lines{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:radial-gradient(circle at center, black 38%, transparent 86%);
  z-index:-2;
}

.hero-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(10px);
  pointer-events:none;
  z-index:-1;
}

.orb-1{
  width:280px;
  height:280px;
  top:60px;
  right:8%;
  background:radial-gradient(circle, rgba(255,122,26,.34), transparent 62%);
  animation:floaty 11s ease-in-out infinite;
}

.orb-2{
  width:240px;
  height:240px;
  left:-40px;
  top:190px;
  background:radial-gradient(circle, rgba(99,232,255,.24), transparent 62%);
  animation:floaty 13s ease-in-out infinite reverse;
}

.orb-3{
  width:220px;
  height:220px;
  right:22%;
  bottom:20px;
  background:radial-gradient(circle, rgba(255,94,188,.2), transparent 62%);
  animation:floaty 10s ease-in-out infinite;
}

.hero-particles{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:-1;
  overflow:hidden;
}

.hero-particles span{
  position:absolute;
  display:block;
  width:5px;
  height:5px;
  border-radius:50%;
  background:rgba(255,255,255,.82);
  box-shadow:0 0 18px rgba(255,255,255,.28), 0 0 34px rgba(99,232,255,.14);
  animation:particleFloat linear infinite;
}

.hero-ring{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,138,29,.14);
  pointer-events:none;
  animation:rotateRing 18s linear infinite;
  opacity:.7;
  mix-blend-mode:screen;
}

.hero-ring-1{
  width:520px;
  height:520px;
  top:40px;
  right:6%;
}

.hero-ring-2{
  width:660px;
  height:660px;
  top:-20px;
  right:0;
  animation-direction:reverse;
  animation-duration:26s;
  opacity:.6;
}

.metric-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

.metric{
  position:relative;
  overflow:hidden;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  min-width:160px;
  background:rgba(255,255,255,.03);
}

.metric strong{
  display:block;
  font-size:28px;
  color:#fff;
  margin-bottom:4px;
}

.metric span{
  font-size:13px;
  color:var(--muted);
}

.trust-strip{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.trust-strip span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:12px;
  color:rgba(255,255,255,.75);
}

.hero-visual{
  position:relative;
  min-height:560px;
  display:grid;
  align-items:center;
  isolation:isolate;
}

.hero-console{
  min-height:340px;
  position:relative;
  z-index:3;
  overflow:hidden;
  padding:24px 24px 20px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(7,12,28,.42), rgba(8,14,30,.28)),
    radial-gradient(circle at top right, rgba(99,232,255,.10), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255,122,26,.10), transparent 30%);
  backdrop-filter:blur(18px) saturate(150%);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
  box-shadow:
    0 14px 56px rgba(0,0,0,.24),
    0 0 0 1px rgba(255,255,255,.03) inset,
    0 0 26px rgba(99,232,255,.08),
    0 0 36px rgba(255,122,26,.05);
}

.hero-console::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.06) 18%, transparent 34%);
  transform:translateX(-120%);
  animation:consoleSweep 6s linear infinite;
  pointer-events:none;
}

.hero-console::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:29px;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events:none;
}

.console-noise{
  position:absolute;
  inset:0;
  opacity:.06;
  pointer-events:none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.22) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.18) 0 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgba(255,255,255,.12) 0 1px, transparent 1px);
  background-size:120px 120px, 160px 160px, 140px 140px;
}

.console-glow-line{
  position:absolute;
  left:0;
  right:0;
  top:56px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(99,232,255,.55), rgba(255,122,26,.45), transparent);
  opacity:.8;
  pointer-events:none;
}

.console-top{
  display:flex;
  gap:8px;
  margin-bottom:16px;
}

.console-top span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#30456e;
}

.console-top span:nth-child(1){background:#ff6b6b}
.console-top span:nth-child(2){background:#ffd166}
.console-top span:nth-child(3){background:var(--orange)}

.console-badge{
  display:inline-flex;
  margin:0 0 16px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.72);
  font-size:11px;
  letter-spacing:.16em;
}

.console-lines{
  display:grid;
  gap:14px;
  font-size:15px;
  line-height:1.75;
  color:#e7f7ff;
  position:relative;
  z-index:2;
}

.console-line{
  display:grid;
  gap:4px;
}

.console-main{
  color:#f4fbff;
  font-weight:700;
  letter-spacing:.02em;
}

.console-key{
  color:var(--orange);
  font-weight:700;
}

.console-value{
  color:#d9eef8;
}

.console-live{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  margin-top:4px;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.08);
}

.pulse-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 0 rgba(255,122,26,.45);
  animation:pulseRing 1.8s infinite;
}

.floating-stack{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
}

.float-card{
  position:absolute;
  max-width:190px;
  padding:14px 16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 12px 40px rgba(0,0,0,.18), 0 0 30px rgba(255,255,255,.03), 0 0 40px rgba(99,232,255,.05);
}

.float-card strong{
  display:block;
  margin-top:8px;
  font-size:14px;
  line-height:1.3;
}

.card-a{top:6%;right:-1%;opacity:.52;animation:floatySoft 9s ease-in-out infinite}
.card-b{left:-3%;bottom:18%;opacity:.48;animation:floatySoft 12s ease-in-out infinite reverse}
.card-c{right:3%;bottom:1%;opacity:.56;animation:floatySoft 10s ease-in-out infinite}
.card-d{right:-3%;top:16%;opacity:.34;transform:scale(.92);animation:floatySoft 11s ease-in-out infinite reverse}
.card-e{left:3%;top:12%;opacity:.30;transform:scale(.88);animation:floatySoft 13s ease-in-out infinite}

.hero-signal{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,138,29,.16);
  box-shadow:0 0 40px rgba(255,138,29,.06), 0 0 70px rgba(99,232,255,.05);
  animation:signalPulse 4.5s infinite ease-out;
  z-index:0;
}

.hero-signal-1{
  width:140px;
  height:140px;
  top:12%;
  right:8%;
}

.hero-signal-2{
  width:240px;
  height:240px;
  bottom:10%;
  left:4%;
  animation-delay:1.4s;
}

/* =========================================================
   9. COMMON LAYOUT GRIDS
========================================================= */
.grid-2,
.grid-3,
.grid-4,
.stat-grid,
.feature-grid,
.faq-grid,
.support-grid,
.mood-screenshot-grid{
  display:grid;
  gap:24px;
}

.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4,
.feature-grid{grid-template-columns:repeat(4,1fr)}
.stat-grid{grid-template-columns:repeat(3,1fr)}
.support-grid{grid-template-columns:1fr .9fr}
.faq-grid{grid-template-columns:1fr}
.mood-screenshot-grid{grid-template-columns:repeat(5,1fr)}

.stack-list,
.inline-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.inline-links a{
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.2);
}

/* =========================================================
   10. FRONT PAGE SECTIONS
   This is the part that makes the homepage less texty
========================================================= */
.section-head{
  max-width:760px;
  margin:0 auto 34px;
}

.section-head.left{
  margin:0 0 34px;
}

.section-head h2{
  max-width:12ch;
  margin-bottom:14px;
}

.section-head p{
  max-width:58ch;
  font-size:18px;
}

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

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

.service-card{
  position:relative;
  overflow:hidden;
  min-height:280px;
  padding:28px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)),
    radial-gradient(circle at top right, rgba(255,122,26,.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(99,232,255,.08), transparent 30%);
  box-shadow:0 18px 50px rgba(0,0,0,.24), 0 0 28px rgba(99,232,255,.04);
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,255,255,.18);
  box-shadow:0 24px 60px rgba(0,0,0,.30), 0 0 34px rgba(255,122,26,.08);
}

.service-icon{
  width:58px;
  height:58px;
  border-radius:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  font-size:20px;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg, rgba(99,232,255,.18), rgba(255,122,26,.28));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 12px 28px rgba(255,122,26,.12);
}

.service-card h3{
  max-width:12ch;
  margin-bottom:12px;
}

.service-card p{
  max-width:34ch;
  font-size:17px;
  line-height:1.75;
  margin-bottom:20px;
}

.split-highlight{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(320px,.85fr);
  gap:24px;
  align-items:stretch;
}

.big-panel,
.ai-panel{
  border-radius:32px;
  overflow:hidden;
}

.big-panel{
  padding:32px;
}

.big-panel h2{
  max-width:11ch;
}

.big-panel p{
  max-width:54ch;
}

.terminal-list{
  display:grid;
  gap:16px;
  margin-top:22px;
}

.terminal-item{
  position:relative;
  overflow:hidden;
  padding:18px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.03);
}

.terminal-item strong{
  display:block;
  font-size:15px;
  color:#fff;
  margin-bottom:6px;
}

.ai-panel{
  padding:28px;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)),
    radial-gradient(circle at top left, rgba(255,94,188,.10), transparent 30%);
  box-shadow:0 18px 50px rgba(0,0,0,.22), 0 0 24px rgba(255,94,188,.05);
}

.ai-list{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.ai-item{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:82px;
  padding:16px 18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}

.ai-item strong{
  width:38px;
  height:38px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  color:#fff;
  background:linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow:0 10px 24px rgba(255,122,26,.18);
}

.ai-item span{
  font-size:18px;
  color:#fff;
}

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

.pricing-card{
  position:relative;
  overflow:hidden;
  min-height:230px;
  padding:28px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)),
    radial-gradient(circle at top right, rgba(255,122,26,.12), transparent 34%);
  box-shadow:0 18px 50px rgba(0,0,0,.22), 0 0 24px rgba(99,232,255,.04);
  transition:transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}

.pricing-card:hover{
  transform:translateY(-5px);
  border-color:rgba(255,255,255,.16);
}

.pricing-card h3{
  max-width:12ch;
  margin-bottom:12px;
}

.pricing-card p{
  max-width:30ch;
  font-size:17px;
  line-height:1.7;
  margin-bottom:0;
}

.pricing-card.highlight{
  transform:translateY(-6px);
  border-color:rgba(255,170,94,.34);
  box-shadow:0 20px 56px rgba(0,0,0,.28), 0 0 32px rgba(255,122,26,.10);
  background:
    linear-gradient(180deg, rgba(255,140,50,.10), rgba(255,255,255,.03)),
    radial-gradient(circle at top right, rgba(255,122,26,.18), transparent 36%);
}

.cta-band{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) auto;
  gap:28px;
  align-items:center;
  padding:34px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    radial-gradient(circle at top right, rgba(99,232,255,.10), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,122,26,.14), transparent 32%);
  box-shadow:0 18px 50px rgba(0,0,0,.22), 0 0 24px rgba(99,232,255,.05);
}

.cta-band h2{
  max-width:15ch;
  margin-bottom:12px;
}

.cta-band p{
  max-width:62ch;
  margin-bottom:0;
}

/* =========================================================
   11. FOOTER
========================================================= */
.footer{
  padding:30px 0 50px;
  color:var(--muted);
  font-size:14px;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  align-items:center;
}

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer-links a{
  color:var(--text);
}

.visually-hidden{
  position:absolute !important;
  height:1px;
  width:1px;
  overflow:hidden;
  clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
}

/* =========================================================
   12. OTHER EXISTING THEME SECTIONS
   Kept so other pages do not break
========================================================= */
.project-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.project-card{
  padding:22px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  position:relative;
  overflow:hidden;
}
.project-card::before{
  content:"";
  position:absolute;
  inset:auto -10% -35% auto;
  width:180px;
  height:180px;
  background:radial-gradient(circle, rgba(255,94,188,.18), transparent 64%);
}
.project-card p{font-size:16px}

.mood-shell{
  position:relative;
  background:linear-gradient(180deg, rgba(18,20,33,.95), rgba(14,17,28,.9));
  border-radius:32px;
  padding:18px;
  max-width:420px;
  margin-left:auto;
}
.mood-shell::before{
  content:"";
  position:absolute;
  inset:auto auto -8% -8%;
  width:180px;
  height:180px;
  background:radial-gradient(circle, rgba(255,125,167,.22), transparent 70%);
}

.device-shell{
  background:linear-gradient(180deg, rgba(255,245,249,.08), rgba(255,255,255,.03));
  padding:14px;
  border-radius:34px;
  border-color:rgba(255,211,224,.16);
}
.device-screen{
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.1);
  background:#10131f;
}
.device-screen img{width:100%;height:auto;display:block}

.pikamood-page .page-hero{padding-bottom:18px}
.pika-wrap{
  --pika-text:#fff7fb;
  --pika-muted:#d6c8d4;
  --pika-line:rgba(255,208,224,.16);
}
.pika-wrap p{color:var(--pika-muted)}
.pika-hero{display:grid;grid-template-columns:1.05fr .95fr;gap:28px;align-items:center}

.pika-surface,
.privacy-card,
.faq-item{
  background:linear-gradient(180deg, rgba(255,244,248,.08), rgba(255,255,255,.035));
  border-color:rgba(255,209,224,.16);
}

.pika-surface{
  padding:28px;
  border-radius:30px;
  box-shadow:0 12px 40px rgba(0,0,0,.24), 0 0 32px rgba(255,126,168,.08);
}

.app-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:76px;
  height:76px;
  border-radius:24px;
  background:linear-gradient(180deg,#ff7ca8,#c789ff);
  color:#fff;
  font-size:34px;
  box-shadow:0 12px 24px rgba(255,125,167,.22);
}

.hero-app-head{display:flex;gap:18px;align-items:center;margin-bottom:18px}
.hero-app-head h1{font-size:clamp(40px,7vw,76px);max-width:none}
.hero-app-head p{max-width:40ch}
.mockup-stack{display:grid;grid-template-columns:.9fr .7fr;gap:16px;align-items:end}
.mockup-mini{transform:translateY(20px)}

.screenshot-card{
  padding:14px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,209,224,.16);
}
.screenshot-card span{display:block;margin-top:10px;color:var(--pika-muted);font-size:14px}

.feature-card{
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid rgba(255,209,224,.16);
}
.feature-card h3{font-size:22px}
.feature-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, rgba(255,125,167,.18), rgba(199,137,255,.14));
  font-size:22px;
  margin-bottom:16px;
}

.privacy-links{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.step-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.step-card{
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,209,224,.16);
}
.step-no{
  width:36px;
  height:36px;
  border-radius:999px;
  background:linear-gradient(180deg,#ff7ca8,#c789ff);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  margin-bottom:14px;
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  font-size:18px;
  font-weight:700;
  color:#fff;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item[open] summary{margin-bottom:12px}

.support-box{
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,209,224,.16);
}

.policy-wrap h1{max-width:none}

/* =========================================================
   13. ANIMATIONS
========================================================= */
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:700ms ease;
}

.reveal.show{
  opacity:1;
  transform:none;
}

.tilt{
  transform-style:preserve-3d;
  transition:transform .25s ease;
}

.scanline{
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(99,232,255,.8),transparent);
  filter:blur(1px);
  animation:scan 5s linear infinite;
  opacity:.8;
}

@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(20px)}}
@keyframes floatySoft{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes scan{0%{transform:translateY(0)}100%{transform:translateY(320px)}}
@keyframes pulseRing{0%{box-shadow:0 0 0 0 rgba(255,122,26,.55)}70%{box-shadow:0 0 0 14px rgba(255,122,26,0)}100%{box-shadow:0 0 0 0 rgba(255,122,26,0)}}
@keyframes pulseDot{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.18);opacity:.65}}
@keyframes particleFloat{0%{transform:translateY(40px) scale(.6);opacity:0}15%{opacity:.9}100%{transform:translateY(-120px) scale(1.05);opacity:0}}
@keyframes rotateRing{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes signalPulse{0%{transform:scale(0.9);opacity:0.15}70%{transform:scale(1.12);opacity:0.35}100%{transform:scale(1.22);opacity:0}}
@keyframes consoleSweep{0%{transform:translateX(-120%)}100%{transform:translateX(140%)}}
@keyframes navSweep{0%{transform:translateX(-120%)}100%{transform:translateX(140%)}}

/* =========================================================
   14. RESPONSIVE
   Adjust these if tablet/mobile needs more tuning
========================================================= */
@media (max-width:980px){
  .hero-grid-premium,
  .split-highlight,
  .cta-band{
    grid-template-columns:1fr;
  }

  .package-grid{
    grid-template-columns:1fr;
  }

  .hero-visual{
    min-height:460px;
  }

  .floating-stack{
    display:none;
  }

  .pricing-card.highlight{
    transform:none;
  }
}

@media (max-width:980px){
  .nav-wrap{
    min-height:auto;
    padding:14px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .nav-center{
    order:3;
    width:100%;
  }

  .nav-cta{
    order:2;
  }
}

@media (max-width:900px){
  .container{
    width:min(100%, calc(100% - 32px));
  }

  .section{
    padding:54px 0;
  }

  .section-lg{
    padding:68px 0;
  }

  .hero-ai{
    padding:108px 0 48px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .project-grid,
  .support-grid,
  .pika-hero,
  .feature-grid,
  .stat-grid,
  .mood-screenshot-grid,
  .mockup-stack,
  .step-grid,
  .service-grid-4{
    grid-template-columns:1fr;
  }

  .hero-copy h1,
  .hero-app-head h1,
  .section-head h2,
  .big-panel h2,
  .cta-band h2,
  .service-card h3,
  .pricing-card h3{
    max-width:none;
  }

  p{
    font-size:16px;
  }

  .hero-lead{
    font-size:18px;
  }

  .mood-shell{
    margin:0 auto;
  }
}

@media (max-width:760px){
  .hero-visual{
    min-height:360px;
  }

  .metric-row{
    display:grid;
    grid-template-columns:1fr;
  }

  .hero-console{
    min-height:auto;
    padding:20px 18px 18px;
  }

  .console-lines{
    font-size:14px;
    gap:12px;
  }

  .service-card,
  .pricing-card,
  .cta-band,
  .ai-panel,
  .big-panel{
    padding:22px;
    min-height:auto;
  }
}

@media (max-width:640px){
  .site-header{
    top:10px;
  }

  .site-header .container{
    width:min(100%, calc(100% - 18px));
  }

  .nav-shell{
    border-radius:22px;
  }

  .nav-wrap{
    padding:12px;
  }

  .nav-menu{
    justify-content:center;
    flex-wrap:wrap;
  }

  .nav-menu a{
    min-height:40px;
    padding:0 13px;
    font-size:13px;
  }

  .nav-cta{
    width:100%;
    min-width:0;
  }

  .brand{
    font-size:13px;
  }

  .glass,
  .soft-card,
  .privacy-card,
  .faq-item,
  .timeline-card{
    padding:20px;
  }

  .actions{
    gap:10px;
  }

  .btn{
    width:100%;
  }

  .metric{
    min-width:unset;
    width:100%;
  }
}