/* ═══════════════════════════════════════════════════════════════
   SEAILLES LIMITED – styles.css
   Brand: Navy #000E16 | Blue #29ABE2 | Font: Inter
   ═══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
   ────────────────────────────────────────── */
:root {
  /* Official brand palette */
  --c-navy:       #000E16;
  --c-navy-mid:   #042330;
  --c-navy-light: #0a3a4f;
  --c-blue:       #29ABE2;
  --c-blue-light: #66CBEF;
  --c-blue-pale:  #E6F6FD;
  --c-blue-ink:   #0C6A91;
  --c-blue-ink-strong: #0A5F84;
  --c-white:      #ffffff;
  --c-off-white:  #f6f5f2;
  --c-muted:      #eff2f4;
  --c-text:       #153441;
  --c-text-mid:   #2f5564;
  --c-text-light: #496370;

  /* App accent colours */
  --c-green:       #6fda9e;
  --c-green-light: #b8f5d5;
  --c-orange:      #d2a174;
  --c-pink:        #e48db5;

  /* Typography */
  --font-main: 'Spline Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  /* Spacing scale */
  --sp-xs:  0.55rem;
  --sp-sm:  1.05rem;
  --sp-md:  1.65rem;
  --sp-lg:  2.3rem;
  --sp-xl:  3.4rem;
  --sp-2xl: 5.8rem;
  --sp-3xl: 8.7rem;

  /* Border radius */
  --r-sm:   0.5rem;
  --r-md:   1rem;
  --r-lg:   1.5rem;
  --r-xl:   2rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 6px rgba(4,28,38,0.09), 0 1px 2px rgba(4,28,38,0.08);
  --shadow-md:  0 10px 28px rgba(4,28,38,0.11), 0 4px 12px rgba(4,28,38,0.08);
  --shadow-lg:  0 18px 46px rgba(4,28,38,0.16), 0 10px 26px rgba(4,28,38,0.09);
  --shadow-xl:  0 34px 84px rgba(4,28,38,0.2);
  --shadow-blue: 0 14px 46px rgba(53,195,238,0.28);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Nav */
  --nav-h:    76px;
}

