/* ============================================
   BLUSLATE — Design Tokens
   Primary: #0B3C5D  Secondary: #8D99AE
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --primary: #0B3C5D;
  --primary-light: #1a5a8a;
  --secondary: #8D99AE;
  --secondary-light: #b0bac9;
  --accent: #C5A44B;
  --white: #ffffff;
  --off-white: #F7F8FA;
  --text-dark: #111827;
  --text-mid: #4B5563;
  --text-light: #9CA3AF;
  --border: rgba(141, 153, 174, 0.2);

  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
}

/* ============================================
   UTILITIES
============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 580px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: var(--transition);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  border-color: var(--accent);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: var(--transition);
}

.btn-outline:hover::before {
  transform: translateX(0);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--white);
}

.btn-outline span,
.btn-outline svg {
  position: relative;
  z-index: 1;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0 10px;
  background: rgba(255, 255, 255, 1);
  transition: var(--transition);
}

.navbar.scrolled {
  /* background: rgba(11, 60, 93, 0.97); */
  backdrop-filter: blur(20px);
  padding: 5px 0;
  box-shadow: 0 4px 40px rgba(11, 60, 93, 0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  position: relative;
  z-index: 1000;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--primary);
  ;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
  /* color: var(--white); */
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Unified link hover — same gold slide-in feel as buttons */
a.hover-effect {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

a.hover-effect::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a.hover-effect:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary) !important;
  padding: 9px 22px;
  font-size: 12px !important;
  letter-spacing: 0.1em;
  transition: var(--transition) !important;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: var(--transition);
  z-index: -1;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover::before {
  transform: translateX(0);
}

.nav-cta:hover {
  border-color: var(--accent) !important;
  color: var(--white) !important;
}

.nav-cta>* {
  position: relative;
  z-index: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1000;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--primary);
  transition: var(--transition);
  display: block;
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  background: var(--primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(197, 164, 75, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(141, 153, 174, 0.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141, 153, 174, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 153, 174, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 164, 75, 0.08) 0%, transparent 70%);
  right: -100px;
  top: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(141, 153, 174, 0.1) 0%, transparent 70%);
  left: 10%;
  bottom: 10%;
  animation-delay: 3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.02);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  padding: 100px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

/* Rotating text */
.rotating-text {
  display: inline;
  position: relative;
  height: 1.3em;
  vertical-align: bottom;
  min-width: 220px;
  overflow: hidden;
}

.rotating-text-item {
  position: absolute;
  left: 6px;
  bottom: -1px;
  font-weight: 500;
  color: var(--accent);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
  font-style: italic;
  line-height: 1.3;
}

.rotating-text-item.active {
  opacity: 1;
  transform: translateY(0);
}

.rotating-text-item.exit {
  opacity: 0;
  transform: translateY(-100%);
}

.hero-actions .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
}

.hero-actions .btn-primary::before {
  background: var(--white);
}

.hero-actions .btn-primary:hover {
  color: var(--primary);
}

.hero-actions .btn-outline {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  opacity: 0;
  animation: fadeIn 1.2s ease 1s forwards;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 2px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.hero-stat {
  background: rgba(11, 60, 93, 0.6);
  padding: 28px 24px;
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.hero-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badge {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============================================
   TRUSTED BY
============================================ */
/* ============================================
   TICKER / MARQUEE
============================================ */
.ticker-section {
  padding: 48px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ticker-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 32px;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

.ticker-track--reverse {
  animation: tickerScrollReverse 35s linear infinite;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

  100% {
    transform: translateX(0);
  }
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-mid);
  white-space: nowrap;
  padding: 0 20px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.ticker-item:hover {
  color: var(--primary);
}

.ticker-sep {
  color: var(--accent);
  font-size: 10px;
  opacity: 0.5;
  padding: 0 8px;
  user-select: none;
}

/* Services ticker variant */
.ticker-section--services {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.06);
}

.ticker-section--services .ticker-item {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.ticker-section--services .ticker-item:hover {
  color: var(--accent);
}

.ticker-section--services .ticker-sep {
  color: var(--accent);
  opacity: 0.3;
}

/* Pause on hover */
.ticker-track:hover,
.ticker-track--reverse:hover {
  animation-play-state: paused;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-main-block {
  background: var(--primary);
  padding: 60px 48px;
  position: relative;
}

.about-main-block::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(11, 60, 93, 0.15);
  z-index: -1;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 32px;
}

.about-quote-author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 1px;
}

.about-pillar {
  background: var(--off-white);
  padding: 28px 24px;
  text-align: center;
}

.about-pillar-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  font-weight: 300;
  line-height: 1;
}

.about-pillar-label {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ============================================
   BUILT FOR REGULATED
============================================ */
.regulated {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.regulated-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141, 153, 174, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 153, 174, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.regulated .section-title {
  color: var(--white);
}

.regulated .section-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
}

.regulated-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.05);
  overflow: visible;
}

.regulated-feature {
  background: rgba(11, 60, 93, 0.5);
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.regulated-feature::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(197, 164, 75, 0.3));
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.regulated-feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 164, 75, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.regulated-feature:hover::before {
  width: 100%;
}

.regulated-feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.regulated-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}

