:root {
  --bg: #070808;
  --panel: #090b0d;
  --line: #153334;
  --text: #d9e2d2;
  --muted: #8ea090;
  --orange: #ff8f3f;
  --blue: #58b8ff;
  --green: #8fe99f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "IBM Plex Mono", monospace;
  background: radial-gradient(circle at 50% -25%, #10222a 0%, transparent 42%), var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.screen-effects,
.screen-effects::before,
.screen-effects::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.screen-effects {
  z-index: 10;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 3px;
  opacity: 0.12;
}

.screen-effects::before {
  background-image: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.42) 100%);
}

.screen-effects::after {
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 40 40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='0.8' stroke-width='0.2'/%3E%3C/svg%3E");
  animation: noiseShift 10s linear infinite;
}

.top-bar {
  width: min(1100px, 92vw);
  margin: 22px auto 0;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.logo,
.top-link {
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.92rem;
}

.logo {
  display: block;
  line-height: 1.35;
}

.logo-display-desktop,
.logo-display-mobile {
  display: inline-block;
}

.logo-display-mobile {
  white-space: normal;
}

.top-link {
  color: var(--orange);
}

.top-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-mode-toggle {
  border: 1px solid var(--line);
  color: var(--blue);
  background: rgba(8, 14, 16, 0.68);
  font-family: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 8px 10px;
  cursor: pointer;
}

.theme-mode-toggle:hover {
  color: var(--orange);
}

.top-link:hover {
  color: var(--blue);
}

.layout {
  width: min(1100px, 92vw);
  margin: 42px auto 70px;
}

.site-footer {
  width: min(1100px, 92vw);
  margin: 18px auto 34px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.site-footer-version {
  text-align: left;
  white-space: nowrap;
}

.site-footer-main {
  margin-left: auto;
  text-align: right;
}

@media (max-width: 720px) {
  .site-footer {
    flex-direction: column;
    gap: 6px;
  }

  .site-footer-main {
    margin-left: 0;
    text-align: left;
  }
}

.site-footer a {
  color: var(--blue);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.hero {
  max-width: 100%;
}

.hero-cinematic {
  position: relative;
  min-height: 520px;
  aspect-ratio: 1186 / 559;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #030507;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  filter: none;
  opacity: 0;
  z-index: 0;
  transition: opacity 220ms ease;
}

.hero-fallback-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 1;
  transition: opacity 220ms ease;
}

.hero-cinematic.hero-video-active .hero-video {
  opacity: 1;
}

.hero-cinematic.hero-video-active .hero-fallback-image {
  opacity: 0;
}

.hero-cinematic.hero-enhanced .hero-video {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.01) brightness(1.01);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.16) 72%),
    linear-gradient(180deg, rgba(1, 5, 8, 0.06) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-cinematic.hero-enhanced .hero-vignette {
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.24) 72%),
    linear-gradient(180deg, rgba(1, 5, 8, 0.08) 0%, rgba(0, 0, 0, 0.28) 100%);
}

body:is([data-theme="bright"], [data-theme="day"]) {
  --bg: #f4fafc;
  --panel: #ffffff;
  --line: #9cbfcc;
  --text: #0f2a33;
  --muted: #355865;
  --orange: #cb5e1a;
  --blue: #0b7ecf;
  --green: #1c9760;
  background: radial-gradient(circle at 50% -25%, #d6eef6 0%, transparent 42%), var(--bg);
}

body:is([data-theme="bright"], [data-theme="day"]) .screen-effects {
  opacity: 0.03;
}

body:is([data-theme="bright"], [data-theme="day"]) .screen-effects::before {
  background-image: radial-gradient(circle at center, transparent 42%, rgba(255, 255, 255, 0.13) 100%);
}

body:is([data-theme="bright"], [data-theme="day"]) .hero-title {
  text-shadow: 0 2px 6px rgba(4, 18, 24, 0.32);
}

body:is([data-theme="bright"], [data-theme="day"]) .hero-cinematic {
  background: #d9ecf3;
}

body:is([data-theme="bright"], [data-theme="day"]) .hero-vignette {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.06) 0%, rgba(5, 16, 22, 0.09) 72%),
    linear-gradient(180deg, rgba(180, 215, 228, 0.08) 0%, rgba(12, 27, 36, 0.19) 100%);
}