/* ──────────────────────────────────────────
   2. RESET & BASE
   ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 8px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-main);
  color: var(--c-text);
  background:
    radial-gradient(1200px 560px at -8% -18%, rgba(41,171,226,0.12), transparent 68%),
    radial-gradient(1000px 500px at 108% -10%, rgba(0,14,22,0.08), transparent 60%),
    linear-gradient(180deg, #f5f9fc 0%, #edf4f9 52%, #e8f1f7 100%);
  line-height: 1.68;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--c-blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ──────────────────────────────────────────
   3. UTILITY
   ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
@media (max-width: 640px) { .container { padding: 0 var(--sp-sm); } }

.section-pad { padding: var(--sp-3xl) 0; }
@media (max-width: 768px) { .section-pad { padding: var(--sp-2xl) 0; } }

.section-dark  { background: var(--c-navy); }
.section-muted { background: var(--c-muted); }

/* Brand mark background */
.brand-mark-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.brand-mark-bg::after {
  content: '';
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 520px;
  height: 320px;
  background: url('../assets/seailles-mark.svg') no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.brand-mark-bg .container {
  position: relative;
  z-index: 1;
}

/* Visually hidden (accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"]  { transition-delay: 100ms; }
.reveal[data-delay="150"]  { transition-delay: 150ms; }
.reveal[data-delay="200"]  { transition-delay: 200ms; }
.reveal[data-delay="250"]  { transition-delay: 250ms; }
.reveal[data-delay="300"]  { transition-delay: 300ms; }
.reveal[data-delay="400"]  { transition-delay: 400ms; }
.reveal[data-delay="450"]  { transition-delay: 450ms; }
.reveal[data-delay="500"]  { transition-delay: 500ms; }

/* ──────────────────────────────────────────
   4. SECTION TYPOGRAPHY
   ────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-navy-light);
  margin-bottom: var(--sp-sm);
}
.section-eyebrow--blue { color: var(--c-blue); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--c-navy);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.02em;
}
.section-title--light { color: var(--c-white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--c-text-mid);
  max-width: 600px;
  line-height: 1.7;
}
.section-subtitle--light { color: rgba(255,255,255,0.84); }

.section-intro {
  max-width: 700px;
  margin-bottom: var(--sp-2xl);
}
.section-intro--light .section-title { color: var(--c-white); }
.section-intro--light .section-subtitle { color: rgba(255,255,255,0.65); }

/* ──────────────────────────────────────────
   5. BUTTONS
   ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base), color var(--t-base);
  white-space: nowrap;
}
.btn:focus-visible { outline-offset: 4px; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--c-blue);
  color: var(--c-navy);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--c-blue-light);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* ──────────────────────────────────────────
   6. HEADER / NAV
   ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(0, 14, 22, 0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-slow), backdrop-filter var(--t-slow), border-color var(--t-slow);
}
.site-header.scrolled {
  background: rgba(0, 14, 22, 0.92);
  backdrop-filter: blur(20px);
  border-color: rgba(41,171,226,0.12);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-img { height: 34px; width: auto; }
.logo-img--light { height: 32px; }
.logo-fallback {
  display: none;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.logo-sea   { color: var(--c-white); }
.logo-illes { color: var(--c-blue); font-style: italic; font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color var(--t-base), background var(--t-base);
}
.nav-link:hover, .nav-link.active {
  color: var(--c-blue);
  background: rgba(41,171,226,0.08);
}
.nav-link.nav-cta {
  background: var(--c-blue);
  color: var(--c-navy);
  font-weight: 700;
  padding: 0.45rem 1rem;
}
.nav-link.nav-cta:hover {
  background: var(--c-blue-light);
  color: var(--c-navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-base);
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(0,14,22,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--sp-lg);
    gap: var(--sp-xs);
    border-bottom: 1px solid rgba(41,171,226,0.12);
    transform: translateY(calc(-100% - var(--nav-h)));
    transition: transform var(--t-slow);
    pointer-events: none;
  }
  .nav-links.is-open {
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-link { width: 100%; text-align: center; padding: 0.75rem; font-size: 1rem; }
}

/* ──────────────────────────────────────────
   7. HERO
   ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--c-navy);
  overflow: hidden;
  padding: var(--nav-h) 0 var(--sp-2xl);
}

.hero-bg-waves {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
}
.wave-1 { animation: wave-anim 8s ease-in-out infinite alternate; }
.wave-2 { animation: wave-anim 12s ease-in-out infinite alternate-reverse; bottom: -20px; }
@keyframes wave-anim {
  from { transform: scaleX(1) translateX(0); }
  to   { transform: scaleX(1.05) translateX(-2%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-xl) var(--sp-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  background: rgba(41,171,226,0.1);
  border: 1px solid rgba(41,171,226,0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-lg);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-blue);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-md);
}
.hero-logo {
  width: min(520px, 80vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero-title-main {
  display: block;
  color: var(--c-white);
}
.hero-title-sub {
  display: block;
  color: var(--c-blue);
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2em;
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  margin-bottom: var(--sp-xl);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.8;
}
.hero-description strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: center;
  margin-bottom: var(--sp-lg);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-indicator span {
  display: block;
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 4px;
  background: var(--c-blue);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  75% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

.br-mobile { display: none; }
@media (max-width: 480px) { .br-mobile { display: inline; } }

/* ──────────────────────────────────────────
   8. BUSINESS MODEL CARDS
   ────────────────────────────────────────── */
.bm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
@media (max-width: 960px) { .bm-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .bm-cards { grid-template-columns: 1fr; } }

.bm-card {
  background: var(--c-white);
  border: 1px solid rgba(0,14,22,0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  position: relative;
  overflow: hidden;
}
.bm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 4px;
  background: var(--c-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.bm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.bm-card:hover::before { transform: scaleX(1); }

.bm-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-blue-pale);
  color: var(--c-blue-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-md);
}
.bm-card--licensing .bm-card-icon {
  background: rgba(41,171,226,0.1);
}

.bm-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue-ink-strong);
  margin-bottom: var(--sp-xs);
}
.bm-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-sm);
}
.bm-card-desc {
  color: var(--c-text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}
.bm-card-list {
  margin-bottom: var(--sp-md);
}
.bm-card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--c-text);
  padding: 0.25rem 0;
}
.bm-card-list li i { color: var(--c-blue-ink); font-size: 0.75rem; }
.bm-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-blue-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--t-base);
}
.bm-card-link:hover { gap: 0.7rem; }

/* ──────────────────────────────────────────
   9. CONSULTING
   ────────────────────────────────────────── */
.consulting { position: relative; }
.consulting-bg-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
}
.consulting-bg-wave svg { width: 100%; height: 100%; }

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
@media (max-width: 960px) { .consulting-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .consulting-grid { grid-template-columns: 1fr; } }

.consulting-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(41,171,226,0.12);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-slow);
}
.consulting-card:hover {
  background: rgba(41,171,226,0.07);
  border-color: rgba(41,171,226,0.3);
  transform: translateY(-4px);
}
.consulting-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: rgba(41,171,226,0.12);
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--sp-sm);
}
.consulting-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.consulting-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ──────────────────────────────────────────
   10. LICENSING
   ────────────────────────────────────────── */
.licensing-how { margin-bottom: var(--sp-2xl); }
.licensing-how-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-xl);
  text-align: center;
}
.licensing-steps {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
}
.licensing-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: var(--sp-lg);
  border-radius: var(--r-lg);
  background: var(--c-white);
  border: 1px solid rgba(0,14,22,0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.licensing-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue-ink-strong);
  margin-bottom: 0.5rem;
}
.step-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--c-blue-pale);
  color: var(--c-blue-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto var(--sp-sm);
}
.licensing-step h4 { font-size: 1rem; font-weight: 700; color: var(--c-navy); margin-bottom: 0.5rem; }
.licensing-step p { font-size: 0.875rem; color: var(--c-text-mid); line-height: 1.6; }

.licensing-step-arrow {
  color: var(--c-blue-ink);
  font-size: 1.2rem;
  margin-top: 2.5rem;
  flex-shrink: 0;
}
@media (max-width: 700px) { .licensing-step-arrow { display: none; } }

.licensing-models-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-lg);
  text-align: center;
}
.lm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
@media (max-width: 960px) { .lm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lm-grid { grid-template-columns: 1fr; } }

