/* ================================
   TraWis Global Theme
================================ */

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #fffaf0;
  --color-bg-dark: #2b2331;

  --color-primary: #ffc400;
  --color-primary-dark: #d99d00;
  --color-secondary: #a946f5;
  --color-secondary-dark: #552d72;

  --color-text: #16151c;
  --color-muted: #6b6575;
  --color-white: #ffffff;
  --color-border: rgba(22, 21, 28, 0.1);

  --gradient-hero: linear-gradient(135deg, #2b2331 3%, #4d2f63 45%, #b643f2 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 196, 0, 0.18), rgba(169, 70, 245, 0.14));

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
 /* Confirm inter font */

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 10px 30px rgba(22, 21, 28, 0.08);
  --shadow-md: 0 18px 50px rgba(22, 21, 28, 0.14);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.28);

  --header-height: 76px;
  --container-pad: clamp(1rem, 3vw, 2rem);
}

/* ================================
   Base
================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  line-height: 1.7;
}

::selection {
  background: var(--color-primary);
  color: var(--color-text);
}

/* ================================
   Utilities
================================ */

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-dark {
  background: var(--gradient-hero);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section-soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 196, 0, 0.14), transparent 30%),
    var(--color-bg-soft);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 3rem;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.section-dark .section-kicker,
.section-dark .eyebrow {
  color: var(--color-primary);
}

.section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.section-text {
  margin-top: 1.25rem;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.72) !important;
}

.text-brand {
  color: var(--color-primary-dark);
}

.btn {
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brand {
  background: var(--color-primary);
  color: #191620;
  border: 1px solid var(--color-primary);
  box-shadow: 0 12px 30px rgba(255, 196, 0, 0.25);
}

.btn-brand:hover {
  background: #ffd64d;
  border-color: #ffd64d;
  color: #191620;
}

.btn-ghost {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

/* ================================
   Header / Navbar
================================ */

.site-header {
  height: var(--header-height);
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
  z-index: 999;
}

.site-header .navbar {
  height: var(--header-height);
  padding: 0;
}

.site-header.scrolled {
  background: rgba(43, 35, 49, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.brand-logo {
  width: 180px;
  height: auto;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.75rem 0.8rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-primary);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

/* ================================
   Navbar Dropdowns
================================ */

/* ================================
   Navbar Dropdowns
================================ */

.navbar .dropdown-toggle::after {
  margin-left: 0.45rem;
  vertical-align: 0.12em;
  border-top-color: currentColor;
  transition: transform 0.2s ease;
}

/* Rotate caret only when Bootstrap opens the dropdown */
.navbar .dropdown-toggle.show::after,
.navbar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  min-width: 310px;
  padding: 0.65rem;
  margin-top: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 196, 0, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(43, 35, 49, 0.98), rgba(77, 47, 99, 0.98));
  box-shadow: 0 24px 70px rgba(22, 21, 28, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.nav-dropdown-menu.show {
  animation: dropdownFade 0.22s ease forwards;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 28px;
  width: 14px;
  height: 14px;
  background: rgba(43, 35, 49, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(45deg);
}

.nav-dropdown-item {
  position: relative;
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.82);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}

.dropdown-item-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 850;
  color: var(--color-white);
  line-height: 1.25;
}

.dropdown-item-copy {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
  white-space: normal;
}

.nav-dropdown-item:hover .dropdown-item-title,
.nav-dropdown-item:focus .dropdown-item-title {
  color: var(--color-primary);
}

.nav-dropdown-item:hover .dropdown-item-copy,
.nav-dropdown-item:focus .dropdown-item-copy {
  color: rgba(255, 255, 255, 0.78);
}

.nav-dropdown-cta {
  background: rgba(255, 196, 0, 0.13);
  border: 1px solid rgba(255, 196, 0, 0.18);
}

.nav-dropdown-cta:hover,
.nav-dropdown-cta:focus {
  background: rgba(255, 196, 0, 0.2);
}

.dropdown-divider {
  margin: 0.45rem 0.35rem;
  border-color: rgba(255, 255, 255, 0.12);
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile dropdown layout */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    position: static;
    float: none;
    transform: none !important;
  }

  .navbar .dropdown-menu:not(.show) {
    display: none;
  }

  .navbar .dropdown-menu.show {
    display: block;
  }

  .nav-dropdown-menu {
    width: 100%;
    min-width: 100%;
    margin-top: 0.35rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 16px;
    box-shadow: none;
    animation: none;
    background:
      radial-gradient(circle at top left, rgba(255, 196, 0, 0.12), transparent 34%),
      rgba(255, 255, 255, 0.06);
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-item {
    padding: 0.85rem 0.9rem;
    transform: none !important;
  }

  .dropdown-item-title {
    font-size: 0.88rem;
  }

  .dropdown-item-copy {
    font-size: 0.76rem;
  }
}
/* ================================
   Hero
================================ */

.hero-section {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.hero-container {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}

.hero-bg-glow {
  position: absolute;
  width: 42rem;
  height: 42rem;
  right: -12rem;
  top: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.18), transparent 60%);
  pointer-events: none;
}

.hero-title {
  max-width: 760px;
  margin-top: 50px;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.hero-product-frame {
  margin-top: 2rem;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-subtitle {
  max-width: 680px;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 680px;
  margin-top: 2.5rem;
}

.hero-proof div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--color-primary);
}

.hero-proof span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* ================================
   Product visuals
================================ */

.product-visual-wrap {
  position: relative;
  max-width: 680px;
  margin-left: auto;
}

.browser-card {
  position: relative;
  padding: 2.2rem 1rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.browser-dots {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
}

.browser-dots span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) {
  background: #ff5f57;
}

.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
  background: #28c840;
}

.product-demo-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(20, 17, 28, 0.22);
  object-fit: cover;
}

