/*
Theme Name: HIGH+SENSOR
Theme URI: https://highsensor.com
Author: HIGH+SENSOR
Author URI: https://highsensor.com
Description: Modern, minimal one-page teaser theme for HIGH+SENSOR — capturing the real essence. Features the brand logo, a custom three-step process visual, and a clean Montserrat-based design built around the HIGH+SENSOR color palette (navy, blue, gold).
Version: 1.7.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: highsensor
Tags: one-page, business, custom-logo, custom-menu, threaded-comments, translation-ready
*/

:root {
  --navy: #1e2649;
  --navy-soft: #2a3358;
  --blue: #2f6fb5;
  --gold: #e8a838;
  --gold-soft: #f0bf60;
  --bg: #ffffff;
  --bg-soft: #f7f7fa;
  --text: #1e2649;
  --muted: #6b7088;
  --line: #e6e7ee;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- NAV ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  padding: 14px 0;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { height: 36px; width: auto; display: block; }
.nav-cta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  transition: all 0.3s ease;
  font-weight: 400;
}
.nav-cta:hover { background: var(--navy); color: #fff; }

/* ---------- BANNER (spotlight) ---------- */
.banner {
  position: relative;
  width: 100%;
  height: clamp(280px, 42vw, 460px);
  margin-top: 64px;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.banner-spot {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.05) saturate(1.05) contrast(1.05);
  -webkit-mask-image: radial-gradient(circle, black 0%, black 38%, transparent 72%);
          mask-image: radial-gradient(circle, black 0%, black 38%, transparent 72%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: clamp(220px, 32vw, 360px) clamp(220px, 32vw, 360px);
          mask-size: clamp(220px, 32vw, 360px) clamp(220px, 32vw, 360px);
  will-change: -webkit-mask-position, mask-position;
}
.banner-spot.spot-1 { animation: spotMove1 11s ease-in-out infinite alternate; }
.banner-spot.spot-2 { animation: spotMove2 13s ease-in-out infinite alternate; animation-delay: -3s; }

.banner-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.35;
}
.banner-glow.glow-1 {
  background: radial-gradient(circle clamp(180px, 26vw, 280px) at 12% 55%, rgba(232,168,56,0.45), transparent 70%);
  animation: glowMove1 11s ease-in-out infinite alternate;
}
.banner-glow.glow-2 {
  background: radial-gradient(circle clamp(180px, 26vw, 280px) at 78% 35%, rgba(47,111,181,0.40), transparent 70%);
  animation: glowMove2 13s ease-in-out infinite alternate;
  animation-delay: -3s;
}
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(11,15,34,0.35) 0%, transparent 14%, transparent 86%, rgba(11,15,34,0.4) 100%);
}

@keyframes spotMove1 {
  0%   { -webkit-mask-position: 5% 65%;  mask-position: 5% 65%; }
  50%  { -webkit-mask-position: 55% 25%; mask-position: 55% 25%; }
  100% { -webkit-mask-position: 95% 60%; mask-position: 95% 60%; }
}
@keyframes spotMove2 {
  0%   { -webkit-mask-position: 95% 30%; mask-position: 95% 30%; }
  50%  { -webkit-mask-position: 40% 75%; mask-position: 40% 75%; }
  100% { -webkit-mask-position: 5% 35%;  mask-position: 5% 35%; }
}
@keyframes glowMove1 {
  0%   { background-position: 5% 65%; }
  50%  { background-position: 55% 25%; }
  100% { background-position: 95% 60%; }
}
@keyframes glowMove2 {
  0%   { background-position: 95% 30%; }
  50%  { background-position: 40% 75%; }
  100% { background-position: 5% 35%; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(232,168,56,0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(47,111,181,0.06), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 920px;
  animation: fadeUp 1s ease both;
}
.hero-logo {
  width: clamp(280px, 55vw, 560px);
  height: auto;
  margin: 0 auto 40px;
  display: block;
}
.tagline {
  font-size: clamp(13px, 1.4vw, 15px);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 200;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 24px;
}
.hero h1 strong { font-weight: 500; }
.hero p.lead {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30,38,73,0.18);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy); }
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounce 2.5s ease infinite;
}

