/* Location Ledger Main Styles */
@import url('./variables.css');
@import url('./animations.css');

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--body-size);
  line-height: 1.6;
  color: var(--color-paragraph);
  background-color: var(--color-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
}

h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: var(--h1-line-height);
}

h2 {
  font-size: var(--h2-size);
  font-weight: 400;
  line-height: var(--h2-line-height);
}

h3 {
  font-size: var(--h3-size);
  font-weight: 400;
  line-height: var(--h3-line-height);
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
  font-weight: 400;
  line-height: var(--h5-line-height);
}

p {
  color: var(--color-paragraph);
  margin-bottom: var(--space-md);
}

a {
  color: var(--blue-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--blue-300);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  transition: background var(--transition-base);
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

.nav-logo:hover {
  color: #fff;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
}

.nav-logo-text {
  display: flex;
  align-items: baseline;
}

.trademark {
  font-size: 0.6em;
  vertical-align: super;
  opacity: 0.7;
}

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

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.nav-link:hover {
  opacity: 0.8;
  color: #fff;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile slide-in menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  padding: 100px 32px 32px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.mobile-menu-link:hover {
  opacity: 0.8;
  color: #fff;
}

/* AI Defense Tools Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity var(--transition-fast);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
}

.nav-dropdown-trigger:hover {
  opacity: 0.8;
}

.nav-dropdown-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.nav-dropdown.active .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #0d1731;
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.nav-dropdown.active .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(8px + 1rem) 24px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-dropdown-description {
  font-family: 'Space Grotesk', sans-serif;
  font-size: calc(16px + 0.125rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
  max-width: 40rem;
}

.nav-dropdown-items {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  transition: background 0.2s ease;
  min-width: 140px;
}

.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown-item-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
}

.nav-dropdown-item-icon img {
  max-height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.nav-dropdown-item-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.nav-dropdown-item-wordmark {
  height: 16px;
  width: auto;
  opacity: 0.9;
}

.nav-dropdown-item-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

/* Mobile: AI Defense Tools accordion */
.mobile-dropdown-toggle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.mobile-dropdown-toggle .nav-dropdown-chevron {
  transition: transform 0.2s ease;
}

.mobile-dropdown-toggle.active .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-items {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 12px 0 0 16px;
}

.mobile-dropdown-items.active {
  display: flex;
}

.mobile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 8px 0;
  transition: opacity var(--transition-fast);
}

.mobile-dropdown-item:hover {
  opacity: 0.8;
}

.mobile-dropdown-item-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-dropdown-item-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mobile-dropdown-item-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-dropdown-panel {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 56px;
  margin-top: 6rem;
  overflow: hidden;
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--btn-secondary-bg);
  border: 1px solid var(--btn-secondary-stroke);
  border-radius: var(--radius-full);
  font-size: var(--small-size);
  color: var(--blue-300);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-paragraph);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Centered Hero Variant */
.hero-centered {
  padding: 56px 0 80px;
  min-height: auto;
  text-align: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Text - animation ready */
.hero-text {
  max-width: 800px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
}

.hero-text.animate-ready {
  opacity: 0;
  transform: translateY(25px);
}

.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: calc(var(--h1-line-height) * 1.15);
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.hero-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--h2-size);
  font-weight: 400;
  line-height: var(--h2-line-height);
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}

.hero-h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--h5-size);
  font-weight: 400;
  line-height: var(--h5-line-height);
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}

.hero-body-stack {
  margin-bottom: 24px;
  text-align: center;
}

.hero-body-stack p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: calc(18px + 0.125rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  line-height: 1.5;
}

.hero-description {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #106af3;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  border-radius: 12px;
  border: 1px solid #6eb1fb;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: #114ba3;
  color: white;
}

.hero-secondary-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.hero-secondary-link:hover {
  color: #fff;
}

/* Hero Image with Blue Glow */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-blur-bg-holder {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  transform-style: preserve-3d;
}

.hero-blue-blur {
  position: absolute;
  width: 910px;
  height: 1560px;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, white, var(--blue-500) 31%, var(--blue-700) 49%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-40% - 3rem));
  pointer-events: none;
  opacity: 0;
  transform-style: preserve-3d;
}