.main-demo-card {
  transform: rotate(-1.5deg);
}

.floating-card {
  position: absolute;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-card span {
  display: block;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-card strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.floating-card-left {
  left: -2rem;
  bottom: 4rem;
}

.floating-card-right {
  right: -1.5rem;
  top: 5rem;
}

/* ================================
   Cards
================================ */

.image-chip {
  max-width: 360px;
  margin-inline: auto;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
}

.image-chip img {
  filter: drop-shadow(0 20px 34px rgba(22, 21, 28, 0.18));
}

.feature-card,
.layer-card,
.pricing-card,
.impact-card {
  height: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.feature-card {
  padding: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: inline-flex;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  border-radius: 50%;
  /* background: rgba(255, 196, 0, 0.16);
  color: var(--color-primary); */
    background: rgba(255, 196, 0, 0.88);
  color: var(--color-bg-dark);
  font-family: var(--font-heading);
  font-weight: 900;
}

.feature-card h3,
.layer-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
}

.feature-card p,
.layer-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* ================================
   Demo Gallery
================================ */

.product-section::before {
  content: "";
  position: absolute;
  inset: auto auto -10rem -8rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.12);
}

.demo-gallery {
  position: relative;
}

.demo-card-large {
  max-width: 720px;
  margin-left: auto;
}

.demo-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.demo-stack img {
  width: 100%;
  border-radius: 14px;
  border: 4px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease;
}

.demo-stack img:hover {
  transform: translateY(-6px) scale(1.02);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.78);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #17131f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
}

/* ================================
   Layer Cards
================================ */

.layer-card {
  padding: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.layer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.layer-img {
  padding: 0.7rem;
  margin-bottom: 1.2rem;
  border-radius: 20px;
  background: #f8f5ef;
}

.layer-img img {
  width: 100%;
  border-radius: 14px;
}

.layer-card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.layer-card h3,
.layer-card p {
  padding-inline: 0.5rem;
}

/* ================================
   Impact
================================ */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.impact-card {
  padding: 2rem 1.4rem;
  text-align: center;
}

.impact-card strong,
.impact-card span {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--color-secondary);
}

.impact-card p {
  max-width: 220px;
  margin: 1rem auto 0;
  color: var(--color-muted);
  font-weight: 700;
}

/* ================================
   Pricing
================================ */

.pricing-card {
  padding: 1rem;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 14px;
}

.pricing-row:nth-child(odd) {
  background: #faf7ef;
}

.pricing-row span {
  color: var(--color-muted);
  font-weight: 700;
}

.pricing-row strong {
  font-family: var(--font-heading);
  color: var(--color-text);
}

/* ================================
   CTA
================================ */

.demo-cta {
  padding-top: 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--gradient-hero);
  color: var(--color-white);
  box-shadow: var(--shadow-dark);
}

.cta-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4vw, 4rem);
}

.cta-card p {
  max-width: 650px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

/* ================================
   Footer
================================ */

.site-footer {
  padding: 4rem 0 2rem;
  background: #191620;
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  width: 125px;
}

.footer-copy {
  max-width: 360px;
}

.footer-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 900;
  margin-bottom: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--color-primary);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

/* ================================
   Animation
================================ */

.animate-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.75s ease forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

.delay-3 {
  animation-delay: 0.36s;
}

.delay-4 {
  animation-delay: 0.48s;
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ================================
   Coming Soon
================================ */

.coming-soon-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
  background: radial-gradient(circle at top, rgba(255, 196, 0, 0.16), transparent 35%),
    linear-gradient(180deg, #1c1425 0%, #0f0b15 100%);
  color: var(--color-white);
}

.coming-soon-card {
  width: min(100%, 780px);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 28px;
  background: rgba(17, 12, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.coming-soon-badge {
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.16);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coming-soon-card h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  letter-spacing: -0.06em;
}

.coming-soon-copy {
  margin: 1.5rem auto 2rem;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.countdown-cell {
  padding: 1.35rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.countdown-cell strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
}

.countdown-cell span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 0.75rem;
}

.coming-soon-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.coming-soon-note a {
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .coming-soon-card {
    padding: 2rem 1.5rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.error-404-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
  background: radial-gradient(circle at top, rgba(169, 70, 245, 0.18), transparent 28%),
    linear-gradient(180deg, #1d1328 0%, #0a0710 100%);
  color: var(--color-white);
}

.error-404-card {
  width: min(100%, 760px);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 28px;
  background: rgba(19, 12, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.error-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #191620;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
}

.error-404-card h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  letter-spacing: -0.06em;
}

.error-404-copy {
  margin: 1.5rem auto 2rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .error-404-card {
    padding: 2rem 1.5rem;
  }
}

/* ================================
   Responsive
================================ */

@media (max-width: 991px) {
  .site-header {
    background: rgba(43, 35, 49, 0.92);
    backdrop-filter: blur(18px);
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(43, 35, 49, 0.96);
    box-shadow: var(--shadow-dark);
  }

  .hero-section {
    padding-top: 1rem;
  }

  .hero-proof,
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card {
    display: none;
  }

  .main-demo-card {
    transform: none;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: clamp(2.6rem, 14vw, 4.5rem);
  }

  .hero-proof,
  .impact-grid,
  .demo-stack {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Problems Section
================================ */

.problem-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-bg);
}

.problem-container {
  position: relative;
  z-index: 3;
}

/* animated background image cutouts */
.problem-cutout {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
  filter: grayscale(0.1) saturate(0.85);
}

.problem-cutout img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(22, 21, 28, 0.12);
}

/* dashboard cutout */
.problem-cutout-1 {
  top: 5rem;
  left: -5rem;
  width: 260px;
  transform: rotate(-8deg);
  animation: cutoutFloatOne 9s ease-in-out infinite;
}

/* market chart cutout */
.problem-cutout-2 {
  top: 9rem;
  right: -4rem;
  width: 280px;
  transform: rotate(8deg);
  animation: cutoutFloatTwo 11s ease-in-out infinite;
}

/* spreadsheet/data cutout */
.problem-cutout-3 {
  bottom: 2rem;
  left: 18%;
  width: 220px;
  transform: rotate(-5deg);
  animation: cutoutFloatThree 10s ease-in-out infinite;
}

/* optional soft color wash behind cards */
.problem-section::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 50%;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.10), transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
}

.problem-section::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -12rem;
  z-index: 0;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 70, 245, 0.08), transparent 65%);
  pointer-events: none;
}

