/*
 * DeepCoral Advisory — global.css
 * Cleaned & deduplicated — April 2026
 * Structure:
 * 1. Variables / Reset / Base   2. Animations   3. Global UI
 * 4. Navigation   5. Footer   6. Global Components
 * 7. Global Reusable Patterns   8-13. Pages
 * 14. Utilities   15. WooCommerce   16. Singular/Error
 * 17. Responsive — Global Breakpoints
 */

/* ═══════════════════════════════════════════════════════════
   1. VARIABLES / RESET / BASE
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --ink: #04101D;
  --deep: #0b1826;
  --mid: #1A3240;
  --ocean: #173C57;
  --coral: #FF6B6B;
  --coral-rgb: 255,107,107;
  --coral-d: rgba(255,107,107,.1);
  --coral-g: rgba(255,107,107,.05);
  --teal: #3fb0c4;
  --snow: #F1F5F9;
  --snow-rgb: 241,245,249;
  --warm: #F3EEE6;
  --slate: #A0ACBC;
  --slate-rgb: 160,172,188;
  --border: rgba(var(--slate-rgb),.12);
  --bordm: rgba(var(--slate-rgb),.22);

  /* Typography Stack */
  --display: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --body: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --heading-wt: 200;

  /* Fluid Interpolation Scale */
  --type-hero: clamp(1.75rem, 3vw + 1rem, 3.5rem);
  --type-hero-accent: clamp(1.15rem, 1.2vw + 0.8rem, 2.25rem);
  --type-hero-sub: clamp(0.9rem, 0.4vw + 0.8rem, 1.10rem);
  --type-h2: clamp(1.3rem, 1.5vw + 0.5rem, 1.75rem);
  --type-h3: clamp(1.15rem, 1vw + 0.5rem, 1.45rem);
  --type-h4: clamp(1rem, 0.6vw + 0.5rem, 1.2rem);
  --type-body: clamp(0.9rem, 0.2vw + 0.85rem, 1.05rem);
  --type-label: clamp(0.72rem, 0.1vw + 0.6rem, 0.78rem);
  --type-btn: clamp(0.8125rem, 0.1vw + 0.7rem, 0.875rem);
  --type-quote: clamp(1.05rem, 1vw + 0.5rem, 1.35rem);
  --type-marquee: clamp(0.85rem, 0.3vw + 0.6rem, 1.05rem);
  
  /* Layout Spacing */
  --spacing-vertical: clamp(3.5rem, 5vw + 1.5rem, 7.5rem);

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --eout: cubic-bezier(.33,1,.68,1);
}

html {
  scroll-behavior: smooth;
  background-color: var(--ink);
  color: var(--snow);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  touch-action: manipulation;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
}

/* Custom Interactive Cursor Opt-in */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
}

/* Film Grain Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.018'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.5;
  transform: translateZ(0);
  will-change: transform;
}

/* Page Transitions */
body:not(.is-front) {
  animation: pageIn 0.35s var(--eout) both;
}

::selection {
  background: rgba(255, 107, 107, 0.22);
  color: var(--warm);
}

/* Custom Scrollbar Parameters */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--slate) var(--ink);
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--slate);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--coral);
}

/* Layout Boundaries */
section {
  border-bottom: 1px solid color-mix(in srgb, var(--slate) 10%, transparent);
  padding-top: var(--spacing-vertical);
  padding-bottom: var(--spacing-vertical);
}

/* Accessibility - Motion Reduction Override */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: scroll !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   2. ANIMATIONS & KEYFRAMES
   ═══════════════════════════════════════════════════════════ */

/* Standardized Layout Entry (Translate + Fade) */
@keyframes fU {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Base Fade Mechanics (Used for General Opacity Changes and Global Page-In Transitions) */
@keyframes fI {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Breathing Animation (Ambient Glow Overlays) */
@keyframes br {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.8; }
}

/* Endless Infinite Marquee Engine (Strictly Requires 50% Translate Alignment) */
@keyframes mq {
  to { transform: translate3d(-50%, 0, 0); }
}

/* Linear Scale Transformation (Used for Dynamic Boarders and Loader Progress Indicators) */
@keyframes xL {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

/* ═══════════════════════════════════════════════════════════
   3. GLOBAL UI
   ═══════════════════════════════════════════════════════════ */

/* Global Progress Indicator - Top Border */
.pb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--coral), var(--teal));
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Application Preloader Shell */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
  will-change: opacity;
}

.loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.l-icon {
  width: 62px;
  height: 62px;
  opacity: 0;
  animation: fU 0.6s 0.1s var(--eout) forwards;
  flex-shrink: 0;
  transform: translate3d(0, 0, 0);
}

.l-wordmark {
  font-family: var(--display);
  font-size: var(--type-label);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm);
  opacity: 0;
  animation: fU 0.5s 0.55s var(--eout) forwards;
  margin-top: 0.1rem;
  transform: translate3d(0, 0, 0);
}

.l-line {
  width: 90px;
  height: 1px;
  background: linear-gradient(to right, var(--coral), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  animation: xL 1.1s 0.85s var(--eout) forwards;
  margin: 0.6rem 0;
}

.l-sub {
  font-family: var(--body);
  font-size: max(11px, 0.65rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  justify-content: center;
  color: var(--slate);
  opacity: 0;
  animation: fU 0.6s 1.2s var(--eout) forwards;
  transform: translate3d(0, 0, 0);
}

/* Non-Home Page Top Visual Horizon Accent */
body:not(.is-front)::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--coral), var(--teal));
  z-index: 10000;
  transform: scaleX(0);
  transform-origin: left;
  animation: xL 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Magnetic Interaction Target Standard */
.btn-magnetic {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Interactive Cursor Subsystem (Fine Pointer Control Only) */
@media (hover: hover) and (pointer: fine) {
  .cur, .cur-r {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    top: 0;
    left: 0;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
  }
  .cur {
    width: 7px;
    height: 7px;
    background: var(--coral);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
  }
  .cur-r {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    transition: width 0.4s var(--eout), height 0.4s var(--eout), border-color 0.3s var(--ease);
  }
  
  /* Hover State Configurations */
  .cur.h { width: 13px; height: 13px; background: var(--teal); }
  .cur-r.h { width: 50px; height: 50px; border-color: rgba(63, 176, 196, 0.4); }
}

/* ═══════════════════════════════════════════════════════════
   4. NAVIGATION
   ═══════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 2rem;
  background: linear-gradient(
    to bottom,
    rgba(4, 16, 29, 0.72) 0%,
    rgba(4, 16, 29, 0.54) 55%,
    rgba(4, 16, 29, 0.18) 100%
  );
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(4, 16, 29, 0.12);
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: padding, background;
}

nav.on {
  padding: 0.8rem 2rem;
  background: rgba(4, 16, 29, 0.88);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  border-bottom-color: rgba(var(--slate-rgb), 0.18);
  box-shadow: 0 16px 40px rgba(4, 16, 29, 0.26);
}

body:has(.mobile-menu.open) nav {
  z-index: 9999;
}

.n-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
}

.n-logo {
  width: auto;
  height: 44px;
  max-width: 200px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 8px rgba(4, 16, 29, 0.22));
}

.n-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin-top: 0.5rem;
}

.n-links a {
  font-family: var(--body);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.n-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.n-links a:hover,
.n-links a.active {
  color: var(--snow);
}

.n-links a:hover::after,
.n-links a.active::after {
  transform: scaleX(1);
}

.n-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  background: transparent;
  border: 1px solid var(--coral);
  color: var(--coral) !important;
  border-radius: 2px;
  font-family: var(--body);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  height: calc(clamp(0.75rem, 1vw, 0.85rem) * 2.4);
  padding: 0 1rem;
}

.n-cta:hover {
  background: var(--coral-d);
  color: var(--coral);
}

.n-cta::after {
  display: none;
}

.n-ham {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 700;
  position: relative;
  min-height: 44px;
}

.n-ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--slate);
  transition: transform 0.35s var(--eout), opacity 0.35s var(--eout), background-color 0.35s var(--eout);
  transform-origin: center;
}

.n-ham.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background-color: var(--coral);
}

.n-ham.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.n-ham.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background-color: var(--coral);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(4, 16, 29, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 650;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--eout);
  will-change: opacity;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 200;
  color: var(--warm);
  text-decoration: none;
  padding: 1.1rem 0;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
  word-break: break-word;
  overflow-wrap: break-word;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--coral);
}

.mobile-menu-footer {
  margin-top: 2.5rem;
  font-family: var(--body);
  font-size: 0.72rem;
  color: var(--slate);
  opacity: 0.45;
  letter-spacing: 0.06em;
  font-style: italic;
}

.mobile-cta-m {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.8rem 1.6rem;
  background: transparent;
  border: 1px solid var(--coral);
  color: var(--coral);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}

.mobile-cta-m:hover {
  background: var(--coral-d);
  color: var(--snow);
}

@media (min-width: 769px) {
  .n-ham {
    display: none;
  }
}

@media (max-width: 768px) {
  .n-links {
    display: none;
  }

  nav, nav.on {
    padding: 0.85rem 1.25rem;
  }

  .n-cta {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    padding: 0.5rem 0.85rem;
    min-height: 44px;
    white-space: nowrap;
  }

  .n-ham {
    transform: translate3d(-1rem, 0, 0);
  }

  .mobile-menu .mobile-cta-m {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.25rem;
    min-height: 44px;
    white-space: nowrap;
    width: auto;
    margin-top: 2rem;
    background: transparent;
    border: 1px solid var(--coral);
    color: var(--coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu .mobile-cta-m:hover {
    background: var(--coral-d);
    color: var(--coral);
  }
}

/* ═══════════════════════════════════════════════════════════
   5. FOOTER
   ═══════════════════════════════════════════════════════════ */

footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  background: var(--deep);
  width: 100%;
}

.f-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.f-logo {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}

.f-logo:hover {
  opacity: 0.9;
  color: var(--warm);
}

.f-right {
  text-align: right;
}

.f-meta {
  display: flex;
  align-items: baseline; 
  gap: 1.5rem;
  flex-wrap: wrap;
}

.f-copy {
  font-family: var(--body);
  font-size: 0.68rem;
  color: var(--slate);
  opacity: 0.4;
  letter-spacing: 0.04em;
}

.f-privacy,
.f-cookie-trigger {
  display: inline-flex;
  align-items: center;
  font-family: var(--body);
  font-size: 0.68rem;
  color: var(--slate);
  opacity: 0.4;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
  cursor: pointer;
}

.f-privacy::after,
.f-cookie-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--snow);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s var(--ease);
}

.f-privacy:hover,
.f-cookie-trigger:hover {
  opacity: 0.8;
  color: var(--snow);
}

.f-privacy:hover::after,
.f-cookie-trigger:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.f-tag {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.68rem;
  color: var(--slate);
  opacity: 0.5;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   5a. DEEP CURRENT LAYER / DISCOVERY
   ═══════════════════════════════════════════════════════════ */

.deep-current {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(260px, 280px);
  justify-content: space-between;
  align-items: start;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.deep-current::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 140% 90% at 50% 130%, rgba(255, 107, 107, .04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.deep-current-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
}

.deep-current h4 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--warm);
  margin-bottom: .75rem;
}

.deep-current p {
  font-family: var(--body);
  font-size: var(--type-body);
  color: rgba(var(--slate-rgb), .85);
  line-height: 1.7;
  max-width: 480px;
}

.deep-current-form {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  margin-top: 1.75rem;
  width: 100%;
  max-width: 440px;
}

.deep-current-form input {
  flex: 1;
  min-width: 0;
  background: rgba(var(--slate-rgb), .04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--slate);
  outline: none;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.deep-current-form input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, .12);
}

/* Jitter-Protected Layer Interaction */
.deep-current-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0.85rem 1.75rem;
  background: var(--coral);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--type-btn);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  transition: opacity 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.deep-current-form button:hover {
  opacity: 0.92;
  box-shadow: 0 6px 20px rgba(255, 107, 107, .25);
}

.deep-current-form button svg {
  width: 14px;
  height: 14px;
  transition: transform .2s var(--ease);
  flex-shrink: 0;
}

.deep-current-form button:hover svg {
  transform: translateX(2px);
}

.deep-current-legal {
  font-family: var(--body);
  font-size: var(--type-label);
  font-weight: 400;
  color: var(--slate);
  opacity: 0.6;
  line-height: 1.2;
}

.deep-current-social {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
  width: 100%;
  max-width: 280px;
  align-items: stretch;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 1;
}

