/* ==========================================================================
   COMPONENTS
   - Buttons, cards, badges, content blocks, interactive UI
   ========================================================================== */

.btn-primary {
  padding: 1.125rem 2.25rem;
  background: var(--charcoal);
  border: none;
  border-radius: 6px;
  color: var(--white);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--graphite);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.btn-secondary {
  padding: 1.125rem 2.25rem;
  background: transparent;
  border: 1px solid var(--warm-gray);
  border-radius: 6px;
  color: var(--charcoal);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: var(--charcoal);
  background: var(--cream);
}

.hero-demo {
  animation: fade-in 0.8s ease-out 0.6s backwards;
}

.chat-container {
  background: var(--ivory);
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02),
        0 8px 24px rgba(0,0,0,0.06),
        0 24px 60px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 460px;
  margin-left: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--sand);
}

.chat-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
}

.chat-header-info {
  flex: 1;
}

.chat-header-name {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--charcoal);
  margin-bottom: 0.125rem;
}

.chat-header-status {
  font-size: 0.8125rem;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.chat-header-status::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
}

.chat-modes {
  display: flex;
  gap: 0.5rem;
}

.chat-mode {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--stone);
}

.chat-mode i {
  font-size: 1.25rem;
}

.chat-mode:hover {
  background: var(--sand);
  color: var(--charcoal);
}

.chat-mode.active {
  background: var(--charcoal);
  color: var(--white);
}

.chat-body {
  padding: 1.5rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  max-width: 85%;
  animation: message-appear 0.4s ease-out backwards;
}

.chat-message:nth-child(1) {
  animation-delay: 1.2s;
}

.chat-message:nth-child(2) {
  animation-delay: 2s;
}

.chat-message:nth-child(3) {
  animation-delay: 3.2s;
}

.chat-message.user {
  margin-left: auto;
}

.chat-message.user .chat-bubble {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 18px 18px 4px 18px;
}

.chat-message.assistant .chat-bubble {
  background: var(--white);
  color: var(--charcoal);
  border-radius: 18px 18px 18px 4px;
  border: 1px solid var(--sand);
}

.chat-bubble {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  line-height: 1.55;
}

.chat-bubble strong {
  color: var(--gold-dark);
}

.chat-bubble .highlight {
  background: var(--success-light);
  padding: 0.125rem 0.5rem;
  border-radius: 3px;
  font-weight: 500;
}

.chat-meta {
  font-size: 0.75rem;
  color: var(--silver);
  margin-top: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-message.user .chat-meta {
  justify-content: flex-end;
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--sand);
}

.chat-input input {
  flex: 1;
  padding: 0.875rem 1.125rem;
  border: 1px solid var(--sand);
  border-radius: 24px;
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--ivory);
  outline: none;
  transition: border-color 0.2s ease;
}

.chat-input input:focus {
  border-color: var(--gold);
}

.chat-input input::placeholder {
  color: var(--silver);
}

.chat-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-send:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.value-strip {
  background: var(--charcoal);
  padding: 1.75rem 2rem;
}

.value-strip-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 400;
}

.value-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.value-item .icon i {
  font-size: 1.375rem;
}

section {
  padding: var(--section-padding) 2rem;
}

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

/* ==================== SECTION 1 (Home): Every piece of data deserves to be heard ==================== */
.heard-section {
  padding: clamp(3.5rem, 7vw, 5rem) 2rem;
  background: var(--ivory);
  text-align: center;
}

.heard-container {
  max-width: 980px;
}

.heard-section h2 {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.heard-section h2 em {
  color: var(--gold);
  font-style: italic;
}

.heard-subtitle {
  font-size: 1.125rem;
  color: var(--stone);
  max-width: 72ch;
  margin: 0 auto;
}

.ninety-section {
  background: var(--cream);
  position: relative;
}

.ninety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.ninety-stat {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ninety-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(10rem, 25vw, 16rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 0.85;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 2;
}

.ninety-number span {
  font-size: 0.4em;
  color: var(--gold);
}

.ninety-caption {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--stone);
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: -0.5rem;
}

.chaos-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 0.875rem 1.125rem;
  font-size: 0.875rem;
  color: var(--stone);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  z-index: 1;
}