.lm-card {
  padding: var(--sp-lg);
  border-radius: var(--r-lg);
  background: var(--c-white);
  border: 1px solid rgba(0,14,22,0.08);
  text-align: center;
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-base);
}
.lm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-blue);
}
.lm-card--featured {
  background: var(--c-white);
  border-color: var(--c-blue);
  box-shadow: var(--shadow-md);
}
.lm-card--featured strong,
.lm-card--featured p { color: var(--c-text-mid) !important; }
.lm-card--featured strong { color: var(--c-navy) !important; }
.lm-card--featured i { color: var(--c-blue-ink) !important; }

.lm-card i {
  font-size: 1.5rem;
  color: var(--c-blue-ink);
  display: block;
  margin-bottom: 0.75rem;
}
.lm-card strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--c-navy); margin-bottom: 0.4rem; }
.lm-card p { font-size: 0.8rem; color: var(--c-text-mid); line-height: 1.6; }

/* ──────────────────────────────────────────
   11. PORTFOLIO
   ────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}
@media (max-width: 768px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,14,22,0.06);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.portfolio-card-header {
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.portfolio-card-header--hivemeup  { background: linear-gradient(135deg, #151516, #3a2400); }
.portfolio-card-header--taskmatex { background: linear-gradient(135deg, #0e1411, #1f3a1c); }
.portfolio-card-header--sawm      { background: linear-gradient(135deg, #25285d, #1f5f6a); }
.portfolio-card-header--dogstalker{ background: linear-gradient(135deg, #101225, #3a1a4d); }

.portfolio-app-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: transparent;
  padding: 0;
  flex-shrink: 0;
}
.portfolio-app-icon svg,
.portfolio-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.app-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.12);
}

.portfolio-card-body { padding: var(--sp-lg); flex: 1; }
.portfolio-app-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.portfolio-app-desc {
  font-size: 0.9rem;
  color: var(--c-text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.ptag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-blue-ink);
  background: var(--c-blue-pale);
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-full);
}

.portfolio-card-footer {
  padding: var(--sp-sm) var(--sp-lg) var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  border-top: 1px solid rgba(0,14,22,0.06);
}
.portfolio-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-mid);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--t-base);
}
.portfolio-link:hover { color: var(--c-navy); }
.portfolio-license-btn {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-navy);
  padding: 0.45rem 1rem;
  border-radius: var(--r-full);
  transition: background var(--t-base), transform var(--t-fast);
  cursor: pointer;
}
.portfolio-license-btn:hover { background: var(--c-blue); color: var(--c-navy); transform: translateY(-1px); }

/* ──────────────────────────────────────────
   12. ABOUT
   ────────────────────────────────────────── */
.about { position: relative; }
.about-bg-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
}
.about-bg-wave svg { width: 100%; height: 100%; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
  margin-bottom: var(--sp-2xl);
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}

.about-p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
  font-size: 0.95rem;
}
.about-p strong { color: var(--c-white); font-weight: 600; }

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
  margin-top: var(--sp-xl);
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: var(--sp-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(41,171,226,0.1);
  border-radius: var(--r-md);
}
.cred-item i {
  color: var(--c-blue);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.cred-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-white);
}
.cred-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.about-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-display {
  padding: var(--sp-md) 0;
}
.about-logo-img {
  width: min(320px, 70vw);
  height: auto;
  display: block;
}
.about-card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-white);
  background: rgba(41,171,226,0.12);
  border: 1px solid rgba(41,171,226,0.25);
  padding: 0.5rem 1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  animation: float-card 4s ease-in-out infinite;
}
.about-card-float i { color: var(--c-blue); }
.about-card-float--1 { top: 20px; left: 10px; animation-delay: 0s; }
.about-card-float--2 { top: 20px; right: 10px; animation-delay: 1.3s; }
.about-card-float--3 { bottom: 60px; left: 50%; transform: translateX(-50%); animation-delay: 0.7s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-card-float--3 {
  animation-name: float-card-centered;
}
@keyframes float-card-centered {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(41,171,226,0.1);
}
@media (max-width: 860px) { .values-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-row { grid-template-columns: 1fr; } }

.value-item {
  text-align: center;
  padding: var(--sp-lg);
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: rgba(41,171,226,0.1);
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto var(--sp-sm);
}
.value-item h4 { font-size: 1rem; font-weight: 700; color: var(--c-white); margin-bottom: 0.4rem; }
.value-item p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ──────────────────────────────────────────
   13. CONTACT
   ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-2xl);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-block { margin-bottom: var(--sp-xl); }
.contact-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.35rem;
}
.contact-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.contact-tagline {
  font-size: 0.85rem;
  color: var(--c-text-light);
  font-style: italic;
}

.contact-details {
  margin-bottom: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--c-blue-pale);
  color: var(--c-blue-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-details strong { display: block; font-size: 0.8rem; color: var(--c-text-light); font-weight: 600; }
.contact-details a, .contact-details span { font-size: 0.9rem; color: var(--c-navy); font-weight: 500; }
.contact-details a:hover { color: var(--c-blue-ink); }

.contact-inquiries strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-sm);
}
.contact-inquiries ul { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-inquiries li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--c-text);
}
.contact-inquiries li i { color: var(--c-blue-ink); font-size: 0.75rem; }

/* Form */
.contact-form-wrap {
  background: var(--c-white);
  border: 1px solid rgba(0,14,22,0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-lg);
}

