/* ---------------------------------------------------------
   Aumiller Cyberworks — v5 theme, "sexy" pass
   Built on v4's structure/content, restyled using techniques
   pulled from real production CSS on Linear, Vercel, Stripe
   and Framer: warm near-black base, translucent hairline
   borders (not flat gray), a film-grain texture overlay,
   ambient blurred gradient orbs, cursor-tracked spotlight glow
   on cards, and a light-sweep on the primary button. Same
   navy/orange brand palette throughout.
--------------------------------------------------------- */

:root {
  --bg: #08090a;
  --layer: #101113;
  --layer-2: #16171a;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f6f8;
  --text-dim: #9a9ea6;
  --navy: #3d7de0;
  --navy-glow: rgba(61, 125, 224, 0.22);
  --orange: #ec5401;
  --orange-bright: #ff7a29;
  --orange-glow: rgba(255, 122, 41, 0.28);
  --radius: 10px;
  --wrap: 1140px;
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-dim);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img, svg { max-width: 100%; }

h1, h2, h3 {
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.15rem; margin-bottom: .4em; color: var(--text); }
p { margin: 0 0 1em; }
a { color: var(--orange-bright); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #08090a;
  padding: 10px 16px;
  z-index: 300;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Film grain — a fixed, low-opacity noise layer over the whole
   page. This is the single biggest "why does this look expensive"
   trick top-tier sites use to keep flat dark color from reading
   sterile. Pure CSS, no image request. */
.grain {
  position: fixed;
  inset: -200px;
  z-index: 250;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Gradient text accent */
.grad-text {
  background: linear-gradient(100deg, var(--orange-bright), #ffb066 60%, var(--orange-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin: 0 0 18px;
}
.eyebrow.center { display: block; width: fit-content; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .8em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
  font-family: var(--font);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: filter .16s var(--ease), border-color .16s var(--ease), transform .16s var(--ease), background .16s var(--ease);
}
.btn svg { width: 1.1em; height: 1.1em; fill: currentColor; }
.btn-lg { padding: 1em 2em; font-size: 1.05rem; }
.btn-primary {
  background: var(--orange);
  color: #08090a;
  box-shadow: 0 8px 24px -8px var(--orange-glow);
}
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); filter: brightness(1); }

/* Light-sweep on the primary CTA — a soft diagonal highlight that
   travels across the button on hover. */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.5) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease);
}
.btn-primary:hover::after { transform: translateX(120%); }

.btn-outline {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 10, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.brand-mark { height: 44px; width: auto; display: block; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-actions .btn {
  padding: .6em 1.3em;
  font-size: .92rem;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: color .16s var(--ease);
}
.main-nav a:hover { color: var(--text); }
.main-nav a.nav-highlight {
  color: var(--orange-bright);
  font-weight: 700;
}
.main-nav a.nav-highlight:hover { color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--text);
}

/* Hero */
.hero {
  position: relative;
  padding: 76px 0 0;
  overflow: hidden;
}

/* Ambient network canvas — faint drifting nodes/connections behind the
   hero copy, pure decoration (pointer-events: none, no visual affordance
   that it's clickable). Skipped entirely for reduced-motion users, see
   js/site.js. */
#net-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; width: 100%; height: 100%; }

/* Ambient gradient orbs — slow-drifting blurred blobs behind the
   hero copy, the "mesh gradient" look Stripe/Linear popularized. */
.hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.orb-orange {
  width: 480px; height: 480px;
  top: -180px; right: -80px;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  animation: drift-a 26s ease-in-out infinite;
}
.orb-blue {
  width: 420px; height: 420px;
  top: 60px; left: -160px;
  background: radial-gradient(circle, var(--navy-glow), transparent 70%);
  animation: drift-b 32s ease-in-out infinite;
}
@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.08); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 56px;
}
.hero-copy { max-width: 620px; }

/* Hero scanline — a short glowing bar under the headline with a light
   sweeping across it left-to-right on a loop. Confined to this one spot
   (not a full-page sweep) per Jess's request. */
.hero-scanline {
  position: relative;
  height: 2px;
  margin: 20px 0 22px;
  background: rgba(255, 122, 41, .14);
  border-radius: 1px;
  overflow: hidden;
}
.hero-scanline::after {
  content: "";
  position: absolute;
  top: 0; left: -30%;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 41, .95), transparent);
  box-shadow: 0 0 8px 2px rgba(255, 122, 41, .5);
  animation: hero-scan-sweep 3.2s ease-in-out infinite;
}
@keyframes hero-scan-sweep {
  0%, 15% { left: -30%; }
  85%, 100% { left: 100%; }
}
.hero-sub { font-size: 1.12rem; max-width: 600px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 30px 0 8px; }

.hero-emblem { display: flex; justify-content: center; }
.hero-emblem img { width: 100%; max-width: 400px; filter: drop-shadow(0 24px 48px rgba(0,0,0,.55)); }

.trust-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  list-style: none;
  margin: 0 auto;
  padding: 26px 24px;
  border-top: 1px solid var(--line);
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.trust-strip svg { width: 18px; height: 18px; fill: var(--orange-bright); flex-shrink: 0; }

/* Sections generic */
section { padding: 76px 0; border-top: 1px solid var(--line); position: relative; }
.section-title { text-align: center; }
.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* Glow cards — a soft radial highlight that follows the cursor,
   driven by --mx/--my custom properties set from JS. */
.glow-card {
  position: relative;
  background: var(--layer);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,.06), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.glow-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.glow-card:hover::before { opacity: 1; }