.chaos-card:nth-child(1) {
  top: 10%;
  left: 5%;
  transform: rotate(-6deg);
  animation: float1 8s ease-in-out infinite;
}

.chaos-card:nth-child(2) {
  top: 5%;
  right: 10%;
  transform: rotate(4deg);
  animation: float2 9s ease-in-out infinite 0.5s;
}

.chaos-card:nth-child(3) {
  bottom: 25%;
  left: 0%;
  transform: rotate(-3deg);
  animation: float3 7s ease-in-out infinite 1s;
}

.chaos-card:nth-child(4) {
  bottom: 10%;
  right: 5%;
  transform: rotate(5deg);
  animation: float4 10s ease-in-out infinite 1.5s;
}

.chaos-card:nth-child(5) {
  top: 40%;
  left: -5%;
  transform: rotate(2deg);
  animation: float5 8s ease-in-out infinite 0.7s;
}

.ninety-content h2 {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ninety-content h2 .dim {
  color: var(--stone);
}

.ninety-content > p {
  font-size: 1.125rem;
  color: var(--stone);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.ninety-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ninety-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: var(--graphite);
  font-size: 1.0625rem;
}

.ninety-list li i {
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.never-section {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.never-section h2 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.never-section h2 .strike {
  position: relative;
  color: var(--silver);
}

.never-section h2 .strike::after {
  content: "";
  position: absolute;
  left: 0;
  top: 55%;
  width: 100%;
  height: 3px;
  background: var(--gold);
}

.never-section h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.never-tagline {
  font-size: 1.25rem;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.never-tagline strong {
  color: var(--gold-light);
}

.never-subtitle {
  font-size: 1.0625rem;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.never-features {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.never-feature {
  text-align: center;
  max-width: 200px;
}

.never-feature-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold-light);
}

.never-feature-icon i {
  font-size: 2rem;
}

.never-feature h4 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.never-feature p {
  font-size: 0.9375rem;
  color: var(--silver);
  line-height: 1.6;
}

.pocket-section {
  background: var(--white);
}

.pocket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pocket-content h2 {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.pocket-content h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.pocket-content > p {
  font-size: 1.125rem;
  color: var(--stone);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.mobile-first-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--charcoal);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.mobile-first-badge i {
  font-size: 1rem;
}

.pocket-apps {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}

.app-coming {
  font-size: 0.875rem;
  color: var(--stone);
}

.pocket-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pocket-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
}

.pocket-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
}

.pocket-feature-icon i {
  font-size: 1.5rem;
}

.pocket-feature-text h4 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.pocket-feature-text p {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.6;
}

.pocket-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 300px;
  background: var(--charcoal);
  border-radius: 40px;
  padding: 14px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.18),
        0 10px 30px rgba(0,0,0,0.12);
}

.phone-screen {
  background: var(--ivory);
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem;
  background: var(--white);
  border-bottom: 1px solid var(--sand);
}

.phone-avatar {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
}

.phone-header-text {
  flex: 1;
}

.phone-header-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.phone-header-status {
  font-size: 0.6875rem;
  color: var(--success);
}

.phone-body {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  overflow: hidden;
}

.phone-message {
  max-width: 80%;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  border-radius: 14px;
}

.phone-message.user {
  background: var(--charcoal);
  color: var(--white);
  margin-left: auto;
  border-radius: 14px 14px 3px 14px;
}

.phone-message.assistant {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--sand);
  border-radius: 14px 14px 14px 3px;
}

.phone-video-call {
  background: var(--white);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--sand);
}

.phone-video-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%;
  margin: 0 auto 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  color: var(--white);
}

.phone-video-label {
  font-size: 0.6875rem;
  color: var(--stone);
}

.shift-section {
  background: var(--ivory);
}

.shift-header {
  text-align: center;
  margin-bottom: 4rem;
}

.shift-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 400;
}

.shift-comparison {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.shift-before, .shift-after {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--sand);
}

.shift-before {
  border-radius: 16px 0 0 16px;
  border-right: none;
}

.shift-after {
  border-radius: 0 16px 16px 0;
  border-left: none;
}

.shift-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.shift-before .shift-label {
  color: var(--stone);
}