.regulated-feature:hover .regulated-feature-icon svg {
  transform: scale(1.1);
}

.regulated-feature-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  transition: var(--transition);
}

.regulated-feature:hover .regulated-feature-title {
  color: var(--accent);
}

.regulated-feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   APPROACH
============================================ */
.approach {
  background: var(--off-white);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
  overflow: visible;
}

.approach-card {
  background: var(--white);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.approach-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(197, 164, 75, 0.3));
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(11, 60, 93, 0.12), 0 4px 16px rgba(11, 60, 93, 0.06);
}

.approach-card:hover::after {
  width: 100%;
}

.approach-letter {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(11, 60, 93, 0.05);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 28px;
}

.approach-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition);
}

.approach-card:hover .approach-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.approach-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}

.approach-card:hover .approach-icon svg {
  stroke: var(--white);
}

.approach-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 16px;
  transition: var(--transition);
}

.approach-card:hover .approach-card-title {
  color: var(--primary);
}

.approach-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ============================================
   WHY BLUSLATE
============================================ */
.why {
  background: var(--white);
}

.why .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 0;
}

.why-reason {
  display: flex;
  gap: 24px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  cursor: default;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-reason::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--accent), rgba(197, 164, 75, 0.4));
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-reason:hover::before {
  width: 3px;
}

.why-reason:hover {
  border-color: rgba(11, 60, 93, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 60, 93, 0.08);
}

.why-reason-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(11, 60, 93, 0.15);
  min-width: 40px;
  line-height: 1;
  padding-top: 4px;
}

.why-reason-content {}

.why-reason-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.why-reason-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ============================================
   SERVICES
============================================ */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
  overflow: visible;
}

.service-card {
  background: var(--white);
  padding: 52px 44px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translateY(101%);
  transition: var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(197, 164, 75, 0.3));
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card:hover::after {
  width: 100%;
}

.service-card-inner {
  position: relative;
  z-index: 1;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(11, 60, 93, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: rgba(255, 255, 255, 0.1);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}

.service-card:hover .service-card-icon svg {
  stroke: var(--accent);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
  transition: var(--transition);
}

.service-card:hover .service-card-title {
  color: var(--white);
}

.service-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 28px;
  transition: var(--transition);
}

.service-card:hover .service-card-desc {
  color: rgba(255, 255, 255, 0.65);
}

.service-offerings {
  list-style: none;
}

.service-offerings li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.service-card:hover .service-offerings li {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-offerings li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   ENGAGEMENT MODELS
============================================ */
.engagement {
  background: var(--white);
}

.engagement-models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  overflow: visible;
}

.engagement-model {
  border: 1px solid var(--border);
  padding: 48px 36px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  background: var(--white);
}

.engagement-model::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(197, 164, 75, 0.3));
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.engagement-model::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 60, 93, 0.02) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.engagement-model:hover {
  border-color: rgba(11, 60, 93, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(11, 60, 93, 0.12), 0 4px 16px rgba(11, 60, 93, 0.06);
}

.engagement-model:hover::before {
  width: 100%;
}

.engagement-model:hover::after {
  opacity: 1;
}

.engagement-model-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 32px;
  height: 32px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.engagement-model-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}

.engagement-model:hover .engagement-model-badge {
  background: var(--primary);
  transform: scale(1.05);
}

.engagement-model:hover .engagement-model-badge svg {
  stroke: var(--accent);
}