.blur-image {
  position: absolute;
  width: 630px;
  max-width: 100%;
  z-index: 0;
  opacity: 0;
  transform-style: preserve-3d;
}

.hero-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  width: 200%;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, var(--color-bg) 80%);
  z-index: 10;
  pointer-events: none;
}

.hero-hands-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

.hero-image-wrapper.animate-ready {
  opacity: 0;
  transform: translateY(100px);
}

/* Hero Phone - animation ready (legacy) */
.hero-phone {
  margin-top: 60px;
  position: relative;
  width: 100%;
  max-width: 368px;
  transform: translateY(0);
}

.hero-phone.animate-ready {
  transform: translateY(100px);
  opacity: 0;
}

.phone-frame {
  position: relative;
  width: 100%;
}

.phone-app-screen {
  width: 100%;
  height: auto;
  border-radius: 32px;
  display: block;
}

/* Recording dot pulse animation */
.recording-dot {
  position: absolute;
  top: 12%;
  right: 18%;
  width: 12px;
  height: 12px;
  background: #ff3b5c;
  border-radius: 50%;
  animation: pulse-recording 1.5s ease-in-out infinite;
}

@keyframes pulse-recording {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .hero-centered {
    padding: 56px 0 60px;
  }
  
  .hero-h1 {
    font-size: var(--h1-size);
  }
  
  .hero-h5 {
    font-size: var(--h5-size);
  }
  
  .hero-body-stack p {
    font-size: calc(16px + 0.125rem);
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-phone {
    max-width: 299px;
    margin-top: 40px;
  }
  
  .phone-app-screen {
    border-radius: 24px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--btn-primary);
  color: white;
  border: 1px solid var(--btn-primary-border);
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
  color: white;
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--color-heading);
  border: 1px solid var(--btn-secondary-stroke);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(116, 171, 255, 0.1);
  color: var(--color-heading);
}

.btn-outline {
  background: transparent;
  color: var(--color-heading);
  border: 1px solid var(--stroke-white);
}

.btn-outline:hover {
  border-color: var(--blue-400);
  color: var(--blue-400);
}

/* Sections */
.section {
  padding: var(--space-3xl) 0;
  scroll-margin-top: 4rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-size: var(--small-size);
  font-weight: 600;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  color: var(--color-text-grey);
}

/* Title Container with 3D Transform */
.title-container {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
  transform-style: preserve-3d;
  opacity: 1;
}

/* Section Intro (centered above content) */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-intro-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-intro-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Deepfakes Section */
.section-deepfakes {
  padding: 100px 0 0 0;
}

.deepfakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.deepfakes-image {
  position: relative;
}

/* Early Access Card with 3D Transform */
.early-access-card {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
  transform-style: preserve-3d;
}

.deep-fake-background {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.surveillance-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.deepfakes-content {
  padding-left: 20px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #106af3;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.verified-badge svg {
  stroke: #106af3;
}

.deepfakes-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.deepfakes-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}

.deepfakes-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 32px;
}

.deepfakes-list li {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 12px;
}

.deepfakes-list li::marker {
  color: #106af3;
}

.deepfakes-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.deepfakes-secondary-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: #106af3;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.deepfakes-secondary-link:hover {
  opacity: 0.8;
  color: #106af3;
}

/* Animation ready class */
.anim-fade-up {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .deepfakes-grid {
    gap: 40px;
  }
  
  .deepfakes-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .section-deepfakes {
    padding: 60px 0;
  }
  
  .section-intro {
    margin-bottom: 40px;
  }
  
  .section-intro-title {
    font-size: 28px;
  }
  
  .deepfakes-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .deepfakes-content {
    padding-left: 0;
  }
  
  .deepfakes-list li {
    margin-bottom: 8px;
    line-height: 1.5;
  }
  
  .checked-list-holder {
    margin-bottom: 12px;
  }
  
  .check-list-text {
    line-height: 1.5;
  }
  
  .deepfakes-title {
    font-size: 24px;
  }
  
  .deepfakes-cta {
    align-items: center;
  }
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--stroke-gray);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--blue-700);
  background: rgba(16, 106, 243, 0.05);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue-400);
}

.feature-title {
  font-size: var(--h4-size);
  margin-bottom: var(--space-sm);
}

.feature-description {
  color: var(--color-text-grey);
  font-size: var(--small-size);
  margin-bottom: 0;
}