.problem-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 260px;
  padding: 1.65rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 21, 28, 0.08);
  backdrop-filter: blur(10px);
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(255, 196, 0, 0.10),
    rgba(169, 70, 245, 0.06),
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  /* background: rgba(255, 196, 0, 0.16);
  color: var(--color-primary-dark); */
    background: rgba(255, 196, 0, 0.88);
  color: var(--color-bg-dark);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.problem-card h3 {
  margin-bottom: 0.75rem;
}

.problem-card p {
  margin-bottom: 0;
}

/* cutout animations */
@keyframes cutoutFloatOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  50% {
    transform: translate3d(16px, -18px, 0) rotate(-4deg);
  }
}

@keyframes cutoutFloatTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }

  50% {
    transform: translate3d(-18px, 14px, 0) rotate(4deg);
  }
}

@keyframes cutoutFloatThree {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }

  50% {
    transform: translate3d(10px, -14px, 0) rotate(-9deg);
  }
}

/* mobile cleanup */
@media (max-width: 991px) {
  .problem-cutout {
    opacity: 0.08;
  }

  .problem-cutout-1 {
    width: 190px;
    left: -4rem;
  }

  .problem-cutout-2 {
    width: 210px;
    right: -5rem;
  }

  .problem-cutout-3 {
    width: 170px;
    left: 6%;
  }

  .problem-card {
    min-height: 230px;
  }
}

@media (max-width: 767px) {
  .problem-cutout {
    opacity: 0.06;
  }

  .problem-cutout-1,
  .problem-cutout-2,
  .problem-cutout-3 {
    width: 150px;
  }

  .problem-card {
    min-height: auto;
  }
}

/* ================================
   Leadership Page
================================ */

.leadership-card {
  overflow: hidden;
  padding: 0;
}

.leadership-avatar {
  background: var(--gradient-card);
  overflow: hidden;
}

.leadership-hero{
  margin-top: 0rem;
}

.leadership-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-meta {
  padding: 1.5rem;
}

.leadership-role {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leadership-hero-collage {
  position: relative;
  max-width: 460px;
  margin-left: auto;
}

.leadership-hero-img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-dark);
}