body:is([data-theme="bright"], [data-theme="day"]) .hero-cinematic.hero-enhanced .hero-vignette {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.08) 0%, rgba(5, 16, 22, 0.12) 72%),
    linear-gradient(180deg, rgba(180, 215, 228, 0.1) 0%, rgba(12, 27, 36, 0.24) 100%);
}

body:is([data-theme="bright"], [data-theme="day"]) .top-bar,
body:is([data-theme="bright"], [data-theme="day"]) .site-footer {
  border-color: #a5c4d0;
}

body:is([data-theme="bright"], [data-theme="day"]) .theme-mode-toggle {
  background: #fff;
}

body:is([data-theme="bright"], [data-theme="day"]) .service-link,
body:is([data-theme="bright"], [data-theme="day"]) .chat-shell,
body:is([data-theme="bright"], [data-theme="day"]) .ticker-shell,
body:is([data-theme="bright"], [data-theme="day"]) .highlights-box,
body:is([data-theme="bright"], [data-theme="day"]) .testimonial-card,
body:is([data-theme="bright"], [data-theme="day"]) .article-link,
body:is([data-theme="bright"], [data-theme="day"]) .ascii-spinner-box,
body:is([data-theme="bright"], [data-theme="day"]) .ascii-spinner-output,
body:is([data-theme="bright"], [data-theme="day"]) .ceo-panel,
body:is([data-theme="bright"], [data-theme="day"]) .contact-form,
body:is([data-theme="bright"], [data-theme="day"]) .contact-direct img {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(8, 37, 51, 0.05);
}

body:is([data-theme="bright"], [data-theme="day"]) .highlights-box,
body:is([data-theme="bright"], [data-theme="day"]) .testimonial-card.featured {
  background: linear-gradient(180deg, #ffffff, #f6fbfd 74%);
}

body:is([data-theme="bright"], [data-theme="day"]) .article-thumb.placeholder,
body:is([data-theme="bright"], [data-theme="day"]) .testimonial-avatar.placeholder {
  background: linear-gradient(135deg, #d7e8ef, #edf6fa);
}

body:is([data-theme="bright"], [data-theme="day"]) .ascii-spinner-box,
body:is([data-theme="bright"], [data-theme="day"]) .ascii-spinner-output,
body:is([data-theme="bright"], [data-theme="day"]) .ceo-panel,
body:is([data-theme="bright"], [data-theme="day"]) .chat-shell,
body:is([data-theme="bright"], [data-theme="day"]) .chat-log,
body:is([data-theme="bright"], [data-theme="day"]) .chat-form,
body:is([data-theme="bright"], [data-theme="day"]) .chat-form input,
body:is([data-theme="bright"], [data-theme="day"]) .contact-form input,
body:is([data-theme="bright"], [data-theme="day"]) .contact-form select,
body:is([data-theme="bright"], [data-theme="day"]) .contact-form textarea {
  color: var(--text);
}

body:is([data-theme="bright"], [data-theme="day"]) .chat-input-prefix,
body:is([data-theme="bright"], [data-theme="day"]) .chat-faux-cursor,
body:is([data-theme="bright"], [data-theme="day"]) .ask-limit {
  color: #0f8b53;
}

body:is([data-theme="bright"], [data-theme="day"]) .testimonial-quote,
body:is([data-theme="bright"], [data-theme="day"]) .section-copy,
body:is([data-theme="bright"], [data-theme="day"]) .ceo-copy,
body:is([data-theme="bright"], [data-theme="day"]) .article-meta {
  color: var(--text);
}

body:is([data-theme="bright"], [data-theme="day"]) .article-path,
body:is([data-theme="bright"], [data-theme="day"]) .testimonial-meta,
body:is([data-theme="bright"], [data-theme="day"]) .contact-status {
  color: var(--muted);
}

body:is([data-theme="bright"], [data-theme="day"]) .contact-form button,
body:is([data-theme="bright"], [data-theme="day"]) .chat-form button,
body:is([data-theme="bright"], [data-theme="day"]) .view-all-link,
body:is([data-theme="bright"], [data-theme="day"]) .action-button {
  background: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 7vw, 80px) clamp(18px, 4vw, 52px);
  max-width: 76ch;
}

.hero-overlay-number {
  position: absolute;
  right: clamp(12px, 2vw, 22px);
  bottom: clamp(12px, 2.1vw, 24px);
  z-index: 3;
  width: min(42vw, 360px);
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.55));
}