/* Stats Section */
.stats {
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--blue-800);
  border-bottom: 1px solid var(--blue-800);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  padding: var(--space-lg);
}

.stat-number {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--blue-400);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--small-size);
  color: var(--color-text-grey);
}

/* How It Works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding: var(--space-xl);
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-heading);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: 50%;
}

.step-title {
  margin-bottom: var(--space-sm);
}

.step-description {
  color: var(--color-text-grey);
  font-size: var(--small-size);
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  text-align: center;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--color-bg) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  margin: var(--space-3xl) 0;
}

.cta-title {
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--stroke-gray);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: var(--space-md);
}

.footer-description {
  color: var(--color-text-grey);
  font-size: var(--small-size);
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--stroke-gray);
  border-radius: var(--radius-md);
  color: var(--color-text-grey);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--blue-700);
  color: var(--color-heading);
}

.footer-column h4 {
  font-size: var(--small-size);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--color-text-grey);
  font-size: var(--small-size);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--stroke-gray);
}

.footer-copyright {
  color: var(--color-text-grey);
  font-size: var(--small-size);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: var(--color-text-grey);
  font-size: var(--small-size);
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 400px;
}

.newsletter-input {
  flex: 1;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke-gray);
  border-radius: var(--radius-md);
  color: var(--color-heading);
  font-family: var(--font-family);
  font-size: var(--small-size);
}

.newsletter-input::placeholder {
  color: var(--color-text-grey);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--blue-500);
}

/* Lightbox/Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: var(--space-md);
  padding: 60px 40px;
  background: #1a1a1a;
  border: 1px solid rgba(16, 106, 243, 0.3);
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(16, 106, 243, 0.4), 0 0 100px rgba(16, 106, 243, 0.2);
  transform: scale(0.95);
  transition: transform var(--transition-base);
  text-align: center;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color var(--transition-fast);
  z-index: 10;
}

.lightbox-close svg {
  width: 28px;
  height: 28px;
}

.lightbox-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-xl);
}

.lightbox-logo svg {
  width: 24px;
  height: 24px;
}

.lightbox-logo span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #106af3;
}

.lightbox-logo .trademark {
  font-size: 0.75rem;
  vertical-align: super;
}

.lightbox-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.lightbox-subtitle {
  text-align: center;
  color: var(--color-text-grey);
  font-size: 0.9375rem;
  margin-bottom: var(--space-xl);
}

.lightbox-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.lightbox-form input {
  padding: 16px;
  background: rgba(30, 40, 60, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: var(--body-size);
  text-align: center;
}

.lightbox-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.lightbox-form input:focus {
  outline: none;
  border-color: #106af3;
  box-shadow: 0 0 0 3px rgba(16, 106, 243, 0.2);
}

.btn-lightbox-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #106af3;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.btn-lightbox-submit:hover {
  background: #4a96f7;
}

.btn-lightbox-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-lightbox-submit svg {
  width: 16px;
  height: 16px;
}

.lightbox-privacy {
  text-align: center;
}

.lightbox-privacy p {
  font-size: 0.8125rem;
  color: var(--color-text-grey);
  margin-bottom: 4px;
  line-height: 1.4;
}

.lightbox-privacy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .lightbox-content {
    padding: 40px 24px;
    margin: var(--space-md);
    max-width: calc(100% - 32px);
  }
  
  .lightbox-title {
    font-size: 1.5rem;
  }
  
  .lightbox-close {
    top: -8px;
    right: -8px;
  }
}

/* Blog Styles */
.blog-header {
  padding: calc(72px + var(--space-3xl)) 0 var(--space-2xl);
  text-align: center;
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--color-bg) 100%);
}

.blog-header-text {
  color: var(--color-text-grey);
  font-size: var(--body-size);
  margin-bottom: 0;
}

/* Blog Card */
.blog-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.blog-card:hover {
  border-color: rgba(16, 106, 243, 0.3);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(16, 106, 243, 0.2), rgba(16, 106, 243, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: var(--blue-400);
  opacity: 0.5;
}

.blog-card-content {
  padding: var(--space-xl);
}

.blog-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  color: var(--color-text-grey);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-text-grey);
}

.blog-card-readmore {
  color: var(--blue-400);
  font-weight: 500;
}