.leadership-hero-img-main {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.leadership-hero-img-small {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 48%;
  border: 6px solid rgba(255, 255, 255, 0.9);
}

.leadership-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.leadership-stat-card strong {
  color: var(--color-primary);
}

.leadership-stat-card p {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 991px) {
  .leadership-hero-collage {
    margin-left: 0;
    max-width: 520px;
  }

  .leadership-hero-img-small {
    right: 1rem;
    bottom: -1.5rem;
  }
}

@media (max-width: 767px) {
  .leadership-hero-img-small {
    position: relative;
    right: auto;
    bottom: auto;
    width: 70%;
    margin-top: -2rem;
    margin-left: auto;
  }
}

/* ================================
   About Page
================================ */

.about-hero-visual {
  position: relative;
  max-width: 460px;
  margin-left: auto;
}

.about-hero-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-hero-card {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  max-width: 240px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.about-hero-card span {
  display: block;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.about-hero-card strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 900;
}

.about-image-stack {
  position: relative;
  max-width: 620px;
  margin-left: auto;
}

.about-stack-img {
  border-radius: 26px;
  box-shadow: var(--shadow-dark);
}

.about-stack-img-main {
  width: 100%;
}

.about-stack-img-small {
  position: absolute;
  right: -1.5rem;
  bottom: -2rem;
  width: 48%;
  border: 6px solid rgba(255, 255, 255, 0.92);
}

.about-difference-card {
  min-height: 260px;
}

.about-platform-img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
  .about-hero-visual,
  .about-image-stack {
    margin-left: 0;
    max-width: 560px;
  }

  .about-hero-card {
    left: 1rem;
    bottom: 1rem;
  }

  .about-stack-img-small {
    right: 1rem;
    bottom: -1.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -2rem;
    margin-left: 1rem;
  }

  .about-stack-img-small {
    position: relative;
    right: auto;
    bottom: auto;
    width: 76%;
    margin-top: -2rem;
    margin-left: auto;
  }
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus,
.nav-dropdown-item:active,
.nav-dropdown-item.active {
  color: var(--color-white);
  background:
    linear-gradient(
      135deg,
      rgba(255, 196, 0, 0.16),
      rgba(169, 70, 245, 0.14)
    );
  transform: translateX(4px);
}

/* ================================
   Contact Page
================================ */

.contact-hero-card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(255, 196, 0, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
}

.contact-card-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hero-card h2 {
  margin: 0 0 1rem;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.contact-hero-card p {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-email-link {
  display: inline-flex;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.14);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 900;
  word-break: break-word;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-email-link:hover {
  color: var(--color-primary);
  background: rgba(255, 196, 0, 0.22);
  transform: translateY(-2px);
}

.contact-email-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact-email-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 7vw, 5.5rem);
  height: clamp(4rem, 7vw, 5.5rem);
  border-radius: 24px;
  background: var(--gradient-card);
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.contact-email-content span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-email-content a {
  display: inline-block;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 4vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
  word-break: break-word;
}

.contact-email-content a:hover {
  color: var(--color-secondary);
}

.contact-email-content p {
  margin: 0.8rem 0 0;
  color: var(--color-muted);
}

.contact-email-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-copy-btn.copied {
  background: var(--color-text);
  color: var(--color-white);
  border-color: var(--color-text);
}

@media (max-width: 991px) {
  .contact-email-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-email-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .contact-email-content a {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .contact-email-actions {
    flex-direction: column;
  }
}

/* ================================
   Leadership Executive Summary
================================ */

.leadership-summary-section {
  position: relative;
  overflow: hidden;
}

.leadership-summary-card {
  padding: clamp(1.75rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.leadership-summary-card .section-text:first-child {
  margin-top: 0;
}

.leadership-summary-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.leadership-summary-points div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--gradient-card);
}

.leadership-summary-points span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
}

.leadership-summary-points strong {
  display: block;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .leadership-summary-points {
    grid-template-columns: 1fr;
  }
}
/* ================================
   Product Page
================================ */

.product-layer-card {
  padding: 1rem;
  overflow: hidden;
}

.product-layer-image {
  margin-bottom: 1.25rem;
  border-radius: 22px;
  overflow: hidden;
  background: var(--gradient-card);
}

.product-layer-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-mini-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.product-mini-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-primary);
}

.product-agent-card {
  height: 100%;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-agent-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 196, 0, 0.28);
}

.product-agent-content, .product-agent-content-yellow {
  padding: 0.75rem 0.75rem 1.25rem;
}

.product-agent-content span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.product-agent-content h3 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 900;
}

.product-agent-content p {
  margin-bottom: 0;
  color: #F9F5EC ;
}

.product-agent-content-yellow h3 {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 900;
}

.product-agent-content-yellow p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.product-agent-card img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-architecture-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.architecture-row {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 16px;
}

.architecture-row:nth-child(odd) {
  background: #faf7ef;
}

.architecture-row span {
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.architecture-row strong {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .architecture-row {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Blog Hero
================================ */

.blog-hero {
  position: relative;
  overflow: hidden;
}

.blog-hero-card {
  max-width: 430px;
  margin-left: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(255, 196, 0, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
}

.blog-hero-card-label {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-topic-list {
  display: grid;
  gap: 0.75rem;
}

.blog-topic-list span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-heading);
  font-weight: 800;
}

.blog-topic-list span::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-primary);
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .blog-hero-card {
    margin-left: 0;
    max-width: 100%;
  }
}

/* ================================
   Blog Post Split Hero
================================ */

.post-hero-split {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.post-hero-split .hero-container {
  position: relative;
  z-index: 2;
}

.post-hero-title {
  max-width: 760px;
  margin-top: 0;
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  line-height: 1.04;
}

.post-hero-image-side {
  max-width: 620px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 8px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-dark);
}

.post-hero-image {
  width: 100%;
  min-height: 300px;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-lg) - 8px);
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.post-back-link:hover {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-3px);
}

.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.post-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  font-weight: 700;
}

.post-meta-row i {
  color: var(--color-primary);
}

@media (max-width: 991px) {
  .post-hero-title {
    font-size: clamp(2.25rem, 8vw, 4rem);
  }

  .post-hero-image-side {
    margin-left: 0;
    max-width: 100%;
  }

  .post-hero-image {
    min-height: 320px;
    max-height: 460px;
  }
}

@media (max-width: 767px) {
  .post-hero-split {
    padding-bottom: 3rem;
  }

  .post-meta-row {
    gap: 0.6rem;
  }

  .post-meta-row span {
    width: 100%;
    justify-content: flex-start;
  }

  .post-hero-image-side {
    border-width: 5px;
    border-radius: var(--radius-md);
  }

  .post-hero-image {
    min-height: 220px;
    max-height: 320px;
    border-radius: calc(var(--radius-md) - 5px);
  }
}

/* ================================
   Product Capability Visual Cards
================================ */

.capability-visual-card {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  opacity: 0.8;
}

.capability-visual-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark);
}

.capability-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(15, 12, 20, 0.1) 0%,
      rgba(15, 12, 20, 0.42) 45%,
      rgba(15, 12, 20, 0.92) 100%
    );
}

.capability-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem;
}

.capability-card-content .feature-icon {
  margin-bottom: 1rem;
}

.capability-card-content h3 {
  margin-bottom: 0.65rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
}