/* ---------- SECTIONS ---------- */
section { padding: 120px 0; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 200;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title strong { font-weight: 500; }
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 60px;
}

/* ---------- PROCESS ---------- */
.process { background: var(--bg-soft); position: relative; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.process-visual { display: flex; justify-content: center; }
.process-visual img { width: 100%; max-width: 520px; }

.steps { display: flex; flex-direction: column; gap: 24px; }
.step {
  display: flex;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: all 0.4s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(30,38,73,0.07);
  border-color: transparent;
}
.step-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,38,73,0.04);
}
.step:nth-child(1) .step-icon svg { stroke: var(--navy); }
.step:nth-child(2) .step-icon { background: rgba(47,111,181,0.06); }
.step:nth-child(2) .step-icon svg { stroke: var(--blue); }
.step:nth-child(3) .step-icon { background: rgba(232,168,56,0.08); }
.step:nth-child(3) .step-icon svg { stroke: var(--gold); }
.step-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin-bottom: 8px;
}
.step:nth-child(2) .step-title { color: var(--blue); }
.step:nth-child(3) .step-title { color: var(--gold); }
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.feature {
  padding: 36px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  transition: all 0.4s ease;
}
.feature:hover { border-color: var(--gold); transform: translateY(-4px); }
.feature-icon { width: 44px; height: 44px; margin-bottom: 20px; color: var(--gold); }
.feature h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.feature p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 28px; width: auto; }
.site-footer p {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.site-footer .essence { color: var(--gold); font-weight: 500; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .nav-cta { display: none; }
  .nav-logo { height: 28px; }
}

/* ---------- WP CORE ---------- */
.alignleft { float: left; margin: 0 24px 24px 0; }
.alignright { float: right; margin: 0 0 24px 24px; }
.aligncenter { display: block; margin: 0 auto 24px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}

/* ---------- FOOTER NAV ---------- */
.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--navy); }

/* ---------- LEGAL / IMPRESSUM ---------- */
.legal-page {
  padding: 160px 0 120px;
}
.legal-page .container { max-width: 820px; }
.legal-page h1 {
  margin-bottom: 48px;
}
.legal-block {
  margin-bottom: 48px;
}
.legal-block h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.legal-block p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}
.legal-block a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.legal-block a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .legal-page { padding: 120px 0 80px; }
  .legal-block { margin-bottom: 36px; }
}