/* Blog Article */
/* Sidebar Related Cases Styling */
.sidebar-related {
    margin-top: 2rem;
}

.sidebar-related h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.sidebar-related-item {
    display: block;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-related-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.related-item-title {
    font-size: 0.9375rem;
    line-height: 1.4;
    margin: 0.75rem 0;
    color: var(--color-text);
}

.related-item-link {
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 500;
}

.no-related {
    color: var(--color-text-dim);
    font-size: 0.875rem;
    font-style: italic;
}

/* Blog Sidebar Layout */
.blog-container-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .blog-container-with-sidebar {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        margin-top: 3rem;
        padding-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

/* Case study tags and other elements */
.badge-outcome {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
}

.badge-prevented {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.badge-successful_fraud {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.badge-ongoing {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.badge-resolved {
    background: rgba(16, 106, 243, 0.1);
    color: var(--color-primary);
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--color-text-dim);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.blog-article {
    padding-bottom: 0;
}

.article-header {
  padding: calc(72px + var(--space-2xl)) 0 var(--space-xl);
  text-align: left;
}

.article-header .container {
  max-width: 960px;
}

.article-category {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.article-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-heading);
  margin-bottom: var(--space-md);
}

.article-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 0;
}

.feature-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.feature-tag-pill {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--blue-700);
  border-radius: 9999px;
  white-space: nowrap;
}

.article-date {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--blue-400);
  margin-bottom: var(--space-lg);
}

.blog-article .line-wrapper {
  margin: calc(var(--space-xl) - 20px) auto var(--space-lg);
  max-width: 960px;
}

.article-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--container-padding) var(--space-3xl);
}

.article-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
}

.article-lead {
  font-size: 1.25rem !important;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
}

.article-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.article-content strong {
  color: var(--color-heading);
  font-weight: 600;
}

.article-content em {
  font-style: italic;
}

.article-content ol,
.article-content ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.article-content li {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
}

.article-content blockquote {
  margin: var(--space-2xl) 0;
  padding: var(--space-lg) var(--space-xl);
  border-left: 4px solid var(--blue-500);
  background: rgba(16, 106, 243, 0.1);
  border-radius: 0 8px 8px 0;
}

.article-content blockquote p {
  margin-bottom: 0;
  font-style: italic;
}

.nav-link-active {
  color: var(--blue-400) !important;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--stroke-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  border-color: var(--blue-700);
  transform: translateY(-4px);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: var(--space-lg);
}

.blog-card-meta {
  display: flex;
  gap: var(--space-md);
  font-size: var(--small-size);
  color: var(--color-text-grey);
  margin-bottom: var(--space-sm);
}

.blog-card-title {
  font-size: var(--h4-size);
  margin-bottom: var(--space-sm);
}

.blog-card-title a {
  color: var(--color-heading);
}

.blog-card-title a:hover {
  color: var(--blue-400);
}

.blog-card-excerpt {
  color: var(--color-text-grey);
  font-size: var(--small-size);
  margin-bottom: 0;
}

/* Blog Index Page */
.blog-index {
  min-height: 100vh;
}

.blog-header-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: var(--space-md);
}

.blog-header-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-grey);
  max-width: 600px;
}

.blog-hero-section {
  padding: var(--space-2xl) 0;
}

.blog-hero-card {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.blog-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.blog-hero-title a {
  color: var(--color-heading);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-hero-title a:hover {
  color: var(--blue-400);
}

.blog-hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-heading);
  margin-bottom: var(--space-lg);
}

.blog-hero-excerpt {
  font-size: 1rem;
  color: var(--color-text-grey);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.blog-hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.9375rem;
}

.blog-hero-meta time {
  color: var(--color-text-grey);
}

.blog-featured-section,
.blog-all-section {
  padding: var(--space-2xl) 0;
}

.blog-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
}

.blog-post-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--stroke-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.blog-post-card:hover {
  border-color: var(--blue-700);
  transform: translateY(-4px);
}