.capability-card-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 991px) {
  .capability-visual-card {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .capability-visual-card {
    min-height: 280px;
  }
}

/* ================================
   Landing Page Hero Visual
================================ */

.landing-hero-visual {
  position: relative;
  max-width: 640px;
  margin-left: auto;
  padding: 1rem;
}

.landing-hero-image-glow {
  position: absolute;
  inset: 12% 4%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(182, 67, 242, 0.38) 0%,
      rgba(255, 196, 0, 0.14) 40%,
      transparent 72%
    );
  filter: blur(55px);
  pointer-events: none;
}

.landing-hero-image-frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: var(--color-bg-dark);
  box-shadow: var(--shadow-dark);
}

.landing-hero-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.landing-hero-image-frame:hover .landing-hero-image {
  transform: scale(1.035);
}

.landing-hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(19, 15, 23, 0.06) 0%,
      rgba(19, 15, 23, 0.16) 42%,
      rgba(19, 15, 23, 0.88) 100%
    );
  pointer-events: none;
}

.landing-hero-image-label {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(25, 20, 30, 0.7);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px);
}

.landing-status-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(255, 196, 0, 0.16);
}

.landing-hero-insight {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(25, 20, 30, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.landing-hero-insight-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary);
  color: var(--color-bg-dark);
  font-size: 1.2rem;
}

.landing-hero-insight span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-hero-insight strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .landing-hero-visual {
    max-width: 100%;
    margin-left: 0;
  }

  .landing-hero-image-frame,
  .landing-hero-image {
    min-height: 430px;
  }
}

@media (max-width: 575px) {
  .landing-hero-visual {
    padding: 0;
  }

  .landing-hero-image-frame,
  .landing-hero-image {
    min-height: 360px;
  }

  .landing-hero-image-label {
    top: 1rem;
    left: 1rem;
  }

  .landing-hero-insight {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .landing-hero-insight strong {
    font-size: 0.85rem;
  }
}

.demo-gallery {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-card-large {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.demo-card-large .product-demo-img {
  width: 100%;
  display: block;
}

.demo-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.demo-stack-item {
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
}

.demo-stack-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 0.35rem;
}

@media (max-width: 767px) {
  .demo-gallery {
    max-width: 100%;
  }

  .demo-stack {
    grid-template-columns: 1fr;
  }

  .demo-stack-item {
    aspect-ratio: 16 / 9;
  }
}

/* ================================
   TraWis Differentiators
================================ */

.differentiators-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(255, 196, 0, 0.08),
      transparent 28%
    ),
    var(--color-bg-soft);
}

.differentiators-heading {
  max-width: 920px;
  margin-right: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  margin-left: auto;
}

.differentiators-heading .section-title {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.differentiators-heading .section-text {
  max-width: 800px;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  width: 100%;
}

.differentiator-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(43, 35, 49, 0.08);
  border-radius: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow:
    0 16px 34px rgba(43, 35, 49, 0.1),
    0 4px 10px rgba(43, 35, 49, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  opacity: 80%;
}

.differentiator-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 24px 46px rgba(43, 35, 49, 0.16),
    0 8px 16px rgba(43, 35, 49, 0.08);
}

.differentiator-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.52) 0%,
      rgba(255, 255, 255, 0.66) 48%,
      rgba(255, 255, 255, 0.82) 100%
    );
  backdrop-filter: saturate(0.8);
}

.differentiator-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 1.4rem 1.6rem;
}

.differentiator-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.14);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  box-shadow:
    inset 0 0 0 1px rgba(255, 196, 0, 0.18),
    0 6px 16px rgba(43, 35, 49, 0.07);
}

.differentiator-card h3 {
  margin-bottom: 0.9rem;
  color: var(--color-bg-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.differentiator-card p {
  margin-bottom: 0;
  color: rgba(43, 35, 49, 0.72);
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (max-width: 1199px) {
  .differentiators-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .differentiators-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .differentiator-card,
  .differentiator-card-content {
    min-height: 340px;
  }
}

@media (max-width: 575px) {
  .differentiators-grid {
    grid-template-columns: 1fr;
  }

  .differentiator-card,
  .differentiator-card-content {
    min-height: 320px;
  }

  .differentiator-card-content {
    padding: 1.6rem;
  }
}


.differentiator-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(43, 35, 49, 0.1);
  border-radius: 28px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* Makes the source images richer */
  filter: saturate(1.18) contrast(1.06);

  box-shadow:
    0 16px 34px rgba(43, 35, 49, 0.12),
    0 4px 10px rgba(43, 35, 49, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.differentiator-card:hover {
  transform: translateY(-7px);
  filter: saturate(1.3) contrast(1.1);

  box-shadow:
    0 24px 46px rgba(43, 35, 49, 0.18),
    0 8px 16px rgba(43, 35, 49, 0.08);
}

.differentiator-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(20, 16, 25, 0.08) 0%,
      rgba(20, 16, 25, 0.2) 42%,
      rgba(20, 16, 25, 0.78) 100%
    );

  pointer-events: none;
}

.differentiator-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.4rem 1.6rem;
}

.differentiator-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  background: rgba(255, 196, 0, 0.88);
  color: var(--color-bg-dark);

  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.18),
    0 0 0 6px rgba(255, 196, 0, 0.12);
}

.differentiator-card h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;

  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.differentiator-card p {
  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  line-height: 1.6;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}


/* Security section using shared differentiator cards */

.security-controls-section {
  background: var(--color-bg);
}

.security-controls-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.security-control-card,
.security-control-card .differentiator-card-content {
  min-height: 340px;
}

@media (max-width: 991px) {
  .security-controls-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .security-controls-grid {
    grid-template-columns: 1fr;
  }

  .security-control-card,
  .security-control-card .differentiator-card-content {
    min-height: 320px;
  }
}