/* ---------- PARTNERS ---------- */
.partners {
  background: var(--bg-soft);
  padding: 80px 0;
}
.partners .container { max-width: 1100px; }
.partners .section-eyebrow {
  text-align: center;
  margin-bottom: 48px;
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease;
}
.partner:hover { transform: translateY(-3px); }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  height: 70px;
}
.partner-logo img {
  max-width: 400px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-caption {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 700px) {
  .partners-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .partner-logo img { max-width: 100%; max-height: 50px; }
  .partner-caption { font-size: 11px; letter-spacing: 0.15em; }
}

/* ---------- NAV MENU ---------- */
.site-nav .container {
  gap: 24px;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0 auto 0 40px;
  padding: 0;
}
.nav-menu li a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
  position: relative;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-menu li a:hover { color: var(--gold); }
.nav-menu li a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  flex-direction: column;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

@media (max-width: 860px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .site-nav.open .nav-menu { max-height: 400px; padding: 16px 0; }
  .nav-menu li { text-align: center; padding: 12px 0; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(232,168,56,0.06), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(47,111,181,0.05), transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; max-width: 900px; }
.page-hero .section-eyebrow { display: inline-block; }
.page-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 200;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 12px 0 24px;
}
.page-hero-title strong { font-weight: 500; }
.page-hero-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* ---------- SPLIT SECTIONS ---------- */
.feature-split { padding: 100px 0; }
.feature-split-dark {
  background: var(--navy);
  color: #fff;
}
.feature-split-dark .section-eyebrow { color: var(--gold); }
.feature-split-dark .section-title-alt { color: #fff; }
.feature-split-dark .lead-alt { color: rgba(255,255,255,0.78); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-grid-reverse .split-media { order: 2; }
.split-grid-reverse .split-text  { order: 1; }
.split-media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.section-title-alt {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-title-alt strong { font-weight: 500; }
.lead-alt {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 880px) {
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .split-grid-reverse .split-media { order: 1; }
  .split-grid-reverse .split-text  { order: 2; }
  .feature-split { padding: 70px 0; }
}

/* ---------- PILLARS ---------- */
.pillars { padding: 120px 0; background: var(--bg-soft); }
.pillars .section-title { margin-bottom: 60px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.4s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(30,38,73,0.08);
  border-color: transparent;
}
.pillar-num {
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.pillar h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.35;
}
.pillar p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 880px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillars { padding: 80px 0; }
}

/* ---------- POSSIBILITIES ---------- */
.possibilities { padding: 120px 0; }
.possibilities .section-title,
.possibilities .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.possibilities .section-sub { margin-bottom: 60px; }
.possibilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.possibility {
  padding: 32px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 0.35s ease;
  position: relative;
}
.possibility:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.possibility-num {
  display: inline-block;
  font-size: 22px;
  font-weight: 200;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.possibility h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.possibility p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .possibilities-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .possibilities-grid { grid-template-columns: 1fr; }
  .possibilities { padding: 80px 0; }
}

/* ---------- APPLICATIONS GALLERY ---------- */
.applications { padding: 120px 0; background: var(--bg-soft); }
.applications .section-title,
.applications .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.applications .section-sub { margin-bottom: 56px; }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.app-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(30,38,73,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30,38,73,0.12);
}
.app-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.app-card figcaption {
  padding: 18px 22px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: center;
}
@media (max-width: 880px) {
  .apps-grid { grid-template-columns: 1fr; }
  .applications { padding: 80px 0; }
}

/* ---------- TEAM ---------- */
.team-photo-wrap { padding: 40px 0 100px; }
.team-photo {
  margin: 0 auto;
  max-width: 780px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,38,73,0.12);
}
.team-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.team-photo figcaption {
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  background: #fff;
  border-top: 1px solid var(--line);
}

/* Expertise */
.expertise { padding: 100px 0; background: var(--bg-soft); }
.expertise .section-title,
.expertise .section-sub { max-width: 720px; }
.expertise .section-sub { margin-bottom: 56px; }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.expertise-card {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(30,38,73,0.08);
}
.expertise-badge {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.expertise-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.expertise-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 880px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise { padding: 70px 0; }
}

/* Founder */
.founder { padding: 100px 0; }
.founder-inner { max-width: 780px; margin: 0 auto; }
.founder-role {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin: -8px 0 28px;
}
.founder-bio {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}
.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.founder-link:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30,38,73,0.15);
}

/* ---------- FOOTER LINKEDIN ICON ---------- */
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: var(--muted);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all 0.25s ease;
  margin-left: 8px;
}
.footer-linkedin:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ---------- ESSENCE CTA (closing panel) ---------- */
.essence-cta {
  position: relative;
  min-height: 480px;
  height: 62vh;
  max-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}
.essence-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 10s ease;
}
.essence-cta:hover .essence-cta-bg { transform: scale(1.09); }
.essence-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.85) 100%),
    linear-gradient(to bottom, rgba(11,15,34,0.35) 0%, transparent 30%, transparent 70%, rgba(11,15,34,0.55) 100%);
  z-index: 1;
}
.essence-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 32px;
  max-width: 1000px;
}
.essence-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 200;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.essence-title strong {
  font-weight: 500;
  color: var(--gold);
}

@media (max-width: 700px) {
  .essence-cta { height: 52vh; min-height: 380px; }
}

/* ---------- LEGAL BLOCK — lists ---------- */
.legal-block ul {
  margin: 0 0 12px 22px;
  padding: 0;
  list-style-type: disc;
}
.legal-block ul li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 6px;
}
.legal-block em {
  font-style: italic;
  color: var(--muted);
  font-size: 14px;
}
