/*
Theme Name:  dPhish
Theme URI:   https://dphish.com
Author:      dPhish
Author URI:  https://dphish.com
Description: Official dPhish company website theme. Anti-phishing SaaS platform — Simulation, Detection & Response.
Version:     1.0.0
License:     Proprietary
Text Domain: dphish
Tags:        cybersecurity, saas, custom-menu, custom-logo, featured-images, full-width-template, blog
*/

/* ── Custom properties (brand tokens) ─────────────────────────────────────── */
:root {
  --color-brand-blue:   #0375F9;
  --color-brand-navy:   #211057;
  --color-brand-indigo: #3300CC;
  --color-brand-cyan:   #03F9F9;
}

/* ── Base ─────────────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lama Sans', sans-serif !important;
  overflow-x: hidden;
  color: #1e293b;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lama Sans', sans-serif !important;
}

::selection {
  background: rgba(3, 117, 249, 0.2);
  color: #211057;
}

/* ── Scroll animations ────────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="x-left"] {
  transform: translateX(-32px);
}
[data-animate="x-right"] {
  transform: translateX(32px);
}
[data-animate="scale"] {
  transform: scale(0.92);
}
[data-animate="fade"] {
  transform: none;
}
[data-animate].is-visible,
[data-animate="x-left"].is-visible,
[data-animate="x-right"].is-visible,
[data-animate="scale"].is-visible,
[data-animate="fade"].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="1"]  { transition-delay: 0.08s; }
[data-delay="2"]  { transition-delay: 0.16s; }
[data-delay="3"]  { transition-delay: 0.24s; }
[data-delay="4"]  { transition-delay: 0.32s; }
[data-delay="5"]  { transition-delay: 0.40s; }
[data-delay="6"]  { transition-delay: 0.48s; }

/* ── Utilities ────────────────────────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #0375F9 0%, #03F9F9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-hero {
  background: linear-gradient(135deg, #ffffff 0%, #03F9F9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-brand {

  background: linear-gradient(90deg, #2563EB 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-border {
  box-shadow: 0 0 0 1px rgba(3, 117, 249, 0.25), 0 0 40px rgba(3, 117, 249, 0.12);
}

/* ── Dark-section glass cards ─────────────────────────────────────────────── */
.card-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.card-glass:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

/* Swiper pagination on dark backgrounds */
.swiper-on-dark .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.30);
  opacity: 1;
}
.swiper-on-dark .swiper-pagination-bullet-active {
  background: #0375F9;
}

/* ── Button system ────────────────────────────────────────────────────────── */

/* Primary — blue gradient, shadow lift */
.btn-primary {
  border: 1px solid #2563EB;
  border-radius: 26843500px !important;         /* rounded-xl */
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  background: #2563EB;
  color: #fff !important;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover {
  color: #fff !important;
  box-shadow: 0 10.5px 15.75px -3.15px rgba(3, 117, 249, 0.30), 0 4.2px 6.3px -4.2px rgba(3, 117, 249, 0.30);

}
.btn-primary:active {
}
.btn-primary:disabled,
.btn-primary:disabled:hover {
  opacity: 0.60;
  cursor: not-allowed;
  transform: none;
}

/* Ghost on dark backgrounds — white border, transparent fill */
.btn-ghost-dark {
  border-radius: 26843500px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(43, 127, 255, 0.05);

  color: #fff !important;
  border: 1px solid rgba(43, 127, 255, 0.20);
  transition:
          background 0.2s ease,
          border-color 0.2s ease,
          box-shadow 0.25s ease;
}

.btn-ghost-dark:hover {
  background: #2563EB;
  border-color: #2563EB;

  color: #fff !important;
}