.deep-current-social h4 {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.deep-current-social .follow-btn {
  padding: 0.75rem 1rem;
  font-family: var(--body);
  font-size: var(--type-btn);
  font-weight: 500;
  border: 1px solid;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  justify-content: center;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  min-height: 44px;
}

.deep-current-social .follow-btn-substack {
  border-color: rgba(255, 107, 107, .25);
  color: var(--coral);
}

.deep-current-social .follow-btn-substack:hover {
  background: rgba(255, 107, 107, 0.05);
  border-color: var(--coral);
}

.deep-current-social .follow-btn-linkedin {
  border-color: rgba(var(--slate-rgb), .2);
  color: var(--slate);
}

.deep-current-social .follow-btn-linkedin:hover {
  border-color: rgba(var(--slate-rgb), .4);
  color: var(--snow);
}


@media (min-width: 1600px) {
  .deep-current {
    padding: 4rem max(5rem, calc((100vw - 1440px) / 2));
  }
}

@media (max-width: 1100px) and (min-width: 681px) {
  .deep-current {
    padding: 3rem 2rem;
    grid-template-columns: 1fr 260px;
    gap: 3rem;
  }

  .deep-current-form input {
    max-width: 240px;
  }

  footer {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 680px) {
  .deep-current {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
    gap: 3rem;
  }

  .deep-current h4 {
    text-align: left;
  }

  .deep-current-form {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .deep-current-form input,
  .deep-current-form button {
    width: 100%;
    max-width: 100%;
    min-height: 34px;
  }

  .deep-current-social {
    margin-left: 0;
    max-width: 100%;
  }

  .deep-current-social h4 {
    text-align: left;
  }

  footer {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .f-right {
    text-align: left;
    width: 100%;
  }

  .f-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1rem;
    row-gap: 0.5rem;
    width: 100%;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .f-copy,
  .f-privacy {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
  }

  .f-privacy {
    min-height: 34px;
    color: var(--slate);
    text-decoration: none;
  }

  .f-note-block {
    flex-basis: 100%;
    white-space: normal;
    margin-top: 0.25rem;
    color: var(--slate);
  }
}

/* ═══════════════════════════════════════════════════════════
   6. GLOBAL COMPONENTS
   ═══════════════════════════════════════════════════════════ */

/* 6.1 SECTION & CONTAINER */
section {
  padding: var(--spacing-vertical) clamp(1.25rem, 5vw, 5rem);
}

section.hero {
  padding-left: 0;
  padding-right: 0;
}

.si {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

/* 6.2 HERO ARCHITECTURE */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: calc(100dvh);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5.5rem 0 0;
  overflow: hidden;
  width: 100%;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.85;
  filter: saturate(0.9);
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4,16,29,0.95) 0%, rgba(4,16,29,0.7) 30%, rgba(4,16,29,0.2) 70%),
              linear-gradient(to top, rgba(4,16,29,0.95) 0%, transparent 60%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 clamp(2.5rem, 5vw, 3.5rem) clamp(3.5rem, 8vw, 5.5rem);
}

.hero-main {
  font-family: var(--display);
  font-size: var(--type-hero);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--warm);
  margin-bottom: 1.5rem;
  opacity: 0;
  word-break: break-word;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  animation: fU 1.1s 0.2s var(--eout) forwards;
}

.hero-main em,
.hero-accent {
  font-family: var(--display);
  font-size: var(--type-hero-accent);
  font-style: italic;
  color: var(--coral);
  font-weight: 300;
  display: block;
  margin-top: 0.5rem;
}

.hero-sub {
  font-family: var(--body);
  font-style: italic;
  font-size: var(--type-hero-sub);
  font-weight: 300;
  color: rgba(var(--slate-rgb), 0.92);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  animation: fU 1s 0.4s var(--eout) forwards;
}

.h-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  animation: fU 1s 0.6s var(--eout) forwards;
}

.h-scroll {
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  animation: fI 1s 1.8s forwards;
}

.h-scroll span {
  font-family: var(--body);
  font-size: var(--type-label);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.55;
  writing-mode: vertical-rl;
}

.h-scroll-line {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: br 2.8s ease-in-out infinite;
}

@media (max-width: 768px) and (orientation: portrait) {
  .hero {
    min-height: 100dvh;
    padding-top: 6rem;
    padding-bottom: 3.5rem;
    justify-content: flex-end;
  }

  .hero-img img {
    object-position: center center;
  }

  .hero-img::after {
    background: linear-gradient(to top, rgba(4,16,29,0.98) 0%, rgba(4,16,29,0.85) 50%, rgba(4,16,29,0.6) 100%);
  }

.hero-content {
    padding-bottom: 0;
    justify-content: center;
    align-content: center;
    padding: 0 auto;
  }

  .hero-main {
    line-height: 1.25;
    margin-bottom: 1.25rem;
  }

  .hero-sub {
    margin-bottom: 2.25rem;
    line-height: 1.55;
  }

  .h-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .h-actions .btn-p,
  .h-actions .btn-o {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .h-scroll {
    display: none;
  }
}

@media (max-width: 980px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 6rem 0 3.5rem 0;
    justify-content: center;
  }

  .hero-content {
    max-width: 640px;
  }

  .hero-main {
    font-size: 1.65rem; 
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .hero-main em,
  .hero-accent {
    font-size: 1.15rem;
    margin-top: 0.25rem;
  }

  .hero-sub {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.45;
    max-width: 100%;
  }

  .h-actions {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .h-actions .btn-p,
  .h-actions .btn-o {
    width: auto;
    text-align: left;
    justify-content: flex-start;
  }
  
  .h-scroll {
    display: none;
  }
}

/* --- 6.3 PAGE HEADERS (PH) --- */
.ph {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 5vw, 2rem) 2rem;
  position: relative;
  overflow: hidden;
}

.ph-bg {
  background: radial-gradient(ellipse 80% 60% at 65% 35%, rgba(23, 60, 87, 0.55) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 15% 80%, rgba(255, 107, 107, 0.04) 0%, transparent 50%),
              var(--ink);
}

.ph-in {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
}

.ph h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--warm);
  margin-bottom: 1.5rem;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  animation: fU 0.9s 0.22s var(--eout) forwards;
}

.ph h1 em {
  font-style: italic;
  color: var(--coral);
  font-size: clamp(1rem, 2.6vw, 2.2rem);
}

.ph-sub {
  font-family: var(--body);
  font-size: 1rem;
  color: rgba(var(--slate-rgb), 0.92);
  line-height: 1.9;
  max-width: 680px;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  animation: fU 0.9s 0.38s var(--eout) forwards;
}

.ph-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.75rem;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  animation: fU 0.9s 0.1s var(--eout) forwards;
}

.ph-tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--coral);
  opacity: 0.5;
}

/* 6.4 ACTION BUTTONS SYSTEM */
.btn-p, .btn-o, .btn-sub, .btn-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--body);
  font-size: var(--type-btn);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  min-height: 44px;
  margin-left: 0;
  box-sizing: border-box;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}

.btn-p svg, .btn-sub svg {
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.btn-p {
  background: var(--coral);
  color: var(--ink);
}

.btn-p:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.35);
}

.btn-p:hover svg {
  transform: translateX(1px);
}

.btn-o {
  background: transparent;
  color: var(--slate);
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1px solid var(--bordm);
}

.btn-o:hover {
  border-color: rgba(241, 245, 249, 0.3);
  color: var(--snow);
}

.btn-s {
  border: 1px solid var(--coral);
  color: var(--coral);
  background: transparent;
}

.btn-s:hover {
  background: var(--coral);
  color: var(--ink);
}

.btn-sub {
  padding: 1rem 2rem;
  background: var(--coral);
  color: var(--ink);
  width: 100%;
}

.btn-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.35);
}

.btn-sub:hover svg {
  transform: translateX(3px);
}

.btn-coral-dk {
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 768px) {
  .btn-p, .btn-o, .btn-sub, .btn-s {
    font-size: max(16px, 0.82rem);
    padding: 0.65rem 1.25rem;
  }
  
  .h-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem; 
  }
  
  .h-actions .btn-p,
  .h-actions .btn-o {
    width: auto; 
    display: inline-flex;
  }
}


/* 6.5 UTILITIES & REVEAL STATES */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1rem;
}

.tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--coral);
  opacity: 0.7;
}

.r {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
  transition: opacity 0.9s var(--eout), transform 0.9s var(--eout);
}

.r.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }

.div {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--slate-rgb), 0.18), transparent);
  margin: 0;
  width: 100%;
}

.teal { color: var(--teal); font-weight: 600; }
.coral { color: var(--coral); font-weight: 300; }

/* 6.6 MARQUEE ENGINE */
.mq {
  background: var(--deep);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mq::-webkit-scrollbar {
  display: none;
}

.mq-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: mq 60s linear infinite;
}

.mq-track:hover {
  animation-play-state: paused;
}

.mq-i {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.65;
  transition: opacity 0.3s var(--ease);
}

.mq-i:hover {
  opacity: 0.85;
}

.mq-s {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.4;
}

@media (hover: hover) {
  .mq-track:hover {
    animation-play-state: paused;
  }
}

@media (max-width: 768px) {
  .mq {
  margin-top: 6px;
  }

}

/* 6.7 WHO ITEMS LAYER */
.who {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
}

.who-hd { margin-bottom: 4rem; }
.who-hd h2 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.0vw, 1.35rem);
  font-weight: 200;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--warm);
  margin-bottom: 1.05rem;
  max-width: 940px;
}

.who-items {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(var(--slate-rgb), 0.15);
  gap: 0;
}

.wi {
  display: grid;
  grid-template-columns: 4.5rem 1.2fr 2fr;
  gap: 3.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: border-color 400ms var(--eout);
  position: relative;
}

.wi:first-child { border-top: 1px solid var(--border); }

.wi:hover { 
  border-bottom-color: rgba(255, 107, 107, 0.2); 
}

.wi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--coral), var(--teal));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 450ms var(--eout);
  z-index: 2;
}

.wi:hover::before { 
  transform: scaleY(1); 
}

.wi-num,
.wi-headline,
.wi-body {
  transition: transform 400ms var(--eout);
}

.wi:hover .wi-num,
.wi:hover .wi-headline,
.wi:hover .wi-body {
  transform: translateX(4px);
}

.wi-num {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 200;
  color: rgba(255, 107, 107, 0.28);
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 0.1rem;
  padding-left: 0.5rem;
  flex-shrink: 0;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

.wi-headline h4 {  
  font-family: var(--body); 
  font-weight: 500; 
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--warm);
  margin: 0;
}

.wi-body p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--slate);
  opacity: 0.85;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1100px) {
  .wi {
    grid-template-columns: 4.5rem 1fr;
    gap: 1rem 2.5rem;
    padding: 2rem 0;
    align-items: start;
  }

  .wi-headline {
    grid-column: 2;
    align-self: start;
  }

  .wi-body {
    grid-column: 2;  
    margin-top: 0; /* Clears layout jitter */
  }
}

@media (max-width: 680px) {
  .who-hd h2 {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  
  .wi {
    display: flex;
    flex-direction: column;
    padding: 1.75rem 0; 
    gap: 0; 
    align-items: flex-start;
  }

  .wi:hover .wi-num,
  .wi:hover .wi-headline,
  .wi:hover .wi-body {
    transform: translateX(6px);
  }

  .wi-num {
    font-size: 2rem;
    padding-left: 0.5rem;
    padding-top: 0;
    line-height: 1;
    margin-bottom: 0.15rem; 
  }

  .wi-headline {
    width: 100%;
    margin-bottom: 0.5rem; 
    padding-left: 0.5rem;
  }

  .wi-headline h4 {
    margin-top: 1rem;
    font-size: 1.15rem;
    line-height: 1.35;
  }

  .wi-body {
    width: 100%;
    padding-left: 0.5rem;
    box-sizing: border-box;
  }

  .wi-body p {
    font-size: 0.92rem;
    line-height: 1.7; 
  }
}

/* 6.8 THE NOT-FOR PARAMETERS */
.not-for {
  padding: 2.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.not-for-left {
  grid-column: 1 / -1;
}

.not-for-left h5 {
  font-family: var(--body);
  font-size: clamp(0.85rem, 0.75rem + 0.5vw, 1.05rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.55;
  margin-bottom: 0.75rem;
}

.not-for-left p {
  font-family: var(--body);
  font-size: clamp(0.90rem, 0.85rem + 0.25vw, 1.05rem);
  color: var(--slate);
  line-height: 1.85;
}

@media (max-width: 768px) {
  .not-for { grid-template-columns: 1fr; gap: 2rem; }
}

/* 6.9 CORE BELIEFS COMPONENT & DATA STATS ENGINE */

/* 6.9.1 CORE BELIEFS COMPONENT */

.belief { 
  background: var(--deep); 
}

.belief-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
}

.belief-left {
  display: flex;
  flex-direction: column;
}

.belief-left h2 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.0vw, 1.5rem);
  font-weight: 200;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--warm);
  margin-bottom: 1.5rem;
}

.belief-left > p:not(.tag) {
  font-family: var(--body);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--slate);
  font-weight: 200;
  line-height: 1.95;
  max-width: 420px;
}

.belief-left .hl {
  max-width: 420px;
}

.belief-left p strong {
  color: var(--coral);
  font-weight: 500;
}


/* 6.9.2 DATA STATS ENGINE */

.stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat {
  padding: 2.5rem 0; 
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s var(--ease);
}

.stat:first-child { padding-top: 0; }
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat:hover { border-color: rgba(255, 107, 107, 0.25); }

.sn {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 200;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.6rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
  -moz-font-feature-settings: "tnum", "lnum";
  -webkit-font-feature-settings: "tnum", "lnum";
}

.sd {
  font-family: var(--body);
  font-size: 0.85rem;
  color: rgba(var(--slate-rgb), 0.95);
  line-height: 1.7;
  max-width: 400px;
}