.form-success {
  text-align: center;
  padding: var(--sp-xl) 0;
}
.form-success-icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: var(--sp-sm);
}
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--c-text-mid);
  margin-bottom: var(--sp-lg);
}

.form-error-banner[hidden] { display: none; }
.form-error-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: var(--sp-sm); }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 0.4rem;
}
.required { color: var(--c-blue-ink); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: var(--c-navy);
  background: var(--c-off-white);
  border: 1.5px solid rgba(0,14,22,0.12);
  border-radius: var(--r-sm);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(41,171,226,0.12);
  background: var(--c-white);
}
.form-input.has-error, .form-select.has-error, .form-textarea.has-error {
  border-color: #ef4444;
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-select-wrap { position: relative; }
.form-select-wrap i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text-light);
  font-size: 0.75rem;
  pointer-events: none;
}

.field-error {
  display: block;
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 0.3rem;
  min-height: 1.2em;
}

.char-count {
  display: block;
  font-size: 0.75rem;
  color: var(--c-text-light);
  text-align: right;
  margin-top: 0.25rem;
}

.form-group--consent {
  margin-top: var(--sp-sm);
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--c-text-mid);
  line-height: 1.5;
}
.form-checkbox { display: none; }
.checkmark {
  width: 20px; height: 20px;
  border: 2px solid rgba(0,14,22,0.2);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: border-color var(--t-base), background var(--t-base);
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkmark::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity var(--t-base);
}
.form-checkbox:checked + .checkmark {
  background: var(--c-blue);
  border-color: var(--c-blue);
}
.form-checkbox:checked + .checkmark::after { opacity: 1; }
.form-link { color: var(--c-blue-ink); text-decoration: underline; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  font-size: 1rem;
  margin-top: var(--sp-sm);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* ──────────────────────────────────────────
   14. FOOTER
   ────────────────────────────────────────── */
.site-footer {
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
}
.footer-wave {
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
}
.footer-wave svg { width: 100%; height: 100%; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  align-items: start;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: var(--sp-xl); } }

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--sp-sm);
}
.footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.footer-logo-img--light { height: 40px; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
@media (max-width: 560px) { .footer-nav { grid-template-columns: 1fr 1fr; } }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
  margin-bottom: var(--sp-sm);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-base);
}
.footer-col a:hover { color: var(--c-blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-md) 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.72); }
.footer-tagline { color: rgba(41,171,226,0.92) !important; font-style: italic; }

/* ──────────────────────────────────────────
   15. BACK TO TOP
   ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-blue);
  color: var(--c-navy);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-base), transform var(--t-base), background var(--t-base);
  pointer-events: none;
  z-index: 500;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--c-blue-light); }

/* ──────────────────────────────────────────
   16. PRINT
   ────────────────────────────────────────── */
@media print {
  .site-header, .back-to-top, .hero-scroll-indicator { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section-dark { background: white; }
  .section-dark * { color: black !important; }
}

/* ==========================================================================
   17. VISUAL REFRESH - TRANSITION FLOW AESTHETIC
   ========================================================================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 56%),
    linear-gradient(180deg, rgba(0,14,22,0.02), rgba(0,14,22,0.08));
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: -200%;
  background-image: radial-gradient(rgba(41,171,226,0.05) 0.65px, transparent 0.65px);
  background-size: 10px 10px;
  opacity: 0.16;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1160px;
}

.section-pad {
  padding: clamp(4.8rem, 8.8vw, 9rem) 0;
}

.section-title,
.hero-title,
.bm-card-title,
.portfolio-app-name,
.licensing-how-title,
.licensing-models-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.section-title {
  font-size: clamp(2.15rem, 4.5vw, 3.45rem);
  line-height: 1.02;
}

.section-subtitle {
  font-size: 1.07rem;
  line-height: 1.82;
  max-width: 64ch;
}

.site-header {
  height: var(--nav-h);
  background: rgba(0, 14, 22, 0.12);
}

.site-header.scrolled {
  background: rgba(0, 14, 22, 0.92);
  border-color: rgba(41,171,226,0.28);
  box-shadow: 0 12px 36px rgba(0, 8, 14, 0.46);
}

.nav-container {
  max-width: 1200px;
}

.nav-link {
  font-size: 0.84rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.btn {
  border-radius: 14px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(145deg, #66CBEF, #29ABE2);
  color: #000E16;
}

.btn-outline {
  border-width: 1.5px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(5px);
  transition: opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.brand-mark-bg {
  isolation: isolate;
}

.brand-mark-bg::after {
  background: none;
}

.hero {
  background:
    radial-gradient(760px 400px at 12% 8%, rgba(41,171,226,0.22), transparent 74%),
    radial-gradient(760px 360px at 88% 6%, rgba(41,171,226,0.16), transparent 72%),
    linear-gradient(115deg, #00131e 0%, #001a28 42%, #042e40 75%, #0a4d66 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 420px at 52% -10%, rgba(255,255,255,0.08), transparent 72%),
    linear-gradient(180deg, rgba(0,14,22,0.12), rgba(0,14,22,0.4));
  opacity: 0.95;
  pointer-events: none;
}

.hero-content {
  text-align: left;
  max-width: 980px;
  margin-inline: auto;
}

.hero-title {
  margin-bottom: 0.9rem;
}

.hero-tagline {
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.05rem;
  max-width: 62ch;
}

.section-dark {
  background:
    linear-gradient(180deg, #00131e 0%, #001a28 52%, #022537 100%);
}

.section-dark .section-title,
.section-dark h3,
.section-dark h4,
.section-dark strong {
  color: #f2fbff;
}

.section-dark p,
.section-dark li,
.section-dark span {
  color: rgba(236, 247, 252, 0.9);
}

.bm-card,
.consulting-card,
.licensing-step,
.lm-card,
.portfolio-card,
.contact-form-wrap {
  border: 1px solid rgba(7, 53, 67, 0.11);
  box-shadow: 0 18px 44px rgba(3, 32, 42, 0.12);
}

.bm-card,
.licensing-step,
.lm-card,
.portfolio-card,
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

.portfolio-card-header--hivemeup {
  background: linear-gradient(132deg, #05303f, #0e657a);
}

.portfolio-card-header--taskmatex {
  background: linear-gradient(132deg, #084954, #2f8879);
}

.portfolio-card-header--sawm {
  background: linear-gradient(132deg, #144f65, #0b7987);
}

.portfolio-card-header--dogstalker {
  background: linear-gradient(132deg, #13475b, #1e6f95);
}

.form-input,
.form-select,
.form-textarea {
  background: #f8fcfe;
  border-color: rgba(8, 55, 70, 0.15);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #29ABE2;
  box-shadow: 0 0 0 3px rgba(41,171,226,0.22);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(237, 246, 248, 0.95), rgba(229, 242, 246, 0.96));
}

.consulting,
.licensing,
.portfolio,
.about,
.contact {
  position: relative;
}

/* Section-specific minimalist elements */
.consulting::before,
.licensing::before,
.portfolio::before,
.about::before,
.contact::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: min(220px, 33%);
  pointer-events: none;
  z-index: 0;
}