.btn-secondary {
  border-radius: 26843500px;
  border: 1px solid rgba(43, 127, 255, 0.20);
  background: rgba(43, 127, 255, 0.05);

  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  color: #fff !important;

  transition:
          background 0.2s ease,
          border-color 0.2s ease,
          box-shadow 0.25s ease;
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Rich dropdown panels — initial hidden state set by JS; CSS provides transitions only */
.nav-dropdown {
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

/* Transparent hover bridge — fills the visual gap between trigger and panel
   so the cursor never leaves the hover zone while travelling between them.
   Sized slightly larger than the mt-1 (4px) gap for safety on subpixel rendering. */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
  pointer-events: auto;
}

/* Chevron rotation on open */
.nav-chevron {
  transition: transform 0.2s ease;
}

.nav-group.nav-open .nav-chevron {
  transform: rotate(180deg);
}

/* Mobile accordion chevron */
.mobile-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mobile-accordion-trigger[aria-expanded="true"] .mobile-chevron {
  transform: rotate(180deg);
}


/* ── Accordion ────────────────────────────────────────────────────────────── */
.accordion-content {
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s;
}

.accordion-content.open {
  max-height: 400px;
  opacity: 1;
}

/* ── Custom scrollbar ─────────────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #0375F9; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3300CC; }

/* ── WordPress core ───────────────────────────────────────────────────────── */
.wp-block-image img,
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.entry-content h2 { font-size: 1.75rem; font-weight: 700; color: #211057; margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 1.375rem; font-weight: 700; color: #211057; margin: 1.5rem 0 0.75rem; }
.entry-content p  { color: #475569; line-height: 1.75; margin-bottom: 1.25rem; }
.entry-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; color: #475569; }
.entry-content ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; color: #475569; }
.entry-content li { margin-bottom: 0.4rem; line-height: 1.7; }
.entry-content a  { color: #0375F9; text-decoration: underline; }
.entry-content a:hover { color: #3300CC; }
.entry-content blockquote {
  border-left: 4px solid #0375F9;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #f8fafc;
  border-radius: 0 0.75rem 0.75rem 0;
  color: #334155;
  font-style: italic;
}
.entry-content pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1.25rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.entry-content code {
  background: #f1f5f9;
  color: #0375F9;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}
.entry-content pre code { background: transparent; color: inherit; padding: 0; }

/* ── Hero word animation ──────────────────────────────────────────────────── */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-30deg);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-word.revealed {
  opacity: 1;
  transform: none;
}

/* ── Ping animation ───────────────────────────────────────────────────────── */
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }

/* ── Pipeline scale ───────────────────────────────────────────────────────── */
.pipeline-bar {
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.6s ease;
  overflow: hidden; /* prevent absolutely-positioned children from leaking */
}
.pipeline-bar.is-visible {
  transform: scaleX(1);
  opacity: 1;
}

/* ── Brand color safety net (when Tailwind CDN hasn't resolved custom colors) */
.bg-brand-navy   { background-color: #211057 !important; }
.bg-brand-blue   { background-color: #0375F9 !important; }
.bg-brand-indigo { background-color: #3300CC !important; }
.bg-brand-cyan   { background-color: #03F9F9 !important; }
.text-brand-navy   { color: #211057 !important; }
.text-brand-blue   { color: #0375F9 !important; }
.text-brand-indigo { color: #3300CC !important; }
.text-brand-cyan   { color: #03F9F9 !important; }
.border-brand-blue   { border-color: #0375F9 !important; }
.border-brand-navy   { border-color: #211057 !important; }

/* ── Logo tag color safety nets (Tailwind CDN opacity modifiers on custom
      colors are unreliable without a compiled build) ───────────────────── */
.text-brand-blue\/70   { color: rgba(3, 117, 249, 0.70) !important; }
.text-brand-indigo\/60 { color: rgba(51, 0, 204, 0.60)  !important; }

/* ── Counter ──────────────────────────────────────────────────────────────── */
.counter-triggered { animation: none; }

/* ── Radar effect (hero right column) ────────────────────────────────────── */
@keyframes radarSpin {
  from { transform: rotate(20deg); }
  to   { transform: rotate(380deg); }
}
.radar-sweep {
  animation: radarSpin 10s linear infinite;
}

@keyframes radarFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes radarIconIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}


/* ── Pulse animation (tag chips) ──────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

/* ── Float animation (decorative elements) ───────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }

/* ── Marquee (infinite horizontal scroll strip) ───────────────────────────── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee { animation: marquee 30s linear infinite; }

/* ── Video modal ──────────────────────────────────────────────────────────── */
#video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#video-modal.open {
  display: flex;
}
#video-modal .modal-panel {
  width: 100%;
  max-width: 56rem;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
  position: relative;
  animation: modal-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modal-in {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
#video-modal video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ════════════════════════════════════════════════════════════════════════
   WPForms theming — scoped to .dphish-wpforms wrapper.
   To apply the brand-style form design to any WPForms shortcode, wrap it:

     <div class="dphish-wpforms">
       <?php echo do_shortcode('[wpforms id="42"]'); ?>
     </div>

   This isolates the styling so other WPForms instances on the site
   (e.g. inside a plugin) aren't accidentally restyled.
   ════════════════════════════════════════════════════════════════════════ */
.dphish-wpforms .wpforms-container,
.dphish-wpforms .wpforms-container * {
  box-sizing: border-box;
  font-family: 'LamaSans', 'Inter', sans-serif;
}
.dphish-wpforms .wpforms-container {
  max-width: 100%;
  margin: 0;
}

/* Reset WPForms' default field-container spacing to a cleaner stack */
.dphish-wpforms .wpforms-form .wpforms-field-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.dphish-wpforms .wpforms-form .wpforms-field {
  margin: 0 !important;
  padding: 0 !important;
}

/* Two-column row support — WPForms uses .wpforms-one-half / .wpforms-three-fourths etc.
   We respect those by using flex-basis so they sit side-by-side on tablet+. */
@media (min-width: 640px) {
  .dphish-wpforms .wpforms-form .wpforms-field-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .dphish-wpforms .wpforms-form .wpforms-field {
    flex: 1 1 100%;
  }
  .dphish-wpforms .wpforms-form .wpforms-field.wpforms-one-half,
  .dphish-wpforms .wpforms-form .wpforms-field.wpforms-first.wpforms-one-half {
    flex: 1 1 calc(50% - 0.625rem);
  }
  .dphish-wpforms .wpforms-form .wpforms-field.wpforms-one-third {
    flex: 1 1 calc(33.333% - 0.834rem);
  }
  .dphish-wpforms .wpforms-form .wpforms-field.wpforms-two-thirds {
    flex: 1 1 calc(66.666% - 0.417rem);
  }
}

/* Labels */
.dphish-wpforms .wpforms-field-label {
  display: block;
  margin-bottom: 0.375rem;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}
.dphish-wpforms .wpforms-field-label .wpforms-required-label,
.dphish-wpforms .wpforms-field-label-required,
.dphish-wpforms .wpforms-required {
  color: #ef4444;
  margin-left: 0.125rem;
}
.dphish-wpforms .wpforms-field-sublabel {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Inputs, textareas, selects */
.dphish-wpforms .wpforms-field input[type="text"],
.dphish-wpforms .wpforms-field input[type="email"],
.dphish-wpforms .wpforms-field input[type="url"],
.dphish-wpforms .wpforms-field input[type="tel"],
.dphish-wpforms .wpforms-field input[type="number"],
.dphish-wpforms .wpforms-field input[type="password"],
.dphish-wpforms .wpforms-field input[type="date"],
.dphish-wpforms .wpforms-field input[type="datetime-local"],
.dphish-wpforms .wpforms-field textarea,
.dphish-wpforms .wpforms-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  color: #1f2937;
  font-size: 0.9375rem;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.dphish-wpforms .wpforms-field textarea {
  min-height: 7rem;
  resize: vertical;
}
.dphish-wpforms .wpforms-field input::placeholder,
.dphish-wpforms .wpforms-field textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.dphish-wpforms .wpforms-field input:focus,
.dphish-wpforms .wpforms-field textarea:focus,
.dphish-wpforms .wpforms-field select:focus {
  outline: none;
  border-color: var(--color-brand-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(3, 117, 249, 0.12);
}

/* Custom select chevron (replaces the native one we hid with appearance:none) */
.dphish-wpforms .wpforms-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 18px 18px;
  padding-right: 2.5rem;
}

/* Checkboxes & radios */
.dphish-wpforms .wpforms-field-checkbox ul,
.dphish-wpforms .wpforms-field-radio ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.dphish-wpforms .wpforms-field-checkbox li,
.dphish-wpforms .wpforms-field-radio li {
  display: flex; align-items: center; gap: 0.625rem;
  color: #334155;
  font-size: 0.9375rem;
}
.dphish-wpforms .wpforms-field-checkbox input[type="checkbox"],
.dphish-wpforms .wpforms-field-radio input[type="radio"] {
  width: 1rem; height: 1rem;
  accent-color: var(--color-brand-blue);
}

/* Field descriptions */
.dphish-wpforms .wpforms-field-description {
  color: #6b7280;
  font-size: 0.8125rem;
  margin-top: 0.375rem;
}

/* Field errors */
.dphish-wpforms .wpforms-field input.wpforms-error,
.dphish-wpforms .wpforms-field textarea.wpforms-error,
.dphish-wpforms .wpforms-field select.wpforms-error {
  border-color: #ef4444;
  background: #fef2f2;
}
.dphish-wpforms .wpforms-field .wpforms-error,
.dphish-wpforms .wpforms-error-container {
  color: #dc2626;
  font-size: 0.8125rem;
  margin-top: 0.375rem;
  font-weight: 500;
}

/* Submit container + button — reuses .btn-primary visual identity */
.dphish-wpforms .wpforms-submit-container {
  margin-top: 1.75rem !important;
  padding: 0 !important;
}
.dphish-wpforms .wpforms-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  font-family: 'LamaSans', 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  background: linear-gradient(135deg, #0375F9 0%, #025fd4 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(3, 117, 249, 0.38),
              inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  width: 100%;
}
@media (min-width: 480px) {
  .dphish-wpforms .wpforms-submit { width: auto; min-width: 12rem; }
}
.dphish-wpforms .wpforms-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #1a85ff 0%, #0375F9 100%);
  box-shadow: 0 8px 32px rgba(3, 117, 249, 0.54),
              inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
  color: #ffffff !important;
}
.dphish-wpforms .wpforms-submit:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(3, 117, 249, 0.32);
}
.dphish-wpforms .wpforms-submit:disabled {
  opacity: 0.60;
  cursor: not-allowed;
  transform: none;
}
.dphish-wpforms .wpforms-submit-spinner { margin-left: 0.5rem; }

/* Confirmation message after successful submit */
.dphish-wpforms .wpforms-confirmation-container,
.dphish-wpforms .wpforms-confirmation-container-full {
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background: rgba(3, 117, 249, 0.06);
  border: 1px solid rgba(3, 117, 249, 0.20);
  color: #1e3a8a;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.dphish-wpforms .wpforms-confirmation-container p { margin: 0; }

/* Hide the "Notice: Powered by WPForms" line cleanly */
.dphish-wpforms .wpforms-footer .wpforms-credit { display: none; }

/* ==========================================================================
   Company Pages Shared Hero Styles
   ========================================================================== */
.dp-mdbr { display: none; }
@media (min-width: 768px) { .dp-mdbr { display: inline; } }

/* Hero wrapper */
.dp-company-hero,
.dp-solutions-main {
  padding-top: 7rem;
  padding-bottom: 0;
  min-height: 610px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .dp-company-hero,
  .dp-solutions-main {
    height: 610px !important;
    max-height: 610px !important;
  }
}

/* Hero 2-col layout */
.dp-company-hero .dp-pagehero {
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.dp-company-hero .dp-pagehero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .dp-company-hero .dp-pagehero-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}
.dp-company-hero .dp-pagehero-copy { max-width: 36rem; }

/* Title */
.dp-company-hero .dp-page-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* Lead text */
.dp-company-hero .dp-page-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #94a3b8; line-height: 1.7; margin: 0;
  min-height: auto;
}

/* Base Wrapper for Custom Animations */
.dp-hero-anim-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 400 / 360;
  margin: 0 auto;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .dp-hero-anim-wrap { margin: 0 0 0 auto; }
}

/* =========================================
   1. About Page: The "Unified Cyber Platform"
   ========================================= */
.dp-anim-about-platform {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  perspective: 1200px;
}
.dp-about-base {
  position: absolute;
  width: 320px; height: 200px;
  background: rgba(10, 10, 46, 0.4);
  border: 1px solid rgba(3, 249, 249, 0.2);
  border-radius: 2rem;
  transform: rotateX(55deg) rotateZ(-30deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), inset 0 0 30px rgba(3, 117, 249, 0.15);
  transform-style: preserve-3d;
}
.dp-about-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate3d(-50%, -50%, 65px);
  width: 70px; height: 70px;
  background: radial-gradient(circle at 30% 30%, rgba(3,249,249,0.9), rgba(3,117,249,0.9));
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(3,249,249,0.7), 0 0 20px rgba(3,117,249,0.4);
  animation: dp-core-float 4s ease-in-out infinite alternate;
}
.dp-about-pillar {
  position: absolute;
  width: 48px; height: 48px;
  background: rgba(21, 10, 56, 0.9);
  border: 1.5px solid var(--tint, #03F9F9);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transform-style: preserve-3d;
}
.dp-about-pillar svg { width: 22px; height: 22px; color: var(--tint, #03F9F9); }
.dp-about-pillar-prev { top: 8%; left: 8%; --tint: #03F9F9; transform: translate3d(0, 0, 30px); animation: dp-pillar-bounce 3s infinite alternate; }
.dp-about-pillar-det { top: 8%; right: 8%; --tint: #22D3EE; transform: translate3d(0, 0, 35px); animation: dp-pillar-bounce 3.5s infinite alternate -0.5s; }
.dp-about-pillar-sim { bottom: 8%; left: 8%; --tint: #3B82F6; transform: translate3d(0, 0, 25px); animation: dp-pillar-bounce 2.8s infinite alternate -1s; }
.dp-about-pillar-resp { bottom: 8%; right: 8%; --tint: #0375F9; transform: translate3d(0, 0, 40px); animation: dp-pillar-bounce 4s infinite alternate -1.5s; }

@keyframes dp-core-float {
  0% { transform: translate3d(-50%, -50%, 55px) scale(0.95); }
  100% { transform: translate3d(-50%, -50%, 75px) scale(1.05); }
}
@keyframes dp-pillar-bounce {
  0% { transform: translate3d(0, 0, 20px); }
  100% { transform: translate3d(0, 0, 35px); }
}

/* =========================================
   2. Careers Page: The "Constellation"
   ========================================= */
.dp-anim-constellation {
  position: absolute; inset: 0;
  animation: dp-float-slow 8s ease-in-out infinite;
}
.dp-anim-node {
  position: absolute;
  width: 56px; height: 56px;
  background: rgba(10,10,46,0.9);
  border: 2px solid rgba(34,211,238,0.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #22D3EE;
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2;
  animation: dp-node-pulse 3s infinite alternate;
}
.dp-anim-node svg { width: 24px; height: 24px; }
.dp-anim-node-1 { top: 15%; left: 15%; animation-delay: 0s; }
.dp-anim-node-2 { top: 20%; right: 15%; animation-delay: 1s; border-color: #3B82F6; color: #3B82F6; }
.dp-anim-node-3 { bottom: 15%; left: 20%; animation-delay: 2s; border-color: #03F9F9; color: #03F9F9; }
.dp-anim-node-4 { bottom: 20%; right: 20%; animation-delay: 3s; }
.dp-anim-node-center { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 72px; height: 72px; border-color: #fff; color: #fff; background: rgba(3,117,249,0.8); z-index: 3; }

.dp-anim-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(3,249,249,0.5), transparent);
  height: 2px;
  transform-origin: left center;
  z-index: 1;
}
.dp-anim-line-1 { top: 50%; left: 50%; width: 140px; transform: rotate(-135deg); }
.dp-anim-line-2 { top: 50%; left: 50%; width: 130px; transform: rotate(-35deg); }
.dp-anim-line-3 { top: 50%; left: 50%; width: 140px; transform: rotate(135deg); }
.dp-anim-line-4 { top: 50%; left: 50%; width: 130px; transform: rotate(35deg); }

@keyframes dp-node-pulse {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.1) translateY(-10px); }
}

/* =========================================
   3. Partners Page: The "Global Hub"
   ========================================= */
.dp-anim-hub-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px dashed rgba(3,249,249,0.4);
  animation: dp-spin-slow 20s linear infinite;
  display: flex; align-items: center; justify-content: center;
}
.dp-anim-hub-center::before {
  content: ''; position: absolute; inset: 10px; border-radius: 50%; border: 1px solid rgba(3,117,249,0.6);
}
.dp-anim-hub-card {
  position: absolute;
  background: rgba(10,10,46,0.85);
  border: 1px solid rgba(3,249,249,0.3);
  padding: 1rem;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 1rem;
  animation: dp-float-slow 5s ease-in-out infinite alternate;
}
.dp-anim-hub-card-1 { top: 5%; left: -10%; animation-delay: 0s; }
.dp-anim-hub-card-2 { top: 40%; right: -15%; animation-delay: -2s; border-color: #3B82F6; }
.dp-anim-hub-card-3 { bottom: 10%; left: 5%; animation-delay: -4s; border-color: #22D3EE; }
.dp-anim-hub-card strong { display: block; font-size: 1.5rem; color: var(--tint, #03F9F9); line-height: 1.1; font-weight: 700; }
.dp-anim-hub-card span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: #94a3b8; font-weight: 600; }
.dp-anim-hub-icon { flex-shrink: 0; width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--tint, #03F9F9); }

/* =========================================
   4. Life at dPhish: The "Innovation Engine"
   ========================================= */
.dp-anim-life-engine {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.dp-life-core-bulb {
  position: absolute;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(3, 249, 249, 0.15) 0%, transparent 70%);
  display: flex; align-items: center; justify-content: center;
  animation: dp-bulb-glow 3s ease-in-out infinite alternate;
}
.dp-life-core-bulb svg {
  width: 64px; height: 64px;
  color: #03F9F9;
  filter: drop-shadow(0 0 15px rgba(3, 249, 249, 0.6));
}
.dp-life-bubble {
  position: absolute;
  padding: 0.6rem 0.8rem;
  background: rgba(10, 10, 46, 0.85);
  border: 1px solid var(--tint, rgba(34, 211, 238, 0.4));
  border-radius: 1rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 0.5rem;
  animation: dp-bubble-float 5s ease-in-out infinite alternate;
}
.dp-life-bubble-1 { top: 10%; left: 5%; --tint: #03F9F9; animation-delay: 0s; }
.dp-life-bubble-2 { top: 15%; right: 5%; --tint: #3B82F6; animation-delay: -1.2s; }
.dp-life-bubble-3 { bottom: 10%; left: 8%; --tint: #0375F9; animation-delay: -2.4s; }
.dp-life-bubble-4 { bottom: 15%; right: 8%; --tint: #22D3EE; animation-delay: -3.6s; }

.dp-life-bubble svg { width: 16px; height: 16px; color: var(--tint, #03F9F9); }

.dp-life-gear-wrap {
  position: absolute;
  width: 220px; height: 220px;
  animation: dp-spin-slow 30s linear infinite;
  pointer-events: none;
}
.dp-life-gear {
  position: absolute;
  color: rgba(255,255,255,0.08);
}
.dp-life-gear-1 { top: 0; left: 50%; transform: translateX(-50%); }
.dp-life-gear-2 { bottom: 0; left: 50%; transform: translateX(-50%) rotate(15deg); }

@keyframes dp-bulb-glow {
  0% { transform: scale(0.93); opacity: 0.8; }
  100% { transform: scale(1.07); opacity: 1; }
}
@keyframes dp-bubble-float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-15px) scale(1.05); }
}

/* General Animations */
@keyframes dp-float-slow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}
@keyframes dp-spin-slow {
  100% { transform: rotate(360deg); }
}

/* =========================================
   Global Filter Buttons (Careers & Partners)
   ========================================= */
.dp-filter-btn {
  padding: .5rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.dp-filter-btn:hover {
  border-color: #0375F9;
  color: #0375F9;
}
.dp-filter-btn.dp-filter-active {
  background: #0375F9;
  border-color: #0375F9;
  color: #fff;
}