.stat-source {
  display: inline;
  text-decoration: none;
  color: var(--snow);
  margin-left: 0.18em;
  border-radius: 2px;
  transition: color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.stat-source:hover { color: var(--coral); }
.stat-source sup { font-size: 0.75em; line-height: 0; vertical-align: super; }


@media (max-width: 1024px) {
  .belief-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem; 
  }

  .belief-left {
    display: contents; 
  }

  .belief-left .tag,
  .belief-left h2   { order: 1; }
  .stats            { order: 2; }
  .belief-left p,
  .belief-left .hl  { order: 3; }

  .belief-left h2 {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .belief-left > p:not(.tag) {
    margin-top: 0rem;
    margin-bottom: 0;
    max-width: 750px;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    margin: 0; 
  }

  .stat {
    padding: 1.25rem;
    background: rgba(var(--slate-rgb), 0.03);
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .stat:first-child { padding-top: 1.25rem; }
  .stat:last-child { padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }

  .sn {
    font-size: clamp(1.4rem, 3.3vw, 1.7rem);
    margin-bottom: 0.4rem;
  }

  .sd {
    font-size: 0.78rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .stat-source {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--slate-rgb), 0.06);
    border: 1px solid var(--border);
    padding: 0.3rem 0.20rem;
    border-radius: 2px;
    margin-left: 0.25em;
    font-size: 0.65rem;
  }
  
  .stat-source sup { font-size: inherit; vertical-align: baseline; }
}


@media (max-width: 640px) {
  .belief-layout {
    gap: 1.5rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0 0 0 0.75;
  }

  .stat {
    padding: 1.25rem;
  }

  .sn {
    font-size: 1.75rem; 
    white-space: nowrap; 
  }
}

/* 6.10 HOMEPAGE ABOUT SECTION */

.founder-badges{margin-top:2rem;display:flex;flex-wrap:wrap;gap:.65rem}
.founder-badge{font-family:var(--body);font-size:.62rem;font-weight:500;letter-spacing:.06em;text-transform:uppercase;color:rgba(var(--slate-rgb),.7);border:1px solid var(--border);padding:.25rem .75rem;border-radius:2px;transition:all .3s}
.founder-badge:hover{color:var(--snow);border-color:rgba(255,107,107,.25)}
.about-layout{display:grid;grid-template-columns:320px 1fr;gap:7.5rem;align-items:start;max-width:1100px;margin:0 auto;padding:0 5rem}
.about-left{position:sticky;top:9rem;align-self:start;z-index:1}
.about-right{position:relative;z-index:2;max-width:680px}
.about-signature{max-width:250px;margin:0 0 1.2rem 0;padding:0 0 1.2rem 0;border-bottom:1px solid rgba(var(--slate-rgb),.12);}
.about-name{font-family:var(--display);font-size:clamp(1.35rem,2.1vw,1.95rem);font-weight:200;line-height:1.02;letter-spacing:0.02em;color:var(--warm);  margin:0 0 .45rem 0;}
.about-manifesto{font-family:var(--body);font-size:.85rem;font-style:italic;line-height:1.7;font-weight:400;letter-spacing:.04em;color:var(--slate);margin:0;}
.portrait-name{opacity:.48;font-size:.56rem;letter-spacing:.18em;}
.about-right h2{font-family:var(--display);font-size:clamp(1.2rem,2.0vw,1.5rem);font-weight:200;line-height:1.35;letter-spacing:.04em;color:var(--warm);margin-bottom:2.25rem}
.about-right>p:not(.tag){font-family:var(--body);font-size:.97rem;line-height:1.80;font-weight:100;letter-spacing:.04em;color:var(--snow);opacity:.9;margin-bottom:1.65rem}

.portrait{aspect-ratio:3/4;overflow:hidden;position:relative;margin-bottom:2.5rem;max-width:250px;border-radius:4px;box-shadow:0 10px 30px rgba(0,0,0,.08);transition:box-shadow .4s var(--ease),transform .4s var(--ease)}
.portrait-img,.portrait-img-alt{width:100%;height:100%;object-fit:cover;object-position:center top;display:block;transition:opacity 1.5s var(--eout),transform 1.5s var(--eout)}
.portrait-img-alt{position:absolute;inset:0;opacity:0}
.portrait:hover .portrait-img{opacity:0;transform:scale(1.02)}
.portrait:hover .portrait-img-alt{opacity:1;transform:scale(1.07)}
.portrait-bg{width:100%;height:100%;background:linear-gradient(150deg,var(--ocean),var(--mid));display:flex;align-items:center;justify-content:center; position:relative}
.portrait-ph{font-family:var(--body);font-style:italic;font-size:.82rem;color:rgba(var(--slate-rgb),.4);text-align:center;padding:2rem;line-height:1.8}
.portrait-overlay{position:absolute;bottom:0;left:0;right:0;height:40%;background:linear-gradient(to top,rgba(4,16,29,.88),transparent)}
.portrait-accent{position:absolute;bottom:0;left:0;right:0;height:1px;background:linear-gradient(to right,var(--coral),var(--teal),transparent)}
.portrait-placeholder{width:100%;height:100%;background:linear-gradient(155deg,var(--mid) 0%,var(--ocean) 100%);min-height:360px}
.teal {color: var(--teal);font-weight:300}
.coral {color: var(--coral);font-weight:300}


@media (min-width: 768px) and (max-width: 1100px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 0 2rem;
  }
    
  .about-left {
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto auto;
    gap: 1rem 2rem;
    align-items: end; 
    width: 100%;
    max-width: 100%;
    margin-bottom: 3rem; 
  }
  
  .portrait {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0 !important; 
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .about-signature {
    grid-column: 2;
    grid-row: 1;
    max-width: 100%;
    padding-bottom: 0.75rem;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(var(--slate-rgb), 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .about-name {
    margin: 1rem 0 0.35rem 0;
    font-size: 1.5rem;
  }
  
  .about-manifesto {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .founder-badges {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 0 !important; 
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .founder-badges .founder-badge {
    display: inline-block;
    font-family: var(--body);
    font-size: 0.68rem; 
    font-weight: 400;
    padding: 0.25rem 0.55rem;
    background: rgba(var(--slate-rgb), 0.04);
    border: 1px solid rgba(var(--slate-rgb), 0.12);
    border-radius: 2px;
    color: var(--warm);
    opacity: 0.8;
    white-space: nowrap;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.25rem;
  }

  .about-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1rem;
  }

  .about-right h2{
      margin-bottom:1.75rem
  }

  .about-right>p:not(.tag){
      font-size:.9rem;
      margin-bottom:1.5rem
  }

  .portrait {
    width: 100%;
    max-width: 180px; 
    margin-bottom: 1.5rem !important;
    aspect-ratio: 3 / 4;
  }

  .about-signature {
    width: 100%;
    max-width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--slate-rgb), 0.12);
  }

  .about-name {
    font-size: 1.35rem;
    margin: 0 0 0.4rem 0;
  }

  .about-manifesto {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .founder-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    width: 100%;
  }

  .founder-badges .founder-badge {
    display: inline-block;
    font-family: var(--body);
    font-size: 0.68rem;
    padding: 0.3rem 0.6rem;
    background: rgba(var(--slate-rgb), 0.05);
    border: 1px solid rgba(var(--slate-rgb), 0.1);
    border-radius: 3px;
    color: var(--warm);
    line-height: 1.3;
  }
}

/* 6.11 MANDATES OVERVIEW */
.offers-bullets {
  font-family: var(--body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  color: var(--warm);
  opacity: 0.8;
  font-weight: 200;
  line-height: 1.6;
  position: relative;
  padding: 0.5rem 0 0.5rem 1.0rem;
  display: block;
}

.offers-bullets strong {
  font-family: var(--body);
  color: var(--warm);
  font-weight: 600;
}

.offers-bullets::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 1.25rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.7;
}

.pillars {
  background: var(--deep);
}

.pillars-hd {
  margin-bottom: clamp(3rem, 6vw, 6rem);
  max-width: 980px;
}

.pillars-hd h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--warm);
  margin-bottom: 2.5rem;
}

.pillars-hd > p:not(.tag) {
  font-family: var(--body);
  font-size: 1.0rem;
  color: var(--warm);
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-top: 2rem;
}

/* 6.12 HOME OFFERS PILLARS ENGINE */

.home-offers { padding-top: 8rem; }

.building-grid--four {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  max-width: 900px;
  gap: 3px;
  background: rgba(var(--slate-rgb), .10);
  border-radius: 5px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.build-card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 2.5rem;
  background-color: color-mix(in srgb, var(--deep) 50%, transparent);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto; 
  gap: 1.0rem; 
  min-height: 320px; 
  align-items: start;
  transition: background .3s ease, border-color .3s ease;
}

.build-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--coral), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--eout);
}
.build-card:hover { background: #0a1623; opacity: .85; }
.build-card:hover::before { transform: scaleX(1); }

.build-card .build-num {
  grid-row: 1;
  display: block;
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--coral);
  opacity: .7;
  margin: 0;
  flex-shrink: 0;
}
.build-card h4 {
  grid-row: 2;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -.01em;
  color: var(--warm);
  margin: 0;
}
.build-card p, 
.build-card .wont-note {
  grid-row: 3;
  font-family: var(--body);
  font-size: .9rem;
  color: rgba(var(--slate-rgb), 0.82);
  line-height: 1.88;
  margin: 0;
}

.build-card .btn-o {
  grid-row: 4;
  margin: 0;
  align-self: start;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .75rem 1.25rem;
  font-size: .82rem;
  letter-spacing: .08em;
  border: 1px solid rgba(var(--slate-rgb), .75);
  background: transparent;
  color: var(--slate);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  gap: .5rem;
  min-height: 44px;
}
.build-card .btn-o:hover {
  border-color: var(--warm);
  color: var(--warm);
  background: rgba(255, 107, 107, .02);
}


@media(max-width: 1100px) {
  .building-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media(min-width: 681px) and (max-width: 1024px) {
  .home-offers { padding-top: 6rem; }
  .building-grid--four { grid-template-columns: repeat(2, 1fr) !important; max-width: 100%; gap: 4px; }
  .build-card { min-height: 290px; padding: 2rem 1.75rem; }
}

@media(max-width: 680px) {
  .home-offers { padding-top: 5rem; }
  .building-grid--four { grid-template-columns: 1fr; gap: 12px; background: transparent; }
  .build-card { min-height: auto; padding: 2.25rem 1.5rem; border-radius: 4px; border: 1px solid var(--border); }
}


/* 6.13 THE MANIFESTO DISPLAY */
.manifesto {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255,107,107,0.05) 0%, transparent 70%);
}

.manifesto-in {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto blockquote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--warm);
  margin-bottom: 1.5rem;
}

.manifesto blockquote em {
  font-style: italic;
  color: var(--coral);
}

/* 6.14 FEELING EMOTIVE INTERACTION */
.feeling {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
}

.feeling-in {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.feeling-in blockquote {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--warm);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.feeling-in > p:not(.tag) {
  font-family: var(--body);
  font-size: 0.92rem;
  color: rgba(var(--slate-rgb), 0.8);
  line-height: 1.85;
}

/* 6.15 MARKETING BLOCK VARIATIONS (CTA BLOCKS) */
.home-cta {
  background: var(--deep);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(255,107,107,0.06) 0%, transparent 70%);
}

.home-cta-in {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 200;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--warm);
  margin-bottom: 1.25rem;
}

.home-cta-in > p:not(.tag) {
  font-family: var(--body);
  font-size: 0.90rem;
  color: rgba(var(--slate-rgb), 0.82);
  line-height: 1.88;
  letter-spacing: 0.02em;
  font-weight: 100;
  margin-bottom: 3rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cta-row { flex-direction: column; width: 100%; }
}

.work-cta {
  background: var(--deep);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.work-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,107,107,0.05) 0%, transparent 70%);
}

.work-cta-in {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.work-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  font-weight: 200;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--warm);
  margin-bottom: 1.25rem;
}

.work-cta p {
  font-family: var(--body);
  font-size: 0.95rem;
  color: rgba(var(--slate-rgb), 0.82);
  line-height: 1.85;
  margin-bottom: 3rem;
}

/* 6.16 PROCESS PROGRESSION STEPS */
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: border-color 0.3s;
}

.step:first-child { border-top: 1px solid var(--border); }
.step:hover { border-bottom-color: rgba(255,107,107,0.18); }

.step h4 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--warm);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.step p {
  font-family: var(--body);
  font-size: 0.9rem;
  color: rgba(var(--slate-rgb), 0.82);
  line-height: 1.8;
}

.step-n {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 200;
  color: rgba(255,107,107,0.45);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 0.2rem;
}

.steps-lbl {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.55;
  margin-bottom: 1.5rem;
  display: block;
}

/* 6.17 THE CLOSING STATEMENT BLOCKS */
.home-closing-block {
  max-width: 760px;
  margin: 2rem auto;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  background-color: rgba(23, 60, 87, 0.2);
  border: 1px solid rgba(var(--slate-rgb), 0.15);
  border-radius: 2px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.closing-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--warm);
  margin-top: 0;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.closing-text {
  font-family: var(--body);
  font-weight: 200;
  font-size: 0.9rem;
  color: var(--warm);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.closing-action {
  display: inline-block;
  width: 100%;
  max-width: max-content;
}

.closing-action .btn-p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--coral);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 3px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  width: 100%;
  min-height: 44px;
}

.closing-action .btn-p svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.closing-action .btn-p:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.35);
}

.closing-action .btn-p:hover svg {
  transform: translateX(3px);
}

.c-closing {
  text-align: center;
  padding: 5rem 0 0;
}

.c-closing p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 200;
  color: rgba(var(--slate-rgb), 1);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* 6.18 DEEP ARCHITECTURE SCROLL NAV (PILLARS LAYER) */
.pillar-nav {
  position: sticky;
  top: 0;
  z-index: 400;
  background: color-mix(in srgb, var(--ink) 97%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  contain: layout styles;
}

.pillar-nav::-webkit-scrollbar {
  display: none;
}

.pn-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 0;
  margin-right: 2.5rem;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.pn-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--eout), background-color 0.4s var(--ease);
}

.pn-item:hover {
  color: var(--snow);
}

.pn-item.active {
  color: var(--coral);
  font-weight: 500;
  border-bottom-color: var(--coral);
}

.pn-item.active::after {
  background-color: var(--coral);
  transform: scaleX(1);
}

.pn-num {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 300;
  color: inherit;
  opacity: 0.45;
  position: relative;
  top: -1px;
}

@media (max-width: 768px) {
  .pillar-nav-wrapper {
    position: relative;
    width: 100%;
  }
  
  .pillar-nav-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, var(--ink));
    pointer-events: none; 
    z-index: 2;
  }
}

/* 6.19 PRODUCT CORE SPEC LAYOUT COMPONENTS */
.ps {
  padding: clamp(4rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.ps-bg-num {
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  font-family: var(--display);
  font-size: 26rem;
  font-weight: 200;
  color: var(--snow);
  opacity: 0.022;
  letter-spacing: -0.06em;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.ps-ink { background: var(--ink); }
.ps-deep { background: var(--deep); }

.ps-eyebrow {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.08em;
  text-transform: none;
  margin: 0 0 1rem 0;
}

.ps-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.ps-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 2rem;
}

.ps-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--coral);
  opacity: 0.5;
}

.ps-num {
  font-family: var(--display);
  font-size: 6.5rem;
  font-weight: 200;
  color: rgba(255, 107, 107, 0.55);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.65;
}