.blog-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.blog-card-title a {
  color: var(--color-heading);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-card-title a:hover {
  color: var(--blue-400);
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  color: var(--color-text-grey);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.blog-card-meta time {
  color: var(--color-text-grey);
}

.blog-read-more {
  color: var(--blue-400);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-read-more:hover {
  color: var(--blue-300);
}

.blog-category-section {
  margin-bottom: var(--space-2xl);
}

.blog-category-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--stroke-gray);
}

.blog-empty {
  text-align: center;
  color: var(--color-text-grey);
  font-size: 1.125rem;
  padding: var(--space-2xl);
}

/* Blog Post */
.post-header {
  padding: calc(72px + var(--space-3xl)) 0 var(--space-xl);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.post-category {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--blue-800);
  color: var(--blue-300);
  font-size: var(--small-size);
  font-weight: 500;
  border-radius: var(--radius-full);
}

.post-date {
  color: var(--color-text-grey);
  font-size: var(--small-size);
}

.post-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: var(--space-lg);
}

.post-featured-image {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
}

.post-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.post-content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.post-content p {
  margin-bottom: var(--space-md);
}

.post-content ul,
.post-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.post-content li {
  margin-bottom: var(--space-sm);
}

.post-content blockquote {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: rgba(16, 106, 243, 0.1);
  border-left: 4px solid var(--blue-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post-content blockquote p {
  margin-bottom: 0;
  font-style: italic;
}

.post-content code {
  padding: 2px 6px;
  background: var(--stroke-gray);
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 0.9em;
}

/* Legal Pages */
.legal-header {
  padding: calc(72px + var(--space-3xl)) 0 var(--space-xl);
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--color-bg) 100%);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--stroke-gray);
}

.legal-content p,
.legal-content ul {
  margin-bottom: var(--space-md);
}

.legal-content ul {
  padding-left: var(--space-xl);
}

.legal-content li {
  margin-bottom: var(--space-sm);
}

.legal-updated {
  color: var(--color-text-grey);
  font-size: var(--small-size);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--stroke-gray);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-blue {
  color: var(--blue-400);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   NEW SECTIONS - 6 Card Features Grid
   ======================================== */

.section-features-grid {
  padding: 0;
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.gradient-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  margin: 0 auto var(--space-xl);
  border-radius: 2px;
}

.features-header-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  color: var(--color-heading);
}

.features-header-text {
  font-size: var(--body-size);
  color: var(--color-text-grey);
  line-height: 1.6;
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card-new {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--space-xl);
  transition: border-color var(--transition-base);
}

.feature-card-new:hover {
  border-color: rgba(16, 106, 243, 0.3);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(16, 106, 243, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.feature-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue-400);
}

.feature-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-sm);
}

.feature-card-text {
  font-size: 0.9375rem;
  color: var(--color-text-grey);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========================================
   TWO COLUMN SECTIONS
   ======================================== */

.section-two-col {
  padding: 3rem 0;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-intro-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-heading);
}

.section-intro-text {
  font-size: var(--body-size);
  color: var(--color-text-grey);
  line-height: 1.6;
  margin-bottom: 0;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.two-col-reverse {
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

.two-col-image {
  display: flex;
  justify-content: center;
}

.two-col-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.phone-mockup-img {
  max-width: 320px;
  border-radius: 32px;
}

.two-col-content {
  max-width: 500px;
}

.content-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.badge-icon-box {
  width: 36px;
  height: 36px;
  background: rgba(16, 106, 243, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon-box svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-400);
}

.content-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: 0.05em;
}

.two-col-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  color: var(--color-heading);
}

.two-col-title-large {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  color: var(--color-heading);
}

.two-col-text {
  font-size: var(--body-size);
  color: var(--color-text-grey);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.two-col-text:last-of-type {
  margin-bottom: var(--space-xl);
}

.two-col-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

.two-col-secondary-link {
  font-size: 0.9375rem;
  color: var(--color-text-grey);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.two-col-secondary-link:hover {
  color: var(--color-heading);
}

/* ========================================
   WHY WORLD CHAIN SECTION
   ======================================== */

.section-world-chain {
  padding: var(--space-3xl) 0;
}

.section-header-badge {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.badge-text-blue {
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.section-header-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  color: var(--color-heading);
}

.section-header-subtitle {
  font-size: var(--body-size);
  color: var(--color-text-grey);
  line-height: 1.6;
  margin-bottom: 0;
}

.world-chain-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.world-chain-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
}

.world-chain-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #106af3;
  margin-bottom: var(--space-lg);
}

.world-chain-card-text {
  font-size: var(--body-size);
  color: var(--color-text-grey);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.world-chain-card-text:last-child {
  margin-bottom: 0;
}

.world-chain-card-text-underline {
  font-size: var(--body-size);
  color: var(--color-text-grey);
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 0;
}

.world-chain-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-grey);
  opacity: 0.7;
  margin-bottom: 0;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.section-pricing {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #0a0a0f 50%, var(--color-bg) 100%);
}

.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.pricing-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-heading);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.pricing-card-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 8px;
}