/* Services */
.service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card { padding: 32px; }
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.icon-badge svg { width: 24px; height: 24px; fill: #fff; }
.icon-navy { background: linear-gradient(155deg, var(--navy), #24508f); }
.icon-orange { background: linear-gradient(155deg, var(--orange-bright), var(--orange)); }
.service-card h3, .service-card .service-list { position: relative; z-index: 1; }
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.service-list li {
  padding-left: 26px;
  position: relative;
  color: var(--text-dim);
  line-height: 1.35;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
}

/* Pricing */
.speaking-body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.speaking-body p { color: var(--text-dim); }
.speaking-rates {
  margin-top: 14px;
  font-size: .88rem;
  color: var(--text-dim);
}
.speaking-topics {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 32px;
  margin: 24px auto 32px;
  padding: 0;
  list-style: none;
  text-align: left;
}
.speaking-topics li {
  color: var(--text);
  font-size: .95rem;
  padding-left: 22px;
  position: relative;
}
.speaking-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
@media (max-width: 640px) {
  .speaking-topics { grid-template-columns: 1fr; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  padding: 30px;
  text-align: center;
  border-top: 2px solid var(--orange) !important;
}
.pricing-card p, .pricing-card h3 { position: relative; z-index: 1; }
.pricing-card p { margin: 0; }

/* Remote support */
.remote-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.remote-inner > div { max-width: 560px; }
.remote-inner p { margin: 0; }

/* Contact */
.contact-card {
  padding: 56px 24px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-photo {
  margin: -56px -24px 32px;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.9) brightness(.85);
}
.contact-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 9, 10, 0) 40%, var(--layer) 100%);
}

.contact-form {
  text-align: left;
  margin: 8px 0 20px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.form-row .optional { font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: .7em .9em;
  background: var(--layer-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color .16s var(--ease);
}
.form-row select { appearance: none; -webkit-appearance: none; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin: 14px 0 0;
  font-size: .9rem;
  min-height: 1.2em;
}
.form-status.ok { color: #4ade80; }
.form-status.err { color: var(--orange-bright); }
.contact-alt { color: var(--text-dim); margin: 4px 0 6px; font-size: .92rem; }
.contact-alt a { color: var(--orange-bright); }
.contact-email { margin: 8px 0 20px; }
.service-area { color: var(--text-dim); margin: 0; }

/* Footer */
.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-mark { width: 22px; height: 22px; opacity: .85; }
.site-footer p { margin: 0; font-size: .85rem; color: var(--text-dim); }

/* Credentials */
.credential-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 8px;
}
.credential-badge { display: inline-block; line-height: 0; opacity: .92; transition: opacity .16s var(--ease); }
.credential-badge:hover { opacity: 1; }
.credential-badge img { height: 74px; width: auto; display: block; }
.credential-badge-card {
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}
.credential-badge-card img { height: 40px; }
@media (max-width: 640px) {
  .credential-row { gap: 24px; }
  .credential-badge img { height: 58px; }
  .credential-badge-card img { height: 32px; }
}

/* Coverage & Availability */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.coverage-card {
  padding: 24px 18px;
  text-align: center;
}
.coverage-pin {
  width: 28px;
  height: 28px;
  fill: var(--orange-bright);
  margin-bottom: 10px;
}
.coverage-card h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--text);
}
.coverage-card p {
  margin: 0;
  font-size: .85rem;
  color: var(--text-dim);
}
.coverage-availability {
  text-align: center;
  margin: 28px 0 0;
  font-size: .92rem;
  color: var(--text-dim);
}
@media (max-width: 860px) {
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .coverage-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 32px; }
  .hero-emblem { order: -1; max-width: 260px; margin: 0 auto; }
  .service-columns { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s var(--ease);
  }
  .main-nav.open { max-height: 320px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .main-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: flex; }
  .header-actions { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .main-nav { transition: none; }
  .orb { animation: none; }
  .hero-scanline::after { animation: none; left: 50%; }
}

/* Scam Alerts page */
.scam-hero {
  padding: 64px 0 24px;
}
.scam-hero h1 { margin: 0 0 16px; }
.scam-hero .hero-sub { max-width: 720px; }
.scam-updated {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 14px;
  background: var(--layer);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--text-dim);
}
.scam-updated strong { color: var(--text); }

.scam-list {
  padding: 24px 0 72px;
}
.scam-list .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.scam-card { padding: 28px; }
.scam-card h2 { font-size: 1.2rem; margin: 12px 0 10px; }
.scam-card > p { margin: 0 0 12px; }
.scam-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-phone { background: rgba(61, 125, 224, .18); color: #8fb8f5; }
.badge-text { background: rgba(255, 122, 41, .18); color: var(--orange-bright); }
.badge-email { background: rgba(255, 255, 255, .1); color: var(--text); }
.badge-online { background: rgba(143, 227, 136, .15); color: #8fe388; }
.badge-fraud { background: rgba(255, 99, 99, .16); color: #ff8f8f; }
.badge-ransomware { background: rgba(255, 99, 99, .16); color: #ff8f8f; }
.badge-vuln { background: rgba(255, 122, 41, .18); color: var(--orange-bright); }
.badge-phish { background: rgba(61, 125, 224, .18); color: #8fb8f5; }
.scam-flags {
  margin: 0 0 14px;
  padding-left: 20px;
  color: var(--text-dim);
  font-size: .92rem;
}
.scam-flags li { margin-bottom: 4px; }
.scam-action {
  font-size: .92rem;
  margin: 0 0 12px;
}
.scam-source {
  font-size: .82rem;
  color: var(--text-dim);
  margin: 0;
}
.scam-source a { color: var(--orange-bright); }
.scam-crosslink {
  margin-top: 14px;
  font-size: .92rem;
  color: var(--text-dim);
}
.scam-crosslink a { color: var(--orange-bright); }

@media (max-width: 780px) {
  .scam-list .wrap { grid-template-columns: 1fr; }
}