.consulting::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 960 300' fill='none'%3E%3Cpath d='M18 238C180 252 258 164 388 150C534 134 676 202 942 90' stroke='%23ffffff' stroke-opacity='.24' stroke-width='2'/%3E%3Cpath d='M118 248L146 170L174 248Z' stroke='%23ffffff' stroke-opacity='.25'/%3E%3Cpath d='M132 217H160M137 204H155M141 192H151' stroke='%23ffffff' stroke-opacity='.2'/%3E%3Cpath d='M190 198C238 236 284 244 336 234' stroke='%23ffffff' stroke-opacity='.22'/%3E%3Cpath d='M780 230V134M780 134L758 156M780 134L802 156M780 134L780 108' stroke='%23ffffff' stroke-opacity='.25' stroke-linecap='round'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  opacity: 0.28;
}

.licensing::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 960 280' fill='none'%3E%3Cpath d='M30 204H210V170H322V132H474V156H652V112H930' stroke='%230a5f74' stroke-opacity='.32' stroke-width='2'/%3E%3Cpath d='M86 236H286V214H482V184H624' stroke='%2335c3ee' stroke-opacity='.28' stroke-width='2'/%3E%3Ccircle cx='210' cy='170' r='6' fill='%230a5f74' fill-opacity='.22'/%3E%3Ccircle cx='322' cy='132' r='6' fill='%230a5f74' fill-opacity='.22'/%3E%3Ccircle cx='652' cy='112' r='6' fill='%230a5f74' fill-opacity='.22'/%3E%3Ccircle cx='482' cy='184' r='5' fill='%2335c3ee' fill-opacity='.24'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  opacity: 0.38;
}

.portfolio::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 960 260' fill='none'%3E%3Crect x='96' y='118' width='58' height='58' rx='13' stroke='%23095d72' stroke-opacity='.2'/%3E%3Crect x='186' y='138' width='46' height='46' rx='10' stroke='%23095d72' stroke-opacity='.16'/%3E%3Crect x='266' y='108' width='68' height='68' rx='16' stroke='%23095d72' stroke-opacity='.23'/%3E%3Crect x='364' y='130' width='52' height='52' rx='12' stroke='%23095d72' stroke-opacity='.18'/%3E%3Cpath d='M30 220C210 248 360 238 560 192C690 162 794 152 930 168' stroke='%23095d72' stroke-opacity='.18' stroke-width='2'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  opacity: 0.34;
}

.about::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 960 300' fill='none'%3E%3Ccircle cx='772' cy='168' r='72' stroke='%23ffffff' stroke-opacity='.16'/%3E%3Cellipse cx='772' cy='168' rx='72' ry='28' stroke='%23ffffff' stroke-opacity='.16'/%3E%3Cellipse cx='772' cy='168' rx='30' ry='72' stroke='%23ffffff' stroke-opacity='.16'/%3E%3Cpath d='M36 226C216 254 378 250 578 194' stroke='%23ffffff' stroke-opacity='.16' stroke-width='2'/%3E%3Ccircle cx='578' cy='194' r='5' fill='%23ffffff' fill-opacity='.32'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  opacity: 0.3;
}