/* Mission section using shared differentiator cards */

.mission-section {
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(169, 70, 245, 0.05),
      transparent 30%
    ),
    var(--color-bg);
}

.mission-heading {
  max-width: 940px;
  margin-right: auto;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
  margin-left: auto;
}

.mission-heading .section-text {
  max-width: 800px;
}

.mission-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.mission-card,
.mission-card .differentiator-card-content {
  min-height: 340px;
}

@media (max-width: 991px) {
  .mission-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .mission-card-grid {
    grid-template-columns: 1fr;
  }

  .mission-card,
  .mission-card .differentiator-card-content {
    min-height: 320px;
  }
}

/* ================================
   Contact Hero
================================ */

.contact-hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(
      circle at 82% 48%,
      rgba(190, 60, 245, 0.42),
      transparent 34%
    ),
    linear-gradient(
      115deg,
      #241d29 0%,
      #35233f 44%,
      #71318f 75%,
      #b832e7 100%
    );
}

.contact-hero-container {
  position: relative;
  z-index: 2;
}

.contact-hero-glow {
  position: absolute;
  top: 15%;
  right: -8%;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: rgba(182, 67, 242, 0.2);
  filter: blur(110px);
  pointer-events: none;
}

.contact-hero-copy {
  max-width: 670px;
}

.contact-hero-title {
  max-width: 660px;
  margin-bottom: 1.75rem;
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.contact-hero-title span {
  color: var(--color-primary);
}

.contact-hero-subtitle {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
}

.contact-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-hero-visual {
  position: relative;
  width: 100%;
  max-width: 610px;
  margin-left: auto;
}

.contact-image-glow {
  position: absolute;
  inset: 10% -5% -5% 10%;
  border-radius: 40%;
  background: rgba(182, 67, 242, 0.36);
  filter: blur(70px);
  pointer-events: none;
}

.contact-image-frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--color-bg-dark);
  box-shadow:
    0 28px 70px rgba(13, 8, 19, 0.38),
    0 8px 22px rgba(13, 8, 19, 0.2);
}

.contact-hero-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s ease;
}

.contact-image-frame:hover .contact-hero-image {
  transform: scale(1.035);
}

@media (max-width: 991px) {
  .contact-hero {
    min-height: auto;
    padding: 4.5rem 0;
  }

  .contact-hero-copy {
    max-width: 100%;
  }

  .contact-hero-title {
    max-width: 780px;
  }

  .contact-hero-visual {
    max-width: 100%;
    margin-left: 0;
  }

  .contact-image-frame,
  .contact-hero-image {
    min-height: 440px;
  }
}

@media (max-width: 575px) {
  .contact-hero {
    padding: 3.5rem 0;
  }

  .contact-hero-title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .contact-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-hero .hero-actions .btn {
    width: 100%;
  }

  .contact-image-frame,
  .contact-hero-image {
    min-height: 350px;
    border-radius: 24px;
  }
}

/* ================================
   Landing Hero Carousel
================================ */

.hero-carousel-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero-carousel-slide {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(20, 15, 25, 0.94) 0%,
      rgba(31, 21, 38, 0.84) 38%,
      rgba(48, 27, 61, 0.52) 65%,
      rgba(48, 27, 61, 0.2) 100%
    );
}

.hero-carousel-glow {
  position: absolute;
  top: 10%;
  left: 20%;
  z-index: 1;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: rgba(169, 70, 245, 0.18);
  filter: blur(110px);
  pointer-events: none;
}

.hero-carousel-container {
  position: relative;
  z-index: 2;
}

.min-vh-hero {
  min-height: 720px;
}

.hero-carousel-content {
  max-width: 760px;
  padding: 6rem 0;
}

.hero-carousel-content .hero-title {
  max-width: 760px;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-carousel-content .hero-subtitle {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-carousel-indicators {
  z-index: 5;
  justify-content: flex-start;
  max-width: 1320px;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
  padding: 0 0.75rem;
}

.hero-carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  margin: 0 0.3rem;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.hero-carousel-indicators .active {
  width: 58px;
  background-color: var(--color-primary);
}

.hero-carousel-control {
  z-index: 5;
  width: 5%;
  opacity: 0.7;
}

.hero-carousel-control:hover {
  opacity: 1;
}

.hero-carousel-control .carousel-control-prev-icon,
.hero-carousel-control .carousel-control-next-icon {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background-color: rgba(24, 18, 29, 0.55);
  background-size: 45%;
  backdrop-filter: blur(12px);
}

.hero-carousel-section .carousel-item {
  transition: opacity 0.9s ease-in-out;
}

@media (max-width: 991px) {
  .hero-carousel-slide,
  .min-vh-hero {
    min-height: 650px;
  }

  .hero-carousel-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(20, 15, 25, 0.94) 0%,
        rgba(31, 21, 38, 0.82) 55%,
        rgba(48, 27, 61, 0.5) 100%
      );
  }

  .hero-carousel-content {
    max-width: 680px;
    padding: 5rem 1.5rem;
  }

  .hero-carousel-control {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-carousel-slide,
  .min-vh-hero {
    min-height: 680px;
  }

  .hero-carousel-slide {
    background-position: 65% center;
  }

  .hero-carousel-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(20, 15, 25, 0.76) 0%,
        rgba(20, 15, 25, 0.92) 45%,
        rgba(20, 15, 25, 0.98) 100%
      );
  }

  .hero-carousel-content {
    padding: 5rem 0 7rem;
  }

  .hero-carousel-content .hero-title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-carousel-content .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-carousel-content .hero-actions .btn {
    width: 100%;
  }

  .hero-carousel-indicators {
    justify-content: center;
    margin-bottom: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-section .carousel-item {
    transition: none;
  }
}