.shift-after .shift-label {
  color: var(--gold);
}

.shift-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.shift-time {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
  line-height: 1;
}

.shift-before .shift-time {
  color: var(--stone);
}

.shift-after .shift-time {
  color: var(--gold-dark);
}

.shift-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.shift-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--stone);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.shift-steps li i {
  flex-shrink: 0;
  margin-top: 0.125rem;
  font-size: 1.125rem;
}

.shift-before .shift-steps li i {
  color: var(--silver);
}

.shift-after .shift-steps li i {
  color: var(--success);
}

.shift-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
}

.shift-arrow {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.shift-arrow i {
  font-size: 1.5rem;
}

.shift-note {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand);
  font-size: 0.9375rem;
  color: var(--stone);
  line-height: 1.7;
}

.shift-subtitle {
  font-size: 1rem;
  color: var(--stone);
  margin-top: 0.75rem;
}

.shift-slider-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.shift-nav-dot {
  padding: 0.625rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 100px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--stone);
  cursor: pointer;
  transition: all 0.3s ease;
}

.shift-nav-dot:hover {
  border-color: var(--gold-light);
  color: var(--charcoal);
}

.shift-nav-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.shift-slider {
  position: relative;
  overflow: hidden;
}

.shift-slide {
  display: none;
  animation: slideIn 0.5s ease;
}

.shift-slide.active {
  display: block;
}

.shift-progress {
  max-width: 1100px;
  margin: 2rem auto 0;
  height: 3px;
  background: var(--sand);
  border-radius: 2px;
  overflow: hidden;
}

.shift-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  animation: progressFill 8s linear infinite;
}

.tragedy-section {
  background: var(--white);
}

.tragedy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tragedy-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.tragedy-header p {
  font-size: 1.125rem;
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto;
}

.tragedy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tragedy-card {
  background: var(--cream);
  padding: 2.25rem 1.75rem;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.tragedy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.tragedy-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--stone);
}

.tragedy-icon i {
  font-size: 1.625rem;
}

.tragedy-card h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.tragedy-card p {
  font-size: 0.9375rem;
  color: var(--stone);
  line-height: 1.6;
}

.tragedy-group {
  margin-bottom: 3rem;
}

.tragedy-group:last-child {
  margin-bottom: 0;
}

.tragedy-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.tragedy-subtitle i {
  font-size: 1rem;
  color: var(--gold-dark);
}

.tragedy-grid-three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.solution-section {
  background: var(--ivory);
}

.solution-header {
  text-align: center;
  margin-bottom: 4rem;
}

.solution-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.solution-header p {
  font-size: 1.125rem;
  color: var(--stone);
  max-width: 550px;
  margin: 0 auto;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.solution-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 14px;
  border: 1px solid var(--sand);
  transition: all 0.4s ease;
}

.solution-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.solution-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
}

.solution-icon i {
  font-size: 1.625rem;
}

.solution-card h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.solution-card p {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.7;
}

.needle-section {
  background: var(--charcoal);
  color: var(--white);
}

.needle-header {
  text-align: center;
  margin-bottom: 4rem;
}

.needle-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--white);
}

.needle-header p {
  font-size: 1.125rem;
  color: var(--silver);
  max-width: 650px;
  margin: 0 auto;
}

.needle-header em {
  color: var(--gold-light);
  font-style: italic;
}

.needle-examples {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 850px;
  margin: 0 auto;
}

.needle-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 2.25rem;
  transition: all 0.4s ease;
}

.needle-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.needle-query {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  line-height: 1.7;
}

.needle-response {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}