.contact::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 960 260' fill='none'%3E%3Crect x='720' y='106' width='140' height='88' rx='12' stroke='%23095d72' stroke-opacity='.22'/%3E%3Cpath d='M730 118L790 156L850 118' stroke='%23095d72' stroke-opacity='.22'/%3E%3Cpath d='M30 214C194 234 324 230 460 186C602 142 702 128 832 146' stroke='%23095d72' stroke-opacity='.2' stroke-width='2'/%3E%3Ccircle cx='460' cy='186' r='6' fill='%2335c3ee' fill-opacity='.22'/%3E%3Ccircle cx='602' cy='142' r='6' fill='%2335c3ee' fill-opacity='.22'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  opacity: 0.34;
}

.consulting .container,
.licensing .container,
.portfolio .container,
.about .container,
.contact .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .consulting::before,
  .licensing::before,
  .portfolio::before,
  .about::before,
  .contact::before {
    opacity: 0.2;
    height: 150px;
  }

  .nav-link {
    font-size: 0.98rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 680px) {
  body {
    background:
      radial-gradient(680px 340px at 0% -12%, rgba(41,171,226,0.16), transparent 66%),
      radial-gradient(680px 340px at 100% 0%, rgba(0,14,22,0.1), transparent 62%),
      linear-gradient(180deg, #f3f8fc 0%, #ebf3f8 54%, #e4eef5 100%);
  }

  .hero {
    min-height: 90vh;
  }

  .hero::before {
    opacity: 0.45;
  }

  .section-title {
    font-size: clamp(1.95rem, 8vw, 2.7rem);
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-tagline {
    letter-spacing: 0.03em;
  }

  .btn {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.78rem 1.2rem;
  }

  .contact-form-wrap {
    padding: var(--sp-lg);
  }
}

@media (max-width: 420px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   18. BUSINESS MODEL – THREE PILLARS
   ========================================================================== */
.bm-card--digital .bm-card-icon {
  background: rgba(41,171,226,0.12);
}

/* ==========================================================================
   19. DIGITAL SOLUTIONS SECTION
   ========================================================================== */
.digital-solutions { position: relative; }

.ds-bg-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
}
.ds-bg-wave svg { width: 100%; height: 100%; }

/* Problem callout */
.ds-problem {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(41,171,226,0.18);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-xl);
  margin-bottom: var(--sp-2xl);
}
@media (max-width: 640px) { .ds-problem { flex-direction: column; gap: var(--sp-sm); } }

.ds-problem-icon {
  color: #f59e0b;
  font-size: 1.8rem;
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.ds-problem-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.4rem;
}
.ds-problem-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

/* Use cases */
.ds-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: var(--sp-lg);
}

.ds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}
@media (max-width: 960px) { .ds-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .ds-grid { grid-template-columns: 1fr; } }

.ds-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(41,171,226,0.12);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-slow);
}
.ds-card:hover {
  background: rgba(41,171,226,0.08);
  border-color: rgba(41,171,226,0.32);
  transform: translateY(-4px);
}
.ds-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: rgba(41,171,226,0.12);
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--sp-sm);
}
.ds-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.4rem;
}
.ds-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.72;
}

/* Delivery model */
.ds-delivery { margin-bottom: var(--sp-2xl); }

.ds-delivery-title {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-white);
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.ds-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
@media (max-width: 860px) { .ds-delivery-grid { grid-template-columns: 1fr; } }

.ds-delivery-card {
  text-align: center;
  padding: var(--sp-xl) var(--sp-lg);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(41,171,226,0.15);
  transition: background var(--t-base), transform var(--t-slow);
}
.ds-delivery-card:hover {
  background: rgba(41,171,226,0.08);
  transform: translateY(-4px);
}
.ds-delivery-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 0.5rem;
}
.ds-delivery-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: rgba(41,171,226,0.15);
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto var(--sp-sm);
}
.ds-delivery-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.ds-delivery-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.68;
}

/* Tech stack badges */
.ds-tech { text-align: center; }

.ds-tech-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-lg);
}

.ds-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.ds-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(41,171,226,0.1);
  border: 1px solid rgba(41,171,226,0.22);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-full);
}
.ds-tech-badge i { color: var(--c-blue); }

/* Section decoration pseudo-element for digital-solutions */
.digital-solutions::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: min(220px, 33%);
  pointer-events: none;
  z-index: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 960 300' fill='none'%3E%3Crect x='60' y='120' width='40' height='40' rx='6' stroke='%2329ABE2' stroke-opacity='.18'/%3E%3Crect x='120' y='100' width='30' height='30' rx='4' stroke='%2329ABE2' stroke-opacity='.14'/%3E%3Crect x='170' y='130' width='50' height='50' rx='8' stroke='%2329ABE2' stroke-opacity='.2'/%3E%3Cpath d='M100 140H160M160 140H220M220 140V180M100 140V180M100 180H220' stroke='%2329ABE2' stroke-opacity='.12' stroke-width='1'/%3E%3Ccircle cx='700' cy='160' r='50' stroke='%2329ABE2' stroke-opacity='.14'/%3E%3Ccircle cx='700' cy='160' r='28' stroke='%2329ABE2' stroke-opacity='.1'/%3E%3Ccircle cx='700' cy='160' r='8' fill='%2329ABE2' fill-opacity='.14'/%3E%3Cpath d='M30 230C200 248 380 240 580 196C720 164 810 150 940 162' stroke='%2329ABE2' stroke-opacity='.16' stroke-width='2'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  opacity: 0.28;
}