.engagement-model:hover .engagement-model-title {
  color: var(--primary);
}

.engagement-model:hover .engagement-model-desc {
  color: var(--text-dark);
}

.engagement-model-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.engagement-model-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.engagement-model-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ============================================
   HOW CLIENTS USE / USE CASE
============================================ */
.usecase {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.usecase-bg {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.03;
}

.usecase-bg svg {
  width: 600px;
  height: 600px;
}

.usecase .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.usecase .section-title {
  color: var(--white);
}

.usecase .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.usecase-highlights {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.usecase-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.usecase-highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.usecase-flow {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 48px 40px;
}

.usecase-flow-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}

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

.usecase-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.usecase-step:last-child {
  border-bottom: none;
}

.usecase-step-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent);
  min-width: 28px;
}

.usecase-step-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.usecase-step-text strong {
  color: var(--white);
  font-weight: 500;
}

/* ============================================
   CONTACT
============================================ */
.contact {
  background: var(--off-white);
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {}

.contact-info .section-desc {
  margin-bottom: 48px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail a {
  text-decoration: none;
  color: var(--text-dark);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 52px 44px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: var(--transition);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238D99AE' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ============================================
   CUSTOM CURSOR
============================================ */
*,
*::before,
*::after {
  cursor: none !important;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(197, 164, 75, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.3s ease,
    background 0.3s ease,
    opacity 0.3s ease;
}

/* Hover on interactive elements — ring grows */
.cursor-ring.cursor-hover {
  width: 60px;
  height: 60px;
  border-color: rgba(197, 164, 75, 0.3);
  background: rgba(197, 164, 75, 0.06);
}

.cursor-dot.cursor-hover {
  width: 12px;
  height: 12px;
  background: var(--accent);
}

/* Specifically on anchor / button links — pulsing glow */
.cursor-ring.cursor-link {
  width: 70px;
  height: 70px;
  border-color: var(--accent);
  background: rgba(197, 164, 75, 0.1);
  animation: cursorPulse 1.5s ease-in-out infinite;
}

.cursor-dot.cursor-link {
  width: 14px;
  height: 14px;
  background: var(--white);
}

/* On card hover — large halo */
.cursor-ring.cursor-card {
  width: 90px;
  height: 90px;
  border-color: rgba(197, 164, 75, 0.25);
  background: rgba(197, 164, 75, 0.04);
}

.cursor-dot.cursor-card {
  width: 10px;
  height: 10px;
}

@keyframes cursorPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.7;
  }
}

/* Hide default cursor on interactive elements */
a,
button,
.btn-primary,
.btn-outline,
.nav-toggle,
.form-select,
.form-input,
.form-textarea,
.service-card,
.approach-card,
.engagement-model,
.why-reason {
  cursor: none !important;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  *,
  *::before,
  *::after {
    cursor: auto !important;
  }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #07263c;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.5);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}

.footer-social-link:hover {
  border-color: var(--accent);
  background: rgba(197, 164, 75, 0.1);
}

.footer-social-link:hover svg {
  stroke: var(--accent);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover::after {
  transform: scaleX(1);
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   PARALLAX
============================================ */
.parallax-layer {
  will-change: transform;
}

[data-parallax] {
  will-change: transform;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {

  .hero .container,
  .about .container,
  .usecase .container,
  .contact .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-visual {
    padding-top: 0;
  }

  .regulated-features,
  .approach-grid,
  .engagement-models {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .container {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    transition: display 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    padding-top: 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: slideIn 0.3s ease forwards;
    height: calc(100vh - 60px);
  }

  @keyframes slideIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .nav-links.active a {
    font-size: 18px;
    color: var(--white);
  }

  .nav-toggle {
    display: flex;
  }

  .regulated-features,
  .approach-grid,
  .engagement-models {
    grid-template-columns: 1fr;
  }

  .why .container {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-subtitle {
    width: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   COMING SOON TOOLTIP
============================================ */
.coming-soon {
  position: relative;
  pointer-events: auto;
}

.coming-soon::after {
  content: 'Coming Soon';
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--primary);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(11, 60, 93, 0.2);
}

.coming-soon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Footer links: tooltip appears above */
.footer-links .coming-soon::after,
.footer-legal .coming-soon::after,
.footer-social-link.coming-soon::after {
  bottom: calc(100% + 8px);
  top: auto;
}