/* Full viewport hero carousel */

.hero-carousel-section,
.hero-carousel-section .carousel,
.hero-carousel-section .carousel-inner,
.hero-carousel-section .carousel-item,
.hero-carousel-slide,
.min-vh-hero {
  min-height: 100vh;
  height: 100vh;
}

.hero-carousel-slide {
  display: flex;
  align-items: center;
}

.hero-carousel-container {
  width: 100%;
}

.hero-carousel-content {
  padding: 0;
}

.source-marker {
  position: relative;
  top: -0.3em;
  margin-left: 0.15rem;
  color: var(--color-primary);
  font-size: 0.38em;
  font-weight: 900;
}

.section-source-note {
  max-width: 980px;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.section-source-note p {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  line-height: 1.55;
}

.section-source-note sup {
  color: var(--color-primary);
  font-weight: 900;
}

.section-source-note a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-decoration-color: rgba(255, 196, 0, 0.45);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.section-source-note a:hover {
  color: var(--color-primary);
}

/* ================================
   Who We Are
================================ */

.who-we-are-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(255, 196, 0, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 75%,
      rgba(169, 70, 245, 0.08),
      transparent 32%
    ),
    var(--color-bg-soft);
}

.who-we-are-intro {
  position: sticky;
  top: 120px;
}

.who-we-are-intro .section-title {
  margin-bottom: 1.4rem;
}

.who-we-are-callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.1rem;
  border: 1px solid rgba(43, 35, 49, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.who-we-are-callout-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary);
  color: var(--color-bg-dark);
  font-size: 1.2rem;
}

.who-we-are-callout span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.who-we-are-callout strong {
  display: block;
  color: var(--color-bg-dark);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.4;
}

.who-we-are-cards {
  display: grid;
  gap: 1rem;
}

.who-we-are-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(43, 35, 49, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.who-we-are-card:hover {
  transform: translateX(6px);
  border-color: rgba(169, 70, 245, 0.2);
  box-shadow: var(--shadow-md);
}

.who-we-are-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.14);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
}

.who-we-are-card h3 {
  margin-bottom: 0.65rem;
  color: var(--color-bg-dark);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.who-we-are-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.who-we-are-platform {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: 1rem;
  border: 1px solid rgba(43, 35, 49, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.who-we-are-platform-item {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
  color: var(--color-bg-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.who-we-are-platform-item i {
  color: var(--color-secondary);
  font-size: 1rem;
}

.who-we-are-platform-arrow {
  display: grid;
  place-items: center;
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.who-we-are-platform-core {
  display: flex;
  min-width: 220px;
  flex-direction: column;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--gradient-hero);
}

.who-we-are-platform-core span {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.who-we-are-platform-core strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
}

@media (max-width: 991px) {
  .who-we-are-intro {
    position: static;
  }

  .who-we-are-platform {
    flex-wrap: wrap;
  }

  .who-we-are-platform-item {
    min-width: calc(50% - 0.5rem);
  }

  .who-we-are-platform-arrow {
    display: none;
  }

  .who-we-are-platform-core {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .who-we-are-card {
    grid-template-columns: 1fr;
  }

  .who-we-are-platform {
    flex-direction: column;
  }

  .who-we-are-platform-item {
    width: 100%;
  }
}

.leadership-summary-cards {
  margin-top: 2rem;
}

.leadership-summary-cards .feature-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-summary-cards .feature-icon {
  margin-bottom: 1rem;
}

.leadership-summary-cards h3 {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .leadership-summary-cards .feature-card {
    min-height: 150px;
  }
}

/* ================================
   IP Protection Section - White Text Version
================================ */

.ip-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.ip-section .section-heading {
  margin-bottom: 2.8rem;
}

.ip-section .section-title {
  max-width: 780px;
  margin-inline: auto;
}

.ip-section .section-text {
  max-width: 760px;
}

.ip-card-grid {
  max-width: 1120px;
  margin-inline: auto;
}

.ip-visual-card {
  position: relative;
  min-height: 250px;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 45px rgba(22, 21, 28, 0.18);
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  opacity: 0.8;
}

.ip-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(22, 21, 28, 0.28);
}

/* Dark readability overlay */
.ip-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(22, 21, 28, 0.88) 0%,
      rgba(43, 35, 49, 0.78) 48%,
      rgba(85, 45, 114, 0.62) 100%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 196, 0, 0.24),
      transparent 32%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(169, 70, 245, 0.28),
      transparent 36%
    );
}

/* Extra subtle glass highlight */
.ip-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      transparent 45%
    );
  pointer-events: none;
}

.ip-card-content {
  position: relative;
  z-index: 3;
  max-width: 92%;
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  color: #ffffff;
}

.ip-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.96);
  color: #191620;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(255, 196, 0, 0.32);
}

.ip-visual-card h3 {
  margin: 0 0 0.65rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
}

.ip-visual-card p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.65;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.ip-security-panel {
  max-width: 1120px;
  margin-inline: auto;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(22, 21, 28, 0.08);
  box-shadow: 0 18px 45px rgba(22, 21, 28, 0.12);
  backdrop-filter: blur(14px);
}

.ip-security-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
}

.ip-security-row:nth-child(odd) {
  background: #faf7ef;
}