.ps-inc {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--slate-rgb), 0.12);
}

.ps-inc-lbl {
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.55;
  margin-bottom: 1.1rem;
  display: block;
}

.ps-items { display: flex; flex-direction: column; }
.ps-item {
  font-family: var(--body);
  font-size: 0.9rem;
  color: rgba(var(--slate-rgb), 0.92);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(var(--slate-rgb), 0.07);
}

.ps-item:last-child { border-bottom: none; }
.ps-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

@media (max-width: 840px) {
  .ps-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ps-bg-num {
    display: none;
  }
}

/* 6.20 CASE DETAILS GRID & RESOURCE LAYOUT */
.details {
  background: var(--ink);
  padding: clamp(5rem, 8vw, 9rem) clamp(1.25rem, 5vw, 5rem);
}

.details-in {
  max-width: 1320px;
  margin: 0 auto;
}

.details-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem clamp(3rem, 5vw, 6rem);
  margin-top: 2rem;
  padding-top: 1rem;
}

.right-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(var(--slate-rgb), .1);
  margin-top:5rem;
}

@media (max-width: 1024px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

/* 6.21 MANDATES QUALIFICATION MATCHERS (WONT / CAN VERIFY) */
.c-lbl {
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.c-lbl.yes { color: var(--teal); }
.c-lbl.no { color: rgba(var(--slate-rgb), 0.5); }

.c-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.c-list:last-child { margin-bottom: 0; }

.c-i {
  font-family: var(--body);
  font-size: 0.9rem;
  color: rgba(var(--slate-rgb), 0.82);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.c-i::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0.35;
  flex-shrink: 0;
  margin-top: 0.35rem;
  background: var(--coral);
}

.c-i.yes::before {
  background: var(--teal);
  opacity: 0.6;
}


/* ═══════════════════════════════════════════════════════════
   7. PAGE: MISSION
   ═══════════════════════════════════════════════════════════ */

/* 7.1 MISSION: ABOUT */

.ab-div {
  height: 1px;
  background: linear-gradient(to right, transparent, transparent, var(--coral), var(--teal), transparent, transparent);
  margin: 0;
  width: 100%;
}

.ab-track-record {
  width: 100%;
  color: var(--snow);
  position: relative;
  z-index: 10;
  margin-top: 0.5rem;
  padding: 1rem 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  display: flex;
  justify-content: center;
}

.ab-track-record-in {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.ab-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  flex: 1;
  min-width: 100px;
}

.ab-stat-num {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem); 
  font-weight: 200;
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(180deg, var(--snow) 0%, #A0D1D1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .5rem;
}

.ab-stat-suffix {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 400;
  margin-left: 2px;
}

.ab-stat-desc {
  font-family: var(--body);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
  color: var(--teal);
}

.ab-stat-sub {
  font-family: var(--body);
  font-size: .80rem;
  color: var(--slate);
  margin-top: .25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ab-stat-divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,.2) 50%, rgba(255,255,255,0) 100%);
  flex-shrink: 0; 
}

.ab-stat-purpose .ab-stat-num {
  background: linear-gradient(180deg, var(--coral) 0%, #FF9A7A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ab-stat-purpose .ab-stat-desc {
  font-family: var(--body);
  font-size: .80rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 500;
  color: var(--snow);
}

.ab-stat-purpose .ab-stat-sub {
  font-family: var(--body);
  color: var(--coral);
  font-size: .80rem;
  margin-top: .25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}


@media(max-width: 1100px) {
  .ab-track-record-in {
    gap: 1rem; 
  }
}

@media(max-width: 960px) {
  .ab-div { margin: 0 2rem; width: auto; }
}

@media(max-width: 900px) {
  .ab-track-record {
    padding: 1.5rem 1.5rem;
  }
  
  .ab-track-record-in {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .ab-stat {
    min-width: 0; 
    align-items: center;
    text-align: center; 
    margin-bottom: 0;
  }

  .ab-stat-divider {
    display: none;
  }
}

@media(max-width: 500px) {
  .ab-track-record-in {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}



/* 7.1 MISSION: WHY */

/* CORE STRATUM VIEWPORTS */
.wy-wrap {
    background: var(--ink);
    color: var(--snow);
    position: relative;
}

.wy-stratum {
    position: relative;
    padding: 8rem max(4%, 2.5rem);
    overflow: hidden;
    box-sizing: border-box;
}

.wy-stratum--ink { background: var(--ink); }
.wy-stratum--deep { background: var(--deep); }
.wy-stratum--midnight {
    background: radial-gradient(ellipse 100% 80% at 50% 0%, var(--deep) 0%, #040c14 60%, #020810 100%);
}
.wy-stratum--bordered {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.wy-stratum::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 4%;
    width: 1px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to bottom, transparent 0%, rgba(var(--slate-rgb), .12) 8%, rgba(var(--slate-rgb), .12) 92%, transparent 100%);
}

.wy-stratum--midnight::before {
    content: '';
    position: absolute; inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(63, 176, 196, .04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255, 107, 107, .03) 0%, transparent 55%);
    pointer-events: none;
}

.wy-stratum-in {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: clamp(1.5rem, 6vw, 4rem);
    padding-right: clamp(1.5rem, 6vw, 4rem);
    box-sizing: border-box;
    width: 100%;
}

.wy-narrow { max-width: 840px; margin-left: auto; margin-right: auto; }
.wy-text-center { text-align: center; margin-bottom: 3rem; margin-left: 1rem; }

/* TYPOGRAPHY ECOSYSTEM */
.wy-eyebrow {
    display: block;
    font-family: var(--body);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 2.5rem;
    opacity: .85;
}

.wy-h2, .wy-h2-center {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 200;
    line-height: 1.12;
    color: var(--warm);
}
.wy-h2 { letter-spacing: -.025em; margin-bottom: 2.5rem; }
.wy-h2-center { letter-spacing: .025em; margin-bottom: 2rem; text-align: center; }

.wy-lead {
    font-family: var(--body);
    font-size: 1.05rem;
    color: rgba(var(--slate-rgb), .92);
    line-height: 1.88;
    max-width: 680px;
    margin: 0 auto 2rem auto;
    text-align: center;
}
.wy-lead--center { text-align: center; }

.wy-body p {
    font-family: var(--body);
    font-size: .97rem;
    color: rgba(var(--slate-rgb), .92);
    line-height: 1.95;
    margin-bottom: 1.4rem;
}
.wy-body p:last-child { margin-bottom: 0; }

.wy-body .teal {
    font-family: var(--body);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.wy-closing-line {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 200;
    color: var(--warm);
    line-height: 1.5;
    margin: 2.5rem 0 1.5rem 1.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--coral);
    position: relative;
}

.wy-for-living {
    font-family: var(--body);
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-top: 1.5rem;
    margin-bottom: 5rem;
    opacity: .8;
}

/* INTERACTIVE UTILITIES */
.wy-hero-cta-btn, .wy-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid rgba(255, 107, 107, 0.4);
    background: transparent;
    color: var(--coral);
    font-family: var(--body);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s var(--eout);
    box-shadow: 0 4px 20px rgba(4, 16, 29, 0.3);
    will-change: transform, box-shadow;
}
.wy-hero-cta-btn { padding: 1.2rem 2rem; font-size: 0.70rem; letter-spacing: 0.22em; }
.wy-cta-btn { padding: 1.1rem 2rem; font-size: .72rem; letter-spacing: .18em; }

.wy-hero-cta-btn:hover, .wy-cta-btn:hover {
    background: var(--coral);
    color: var(--ink);
    border-color: var(--coral);
    transform: translateY(-3px);
}
.wy-hero-cta-btn:hover { box-shadow: 0 15px 45px rgba(255, 107, 107, 0.35); }
.wy-cta-btn:hover { box-shadow: 0 12px 40px rgba(255, 107, 107, .3); }

.wy-hero-cta-btn svg, .wy-cta-btn svg { transition: transform 0.3s var(--eout); }
.wy-hero-cta-btn:hover svg { transform: translateX(4px); }
.wy-cta-btn:hover svg { transform: translateX(3px); }

/* ORIENTATION MARKERS */
.wy-depth-marker {
    position: absolute;
    top: 5rem; left: 6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
    opacity: 0.6;
    user-select: none;
}
.wy-depth-marker--glow { opacity: .7; }
.wy-depth-marker--glow .wy-dm-num { color: var(--teal); text-shadow: 0 0 12px rgba(63, 176, 196, .6); }

.wy-dm-num {
    font-family: var(--display);
    font-size: clamp(.95rem, 1.8vw, 1.4rem);
    font-weight: 200;
    letter-spacing: .08em;
    color: var(--warm);
    line-height: 1;
    opacity: .8;
}
.wy-dm-label {
    font-family: var(--body);
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--slate);
}

.wy-depth-indicator {
    position: absolute;
    top: 5rem; left: 6rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    opacity: 0.35;
    z-index: 5;
}
.wy-depth-label, .wy-depth-num {
    font-family: var(--body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--slate);
}
.wy-depth-line { width: 60px; height: 1px; background: var(--slate); }

/* ASSET MATRIX SYSTEM */
.wy-img-col { position: relative; }

.wy-img-frame, 
.wy-img-frame--story,
.wy-img-frame--below {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 6px;
}

.wy-img, 
.wy-img-story {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: inherit; 
    transition: filter 1.2s var(--eout), transform 1.2s var(--eout), opacity 0.8s var(--eout);
    will-change: transform, filter;
}

.wy-img { 
    aspect-ratio: 16 / 9; 
    filter: grayscale(5%) brightness(0.96) saturate(0.90); 
    opacity: 0.92; 
    margin-top: 0.5rem; 
    margin-bottom: 0.5rem; 
}

.wy-img-story {
    aspect-ratio: 4 / 5; 
    filter: grayscale(8%) brightness(0.9) saturate(0.96) contrast(0.98); 
    opacity: 0.9; 
}

.wy-img-frame:hover .wy-img { 
    filter: grayscale(0%) brightness(1) saturate(1); 
    transform: scale(1.015); 
}

.wy-img-frame--story:hover .wy-img-story,
.wy-img-frame--story:focus-within .wy-img-story {
    filter: grayscale(0%) brightness(0.95) saturate(1) contrast(0.98);
    opacity: 0.95;
    transform: scale(1.03);
}

.wy-img-story--whaleshark { object-position: center top; }
.wy-img-story--turtle { object-position: center 75%; }

#wy-invitation .wy-img { 
    filter: grayscale(0%) brightness(.88) saturate(1.1); 
}

#wy-invitation .wy-img-frame:hover .wy-img {
    filter: grayscale(0%) brightness(.96) saturate(1.18) contrast(1.02);
    transform: scale(1.02);
}

.wy-img-frame::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: .32;
    z-index: 1;
}

.wy-img-caption {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(4, 16, 29, .82) 0%, rgba(4, 16, 29, .45) 38%, transparent 100%);
    font-family: var(--body);
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-align: right;
    color: rgba(241, 245, 249, .72);
    transform: translateY(4px);
    opacity: 0;
    transition: opacity .5s var(--eout), transform .5s var(--eout);
}

.wy-img-frame:hover .wy-img-caption,
.wy-img-frame:focus-within .wy-img-caption { 
    opacity: 1; 
    transform: translateY(0); 
}

/* HERO CANVAS INTERFACE */
#wy-hero::before { display: none; }
.wy-hero {
    position: relative;
    width: 100%;
    height: 100vh; height: 100dvh;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 8% 6% 8%;
    background-color: var(--ink);
    box-sizing: border-box;
    overflow: hidden;
}
.wy-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; }
.wy-hero-img, .wy-hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transform: scale(1.01);
    filter: grayscale(10%) brightness(0.90) contrast(1.05) saturate(1.05);
    transition: filter 1.2s var(--eout), transform 1.2s var(--eout);
    will-change: transform, filter;
    pointer-events: none;
}
.wy-hero:hover .wy-hero-img, .wy-hero:hover .wy-hero-video {
    filter: grayscale(0%) brightness(0.95) contrast(1.05) saturate(1.1);
    transform: scale(1.00);
}
.wy-hero-fallback {
    width: 100%; height: 100%;
    background: radial-gradient(ellipse 80% 60% at 30% 60%, var(--ocean) 0%, var(--deep) 60%, var(--ink) 100%);
}

.wy-hero::after {
    content: '';
    position: absolute; 
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: .32;
    pointer-events: auto; 
    z-index: 2; 
}
.wy-hero-vignette {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: 
        linear-gradient(to left, rgba(4,16,29,0.7) 0%, rgba(4,16,29,0.3) 50%, transparent 100%),
        linear-gradient(to top, rgba(4,16,29,0.8) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(4,16,29,0.4) 0%, transparent 40%);
}
.wy-hero-grain {
    position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
.wy-hero-content { position: relative; z-index: 3; max-width: 620px; text-align: right; transform: translateY(15px); }
.wy-hero-rule { width: 45px; height: 2px; background: linear-gradient(to left, var(--coral), transparent); margin-bottom: 2rem; margin-left: auto; }
.wy-hero-quote {
    font-family: var(--body);
    font-size: clamp(1.25rem, 1.6vw, 1.30rem);
    font-weight: 300; font-style: italic; line-height: 1.65; letter-spacing: 0.04em;
    color: var(--warm); margin: 0 0 1rem 0;
    text-shadow: 0 4px 30px rgba(4, 16, 29, 0.8);
}
.wy-hero-quote p { margin-bottom: .75em; }
.wy-hero-quote p:last-child { margin-bottom: 0; }
.wy-hero-quote-em { font-style: italic; font-weight: 500; color: var(--coral); display: inline; }
.wy-hero-cite { display: block; font-family: var(--body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--slate); margin: 1.5rem 0; opacity: 0.8; }

.wy-scroll-invite { position: absolute; bottom: 4rem; left: 4%; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; z-index: 5; }
.wy-scroll-text { font-family: var(--body); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--slate); writing-mode: vertical-lr; transform: rotate(180deg); }
.wy-scroll-line {
    width: 1px; height: 70px;
    background: linear-gradient(to bottom, var(--coral) 0%, rgba(255,107,107,0.3) 50%, transparent 100%);
    background-size: 100% 200%;
    animation: wy-pulse-line 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes wy-pulse-line { 0%, 100% { background-position: 0% 0%; } 50% { background-position: 0% 100%; } }

/* SYSTEM WORK SPACES */
.wy-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 5.5rem; margin-top: 3rem; align-items: start; width: 100%; padding-left: 1.5rem; }
.wy-grid-2--reverse .wy-copy { order: 2; }
.wy-grid-2--reverse .wy-timeline-col { order: 1; }

