@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap");

:root {
  --color-brand-black: #050a1a;
  --color-brand-white: #ffffff;
  --color-brand-accent: #007bffc4;
  --color-brand-accent-label: #007bff;
  --color-brand-accent-dim: #005fd1;
  --color-brand-border: rgba(255, 255, 255, 0.05);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  font-family: "Outfit", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  color: #fff;
  background: radial-gradient(circle at 50% 0%, #101b3d 0%, #050a1a 75%);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-brand-black);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 6%;
  background-color: rgba(5, 10, 26, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-brand-border);
}

.logo-image {
  height: 3.125rem;
  width: auto;
}

.nav-button,
.hero-button,
.cta-button {
  border: none;
  cursor: pointer;
  color: #fff;
  background: var(--color-brand-accent);
  border-radius: 0.375rem;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  transition: 0.2s ease;
}

.nav-button {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  letter-spacing: 0.1rem;
}

.nav-button:hover,
.hero-button:hover,
.cta-button:hover {
  background: var(--color-brand-accent-dim);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 2.5rem rgba(47, 128, 237, 0.4);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem;
  overflow: hidden;
}

.grid-background {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.05) 0%, transparent 100%);
}

.glow-orb {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 62.5rem;
  height: 31.25rem;
  background: radial-gradient(ellipse at center, rgba(0, 122, 255, 0.12) 0%, transparent 70%);
  filter: blur(5rem);
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 53.125rem;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: #007aff;
  background: rgba(0, 122, 255, 0.05);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 122, 255, 0.2);
  margin-bottom: 2.5rem;
}

.hero-tag span {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #007aff;
  box-shadow: 0 0 0.625rem #007aff;
}

.hero-title {
  font-size: clamp(4rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #00D1FF 0%, #007AFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(240, 244, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-weight: 300;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.pillars-section,
.insights-section,
.how-section {
  padding: 7rem 2rem;
  border-top: 1px solid var(--color-brand-border);
}

.pillars-section {
  background-color: #050a1a;
}

.insights-section {
  background-color: #070e20;
}

.how-section {
  background-color: #050a1a;
}

.container {
  max-width: 56.25rem;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  color: var(--color-brand-accent-label);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 0;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 1.75rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pillar-card:hover {
  background: rgba(0, 122, 255, 0.05);
  border-color: rgba(0, 122, 255, 0.3);
  transform: translateY(-0.375rem);
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.5);
}

.icon-wrapper {
  color: #007aff;
  flex-shrink: 0;
  filter: drop-shadow(0 0 0.5rem rgba(0, 122, 255, 0.4));
}

.icon-wrapper svg {
  width: 1.375rem;
  height: 1.375rem;
  stroke-width: 1.5;
}

.pillar-title {
  font-weight: 500;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.4;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.insight-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
  transition: 0.3s ease;
}

.insight-item:hover {
  background: rgba(0, 122, 255, 0.05);
  border-color: rgba(0, 122, 255, 0.25);
  transform: translateY(-0.25rem);
}

.insight-icon {
  color: #007aff;
  flex-shrink: 0;
  filter: drop-shadow(0 0 0.5rem rgba(0, 122, 255, 0.4));
}

.insight-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  stroke-width: 1.5;
}

.insight-item p {
  margin: 0;
  font-size: 0.830rem;
  color: rgba(240, 244, 255, 0.65);
  line-height: 1.5;
  font-weight: 300;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.insight-item p strong {
  color: #fff;
  font-weight: 600;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.deliverable-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  transition: 0.3s ease;
}

.deliverable-card:hover {
  background: rgba(0, 122, 255, 0.05);
  border-color: rgba(0, 122, 255, 0.25);
  transform: translateY(-0.25rem);
}

.deliverable-icon {
  color: #007aff;
  filter: drop-shadow(0 0 0.5rem rgba(0, 122, 255, 0.4));
}

.deliverable-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  stroke-width: 1.5;
}

.deliverable-card h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(240, 244, 255, 0.8);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-note {
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  color: rgba(255, 255, 255, 0.466);
}

.footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--color-brand-border);
  font-size: 0.625rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.473);
}

#blip-chat-open-iframe {
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  position: fixed !important;
  bottom: 0 !important;
  right: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

#blip-chat-container {
  z-index: 999998 !important;
}

.custom-chat-button {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.625rem;
  height: 3.625rem;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #007aff, #005fd1);
  color: #fff;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999999;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 122, 255, .25);
}

.custom-chat-button.is-open {
  background: #0a1229;
  border: 1px solid rgba(0, 122, 255, .3);
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    background-color: rgba(5, 10, 26, 0.97);
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.1;
  }

  .pillar-card,
  .insight-item,
  .deliverable-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
  }

  .icon-wrapper,
  .insight-icon,
  .deliverable-icon {
    filter: none !important;
  }

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

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

  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .deliverable-card {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem 1.75rem;
    gap: 1.25rem;
  }

  .deliverable-card h4 {
    font-size: 0.875rem;
    letter-spacing: 0.03rem;
  }

  .custom-chat-button {
    width: 3.375rem;
    height: 3.375rem;
    right: 1rem;
    bottom: 1rem;
  }

  #blip-chat-container {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-width: 100vw !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
  }

  #blip-chat-container iframe {
    display: block !important;
    width: 100vw !important;
    height: 100dvh !important;
    border-radius: 0 !important;
    transform: none !important;
    filter: none !important;
    image-rendering: auto;
  }
}