.pricing-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: var(--space-lg);
}

.pricing-includes {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: var(--space-md);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: #333;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  stroke: #106af3;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: var(--space-lg);
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ========================================
   NEW FOOTER
   ======================================== */

.footer-new {
  background: linear-gradient(180deg, #0a1628 0%, #030a14 100%);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid rgba(16, 106, 243, 0.3);
  position: relative;
}

.footer-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(16, 106, 243, 0.6) 50%, transparent 100%);
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-logo-new {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-xs);
}

.footer-logo-new:hover {
  color: var(--color-heading);
}

.footer-logo-new .trademark {
  font-size: 0.75rem;
  vertical-align: super;
}

.footer-description-new {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 0;
}

.footer-column-new h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.footer-links-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-new li {
  margin-bottom: var(--space-xs);
}

.footer-links-new a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links-new a:hover {
  color: #ffffff;
}

.footer-bottom-new {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-xl);
  text-align: left;
}

.footer-copyright-new {
  font-size: 0.8125rem;
  color: var(--color-text-grey);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.footer-disclaimer-new {
  font-size: 0.6875rem;
  color: var(--color-text-grey);
  opacity: 0.6;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

/* ========================================
   RESPONSIVE - NEW SECTIONS
   ======================================== */

@media (max-width: 1024px) {
  .features-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .two-col-grid {
    gap: var(--space-2xl);
  }
  
  .world-chain-cards {
    gap: var(--space-md);
  }
  
  .footer-grid-new {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .features-grid-new {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .two-col-reverse {
    direction: ltr;
  }
  
  .two-col-reverse .two-col-content {
    order: 1;
  }
  
  .two-col-reverse .two-col-image {
    order: 2;
  }
  
  .two-col-content {
    max-width: 100%;
  }
  
  .phone-mockup-img {
    max-width: 280px;
  }
  
  .world-chain-cards {
    grid-template-columns: 1fr;
  }
  
  .world-chain-card {
    padding: var(--space-xl);
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricing-card {
    padding: var(--space-xl);
  }
  
  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer-description-new {
    max-width: 100%;
  }
}

/* ========================================
   WEBFLOW-STYLE COMPONENTS
   ======================================== */

/* Nav Logo Image */
.nav-logo-image {
  height: 32px;
  width: auto;
}

/* Hero Phone Holder (two-layer structure - matches Webflow) */
.hero-phone-holder {
  position: relative;
  width: 100%;
  max-width: 759px;
  z-index: 1;
  margin: 0 auto;
  transform: translateX(14%);
  margin-bottom: -1rem;
}

.hero-phone-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-phone-screenshot-holder {
  position: absolute;
  inset: 0;
  padding: 2.5% 41.5% 34% 13%;
}

.hero-phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.hero-secondary-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-tertiary-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* App Store Buttons */
.app-store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.app-store-btn:hover {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.5);
}

.app-store-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.app-store-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

.app-store-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .app-store-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .app-store-btn {
    padding: 8px 12px;
    gap: 6px;
    width: 100%;
    justify-content: center;
  }
  
  .app-store-icon {
    width: 22px;
    height: 22px;
  }
  
  .app-store-name {
    font-size: 15px;
  }
  
  .app-store-label {
    font-size: 10px;
  }
}

/* Pricing card app store buttons - stack vertically */
.pricing-buttons {
  flex-direction: column;
  gap: 8px;
}

.pricing-buttons .app-store-btn {
  justify-content: center;
  padding: 8px 16px;
}

.pricing-buttons .app-store-icon {
  width: 24px;
  height: 24px;
}

.pricing-buttons .app-store-name {
  font-size: 16px;
}

/* Blue Line Wrapper Components */
.line-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 24px;
  position: relative;
}

.line-wrapper.bot {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.blue-line-static {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #106af3, transparent);
  position: relative;
}

.blue-line-static.blur {
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(8px);
  opacity: 0.6;
}

/* Feature Blue Line Wrapper (vertical dividers) */
.blue-line-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  display: flex;
  flex-direction: column;
}

.blue-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #106af3, transparent);
}

.blue-line._01 {
  opacity: 1;
}

.blue-line._02 {
  position: absolute;
  filter: blur(4px);
  opacity: 0.6;
}

/* Features Grid 3x Layout */
.features-grid-3x {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
}

.feature-item-center {
  position: relative;
  padding: 40px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(16, 106, 243, 0.2);
}

.feature-item-center:nth-child(3) .blue-line-wrapper,
.feature-item-center:nth-child(6) .blue-line-wrapper {
  display: none;
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature-icon-holder {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.feature-heading-small {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.feature-content p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Section Intro Subtitle */
.section-intro-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--h6-size);
  font-weight: 400;
  line-height: var(--h6-line-height);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  max-width: 800px;
}

/* Badge Icon Image */
.badge-icon-img {
  width: 16px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Early Access Grid Layout */
.early-access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.early-access-grid.location {
  grid-template-columns: 1fr 1fr;
}

.early-access-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.early-access-card.iphone {
  display: flex;
  justify-content: center;
}

/* Silent Guardian Wrapper */
.silent-guardian-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.silent-guardian-iphone {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 24px;
}

.your-data {
  display: flex;
  justify-content: center;
}

/* Early Access Content Holder */
.early-access-content-holder {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.early-access-tag-holder {
  display: flex;
  align-items: center;
  gap: 12px;
}

.early-access-tag-container {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-image {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.tagline-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #106af3;
  text-transform: uppercase;
}

.early-access-title-holder {
  margin-bottom: 8px;
}

.early-access-title-holder .title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.early-access-paragraph-holder p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}

.early-access-button-holder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.button-sub-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Attestation Grid */
.attestation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.attestation-grid.location {
  grid-template-columns: 1fr 1fr;
}

.attestation-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Multiple Phone Holder (two phones side by side) */
.multiple-phone-holder {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
}

.multiple-phone-holder.iphone {
  position: relative;
}

.firstphone,
.secondphone {
  flex: 1;
  max-width: 200px;
}

.two-phones {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.secondphone {
  margin-top: 40px;
}

/* World Chain Section */
.world-chain-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.worldchain-title-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.worldchain-title-container .title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin: 16px 0 24px;
}

.world-paragraph-holder h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--h6-size);
  font-weight: 400;
  line-height: var(--h6-line-height);
  color: rgba(255, 255, 255, 0.8);
}

.world-chain-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.world-chain-grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.world-chain-reason {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.world-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.sub-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Pricing Section (Webflow Style) */
.center-text {
  text-align: center;
  margin-bottom: 60px;
}

.title-holder .title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-holder {
  display: flex;
  justify-content: center;
}

.pricing-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
}

.pricing-table-holder {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-table-holder._02 {
  border: 1px solid #106af3 !important;
}

.pricing-table {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-header-holder {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.pricing-list-holder {
  flex: 1;
  margin-bottom: 24px;
}

.w-list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checked-list-holder {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.check-icon-holder {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon {
  width: 100%;
  height: auto;
}

.check-list-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.pricing-footer-holder {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-price-holder {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.pricing {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.pricing-description {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-button-holder {
  width: 100%;
}

.pricing-button-holder .btn-hero-primary {
  width: 100%;
}

/* Footer (Webflow Style) */
.footer {
  background: linear-gradient(180deg, black, var(--blue-700));
}

.footer-holder {
  padding: 80px 0 40px;
}

.footer-details-holder {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid #106af3;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: inline-block;
}

.footer-logo-image {
  height: 32px;
  width: auto;
}

.footer-description {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  max-width: 280px;
}

.footer-link-holder {
  display: flex;
  gap: 80px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 32px;
  text-align: left;
}

.footer-copyright {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.7;
  max-width: 900px;
  margin: 0;
}

/* Lightbox Updates */
.lightbox-logo-image {
  height: 40px;
  width: auto;
}

.close-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.lightbox-close:hover .close-icon {
  opacity: 1;
}

.lightbox-title-holder {
  text-align: center;
  margin-bottom: 24px;
}

.lightbox-input-holder {
  width: 100%;
}

.lightbox-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.lightbox-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.lightbox-input:focus {
  border-color: #106af3;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* Text Subheader */
.text-subheader {
  font-size: var(--h6-size);
  line-height: var(--h6-line-height);
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
}

/* Overflow Utilities */
.overflow-hidden {
  overflow: hidden;
}

/* Privacy First Section */
.privacy-first .early-access-grid {
  grid-template-columns: 1fr 1fr;
}

/* Responsive Styles for Webflow Components */
@media (max-width: 991px) {
  .hero-phone-holder {
    max-width: 575px;
    margin: 0 auto;
    transform: translateX(14%);
  }
  
  .hero-blue-blur {
    width: 750px;
    height: 1200px;
  }
  
  .features-grid-3x {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-item-center:nth-child(2) .blue-line-wrapper,
  .feature-item-center:nth-child(4) .blue-line-wrapper,
  .feature-item-center:nth-child(6) .blue-line-wrapper {
    display: none;
  }
  
  .early-access-grid,
  .attestation-grid,
  .privacy-first .early-access-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .world-chain-grids {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .worldchain-title-container .title,
  .title-holder .title {
    font-size: 36px;
  }
  
  .early-access-title-holder .title {
    font-size: 32px;
  }
  
  .footer-details-holder {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pricing-content {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .nav-logo-image {
    width: 200px;
    height: auto;
  }
  
  .features-grid-3x {
    grid-template-columns: 1fr;
  }
  
  .feature-item-center .blue-line-wrapper {
    display: none;
  }
  
  /* Attestation grid - content on top, images below on mobile */
  .attestation-grid.location {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
  
  .attestation-content {
    text-align: center;
  }
  
  .attestation-content .app-store-buttons {
    justify-content: center;
  }
  
  .multiple-phone-holder {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  
  .firstphone,
  .secondphone {
    max-width: 160px;
    flex: 0 0 auto;
  }
  
  .secondphone {
    margin-top: 0;
  }
  
  .hero-phone-holder {
    max-width: 460px;
    margin: 0 auto;
    transform: none;
  }
  
  .hero-blue-blur {
    width: 500px;
    height: 800px;
    top: 50%;
    transform: translate(-50%, -35%);
  }
  
  .footer-link-holder {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-links {
    gap: 4px;
  }
  
  .footer-links a {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .footer-nav-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }
  
  .footer-logo-image {
    width: 200px;
    height: auto;
  }
  
  .footer-description {
    max-width: 100%;
    width: 100%;
  }
  
  .footer-column-title {
    font-size: 1.125rem;
  }
  
  .worldchain-title-container .title,
  .title-holder .title {
    font-size: 28px;
  }
  
  .early-access-title-holder .title {
    font-size: 28px;
  }
  
  .footer-disclaimer {
    font-size: 14px;
    text-transform: none;
  }
}

/* ========== Defense Briefing Callout ========== */
.briefing-callout-section {
    padding: 60px 24px;
}

.briefing-callout-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.briefing-callout {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(120deg, #052860 0%, #093d91 20%, #0c52c2 50%, #106af3 100%);
    border-radius: 16px;
    padding: 32px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.briefing-callout:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16, 106, 243, 0.3);
    border-color: rgba(255,255,255,0.2);
}

.briefing-callout::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.briefing-callout::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 30%;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.callout-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.callout-content {
    flex: 1;
    min-width: 0;
}

.callout-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
}

.callout-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.callout-description {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin-bottom: 18px;
}

.callout-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    color: #1e40af;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.briefing-callout:hover .callout-btn {
    background: #f0f9ff;
    transform: translateX(2px);
}

.arrow-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.briefing-callout:hover .arrow-icon {
    transform: translateX(3px);
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    min-width: 0;
}

.stat-box {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
    transition: all 0.2s ease;
}

.briefing-callout:hover .stat-box {
    background: rgba(255,255,255,0.18);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 9px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .briefing-callout-section {
        padding: 40px 16px;
    }

    .briefing-callout {
        padding: 28px 24px;
    }

    .callout-container {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .callout-description {
        margin-bottom: 16px;
    }

    .stats-grid {
        width: 100%;
        max-width: 280px;
    }
}