.wy-proof-header-block { 
    margin: 6rem auto 2rem auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px; 
    width: 100%;
}
.wy-proof-container { 
    max-width: 1200px;
    margin-left: auto; 
    margin-right: auto; 
    padding-left: 2rem; 
    padding-right: 2rem; 
    width: 100%; 
    box-sizing: border-box; 
}
.wy-proof-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; 
    margin-top: 1rem; 
    margin-bottom: 2rem; 
    width: 100%; 
}
.wy-proof-item {
    background: var(--deep);
    padding: 3rem 2.75rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem;
    position: relative;
    transition: border-color .4s var(--eout), box-shadow .4s var(--eout);
}
.wy-proof-item::before {
    content: ''; 
    position: absolute; 
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, var(--coral), var(--teal));
    transform: scaleX(0); 
    transform-origin: left;
    transition: transform .6s var(--eout);
}
.wy-proof-item:hover { 
    border-color: rgba(255, 107, 107, .22); 
    box-shadow: 0 8px 40px rgba(4, 16, 29, .35); 
}
.wy-proof-item:hover::before { 
    transform: scaleX(1); 
}

.wy-proof-num { 
    display: block; 
    font-family: var(--body); 
    font-size: .7rem; 
    font-weight: 600; 
    letter-spacing: .28em; 
    text-transform: uppercase; 
    color: var(--coral); 
    opacity: .55; 
}

.wy-proof-h3 { 
    font-size: 1.25rem; 
    font-weight: 400; 
    line-height: 1.3; 
    color: var(--warm); 
    margin-top: 0; 
    margin-bottom: 0.85rem; 
    letter-spacing: 0.08em; 
    text-transform: none; 
}

.wy-proof-p { 
    font-size: 0.9rem; 
    font-weight: 100; 
    line-height: 1.8; 
    letter-spacing: 0.03em; 
    color: var(--snow); 
    margin: 0; 
}

.wy-proof-p strong { 
    font-size: 0.9rem; 
    font-weight: 600; 
    letter-spacing: 0.05em; 
    color: var(--slate); 
}

.wy-choice-quote { grid-column: 1 / -1; justify-self: center; width: 100%; max-width: 760px; margin: 0 auto 2rem; text-align: center; padding: 2rem 0; box-sizing: border-box; }
.wy-choice-quote .wy-closing-line {
    font-family: var(--display); font-style: italic; font-size: clamp(1.3rem, 1.6vw, 1.3rem); line-height: 1.45;
    color: var(--warm); letter-spacing: .01em; position: relative; text-align: center; max-width: 620px; margin: 5rem auto 1.5rem auto; padding: 0 1.5rem; border-left: none;
}
.wy-choice-quote .wy-closing-line::before, .wy-choice-quote .wy-closing-line::after {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 60px; height: 2px;
    background: linear-gradient(to right, var(--coral), var(--teal));
}
.wy-choice-quote .wy-closing-line::before { top: -1.5rem; }
.wy-choice-quote .wy-closing-line::after { bottom: -1.5rem; }

.wy-dest-head { text-align: center; margin-bottom: 5rem; }
.wy-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5px; background: var(--border); margin-bottom: 0; }
.wy-pillar { background: var(--deep); padding: 4rem 3rem; position: relative; overflow: hidden; transition: background .5s var(--eout); box-sizing: border-box; border: 1px solid var(--border);}

.wy-pillar::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, var(--coral), var(--teal));
    transform: scaleX(0); transform-origin: left; transition: transform .7s var(--eout);
}
.wy-pillar:hover { background: rgba(23, 60, 87, .25); }
.wy-pillar:hover::after { transform: scaleX(1); }
.wy-pillar-num { display: block; font-family: var(--display); font-size: .62rem; font-weight: 600; letter-spacing: .28em; color: var(--coral); opacity: .6; margin-bottom: 2rem; }
.wy-pillar-h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 300; color: var(--warm); line-height: 1.3; letter-spacing: -.01em; margin-bottom: 1.25rem; }
.wy-pillar-p { font-family: var(--body); font-size: .9rem; color: rgba(var(--slate-rgb), .92); line-height: 1.88; }
.wy-dest-close { text-align: center; padding-top: 3rem; border-top: 1px solid var(--border); }
.wy-manifesto-close { font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 200; color: var(--warm); line-height: 1.5; letter-spacing: -.01em; margin-bottom: 3rem; max-width: 680px; margin-left: auto; margin-right: auto; }


@media (min-width: 961px) {
    #wy-journey .wy-grid-2--reverse {
        grid-template-columns: 1fr minmax(320px, 400px); 
        gap: 0 clamp(2rem, 5vw, 6rem);
        align-items: start;
    }
    #wy-journey .wy-img-frame--story {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        margin-bottom: 2rem;
    }
    #wy-journey .wy-img-story {
        margin-top: 5rem;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.3);
    }
    .wy-img-frame--below { 
        grid-column: 1 / -1; 
        width: 75%; 
        justify-self: center; 
        box-sizing: border-box; 
    }
}

.wy-timeline { display: flex; flex-direction: column; margin-top: 3rem; gap: 0; }
.wy-timeline-col {
    grid-column: 1;
    grid-row: 1 / span 3; 
}
.wy-tl-item { padding: 2.5rem 0 1.5rem 2rem; border-left: 1px solid var(--border); position: relative; transition: border-color .4s; }
.wy-tl-item:hover { border-color: rgba(255, 107, 107, .3); }
.wy-tl-item::before {
    content: ''; position: absolute; left: -4px; top: 2.75rem; width: 7px; height: 7px; border-radius: 50%;
    background: var(--coral); opacity: .45; transition: opacity .3s, transform .3s;
}
.wy-tl-item:hover::before { opacity: 1; transform: scale(1.3); }
.wy-tl-year { display: block; font-family: var(--display); font-size: .65rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--coral); opacity: .8; margin-bottom: .75rem; }
.wy-tl-item--present { border-left-color: rgba(255, 107, 107, .3); }
.wy-tl-item--present .wy-tl-year { opacity: 1; letter-spacing: .25em; }
.wy-tl-item--present .wy-tl-text { color: var(--warm); font-weight: 400; }
.wy-tl-item--present::before { background: var(--teal); width: 8px; height: 8px; left: -4.5px; opacity: 1; }
.wy-tl-text { font-family: var(--body); font-size: .93rem; color: rgba(var(--slate-rgb), .92); line-height: 1.92; }
.wy-tl-text strong{ font-weight: 600; letter-spacing: 0.02em }

.wy-grief-col { 
    grid-column: 2;
    grid-row: 1 / span 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: auto; 
    padding-top: 6rem;
}
.wy-grief-bottom { position: relative; width: 100%;}
.wy-grief-quote {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 200;
  font-style: italic;
  text-align: center;
  color: var(--warm);
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding: 0.5rem 1.5rem 0.5rem 2rem; 
  position: relative;
  background: var(--coral-g);
  display: block; 
  max-width: 780px; 
  width: 100%;
  margin: clamp(3rem, 5vw, 4rem) auto;
}
.wy-grief-quote::before { 
  content: ''; 
  position: absolute; 
  left: 0; 
  top: 0; 
  bottom: 0; 
  width: 2px; 
  background: linear-gradient(to bottom, var(--coral), var(--teal)); 
  opacity: 0.5;
}

.wy-grief-body { position: relative; z-index: 1; font-family: var(--body); font-size: 1rem; font-weight: 500; letter-spacing: 0.02em; color: var(--coral); text-align: center; line-height: 1.92; max-width: 850px; margin-top: clamp(3rem, 5vw, 4rem);
    margin-left: auto;
    margin-right: auto; }

.wy-vision-text { display: flex; flex-direction: column; gap: 0; }
.wy-vision-p { font-family: var(--display); font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 200; line-height: 1.45; letter-spacing: -.01em; color: rgba(241, 245, 249, .72); padding: 3rem 0; border-bottom: 1px solid rgba(var(--slate-rgb), .08); }
.wy-vision-p:first-child { border-top: 1px solid rgba(var(--slate-rgb), .08); }
.wy-vision-em { font-family: var(--display); font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 200; font-style: italic; color: var(--teal); padding: 3rem 0; border-bottom: 1px solid rgba(var(--slate-rgb), .08); text-shadow: 0 0 40px rgba(63, 176, 196, .25); }

/* FUTURE SCENARIO */
.wy-future-scene { 
    position: relative; 
    padding: 2rem clamp(2rem, 10vw, 14rem) 3rem; 
    text-align: center; 
    border-top: 1px solid rgba(var(--slate-rgb), .07);
    border-bottom: 1px solid rgba(var(--slate-rgb), .07); 
}

.wy-future-scene-text { 
    font-family: var(--display); 
    font-size: clamp(1.1rem, 2.0vw, 1.5rem); 
    font-weight: 400; 
    line-height: 1.65; 
    color: var(--teal); 
    max-width: 840px; 
    letter-spacing: -.008em; 
    margin: 0 auto; 
    text-align: center; 
}

.wy-future-mechanism { 
    margin: 1rem 0 4rem; 
    padding: 3.5rem 2.5rem; 
    border: 1px solid var(--border); 
    border-radius: 4px; 
    background: color-mix(in srgb, var(--deep) 20%, transparent);
    backdrop-filter: blur(8px);
    position: relative; 
    overflow: hidden;
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
}

.wy-future-mechanism::after { 
    content: ''; 
    position: absolute; 
    top: 0; left: 0; right: 0; 
    height: 1px; 
    background: linear-gradient(to right, transparent, rgba(255, 107, 107, .28), transparent); 
}

.wy-future-mechanism-label { 
    font-family: var(--body); 
    font-size: .72rem; 
    font-weight: 600; 
    letter-spacing: .28em; 
    text-transform: uppercase; 
    color: var(--coral); 
    opacity: .75; 
    margin-bottom: 3.5rem; 
    display: block; 
}

.wy-future-streams { 
    display: grid; 
    grid-template-columns: 1fr 40px 1fr 40px 1fr; 
    align-items: stretch; 
    gap: 0; 
    margin-bottom: 3.5rem; 
}

.wy-future-stream { 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    gap: .7rem; 
    padding: 2.0rem 1.5rem; 
    background: rgba(var(--slate-rgb), .03); 
    border: 1px solid rgba(var(--slate-rgb), .12); 
    border-radius: 3px; 
    height: auto; 
    text-align: left;
    transition: background .3s var(--eout), border-color .3s var(--eout), transform .3s var(--eout); 
}

.wy-future-stream:hover { 
    background: rgba(var(--slate-rgb), .06);
    border-color: rgba(255, 107, 107, .25); 
    transform: translateY(-2px);
}

.wy-future-divider { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    flex-shrink: 0; 
    color: var(--coral); 
    opacity: .4; 
    font-size: 1.25rem; 
    font-family: var(--body); 
    line-height: 1;
}

.wy-future-divider::after { 
    content: '›'; 
    display: block;
    transform: translateY(-1px);
}

.wy-stream-num { 
    font-family: var(--body); 
    font-size: .65rem; 
    letter-spacing: .22em; 
    text-transform: uppercase; 
    color: var(--coral); 
    opacity: .5; 
    font-weight: 600;
}

.wy-stream-label { 
    font-family: var(--display); 
    font-size: clamp(.95rem, 1.4vw, 1.1rem); 
    font-weight: 400; 
    color: var(--warm); 
    line-height: 1.3; 
}

.wy-stream-desc { 
    font-size: .82rem; 
    color: var(--slate); 
    line-height: 1.6; 
    font-style: italic; 
    opacity: .85;
}

.wy-future-mechanism-close { 
    font-size: clamp(.88rem, 1.2vw, .98rem); 
    line-height: 1.8; 
    color: var(--slate); 
    font-style: italic; 
    border-top: 1px solid var(--border); 
    padding-top: 2rem; 
    margin: 0; 
    text-align: center; 
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wy-future-proof { text-align: center; margin: 5rem 0; }
.wy-future-proof-rule { width: 1px; height: 52px; background: linear-gradient(to bottom, transparent, var(--coral), transparent); margin: 0 auto 2.5rem; opacity: .38; }
.wy-future-proof-text { font-family: var(--display); font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 300; color: var(--warm); line-height: 1.15; letter-spacing: -.025em; margin-bottom: 1.5rem; }
.wy-future-proof-sub { font-size: clamp(.88rem, 1.4vw, 1.02rem); line-height: 1.8; color: var(--slate); max-width: 54ch; margin: 0 auto; }

.wy-future-gap { margin: 6rem 0 0; padding: 1.5rem 2.5rem 1.5rem 3rem; border-left: 1px solid rgba(255, 107, 107, .45); background-color: color-mix(in srgb, var(--deep) 60%, transparent); }
.wy-future-gap-label { font-family: var(--body); font-size: .72rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--coral); opacity: .85; margin-bottom: 1.25rem; display: block; }
.wy-future-gap-text { font-size: clamp(.93rem, 1.4vw, 1rem); line-height: 1.82; color: var(--warm); margin-bottom: 1.75rem; font-weight: 200; }