.ip-security-row span {
  color: var(--color-muted);
  font-family: var(--font-heading);
  font-weight: 800;
}

.ip-security-row strong {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: right;
}

/* Responsive */
@media (max-width: 991px) {
  .ip-visual-card {
    min-height: 250px;
  }
}

@media (max-width: 767px) {
  .ip-section .section-title {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .ip-visual-card {
    min-height: 290px;
  }

  .ip-card-content {
    max-width: 100%;
  }

  .ip-security-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .ip-security-row strong {
    text-align: left;
  }
}
/* ================================
   Difference Section - Image Icons
================================ */

.difference-section {
  position: relative;
  overflow: hidden;
}

.difference-section .section-heading {
  margin-bottom: 3rem;
}

.difference-section .section-title {
  max-width: 780px;
  margin-inline: auto;
}

.difference-section .section-text {
  max-width: 780px;
}

.difference-card {
  height: 100%;
  min-height: 360px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(22, 21, 28, 0.08);
  box-shadow: 0 18px 45px rgba(22, 21, 28, 0.1);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.difference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(22, 21, 28, 0.16);
}

.difference-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  height: 155px;
  margin: 0 auto 1.6rem;
  border-radius: 0;
  background: transparent;
}

.difference-icon-img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.difference-card h3 {
  margin: 0 0 0.8rem;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.difference-card p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
  .difference-card {
    min-height: 340px;
  }
}

@media (max-width: 767px) {
  .difference-card {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .difference-icon-wrap {
    width: 135px;
    height: 135px;
  }

  .difference-icon-img {
    width: 92px;
    height: 92px;
  }
}

/* ================================
   Executive Summary Visual Section
================================ */

.leadership-summary-section {
  position: relative;
  overflow: hidden;
}

.leadership-summary-section .section-title {
  max-width: 520px;
}

.leadership-summary-visual-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 24px 70px rgba(22, 21, 28, 0.16);
  isolation: isolate;
}

.leadership-summary-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      135deg,
      rgba(43, 35, 49, 0.76) 0%,
      rgba(85, 45, 114, 0.58) 46%,
      rgba(43, 35, 49, 0.68) 100%
    ),
    radial-gradient(
      circle at 68% 36%,
      rgba(169, 70, 245, 0.28),
      transparent 38%
    ),
    radial-gradient(
      circle at 18% 8%,
      rgba(255, 196, 0, 0.16),
      transparent 28%
    );
}

.leadership-summary-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      transparent 36%
    );
  pointer-events: none;
}

.leadership-summary-content {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.4rem);
}

.leadership-summary-lead {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  line-height: 1.55;
  font-weight: 500;
}

.leadership-summary-copy {
  max-width: 720px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1vw, 1.05rem);
  line-height: 1.75;
  font-weight: 500;
}

.leadership-summary-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.leadership-summary-mini-card {
  min-height: 112px;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 40px rgba(22, 21, 28, 0.16);
  backdrop-filter: blur(14px);
}

.leadership-summary-mini-card span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 900;
}

.leadership-summary-mini-card h3 {
  margin: 0;
  color: #05040a;
  font-family: var(--font-heading);
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

/* Responsive */
@media (max-width: 991px) {
  .leadership-summary-section .section-title {
    max-width: 760px;
  }

  .leadership-summary-visual-card,
  .leadership-summary-content {
    min-height: 460px;
  }
}

@media (max-width: 767px) {
  .leadership-summary-visual-card {
    min-height: auto;
    border-radius: 28px;
  }

  .leadership-summary-content {
    min-height: auto;
    padding: 2rem 1.35rem;
  }

  .leadership-summary-cards {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 2rem;
  }

  .leadership-summary-mini-card {
    min-height: auto;
  }
}

/* ================================
   Values Section
================================ */

.values-section .section-title {
  max-width: 850px;
  margin-inline: auto;
}

.values-card {
  min-height: 360px;
}

.values-card .difference-icon-wrap {
  width: 140px;
  height: 140px;
  margin-bottom: 1.4rem;
  background: transparent;
}

.values-card .difference-icon-img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.values-card h3 {
  font-size: 1.05rem;
}

.values-card p {
  max-width: 260px;
}

@media (max-width: 991px) {
  .values-card {
    min-height: 340px;
  }
}

@media (max-width: 767px) {
  .values-card {
    min-height: auto;
  }

  .values-card .difference-icon-wrap {
    width: 130px;
    height: 130px;
  }

  .values-card .difference-icon-img {
    width: 104px;
    height: 104px;
  }
}

/* ================================
   Contact Use Cases
================================ */

.contact-usecases-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.contact-usecases-section .section-title {
  max-width: 820px;
  margin-inline: auto;
}

.contact-usecase-card {
  min-height: 360px;
}

.contact-usecase-card .difference-icon-wrap {
  width: 140px;
  height: 140px;
  margin-bottom: 1.4rem;
  background: transparent;
}

.contact-usecase-card .difference-icon-img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.contact-usecase-card h3 {
  font-size: 1.05rem;
}

.contact-usecase-card p {
  max-width: 260px;
}

@media (max-width: 991px) {
  .contact-usecase-card {
    min-height: 340px;
  }
}

@media (max-width: 767px) {
  .contact-usecase-card {
    min-height: auto;
  }

  .contact-usecase-card .difference-icon-wrap {
    width: 130px;
    height: 130px;
  }

  .contact-usecase-card .difference-icon-img {
    width: 104px;
    height: 104px;
  }
}