.hero-title {
  margin: 0;
  font-size: clamp(1.4rem, 3.8vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.88), 0 10px 30px rgba(0, 0, 0, 0.72);
  transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
}

.hero-title.hero-title-fade {
  opacity: 0.08;
  transform: translateY(-2px);
  filter: blur(2px);
}

.hero-title::after {
  content: "_";
  margin-left: 4px;
  animation: blink 1s steps(2, end) infinite;
}

.hero-ascii {
  margin: 0;
  color: var(--green);
  line-height: 1.12;
  font-size: clamp(0.46rem, 1.2vw, 0.95rem);
  letter-spacing: 0.03em;
  overflow-x: auto;
  white-space: pre;
}

.hero-copy {
  margin: 16px 0 0;
  color: var(--text);
  line-height: 1.6;
  max-width: 65ch;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.82);
}

.hero-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.82);
}

.hero-content > * {
  opacity: 1;
  transform-origin: center;
}

.section {
  margin-top: 72px;
}

.ask-spinner-row {
  margin-top: 72px;
}

.section-title {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--orange);
}

.section-copy {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.about-copy p {
  margin: 0 0 10px;
  line-height: 1.7;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-toggle {
  margin-top: 14px;
  margin-bottom: 14px;
}

.about-logo-home {
  margin: 0 auto 14px;
  max-width: min(100%, 560px);
}

.about-logo-home-img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  background: transparent;
}

body:is([data-theme="bright"], [data-theme="day"]) .about-logo-home-img {
  background: transparent;
}

#brand-strip #about-line-meta {
  text-align: center;
  margin-bottom: 24px;
}

.section-meta {
  color: color-mix(in srgb, var(--green) 68%, var(--muted));
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: pre-line;
}

.section-submeta {
  color: var(--blue);
  letter-spacing: 0.04em;
}

desktoponly,
.desktop-only {
  display: inline;
}

mobileonly,
.mobile-only {
  display: none;
}

.highlights-box {
  margin-top: 14px;
  border: 1px solid color-mix(in srgb, var(--blue) 45%, var(--line));
  background: linear-gradient(180deg, rgba(88, 184, 255, 0.07), rgba(11, 16, 20, 0.9));
  padding: 14px 16px;
}

.highlights-box .section-copy {
  margin-top: 8px;
}

.highlights-primary {
  margin-top: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.75rem);
  letter-spacing: 0.04em;
}

.highlights-note {
  color: var(--muted);
}

.highlights-note p {
  margin: 0 0 10px;
  line-height: 1.7;
}

.highlights-note p:last-child {
  margin-bottom: 0;
}

.highlights-toggle {
  margin-top: 12px;
}