.digital-solutions .container {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   20. ABOUT – REINFORCING LOOP
   ========================================================================== */
.loop-row {
  margin-bottom: var(--sp-2xl);
  padding: var(--sp-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(41,171,226,0.12);
  border-radius: var(--r-xl);
}

.loop-title {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.5rem;
  text-align: center;
}

.loop-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.loop-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
@media (max-width: 860px) { .loop-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .loop-steps { grid-template-columns: 1fr; } }

.loop-step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding: var(--sp-md);
  border-radius: var(--r-md);
  background: rgba(41,171,226,0.05);
  border: 1px solid rgba(41,171,226,0.1);
}

.loop-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-blue);
  color: var(--c-navy);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loop-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}

.loop-step p strong {
  color: var(--c-white);
  display: block;
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   21. DESIGN SYSTEM UPGRADE
   ========================================================================== */

/* ── Hero: Background Mesh ── */
.hero {
  background:
    radial-gradient(ellipse 700px 500px at 8% 15%, rgba(41,171,226,0.28), transparent 68%),
    radial-gradient(ellipse 600px 450px at 92% -5%, rgba(41,171,226,0.18), transparent 65%),
    radial-gradient(ellipse 900px 600px at 50% 105%, rgba(41,171,226,0.1), transparent 60%),
    linear-gradient(160deg, #00111c 0%, #001622 38%, #022232 68%, #073648 100%);
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(41,171,226,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ── Hero: Typographic Headline ── */
.hero-headline {
  font-family: var(--font-main);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-white);
  letter-spacing: -0.018em;
  margin-bottom: var(--sp-md);
}

.hero-headline-em {
  display: block;
  font-style: normal;
  color: var(--c-blue);
  font-weight: 300;
}

/* ── Hero: Stats Strip ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  margin-top: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(255,255,255,0.09);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 500;
  color: var(--c-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  max-width: 14ch;
}

.hero-stat-div {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .hero-stats { gap: var(--sp-lg); }
  .hero-stat-div { display: none; }
  .hero-stats { justify-content: center; }
  .hero-stat { align-items: center; text-align: center; }
  .hero-stat-label { max-width: 100%; }
}

/* ── Business Model: Pillar Accent Colours ── */
.bm-card--consulting { border-top: 3px solid rgba(41,171,226,0.6); }
.bm-card--digital    { border-top: 3px solid rgba(102,203,239,0.7); }
.bm-card--licensing  { border-top: 3px solid rgba(12,106,145,0.8); }

.bm-card--consulting::before { background: var(--c-blue); }
.bm-card--digital::before    { background: var(--c-blue-light); }
.bm-card--licensing::before  { background: var(--c-blue-ink); }

.bm-card--digital .bm-card-icon {
  background: rgba(102,203,239,0.12);
  color: #0e8aaa;
}
.bm-card--digital .bm-card-tag { color: #0e8aaa; }

.bm-card--licensing .bm-card-icon {
  background: rgba(12,106,145,0.1);
  color: var(--c-blue-ink-strong);
}
.bm-card--licensing .bm-card-tag { color: var(--c-blue-ink-strong); }

/* ── Consulting Cards: Left accent on hover ── */
.consulting-card {
  position: relative;
  overflow: hidden;
}
.consulting-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t-slow);
  border-radius: 0 2px 2px 0;
}
.consulting-card:hover::after { transform: scaleY(1); }

.consulting-card-icon {
  background: rgba(41,171,226,0.1);
  border: 1px solid rgba(41,171,226,0.15);
}

/* ── DS Cards: Left accent on hover ── */
.ds-card {
  position: relative;
  overflow: hidden;
}
.ds-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t-slow);
  border-radius: 0 2px 2px 0;
}
.ds-card:hover::after { transform: scaleY(1); }

/* ── Portfolio Cards: Richer Headers ── */
.portfolio-card-header {
  padding: var(--sp-2xl) var(--sp-xl);
  min-height: 140px;
}