/* PARTICLE BIOMETRICS */
.wy-bio-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; display: flex; align-items: center; justify-content: center; gap: 0; overflow: hidden; }
.wy-bio-particle { flex: 1; height: 2px; animation: bioPulse 3s ease-in-out infinite; }
.wy-bio-particle:nth-child(1) { background: rgba(63, 176, 196, .6); animation-delay: 0s; }
.wy-bio-particle:nth-child(2) { background: rgba(63, 176, 196, .3); animation-delay: .4s; }
.wy-bio-particle:nth-child(3) { background: rgba(255, 107, 107, .4); animation-delay: .8s; }
.wy-bio-particle:nth-child(4) { background: rgba(63, 176, 196, .3); animation-delay: 1.2s; }
.wy-bio-particle:nth-child(5) { background: rgba(63, 176, 196, .6); animation-delay: 1.6s; }
@keyframes bioPulse { 0%, 100% { opacity: .15; } 50% { opacity: 1; } }


@media (min-width: 1800px) {
    .wy-hero-quote { font-size: 1.45rem; line-height: 1.9; }
    .wy-hero-content { max-width: 760px; }
}

@media (max-width: 1100px) {
    .wy-hero { align-items: center; justify-content: center; }
    .wy-hero-bg { width: 100%; height: 100%; overflow: hidden; }
    .wy-hero-content { max-width: 90%; text-align: center; margin-bottom: 0; transform: translateY(0); }
    .wy-hero-rule { margin-inline: auto; background: linear-gradient(to right, transparent, var(--coral), transparent); }
    .wy-hero-quote { font-size: 1.05rem; line-height: 1.75; }
    
    .wy-depth-indicator, .wy-depth-marker, .wy-scroll-invite { left: 3rem; margin-bottom: 3rem; }
    .wy-scroll-invite { bottom: 8rem; }

    .wy-stratum { padding: 6rem 2rem; }

    .wy-grid-2 { gap: 4rem 3rem; }
    .wy-body p { margin-left: 0rem; }
    .wy-choice-quote .wy-closing-line { max-width: 580px; }
    
    .wy-proof-header-block { margin-top: 10rem; margin-bottom: 1rem; }
    .wy-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2.5rem; }
    .wy-proof-item { padding: 2rem 1.75rem; }

    .wy-pillar { padding: 4rem 2rem; }
}

@media (max-width: 960px) {
    .wy-grid-2, .wy-proof-grid, .wy-pillars {
        grid-template-columns: 1fr; 
        gap: 0 0; 
    }
    
    .wy-proof-grid {
        gap: 0.5rem;
    }
    
    #wy-choice .wy-grid-2,
    #wy-journey .wy-grid-2--reverse,
    #wy-invitation .wy-grid-2 {
        display: flex;
        flex-direction: column;
    }
    
    #wy-choice .wy-copy.r { 
        order: 1; 
    }
    
    .wy-stratum #wy-choice .wy-img-frame--below,
    .wy-stratum #wy-journey .wy-img-frame--story,
    .wy-stratum #wy-invitation .wy-img-frame,
    .wy-stratum .wy-img-frame--below,
    .wy-stratum .wy-img-frame--story,
    .wy-stratum .wy-img-frame { 
        order: 2; 
        width: 100vw;
        max-width: 100vw;
        min-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        left: 0;
        right: 0;
        border-radius: 0;
        position: relative;
        box-sizing: border-box;
    }
    
    .wy-stratum #wy-choice .wy-img-frame--below,
    .wy-stratum .wy-img-frame--below {
        margin-top: 4.5rem;
        margin-bottom: 4.5rem;
    }
    
    .wy-stratum .wy-img-col.r,
    .wy-stratum .wy-img-col {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    #wy-journey .wy-grief-col { 
    order: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; 
    width: 100%;
    }
    
    #wy-choice .wy-img-col.r.d2 { 
        order: 2; 
    }
    
    #wy-journey .wy-timeline-col { 
        order: 2; 
    }
    
    #wy-journey .portrait {
        order: 1;               
        margin-bottom: 2rem;
    }
    
    #wy-journey .about-signature {
        order: 2;
    }
    
    #wy-journey .wy-grief-bottom {
        order: 3;           
        margin-top: 3rem;
    }
        
    #wy-journey .wy-img-frame--story {
        order: 3; 
        margin-top: 0;
        margin-bottom: 4.5rem;
    }
    
    .wy-stratum .wy-img,
    .wy-stratum .wy-img-story,
    .wy-stratum #wy-journey .wy-img-story,
    .wy-stratum #wy-invitation .wy-img-story {
        width: 60%;
        max-width: 60%; 
        min-width: 60%;
        align-content: center;
        margin: 3rem auto 0;
    }
    
    #wy-journey .wy-img-story {
        aspect-ratio: 16 / 9; 
    }
    
    #wy-journey .wy-grief-bottom {
        order: 2; 
    }
    
    #wy-invitation .wy-copy.r.d1 {
        order: 1;
        display: flex;
        flex-direction: column;
    }

    #wy-invitation .wy-img-col.r { 
        order: 2; 
        margin-top: 1.5rem;
        margin-bottom: 4.5rem;
    }
    
    #wy-invitation .wy-body {
        order: 3;
    }

    #wy-invitation .wy-for-living { 
        order: 4; 
    }
    
    #wy-journey .wy-grid-2--reverse {
        gap: 0 0;
    }

    .wy-future-scene { padding: 4rem 1.25rem; }
    .wy-future-streams { grid-template-columns: 1fr; gap: 0.75rem; }
    .wy-future-divider { display: none; }
    .wy-future-stream { 
        height: auto; 
        max-width: 100%; 
        margin: 0 auto; 
        width: 100%; 
        padding: 2rem;
    }
    .wy-future-mechanism { padding: 2.5rem 1.5rem; }
    .wy-future-gap { padding: 2rem 1.5rem; }
    .wy-future-proof-text { font-size: clamp(1.6rem, 5vw, 2.6rem); }

    .wy-img-caption { display: none; }
    .wy-vision-p { font-size: clamp(1.1rem, 3.5vw, 1.4rem); }
    
    .wy-pillars {
        grid-template-columns: 1fr;
    }
    .wy-pillar {
        border-bottom: 1px solid var(--border);
        padding: 3.5rem 2rem;
    }

}

@media (max-width: 768px) {
    .wy-timeline { margin-top: 2rem; }
    .wy-tl-item { padding: 1.75rem 0 1.75rem 1.5rem; }
    .wy-grief-col { padding: 1rem; }
    .wy-proof-container { padding-left: 1.5rem; padding-right: 1.5rem; }
    .wy-proof-item { padding: 1.5rem 1.5rem 1.75rem; }
    .wy-closing-line { font-size: 0.95rem; }
    .wy-stratum::before, .wy-depth-indicator, .wy-depth-marker, .wy-scroll-invite { display: none; }
    .wy-text-center { margin-left: 0; }
    
        .wy-stratum .wy-img,
    .wy-stratum .wy-img-story,
    .wy-stratum #wy-journey .wy-img-story,
    .wy-stratum #wy-invitation .wy-img-story {
        width: 100%;
        max-width: 100%; 
        min-width: 100%;
    }
}

@media (max-width: 680px) {
    .wy-hero { padding: 2rem 1.5rem 4rem 1.5rem; justify-content: center; }
    .wy-hero-vignette { background: rgba(4, 16, 29, 0.70); }
    .wy-hero-quote { font-size: 1.0rem; line-height: 1.7; }
    .wy-hero-cta-btn { font-size: 0.65rem; }

    .wy-stratum { padding: 4rem 1.25rem; }
    
    .wy-choice-quote { padding: 0.5rem; }
    .wy-choice-quote .wy-closing-line { font-size: 1.1rem; line-height: 1.5; padding-left: 1rem; }

    .wy-img-frame--below { grid-column: auto; max-width: 100%; margin-top: .25rem; }
    
    .wy-future-stream { padding: 1.5rem 2.25rem; max-width: 100%; }
    .wy-stream-label { font-size: .98rem; }
    .wy-stream-desc { font-size: .78rem; }
    .wy-future-mechanism { padding: 1.5rem 1.25rem; }
    .wy-future-proof-text { font-size: clamp(1.5rem, 7vw, 2rem); }

    .wy-grief-quote { padding: 1.25rem 1rem 1.25rem 1.5rem; }
    .wy-proof-num { font-size: clamp(1rem, 4vw, 1.4rem); }
}

@media (max-width: 390px) {
    .wy-lead { font-size: .9rem; }
}

/* --- ACCESSIBILITY MOTOR REDUCTION --- */
@media (prefers-reduced-motion: reduce) {
    .wy-hero-img, .wy-hero-video { transform: none !important; filter: grayscale(30%) brightness(.55) !important; transition: none !important; }
    .wy-scroll-line, .wy-bio-particle { animation: none !important; }
    .wy-img, .wy-proof-item::before, .wy-pillar::after { transition: none !important; }
}



/* ═══════════════════════════════════════════════════════════
   8. PAGE: MANDATES
   ═══════════════════════════════════════════════════════════ */

.card-can{background:var(--deep);padding:2.5rem}

/* ═══════════════════════════════════════════════════════════
   9. PAGE: INTEL / LOGBOOK PAGE
   ═══════════════════════════════════════════════════════════ */

.intel-main {
  background-color: var(--ink);
  color: var(--warm);
  font-family: var(--body);
}

.intel-main .intel-hero {
  background: radial-gradient(circle at top, rgba(120,180,255,.20), transparent 35%) var(--ink);
  position: relative;
  padding: 7rem 5rem 5rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.intel-main .intel-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.intel-main .intel-hero-tagline {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.intel-main .intel-hero-h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.6vw, 2.8rem);
  font-weight: 300;
  color: var(--snow);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 2rem 0;
}

.intel-main .intel-hero-sub {
  font-size: clamp(1.0rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: var(--slate);
  max-width: 840px;
  margin-bottom: 3.5rem;
  opacity: 0.95;
}

.intel-main .intel-hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.intel-main .btn-p {
  font-size: var(--type-btn);
  font-weight: 600;
  background-color: var(--coral);
  color: var(--ink);
  padding: 1.1rem 2.2rem;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background-color 0.35s ease, transform 0.35s ease;
}

.intel-main .btn-p:hover {
  transform: translateY(-1px);
}

.intel-main .btn-outline {
  font-size: var(--type-btn);
  text-transform:uppercase;
  font-weight: 500;
  color: var(--snow);
  border: 1px solid var(--border);
  padding: 1.1rem 2.2rem;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: border-color 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}

.intel-main .btn-outline:hover {
  border-color: var(--slate);
  background-color: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.intel-main .intel-pillars-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 9rem 4rem;
  border-bottom: 1px solid var(--border);
}

.intel-main .stratum-layout-split {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: start;
}

.intel-main .stratum-sticky-sidebar {
  position: sticky;
  top: 9rem;
}

.intel-main .mini-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  display: block;
  margin-bottom: 1.25rem;
}

.intel-main .stratum-main-title {
  font-family: var(--display);
  font-size: 2.0rem;
  font-weight: 300;
  color: var(--snow);
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.intel-main .stratum-sidebar-p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--warm);
  margin-bottom: 1.25rem;
}

.intel-main .stratum-sidebar-p.sub-color {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}

.intel-main .stratum-column-deck {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  background-color: rgba(11, 24, 38, 0.15);
}

.intel-main .stratum-panel {
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.35s ease;
}

.intel-main .stratum-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.2rem 2.5rem;
  user-select: none;
}

.intel-main .stratum-trigger-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.intel-main .stratum-num {
  font-size: 0.75rem;
  font-family: var(--display);
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.intel-main .stratum-layer-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--snow);
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.intel-main .stratum-trigger-right {
  display: flex;
  align-items: center;
  padding-left: 2rem;
}

/* Structural Cross Styling */
.intel-main .icon-cross {
  width: 12px;
  height: 12px;
  position: relative;
}

.intel-main .icon-cross::before,
.intel-main .icon-cross::after {
  content: '';
  position: absolute;
  background-color: var(--slate);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.intel-main .icon-cross::before {
  top: 5px; left: 0; width: 12px; height: 2px;
}
.intel-main .icon-cross::after {
  top: 0; left: 5px; width: 2px; height: 12px;
}

.intel-main .stratum-content-reservoir {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.intel-main .stratum-content-padding {
  padding: 0.25rem 2.5rem 1.75rem 2.5rem;
  max-width: 780px;
}

.intel-main .stratum-content-padding p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.88);
  margin: 0;
  opacity:0.85;
}

.intel-main .stratum-panel:hover {
  background-color: rgba(255, 255, 255, 0.01);
}

.intel-main .stratum-panel.is-active {
  background-color: rgba(255, 255, 255, 0.02);
}

.intel-main .stratum-panel.is-active .stratum-content-reservoir {
  max-height: 360px;
}

.intel-main .stratum-panel.is-active .icon-cross::before {
  transform: rotate(45deg);
}
.intel-main .stratum-panel.is-active .icon-cross::after {
  transform: rotate(45deg);
}

.intel-main .intel-cta-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10rem 2rem;
}

.intel-main .ins-coaching-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.intel-main .ins-coaching-h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.0vw, 2.3rem);
  font-weight: 300;
  color: var(--snow);
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
}

.intel-main .ins-coaching-p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 1.25rem;
}

.intel-main .ins-coaching-p2 {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--warm);
  opacity:0.8;
  letter-spacing: 0.01em;
  margin: 0;
}

.intel-main .intel-cta-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intel-main .ins-cta-btn-alt {
    font-size: var(--type-btn);
    font-weight: 500;
    color: var(--snow);
    text-align: center;
    border: 1px solid var(--border);
    padding: 1.1rem 2.2rem;
    border-radius: 2px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: border-color 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}

.intel-main .ins-cta-btn-alt:hover {
    border-color: var(--slate);
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateY(-1px);
  
}

.intel-main .ins-cta-btn {
    font-size: var(--type-btn);
    font-weight: 600;
    background-color: var(--coral);
    color: var(--ink);
    text-align: center;
    padding: 1.1rem 3.4rem;
    border-radius: 2px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    transition: background-color 0.35s ease, transform 0.35s ease;
}