.ascii-spinner-box {
  margin-top: 14px;
  border: 1px solid var(--line);
  background: #0b1014;
  padding: 12px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.ascii-spinner-output {
  margin: 12px 0 0;
  min-height: 0;
  flex: 1;
  border: 1px solid color-mix(in srgb, var(--blue) 36%, var(--line));
  padding: 14px;
  overflow: auto;
  color: var(--green);
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.15;
  font-size: clamp(0.92rem, 1.25vw, 1.15rem);
  display: grid;
  place-items: center;
  text-align: center;
}

.spinner-generated-image {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}

.ticker-shell {
  margin-top: 14px;
  border: 1px solid var(--line);
  background: #0b1014;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  justify-content: var(--ticker-justify, flex-end);
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
  animation: clientTicker linear infinite;
  animation-duration: var(--ticker-duration, 45s);
  padding: 10px 0;
}

.ticker-item {
  color: var(--muted);
  letter-spacing: 0.03em;
  font-size: 0.93rem;
  display: inline-block;
  text-align: var(--ticker-item-align, right);
}

.ticker-item strong {
  color: var(--orange);
}

.services-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  padding: 13px 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}

.service-link::before {
  content: ">";
  color: var(--orange);
}

.service-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 143, 63, 0.06);
}

.clients-cloud {
  position: relative;
  min-height: 300px;
  margin-top: 20px;
  border: 1px solid var(--line);
  padding: 20px;
  overflow: hidden;
}