.portfolio-card-header--hivemeup {
  background:
    radial-gradient(ellipse 200px 120px at 80% 30%, rgba(41,171,226,0.22), transparent 70%),
    linear-gradient(145deg, #00131e 0%, #0a4560 100%);
}
.portfolio-card-header--taskmatex {
  background:
    radial-gradient(ellipse 200px 120px at 80% 30%, rgba(41,171,226,0.18), transparent 70%),
    linear-gradient(145deg, #001820 0%, #0a5a52 100%);
}
.portfolio-card-header--sawm {
  background:
    radial-gradient(ellipse 200px 120px at 80% 30%, rgba(41,171,226,0.2), transparent 70%),
    linear-gradient(145deg, #001c2a 0%, #0a6678 100%);
}
.portfolio-card-header--dogstalker {
  background:
    radial-gradient(ellipse 200px 120px at 80% 30%, rgba(41,171,226,0.16), transparent 70%),
    linear-gradient(145deg, #00131e 0%, #0c4d72 100%);
}

.portfolio-app-icon {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
}

/* ── Portfolio Card: Refined body ── */
.portfolio-card-body { padding: var(--sp-lg) var(--sp-xl); }
.portfolio-card-footer { padding: var(--sp-sm) var(--sp-xl) var(--sp-lg); }

/* ── BM Card: Better padding on small screens ── */
@media (max-width: 580px) {
  .bm-card { padding: var(--sp-lg); }
}

/* ── Section Eyebrow: Refined dot accent ── */
.section-eyebrow {
  position: relative;
  padding-left: 1.1rem;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-navy-light);
}
.section-eyebrow--blue::before { background: var(--c-blue); }

/* ── Licensing Steps: Better spacing ── */
.licensing-step { padding: var(--sp-xl); }

/* ── LM Cards: Better icon size ── */
.lm-card i { font-size: 1.6rem; margin-bottom: 1rem; }

/* ── About Visual: Third float card positioning fix ── */
.about-card-float { backdrop-filter: blur(8px); }

/* ── Contact Form Wrap: Subtle top accent ── */
.contact-form-wrap {
  border-top: 3px solid var(--c-blue);
  border-radius: var(--r-xl);
}

/* ── Form inputs: Slightly larger radius ── */
.form-input, .form-select, .form-textarea {
  border-radius: var(--r-md);
  font-size: 0.92rem;
}

/* ── Submit button: Full gradient ── */
.btn-submit {
  background: linear-gradient(135deg, #29ABE2, #0c8fc4);
  color: var(--c-navy);
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: box-shadow var(--t-base), transform var(--t-base), filter var(--t-base);
}
.btn-submit:hover {
  box-shadow: 0 12px 32px rgba(41,171,226,0.4);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ── Footer: Richer background ── */
.site-footer {
  background:
    radial-gradient(ellipse 800px 400px at 80% 100%, rgba(41,171,226,0.06), transparent 65%),
    linear-gradient(180deg, #00131e 0%, #000e16 100%);
}

/* ── Nav logo: Slightly refined ── */
.logo-img--light { height: 30px; }

/* ── Reveal animation: Cleaner variant ── */
.hero-stats.reveal {
  filter: none;
  transform: translateY(16px);
}
.hero-stats.is-visible {
  transform: translateY(0);
}

/* ── Back to top: Rounded square ── */
.back-to-top { border-radius: var(--r-md); }

/* ── Value items: Border on hover ── */
.value-item {
  border-radius: var(--r-lg);
  transition: background var(--t-base);
}
.value-item:hover {
  background: rgba(41,171,226,0.04);
}

/* ── Credentials: Uniform height ── */
.cred-item { align-items: center; }

/* ── Print: hide bg mesh ── */
@media print {
  .hero-bg-mesh { display: none; }
}

/* ── Hero: Logo mark incrusted background ── */
.hero-bg-mark {
  position: absolute;
  width: min(1100px, 128vw);
  left: 50%;
  top: 50%;
  transform: translate(-48%, -50%);
  opacity: 0.075;
  z-index: 0;
  pointer-events: none;
  filter: blur(0.6px);
}
.hero-bg-mark svg {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .hero-bg-mark { width: min(780px, 140vw); opacity: 0.055; }
}
@media (max-width: 480px) {
  .hero-bg-mark { width: min(500px, 160vw); opacity: 0.042; top: 58%; }
}

/* ── Hero: Three-pillars row ── */
.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.4rem;
  margin-bottom: var(--sp-2xl);
}
.hero-pillar {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-pillar i {
  color: rgba(41,171,226,0.7);
  font-size: 0.65rem;
}
.hero-pillar-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(41,171,226,0.28);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .hero-pillar-sep { display: none; }
  .hero-pillars { gap: 0.55rem 1rem; }
}

/* ── Hero: Brand logo mark ── */
.hero-brand-mark {
  margin-bottom: var(--sp-lg);
}

.hero-brand-logo {
  width: 160px;
  height: auto;
  opacity: 0.88;
  filter: drop-shadow(0 2px 16px rgba(41,171,226,0.18));
}

@media (max-width: 480px) {
  .hero-brand-logo { width: 128px; }
}

/* ── Section Schematics ── */
.section-schematic {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.section-schematic svg {
  display: block;
  width: 100%;
  height: auto;
}

/* FPSO vessel — hero, right side */
.schematic--vessel {
  right: -20px;
  bottom: 80px;
  width: 480px;
  opacity: 0.14;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, transparent 80%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, transparent 80%);
}

/* Pipeline P&ID — consulting section, bottom right */
.schematic--pipeline {
  right: -20px;
  bottom: 30px;
  width: 520px;
  opacity: 0.13;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 48%, transparent 82%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 48%, transparent 82%);
}

/* Dashboard wireframe — digital-solutions section, right side */
.schematic--dashboard {
  right: -10px;
  top: 50%;
  transform: translateY(-40%);
  width: 420px;
  opacity: 0.2;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 42%, transparent 78%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 42%, transparent 78%);
}

/* Globe grid — about section, right side */
.schematic--globe {
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 310px;
  opacity: 0.13;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.88) 10%, rgba(0,0,0,0.5) 52%, transparent 80%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.88) 10%, rgba(0,0,0,0.5) 52%, transparent 80%);
}

@media (max-width: 1024px) {
  .schematic--vessel  { width: 380px; opacity: 0.09; }
  .schematic--pipeline { width: 400px; opacity: 0.09; }
  .schematic--dashboard { width: 340px; opacity: 0.14; }
  .schematic--globe   { width: 250px; opacity: 0.09; }
}

@media (max-width: 640px) {
  .section-schematic { display: none; }
}