.intel-main .ins-cta-btn:hover {
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow:0 12px 32px rgba(255,107,107,.35)
}

.intel-main .ins-cta-btn-alt,
.intel-main .ins-cta-btn {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  white-space: nowrap;
}


@media (max-width: 1024px) {
  .intel-main .stratum-layout-split,
  .intel-main .ins-coaching-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .intel-main .stratum-sticky-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .intel-main .intel-hero {
    padding: 8rem 2rem 5rem;
  }
  
  .intel-main .intel-hero-h1 {
  font-size: clamp(1.8rem, 3.0vw, 2.2rem);
}
  
  .intel-main .intel-cta-links {
    align-items: stretch;
  }
  
  .intel-main .intel-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .intel-main .btn-p,
  .intel-main .btn-outline {
    text-align: center;
    width: 100%;
    justify-content: center;
  }
  
  .intel-main .ins-cta-btn-alt,
  .intel-main .ins-cta-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .intel-main .intel-pillars-section {
    padding: 6rem 2.5rem;
  }
  
  .intel-main .stratum-trigger {
    padding: 1.8rem 1.25rem;
  }
  
  .intel-main .stratum-content-padding {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  
  .intel-main .intel-cta-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}



/* ═══════════════════════════════════════════════════════════
   10. PAGE: CONTACT
   ═══════════════════════════════════════════════════════════ */

.c-hero{padding:6rem 5rem 2rem;position:relative;overflow:hidden;display:grid;place-items:center;text-align:center}
.c-hero h1{font-family:var(--display);font-size:clamp(2.4rem,4.8vw,4.6rem);font-weight:200;line-height:1.06;letter-spacing:-.03em;color:var(--warm);margin-bottom:1.5rem;opacity:0;animation:fU .9s .22s var(--eout) forwards}
.c-hero h1 em{font-style:italic;color:var(--coral)}
.c-hero-bg{position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 65% 35%,rgba(23,60,87,.5) 0%,transparent 65%),var(--ink);z-index:0}
.c-hero-in{position:relative;z-index:1;max-width:760px;margin:0 auto}
.c-hero-sub{font-family:var(--body);font-size:1.05rem;color:rgba(var(--slate-rgb),.95);line-height:1.9;max-width:580px;margin:0 auto;opacity:0;animation:fU .9s .38s var(--eout) forwards}
.c-hero-tag{display:inline-flex;align-items:center;gap:.7rem;font-family:var(--body);font-size:.6rem;font-weight:600;letter-spacing:.24em;text-transform:uppercase;color:var(--coral);margin-bottom:1.75rem;opacity:0;animation:fU .9s .1s var(--eout) forwards}
.c-hero-tag::before{content:'';width:16px;height:1px;background:var(--coral);opacity:.5}
.personal-note{background:rgba(255,107,107,.04);border:1px solid rgba(255,107,107,.1);border-radius:2px;padding:1.5rem 2rem 1.5rem 2rem;margin-bottom:10rem;position:relative}
.personal-note::before{content:'';position:absolute;top:0;left:0;bottom:0;width:2px;background:linear-gradient(to bottom,var(--coral),var(--teal))}
.note-label {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral);
    opacity: 0.75;
    margin-bottom: 1.5rem;
    display: block;
}
.personal-note p{font-family:var(--body);font-size:.97rem;color:var(--slate);line-height:1.92;margin-bottom:0.8rem}
.personal-note p:last-of-type{margin-bottom:.5rem}
.personal-note p strong{color:var(--warm);font-weight:500}
.personal-sig{font-family:var(--display);font-style:italic;font-size:1.1rem;font-weight:300;color:var(--coral);letter-spacing:0.05em;opacity:.95;display:block;text-align:right;margin-top: 1rem; padding-right:1rem}
.next-steps{display:flex;gap:0;flex-direction:column;margin-bottom:6rem;background:rgba(var(--slate-rgb),.05);border:1px solid var(--border)}
.ns{display:grid;grid-template-columns:52px 1fr;gap:1.25rem;padding:1.75rem 2rem;border-bottom:1px solid var(--border);align-items:start;transition:background .3s;cursor:pointer}
.ns:last-child{border-bottom:none}
.ns:hover{background:rgba(255,107,107,.025)}
.ns-dot{width:28px;height:28px;border-radius:50%;background:rgba(255,107,107,.1);border:1px solid rgba(255,107,107,.25);display:flex;align-items:center;justify-content:center;font-family:var(--display);font-size:.8rem;font-weight:300;color:var(--coral);flex-shrink:0;margin-top:.2rem}
.ns h4{font-family:var(--display);font-size:1.05rem;font-weight:300;color:var(--warm);margin-bottom:.35rem;letter-spacing:-.01em}
.ns p{font-family:var(--body);font-size:.9rem;color:rgba(var(--slate-rgb));line-height:1.82}
.form-section{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:2.75rem;
  margin-bottom:6rem;
}

.form-intro{
  max-width:780px;
  margin:0 auto;
  text-align:center;
}

.form-intro .tag{
  justify-content:center;
}

.form-section h2{
  font-family:var(--display);
  font-size:clamp(1.8rem,3vw,2.6rem);
  font-weight:200;
  line-height:1.15;
  letter-spacing:-.02em;
  color:var(--warm);
  margin-bottom:1.25rem;
}

.form-intro > p{
  font-family:var(--body);
  font-size:.95rem;
  color:rgba(var(--slate-rgb),.92);
  line-height:1.92;
  margin-bottom:1.1rem;
  max-width:680px;
  margin-left:auto;
  margin-right:auto;
}

.form-intro > p:last-of-type{
  margin-bottom:0;
}

.form-intro > p strong{
  color:var(--slate);
  font-weight:600;
}

.form-wrap{
  width:100%;
  max-width:1120px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:1.25rem;
}


/* 10A. CONTACT FORM */

.page-contact .wpforms-container.dc-contact-form {
  width:100%;
  max-width:none;
  margin:0;
}

.page-contact .wpforms-container.dc-contact-form .wpforms-form {
  width: 100%;
  max-width:none;
  background: rgba(var(--slate-rgb),.035);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding:2.4rem 2.4rem 1.6rem;
  box-shadow: none;

}

.page-contact .wpforms-container.dc-contact-form .wpforms-field {
  padding: 0 0 1.15rem;
  position: relative;
}

.page-contact .wpforms-container.dc-contact-form .wpforms-field-label {
  display: block;
  margin-bottom: .7rem;
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(var(--snow-rgb), .88);
}

.page-contact .wpforms-container.dc-contact-form .wpforms-field-description,
.page-contact .wpforms-container.dc-contact-form .wpforms-field-sublabel {
  margin-top: .45rem;
  font-family: var(--body);
  font-size: .8rem;
  line-height: 1.65;
  color: rgba(var(--slate-rgb),.92);
}

.page-contact .wpforms-container.dc-contact-form input[type="text"],
.page-contact .wpforms-container.dc-contact-form input[type="email"],
.page-contact .wpforms-container.dc-contact-form input[type="url"],
.page-contact .wpforms-container.dc-contact-form input[type="tel"],
.page-contact .wpforms-container.dc-contact-form input[type="number"],
.page-contact .wpforms-container.dc-contact-form textarea,
.page-contact .wpforms-container.dc-contact-form select {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: .95rem 1rem;
  border: 1px solid rgba(var(--slate-rgb),.32);
  border-radius: 2px;
  background: rgba(4,16,29,.56);
  color: var(--warm);
  font-family: var(--body);
  font-size: .95rem;
  line-height: 1.6;
  box-shadow: none;
  transition:
    border-color .28s var(--ease),
    background .28s var(--ease),
    color .28s var(--ease),
    box-shadow .28s var(--ease),
    transform .28s var(--ease);
}

.page-contact .wpforms-container.dc-contact-form input::placeholder,
.page-contact .wpforms-container.dc-contact-form textarea::placeholder {
  color: rgba(var(--slate-rgb),.58);
  opacity: 1;
}

.page-contact .wpforms-container.dc-contact-form input[type="text"]:focus,
.page-contact .wpforms-container.dc-contact-form input[type="email"]:focus,
.page-contact .wpforms-container.dc-contact-form input[type="url"]:focus,
.page-contact .wpforms-container.dc-contact-form input[type="tel"]:focus,
.page-contact .wpforms-container.dc-contact-form input[type="number"]:focus,
.page-contact .wpforms-container.dc-contact-form textarea:focus,
.page-contact .wpforms-container.dc-contact-form select:focus {
  outline: none;
  border-color: rgba(255,107,107,.88);
  background: rgba(4,16,29,.72);
  box-shadow:   0 0 0 2px rgba(4,16,29,.95),
                0 0 0 5px rgba(255,107,107,.28);
}

.page-contact .wpforms-container.dc-contact-form textarea {
  min-height: 170px;
  resize: vertical;
  padding-top: 1rem;
}

.page-contact .wpforms-container.dc-contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,107,107,.75) 50%),
    linear-gradient(135deg, rgba(255,107,107,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}


@media (min-width: 768px) {
  .page-contact .wpforms-container.dc-contact-form .wpf-half {
    float: left;
    clear: none;
    width: calc(50% - .6rem);
    margin-right: 1.2rem;
  }

  .page-contact .wpforms-container.dc-contact-form .wpf-half:nth-of-type(2n) {
    margin-right: 0;
  }

  .page-contact .wpforms-container.dc-contact-form .wpf-full,
  .page-contact .wpforms-container.dc-contact-form .wpf-selection,
  .page-contact .wpforms-container.dc-contact-form .wpf-consent {
    clear: both;
    width: 100%;
  }
}

.page-contact .wpforms-container.dc-contact-form .wpf-message textarea {
  min-height: 190px;
}

.page-contact .wpforms-container.dc-contact-form .wpf-selection {
  background: rgba(var(--slate-rgb),.04);
  border: 1px solid rgba(var(--slate-rgb),.22);
  border-radius: 2px;
  padding: 1.15rem 1.1rem .35rem;
  margin-bottom: 1.15rem;
}

.page-contact .wpforms-container.dc-contact-form .wpf-selection .wpforms-field-label {
  margin-bottom: .85rem;
  color: var(--warm);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
}

.page-contact .wpforms-container.dc-contact-form .wpf-selection ul,
.page-contact .wpforms-container.dc-contact-form .wpf-consent ul {
  margin-top: .25rem;
  list-style: none;
}

.page-contact .wpforms-container.dc-contact-form .wpf-selection li,
.page-contact .wpforms-container.dc-contact-form .wpf-consent li {
  margin-bottom: .7rem;
}

.page-contact .wpforms-container.dc-contact-form .wpf-selection label,
.page-contact .wpforms-container.dc-contact-form .wpf-consent label {
  font-family: var(--body);
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(var(--snow-rgb), .9);
}

@supports (accent-color: var(--coral)) {
  .page-contact .wpforms-container.dc-contact-form .wpf-selection input[type="checkbox"],
  .page-contact .wpforms-container.dc-contact-form .wpf-selection input[type="radio"],
  .page-contact .wpforms-container.dc-contact-form .wpf-consent input[type="checkbox"] {
    accent-color: var(--coral);
  }
}

.page-contact .wpforms-container.dc-contact-form .wpf-consent {
  padding-top: .25rem;
}

.page-contact .wpforms-container.dc-contact-form .wpf-consent label {
  font-family: var(--body);
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(var(--snow-rgb),.82);
}

.page-contact .wpforms-container.dc-contact-form .wpf-consent input[type="checkbox"] {
  margin-right: .55rem;
  transform: translateY(1px);
}

.page-contact .wpforms-container.dc-contact-form .wpforms-submit-container {
  padding-top: .65rem;
}

.page-contact .wpforms-container.dc-contact-form button[type="submit"],
.page-contact .wpforms-container.dc-contact-form .wpforms-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.25rem;
  border: 1px solid rgba(255,107,107,.42);
  border-radius: 2px;
  background: rgba(255,107,107,.14);
  color: var(--snow);
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background .28s var(--ease),
    border-color .28s var(--ease),
    color .28s var(--ease),
    transform .28s var(--ease);
}

.page-contact .wpforms-container.dc-contact-form button[type="submit"]:hover,
.page-contact .wpforms-container.dc-contact-form .wpforms-submit:hover {
  background: rgba(255,107,107,.22);
  border-color: rgba(255,107,107,.65);
  color: var(--snow);
  transform: translateY(-1px);
}

.page-contact .wpforms-container.dc-contact-form button[type="submit"]:active,
.page-contact .wpforms-container.dc-contact-form .wpforms-submit:active {
  transform: translateY(0);
}

.page-contact .wpforms-container.dc-contact-form label.wpforms-error,
.page-contact .wpforms-container.dc-contact-form em.wpforms-error {
  display: block;
  margin-top: .45rem;
  font-family: var(--body);
  font-size: .78rem;
  font-style: normal;
  line-height: 1.5;
  color: var(--coral);
}

.page-contact .wpforms-container.dc-contact-form .wpforms-confirmation-container-full {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(63,176,196,.16);
  border-radius: 2px;
  background: rgba(63,176,196,.05);
  color: rgba(var(--snow-rgb), .88);
  font-family: var(--body);
  line-height: 1.8;
}

.page-contact .dc-form-notice {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,107,107,.16);
  background: rgba(255,107,107,.04);
  color: rgba(var(--snow-rgb), .78);
  font-family: var(--body);
  font-size: .9rem;
  line-height: 1.7;
}