.needle-response-avatar {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.needle-response-content {
  flex: 1;
}

.needle-response-text {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 0.875rem;
  line-height: 1.7;
}

.needle-response-text strong {
  color: var(--white);
}

.needle-response-meta {
  display: flex;
  gap: 1.75rem;
  font-size: 0.8125rem;
}

.needle-response-meta .time {
  color: var(--gold-light);
}

.needle-response-meta .sources {
  color: var(--silver);
}

.sovereign-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.sovereign-container {
  max-width: 1000px;
  margin: 0 auto;
}

.sovereign-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sovereign-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.sovereign-badge i {
  color: var(--gold);
  font-size: 1.125rem;
}

.sovereign-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.sovereign-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.sovereign-header > p {
  font-size: 1.125rem;
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto;
}

.sovereign-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.comparison-column {
  padding: 2.75rem 2.25rem;
}

.comparison-column.danger {
  background: var(--charcoal);
  color: var(--white);
}

.comparison-column.safe {
  background: var(--white);
}

.comparison-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.comparison-column.danger .comparison-label {
  color: var(--danger);
}

.comparison-column.safe .comparison-label {
  color: var(--success);
}

.comparison-label i {
  font-size: 1rem;
}

.comparison-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1rem;
  line-height: 1.5;
}

.comparison-column.danger .comparison-list li {
  color: var(--silver);
}

.comparison-column.safe .comparison-list li {
  color: var(--graphite);
}

.comparison-list li i {
  flex-shrink: 0;
  margin-top: 0.125rem;
  font-size: 1.25rem;
}

.comparison-column.danger .comparison-list li i {
  color: #F87171;
}

.comparison-column.safe .comparison-list li i {
  color: var(--success);
}

.sovereign-cta {
  text-align: center;
  margin-top: 3.5rem;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 4.5rem 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.sovereign-cta p {
  font-size: 1.125rem;
  color: var(--stone);
  margin-bottom: 2.5rem;
}

.sovereign-cta p strong { color: var(--charcoal); }

.btn-sovereign {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 2.25rem;
  background: var(--charcoal);
  border: none;
  border-radius: 6px;
  color: var(--white);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-sovereign:hover {
  background: var(--graphite);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.btn-sovereign i {
  font-size: 1.25rem;
}

.cta-section {
  background: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--stone);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  padding: 5rem 2rem 2.5rem;
  background: var(--charcoal);
  color: var(--cream);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand .logo-mark {
  background: var(--white);
  color: var(--charcoal);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.7;
}

.footer-column h4 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-column a {
  color: var(--silver);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
  color: var(--silver);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--cream);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


/* ==================== HOMEPAGE LIBERATION SECTION ==================== */

.liberation-section {
    padding: var(--section-padding) 2rem;
    background: var(--cream);
    text-align: center;
}

.liberation-container {
    max-width: 1000px;
    margin: 0 auto;
}

.liberation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--charcoal);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.liberation-badge i {
    font-size: 1rem;
}

.liberation-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.liberation-subtitle {
    font-size: 1.25rem;
    color: var(--graphite);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.liberation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.liberation-card {
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: left;
}

.liberation-card-threat {
    background: var(--danger-light);
    border: 1px solid rgba(155, 44, 44, 0.15);
}

.liberation-card-solution {
    background: var(--success-light);
    border: 1px solid rgba(92, 138, 107, 0.15);
}

.liberation-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.liberation-card-threat .liberation-card-icon {
    background: rgba(155, 44, 44, 0.15);
    color: var(--danger);
}

.liberation-card-solution .liberation-card-icon {
    background: rgba(92, 138, 107, 0.15);
    color: var(--success);
}

.liberation-card-icon i {
    font-size: 1.5rem;
}

.liberation-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.liberation-card p {
    font-size: 1rem;
    color: var(--graphite);
    line-height: 1.7;
}

.liberation-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.liberation-cta .btn-primary,
.liberation-cta .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.liberation-cta .btn-primary {
    background: var(--charcoal);
    color: white;
}

.liberation-cta .btn-primary:hover {
    background: var(--graphite);
    transform: translateY(-2px);
}

.liberation-cta .btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--warm-gray);
}

.liberation-cta .btn-secondary:hover {
    border-color: var(--charcoal);
    background: var(--ivory);
}

.liberation-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--stone);
}

@media (max-width: 768px) {
    .liberation-section {
        padding: 4rem 1.25rem;
    }
    
    .liberation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .liberation-card {
        padding: 2rem 1.5rem;
    }
    
    .liberation-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .liberation-cta .btn-primary,
.liberation-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}


/* ==========================
   Liberté inline callout
   ========================== */
.liberte-inline {
    padding: 3.5rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, rgba(36, 112, 255, 0.08) 0%, rgba(255, 255, 255, 0.0) 65%);
}