.client-item {
  position: absolute;
  text-decoration: none;
  color: var(--orange);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: color 120ms ease, text-shadow 120ms ease, transform 120ms ease;
  animation: drift var(--drift, 18s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.client-item.has-content {
  color: var(--blue);
}

.client-item:hover {
  color: var(--blue);
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(88, 184, 255, 0.6);
}

.client-item[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.testimonials-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.testimonial-card {
  border: 1px solid var(--line);
  background: #0b1014;
  padding: 14px;
  transition: border-color 140ms ease;
}

.testimonial-card.featured {
  border-color: color-mix(in srgb, var(--blue) 38%, var(--line));
  background: linear-gradient(180deg, rgba(88, 184, 255, 0.06), rgba(11, 16, 20, 0.95));
}

.testimonial-card:hover {
  border-color: var(--blue);
}

.testimonial-link-card {
  text-decoration: none;
}

.testimonial-badge {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-person {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}

.testimonial-avatar.placeholder {
  background: linear-gradient(135deg, #1a2733, #0d151d);
}

.testimonial-quote {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.testimonial-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.testimonial-tag {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.testimonial-readmore {
  display: inline-block;
  margin-top: 10px;
  color: var(--orange);
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.section-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-actions .view-all-link {
  margin-top: 0;
}

.action-button {
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.prompt-chips {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.prompt-chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 7px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: inherit;
  font-size: 0.75rem;
  cursor: pointer;
}

.prompt-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.chat-shell {
  margin-top: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  flex-direction: column;
}

.cursor {
  animation: blink 900ms steps(2, end) infinite;
}

.ask-limit {
  margin-top: 10px;
  color: var(--green);
  letter-spacing: 0.05em;
}

.ask-spinner-split .ask-spinner-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.ask-spinner-split #ask,
.ask-spinner-split #ascii-spinner {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.ask-spinner-split #ascii-spinner .ascii-spinner-output {
  min-height: 0;
}

.ask-spinner-split #ask .chat-shell,
.ask-spinner-split #ascii-spinner .ascii-spinner-box {
  flex: 1;
}

.ask-spinner-split #ask .chat-log {
  max-height: none;
}

.chat-log {
  min-height: 220px;
  max-height: 420px;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.chat-line {
  margin: 0;
  line-height: 1.5;
  color: var(--muted);
}

.chat-line strong {
  color: var(--text);
  font-weight: 500;
}

.chat-form {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}

.chat-form input,
.chat-form button,
.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form button {
  font: inherit;
  color: var(--text);
  background: transparent;
  border: 0;
}

.chat-form input {
  padding: 12px 12px 12px 62px;
  min-width: 0;
  width: 100%;
  caret-color: transparent;
}

.chat-input-shell {
  position: relative;
  min-width: 0;
}

.chat-input-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  z-index: 2;
  pointer-events: none;
}

.chat-faux-cursor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  z-index: 2;
  pointer-events: none;
  animation: blink 900ms steps(2, end) infinite;
}

.chat-measure {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.chat-form button {
  border-left: 1px solid var(--line);
  padding: 0 18px;
  color: var(--orange);
  cursor: pointer;
  white-space: nowrap;
  min-width: 98px;
}

.chat-form button:disabled,
.prompt-chip:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.contact-direct-line {
  margin: 10px 0 0;
}

.contact-call-link {
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.contact-call-link:hover {
  color: var(--orange);
}

.articles-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-link {
  display: grid;
  border: 1px solid var(--line);
  background: #0b1014;
  text-decoration: none;
  overflow: hidden;
}

.article-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.article-thumb.placeholder {
  background: linear-gradient(135deg, #1b2733, #0e151d);
}

.article-meta {
  padding: 10px 12px;
  color: var(--text);
}

.article-path {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}

.article-link:hover {
  border-color: var(--blue);
}

.view-all-link {
  margin-top: 14px;
  display: inline-block;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 9px 12px;
}

#about-toggle {
  padding: 2px 8px;
  font-size: 0.76rem;
  line-height: 1.05;
}

.filter-form {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: 2fr 1fr 1fr auto auto;
}

.filter-form input,
.filter-form select,
.filter-form button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 10px;
}

.filter-form button {
  color: var(--orange);
  cursor: pointer;
}

.filter-home-link {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.result-meta {
  margin-top: 10px;
  font-size: 0.88rem;
}

.status-flash {
  width: min(1100px, 92vw);
  margin: 14px auto 0;
  border: 1px solid var(--line);
  background: #0b1014;
  color: var(--muted);
  padding: 10px 12px;
  letter-spacing: 0.04em;
}

.status-flash.success {
  border-color: color-mix(in srgb, var(--green) 55%, var(--line));
  color: var(--green);
}

.status-flash.warn {
  border-color: color-mix(in srgb, var(--orange) 48%, var(--line));
  color: var(--orange);
}

.status-flash.error {
  border-color: color-mix(in srgb, #ff9d9d 55%, var(--line));
  color: #ff9d9d;
}

.is-disabled,
.is-disabled:hover {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.testimonial-category-heading {
  margin: 18px 0 8px;
  color: var(--blue);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.84rem;
  grid-column: 1 / -1;
}

.post-page {
  max-width: 980px;
}

.page-shell {
  margin-top: 36px;
}

.jump-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jump-anchor {
  position: relative;
  top: -84px;
}

.page-template-landing .post-title {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
}

.page-template-fullwidth {
  max-width: 100%;
}

.page-template-custom .post-body {
  max-width: 100%;
}

.post-title {
  margin: 14px 0 10px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.post-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  height: auto;
  border: 1px solid var(--line);
  margin-top: 14px;
}

.post-body {
  margin-top: 22px;
  color: var(--text);
  line-height: 1.8;
  font-size: 1.02rem;
}

.post-body p {
  color: var(--text);
  max-width: 76ch;
  margin: 0 0 1rem;
}

.post-body video,
.post-body iframe {
  display: none !important;
}

.post-body h2,
.post-body h3 {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-body h2 {
  margin: 2.2rem 0 0.9rem;
  font-size: 1.45rem;
}

.post-body h3 {
  margin: 1.8rem 0 0.8rem;
  font-size: 1.15rem;
}

.post-body ul,
.post-body ol {
  margin: 0.2rem 0 1.1rem 1.25rem;
  max-width: 76ch;
}

.post-body li {
  margin-bottom: 0.42rem;
}

.post-body a {
  color: var(--blue);
}

.post-body .wp-element-caption,
.post-body figcaption {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.post-body .blog-return-logo-img {
  display: block;
  max-width: min(100%, 920px) !important;
  width: 100% !important;
  max-height: 180px !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0;
  border: 1px solid var(--line);
  background: #020406;
}

body:is([data-theme="bright"], [data-theme="day"]) .post-body .blog-return-logo-img {
  background: #f4fbff;
}

#service-summary {
  max-width: 76ch;
  line-height: 1.7;
  font-size: 0.98rem;
}

.testimonial-person.detail {
  grid-template-columns: 58px 1fr;
  margin-top: 12px;
}

.testimonial-full {
  margin-top: 12px;
  color: var(--text);
  line-height: 1.7;
}

.testimonial-clients-block {
  margin-top: 20px;
}

.client-inline-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.client-inline-item {
  border: 1px solid var(--line);
  padding: 6px 10px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  font-size: 0.78rem;
}

.client-inline-item:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.contact-form {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  max-width: 100%;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--line);
  padding: 11px;
}

.contact-form select option {
  color: #071016;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-math-prompt {
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.contact-form button {
  border: 1px solid var(--orange);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px;
  width: 180px;
  cursor: pointer;
}

.contact-form button:hover {
  background: rgba(255, 143, 63, 0.08);
}

.recaptcha-slot {
  min-height: 78px;
}

.recaptcha-slot.hidden {
  display: none;
}

.contact-direct {
  margin-top: 16px;
  color: var(--muted);
}

.contact-direct img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  background: #0b1014;
}

.contact-status {
  margin-top: 10px;
  margin-bottom: 22px;
  color: var(--muted);
}

.contact-status.error {
  color: #ff9d9d;
}

.contact-status.success {
  color: var(--green);
}

.contact-context {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-columns {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-column {
  min-width: 0;
}

.contact-section-inline {
  margin-top: 30px;
  border: 1px solid var(--line);
  padding: 18px;
  background: #080d12;
  max-width: 760px;
}

.ceo-panel {
  border: 1px solid var(--line);
  padding: 16px;
  background: #0a0f14;
  min-height: 100%;
}

.ceo-title {
  margin: 0;
  color: var(--orange);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.98rem;
}

.ceo-copy {
  margin: 12px 0 0;
  color: var(--text);
  line-height: 1.5;
  white-space: pre-line;
}

.ceo-signoff {
  margin: 16px 0 0;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  white-space: pre-line;
}

.ceo-founder-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-decoration: none;
}

.ceo-founder-link:hover {
  color: var(--orange);
  text-decoration: underline;
}

.ceo-media-wrap {
  margin-top: 14px;
}

.ceo-media {
  width: 100%;
  border: 1px solid var(--line);
  display: block;
  object-fit: cover;
  max-height: 260px;
}

.ceo-media-quote {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes blink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

@keyframes noiseShift {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 8px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(8px, -8px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes clientTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 800px) {
  .hero-cinematic {
    min-height: 460px;
  }

  .hero-overlay-number {
    width: min(62vw, 300px);
    right: 8px;
    bottom: 8px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .clients-cloud {
    min-height: 360px;
  }

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

  .testimonials-list {
    grid-template-columns: 1fr;
  }

  .articles-list {
    grid-template-columns: 1fr;
  }

  .ticker-item {
    font-size: 0.86rem;
  }

  .filter-form {
    grid-template-columns: 1fr;
  }

  .filter-home-link {
    width: fit-content;
  }

  #about-line-meta {
    display: none;
  }

  desktoponly,
  .desktop-only {
    display: none !important;
  }

  mobileonly,
  .mobile-only {
    display: inline !important;
  }

  .ask-spinner-split .ask-spinner-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ask-spinner-split #ascii-spinner {
    margin-top: 72px;
  }
}

@media (max-width: 600px) {
  .hero-cinematic {
    min-height: 0;
    height: clamp(230px, 68vw, 300px);
    aspect-ratio: auto;
  }

  .hero-content {
    padding: 18px 12px 12px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(0.92rem, 5.2vw, 1.2rem);
    line-height: 1.14;
    letter-spacing: 0.038em;
  }

  .hero-overlay-number {
    width: min(52vw, 170px);
    right: 6px;
    bottom: 6px;
  }
}