@media (max-width: 767px) {
  .form-section{
    gap:2rem;
    margin-bottom:4.5rem;
  }

  .form-intro{
    max-width:100%;
  }

  .form-intro > p{
    font-size:.92rem;
    line-height:1.85;
  }

  .form-wrap{
    max-width:100%;
  }

  .page-contact .wpforms-container.dc-contact-form .wpforms-form {
    padding: 1.2rem 1.1rem 1rem;
  }

  .page-contact .wpforms-container.dc-contact-form .wpforms-field {
    padding-bottom: 1rem;
  }

  .page-contact .wpforms-container.dc-contact-form input[type="text"],
  .page-contact .wpforms-container.dc-contact-form input[type="email"],
  .page-contact .wpforms-container.dc-contact-form input[type="url"],
  .page-contact .wpforms-container.dc-contact-form input[type="tel"],
  .page-contact .wpforms-container.dc-contact-form input[type="number"],
  .page-contact .wpforms-container.dc-contact-form textarea,
  .page-contact .wpforms-container.dc-contact-form select {
    min-height: 50px;
    font-size: 14px;
  }

  .page-contact .wpforms-container.dc-contact-form .wpf-selection {
    padding: 1rem .9rem .2rem;
  }

  .page-contact .wpforms-container.dc-contact-form button[type="submit"],
  .page-contact .wpforms-container.dc-contact-form .wpforms-submit {
    width: 100%;
  }
}



/* ═══════════════════════════════════════════════════════════
   11. UTILITY CLASSES
   ═══════════════════════════════════════════════════════════ */

.u-center{justify-content:center}
.u-mt-lg{margin-top:2rem}
.dc-block{display:block}


/* ═══════════════════════════════════════════════════════════
   12. WOOCOMMERCE
   ═══════════════════════════════════════════════════════════ */

.dc-woo-section{padding:8rem 0}
.dc-woo-wrap{max-width:1080px;margin:0 auto;padding:0 5rem}
.woocommerce h1,.woocommerce h2,.woocommerce h3{font-family:var(--display);font-weight:200;color:var(--warm)}
.woocommerce p,.woocommerce li,.woocommerce td{font-family:var(--body);color:rgba(var(--slate-rgb),.92);line-height:1.75}
.woocommerce a{color:var(--coral)}
.woocommerce .button,.woocommerce button[type=submit]{background:var(--coral)!important;color:var(--ink)!important;font-family:var(--body)!important;font-weight:600!important;letter-spacing:.08em!important;text-transform:uppercase!important;border:none!important;border-radius:2px!important;padding:.75rem 1.5rem!important;cursor:pointer!important;transition:all .35s!important}
.woocommerce .button:hover{transform:translateY(-2px)!important;box-shadow:0 8px 24px rgba(255,107,107,.3)!important}
@media(max-width:960px){.dc-woo-wrap{padding:0 2rem}}


/* ═══════════════════════════════════════════════════════════
   13. SINGULAR / ERROR / PAGE CONTENT
   ═══════════════════════════════════════════════════════════ */

.page-content,.dc-page-content{max-width:1080px;margin:0 auto;padding:0 5rem}
.dc-page-content{font-family:var(--body);font-size:.95rem;color:rgba(var(--slate-rgb),.92);line-height:1.95}
.dc-page-content h1,.dc-page-content h2{font-family:var(--display);font-weight:200;line-height:1.15;letter-spacing:-.02em;color:var(--warm);margin-bottom:2rem}
.dc-page-content h3{font-family:var(--display);font-size:clamp(1.2rem,2vw,1.6rem);font-weight:300;color:var(--snow);margin:2rem 0 .75rem}
.dc-page-content p{margin-bottom:1.5rem}
.dc-page-content p:last-child{margin-bottom:0}
.dc-page-content strong{color:var(--snow);font-weight:500}
.dc-page-content em{font-style:italic;color:rgba(var(--slate-rgb),.92)}
.dc-page-content a{color:var(--coral);text-decoration:none;transition:border-color .3s}
.dc-page-content a:hover{border-color:var(--coral)}
.dc-page-content ul,.dc-page-content ol{margin:1rem 0 1.5rem 1.5rem;color:rgba(var(--slate-rgb),.92)}
.dc-page-content li{margin-bottom:.5rem;line-height:1.75}
.dc-page-content blockquote{margin:2rem 0;padding:1.25rem 1.75rem;border-left:2px solid var(--coral);background:rgba(255,107,107,.04)}
.dc-page-content blockquote p{color:var(--warm);font-style:italic;font-size:1rem;margin:0}
@media(max-width:960px){.page-content,.dc-page-content{padding:0 2rem}}
.dc-singular-wrap{max-width:760px;margin:0 auto;padding:10rem 5rem}
.dc-singular-title{font-family:var(--display);font-size:clamp(2rem,3.5vw,3.2rem);font-weight:200;color:var(--warm);margin-bottom:2.5rem;line-height:1.1;letter-spacing:-.02em}
.dc-singular-body{font-family:var(--body);font-size:.95rem;color:rgba(var(--slate-rgb),.92);line-height:1.95}
@media(max-width:960px){.dc-singular-wrap{padding:6rem 2rem}}
.dc-error-wrap{min-height:80vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:6rem 2rem}
.dc-error-num{font-family:var(--display);font-size:8rem;font-weight:200;color:rgba(255,107,107,.1);line-height:1;letter-spacing:-.06em;margin-bottom:1rem}
.dc-error-h1{font-family:var(--display);font-size:clamp(1.6rem,3vw,2.4rem);font-weight:200;color:var(--warm);margin-bottom:1rem;letter-spacing:-.02em}
.dc-error-p{font-family:var(--body);font-size:.95rem;color:rgba(var(--slate-rgb),.92);line-height:1.88;margin-bottom:2.5rem}
.dc-error-btn{display:inline-flex;align-items:center;gap:.6rem;padding:.9rem 1.8rem;background:var(--coral);color:var(--ink);font-family:var(--body);font-size:.78rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;text-decoration:none;border-radius:2px;transition:all .35s var(--eout)}
.dc-error-btn:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(255,107,107,.35)}


/* ═══════════════════════════════════════════════════════════
   14. RESPONSIVE — GLOBAL BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

@media(max-width:960px){
  .div{margin:0 2rem}
}

@media (max-width: 768px) {

  .n-links { gap: 1.25rem; }
  .n-links a { font-size: max(14px, 0.75rem) ; }
  
  .n-cta { 
    font-size: max(14px, 0.75rem); 
    padding: 0.55rem 1.1rem; 
    min-height: 40px; 
  }

  .btn-p, .btn-o, .btn-sub {
    font-size: max(15px, 0.8rem);
    padding: 0.65rem 1.25rem;
    min-height: 44px; 
    margin-left: 0;
    white-space: nowrap;
  }

  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .cur,.cur-r{display:none}
  body{cursor:auto}
}


/* ═══════════════════════════════════════════════════════════
   15. COOKIE & PRIVACY POLICY PAGES
   ═══════════════════════════════════════════════════════════ */

body.page-id-1184 main > section,
body.page-id-1184 .dc-singular-wrap,
body.page-id-1184 .dc-singular-body,
body.page-id-1210 main > section,
body.page-id-1210 .dc-singular-wrap,
body.page-id-1210 .dc-singular-body {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1rem !important;
}

body.page-id-1184 .dc-singular-title,
body.page-id-1184 .dc-singular-body > .wp-block-paragraph,
body.page-id-1210 .dc-singular-title,
body.page-id-1210 .dc-singular-body > .wp-block-paragraph {
  display: none;
}

.dc-cookie-policy,
.dc-privacy-policy {
  position: relative;
  z-index: 2; 
  width: min(100% - 4rem, 1240px);
  margin: calc(var(--spacing-vertical) * 0.5) auto var(--spacing-vertical);
  color: var(--snow);
}

.dc-cookie-policy__shell,
.dc-privacy-policy__shell {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.dc-cookie-policy__hero,
.dc-privacy-policy__hero {
  max-width: 90ch;
  margin-bottom: 2.5rem;
}

.dc-cookie-policy h1,
.dc-privacy-policy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: var(--type-hero);
  line-height: 1.02;
  font-weight: var(--heading-wt);
  letter-spacing: -0.04em;
  color: var(--snow);
}

.dc-cookie-policy__panel,
.dc-privacy-policy__panel {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: transparent;
}

.dc-cookie-policy__body section,
.dc-privacy-policy__body section {
  scroll-margin-top: 2rem;
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.dc-cookie-policy__body section:last-child,
.dc-privacy-policy__body section:last-child {
  border-bottom: 0;
}

.dc-cookie-policy h2,
.dc-privacy-policy h2 {
  margin: 0 0 1.25rem;
  max-width: 90ch;
  font-family: var(--display);
  font-size: var(--type-h2);
  line-height: 1.15;
  font-weight: calc(var(--heading-wt) + 100);
  letter-spacing: -0.02em;
  color: var(--snow);
}

.dc-cookie-policy h3,
.dc-privacy-policy h3 {
  margin: 1.75rem 0 0.75rem;
  font-family: var(--display);
  font-size: var(--type-h3);
  line-height: 1.3;
  font-weight: 400;
  color: var(--snow);
}

.dc-cookie-policy p,
.dc-cookie-policy li,
.dc-privacy-policy p,
.dc-privacy-policy li {
  max-width: 90ch;
  font-family: var(--body);
  font-size: var(--type-body);
  line-height: 1.8;
  color: var(--slate);
}

.dc-cookie-policy p,
.dc-privacy-policy p {
  margin: 0 0 1.15rem;
}

.dc-cookie-policy p:last-child,
.dc-privacy-policy p:last-child {
  margin-bottom: 0;
}

.dc-cookie-policy__body ul,
.dc-privacy-policy__body ul {
  margin: 0 0 1.5rem 0;
  padding-left: 1.25rem;
  list-style-type: square;
}

.dc-cookie-policy__body li,
.dc-privacy-policy__body li {
  margin-bottom: 0.75rem;
}

.dc-cookie-policy__body li:last-child,
.dc-privacy-policy__body li:last-child {
  margin-bottom: 0;
}

.dc-cookie-policy__body li strong,
.dc-privacy-policy__body li strong {
  color: var(--snow);
}

.dc-privacy-policy__address {
  font-style: normal;
  line-height: 1.8;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.01);
  padding: 0.25rem;
  margin-top: 1rem;
}

.dc-privacy-policy__address strong {
  color: var(--snow);
}

.dc-cookie-policy a,
.dc-privacy-policy a {
  color: var(--teal);
  text-decoration: none;
  position: relative;
  transition: color 180ms var(--eout);
}

.dc-cookie-policy a::after,
.dc-privacy-policy a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--coral);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms var(--eout);
}

.dc-cookie-policy a:hover,
.dc-privacy-policy a:hover {
  color: var(--snow);
}

.dc-cookie-policy a:hover::after,
.dc-privacy-policy a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.dc-policy-consent-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}

.dc-policy-consent-meta {
  flex: 1;
  min-width: 0;
}

.dc-policy-consent-meta h5 {
  font-family: var(--body);
  font-size: var(--type-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin: 0 0 0.35rem 0;
}

.dc-policy-consent-meta p {
  font-family: var(--body);
  font-size: calc(var(--type-body) * 0.92);
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}

.dc-policy-trigger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.75rem;
  height: 44px;
  background: transparent;
  border: 1px solid var(--bordm);
  border-radius: 0.25rem;
  color: var(--snow);
  font-family: var(--body);
  font-size: var(--type-btn);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 180ms var(--eout), border-color 180ms var(--eout), background-color 180ms var(--eout);
}

.dc-policy-trigger-btn:hover {
  border-color: var(--teal);
  color: var(--snow);
  background: rgba(var(--coral-rgb), 0.04);
}


@media (min-width: 681px) and (max-width: 1100px) {
  .dc-cookie-policy,
  .dc-privacy-policy {
    width: min(100% - 2rem, 1100px);
  }

  .dc-cookie-policy__body,
  .dc-privacy-policy__body {
    padding: 2.25rem;
  }
}


@media (max-width: 680px) {
  .wp-block-group:has(.dc-cookie-policy),
  .wp-block-group:has(.dc-privacy-policy) {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    width: 100% !important;
  }

  .dc-cookie-policy,
  .dc-privacy-policy {
    width: 100% !important;
    max-width: 100% !important;
    margin: 1.5rem 0 3rem 0 !important;
    padding: 0 !important;
  }

  .dc-cookie-policy__shell,
  .dc-privacy-policy__shell {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .dc-cookie-policy__panel,
  .dc-privacy-policy__panel {
    border-left: none;
    border-right: none;
    border-radius: 0;
    width: 100% !important;
  }

  .dc-cookie-policy__body,
  .dc-privacy-policy__body {
    padding: 2rem 0;
    width: 100% !important;
  }

  .dc-cookie-policy__hero,
  .dc-privacy-policy__hero {
    padding: 0;
    margin-bottom: 2rem;
    max-width: 100% !important;
  }

  .dc-cookie-policy__body section,
  .dc-privacy-policy__body section {
    padding: 1.5rem 0;
    width: 100% !important;
    box-sizing: border-box;
  }

  .dc-cookie-policy p,
  .dc-cookie-policy li,
  .dc-privacy-policy p,
  .dc-privacy-policy li {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 100% !important;
  }

  .dc-cookie-policy h1,
  .dc-privacy-policy h1 {
    font-size: 2.5rem;
  }

  .dc-cookie-policy h2,
  .dc-privacy-policy h2 {
    font-size: 1.45rem;
    line-height: 1.2;
    max-width: 100% !important;
  }

  .dc-policy-consent-card {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.25rem;
    margin: 1.75rem 0;
    border-radius: 0.35rem;
    max-width: 100% !important;
  }

  .dc-policy-trigger-btn {
    width: 100%;
    height: 46px;
  }
}

/* ═══════════════════════════════════════════════════════════
   16. GLOBAL COMPLIANZ LAYER INTERACTION OVERRIDES
   ═══════════════════════════════════════════════════════════ */

#cmplz-cookiebanner-container,
.cmplz-cookiebanner,
#cmplz-manage-consent,
.cmplz-manage-consent {
  z-index: 9999 !important;
}

.custom-cursor, 
#custom-cursor,
[class*="custom-cursor"],
[id*="custom-cursor"] {
  z-index: 999999 !important;
  pointer-events: none;
}