.liberte-inline .container {
    max-width: 1100px;
}

.liberte-inline__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.liberte-inline__text {
    max-width: 720px;
}

.liberte-inline__actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.liberte-inline--compact {
    padding: 2.25rem 1.25rem;
}

@media (max-width: 768px) {
    .liberte-inline__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .liberte-inline__actions {
        width: 100%;
    }

    .liberte-inline__actions .btn-primary,
    .liberte-inline__actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* Liberté inline callout (premium) */
.liberte-inline {
  padding: 2.25rem 0;
  background: linear-gradient(180deg, rgba(30,58,95,0.96) 0%, rgba(21,42,69,0.96) 100%);
  color: var(--white);
}
.liberte-inline .container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.liberte-inline__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}
.liberte-inline .eyebrow { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; margin-bottom: 0.6rem; }
.liberte-inline .section-title { font-size: 1.75rem; line-height: 1.1; margin: 0 0 0.5rem; }
.liberte-inline .highlight { color: var(--gold-light); font-style: italic; }
.liberte-inline .subtitle { color: rgba(255,255,255,0.78); max-width: 46ch; margin: 0; }
.liberte-inline__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.liberte-inline .btn-primary, .liberte-inline .btn-secondary { border-radius: 999px; padding: 0.85rem 1.15rem; }
.liberte-inline .btn-primary { background: var(--gold); color: var(--charcoal); border: 1px solid rgba(255,255,255,0.08); }
.liberte-inline .btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.24); }
@media (max-width: 860px) { .liberte-inline__content { flex-direction: column; align-items: flex-start; } }

/* Liberté section on Home (Why pay for lock-in?) */
.liberation-section {
  padding: var(--section-padding) 2rem;
  background: linear-gradient(180deg, rgba(30,58,95,1) 0%, rgba(21,42,69,1) 100%);
  color: var(--white);
}

.liberation-section .liberation-title,
.liberation-section .liberation-subtitle {
  color: var(--white);
}

/* Reduce the "white squares" feel: use premium glass cards */
.liberation-section .liberation-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
}

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

.liberation-section .liberation-card-list li {
  color: rgba(255,255,255,0.78);
}

.liberation-section .liberation-card-icon {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.liberation-section .liberation-card-threat { border-left: 6px solid var(--danger); }
.liberation-section .liberation-card-solution { border-left: 6px solid var(--success); }

/* CTA buttons need contrast on the Liberté blue */
.liberation-section .liberation-cta .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.12);
}

.liberation-section .liberation-cta .btn-primary:hover {
  background: var(--gold-dark);
}

.liberation-section .liberation-cta .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.liberation-section .liberation-cta .btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}





/* --- Patch: restore Non-Sovereign AI label/icon accent (brighter red like original) --- */
.comparison-column.danger .comparison-label { color: #F87171; }
.comparison-column.danger .comparison-list li i { color: #F87171; }

/* --- Patch: Liberté section - remove side bands and style "old" as legacy --- */
.liberation-section .liberation-card-threat,
.liberation-section .liberation-card-solution {
  border-left: none !important;
}

.liberation-section .liberation-card {
  position: relative;
  overflow: hidden;
}

.liberation-section .liberation-card > * {
  position: relative;
  z-index: 1;
}

/* Legacy (old world) card: subtle diagonal wash + muted label */
.liberation-section .liberation-card-threat {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.liberation-section .liberation-card-threat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.07) 0px,
    rgba(255,255,255,0.07) 10px,
    rgba(0,0,0,0.00) 10px,
    rgba(0,0,0,0.00) 22px
  );
  opacity: 0.35;
  pointer-events: none;
}

.liberation-section .liberation-card-threat::before {
  content: "Legacy";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.12);
  backdrop-filter: blur(8px);
}

/* Liberté card: gold edge + richer glass */
.liberation-section .liberation-card-solution {
  background: rgba(184,149,110,0.12);
  border-color: rgba(184,149,110,0.45);
  box-shadow: 0 12px 45px rgba(0,0,0,0.18);
}

.liberation-section .liberation-card-solution::before {
  content: "Liberté";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: rgba(17,24,39,0.90);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.85);
}
