/* Wild Lotus Management – Magenta + Deep Black */
:root {
  --magenta: #fd2879;
  --magenta-soft: rgba(253, 40, 121, 0.15);
  --black: #000000;
  --white: #f0f0f0;
  --gray: #888888;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --container: 960px;
  --space: 1.5rem;
  --space-lg: 3rem;
  --glow: 0 0 40px rgba(253, 40, 121, 0.4), 0 0 80px rgba(253, 40, 121, 0.2);
  --black-soft: #0a0a0a;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  body::before {
    animation: none;
    opacity: 0.08;
  }
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}

body::before {
  content: "";
  position: fixed;
  inset: -80px;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(circle at 50% 50%, rgba(253, 40, 121, 0.06) 0, transparent 60%);
}

a {
  color: var(--magenta);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--white);
}

/* Focus visible for keyboard / ADA */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -3.5rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--magenta);
  color: var(--black);
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(253, 40, 121, 0.15);
  padding: 1rem 2rem;
}

.site-header .wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: 101;
  border-radius: var(--radius);
}
.nav-toggle-label span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--magenta);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.site-header nav {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-list a {
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
  padding: 0.5rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-list a:hover {
  color: var(--magenta);
}
.nav-list a.current {
  color: var(--magenta);
}

/* Main content wrapper */
main {
  padding-top: 80px;
  min-height: 100vh;
}
#main-content {
  scroll-margin-top: 80px;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space);
  min-width: 0;
}

/* Typography – headers pink */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--magenta);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: rgba(250, 250, 250, 0.9);
}

/* Buttons – pink, hover gold */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--magenta);
  background: var(--magenta);
  color: var(--black);
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(253, 40, 121, 0.3);
}

.btn:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--black);
  box-shadow: 0 0 25px rgba(253, 40, 121, 0.45);
}

.btn-solid {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--black);
}
.btn-solid:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--black);
  box-shadow: 0 0 25px rgba(253, 40, 121, 0.45);
}

/* Hero – video background, content on top; extend behind nav so transparent bar shows video */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space);
  padding-top: calc(80px + var(--space-lg));
  margin-top: -80px;
  position: relative;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: layout style;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero-video.active {
  opacity: 1;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero .wrap {
  max-width: 560px;
}

.hero .logo-hero {
  height: 100px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.5)) drop-shadow(0 0 24px rgba(0,0,0,0.3));
}

.hero h1 {
  margin-bottom: 0.5rem;
  color: var(--magenta);
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 14px rgba(0,0,0,0.7), 0 0 28px rgba(0,0,0,0.4), 0 0 42px rgba(0,0,0,0.25);
}

.hero-subline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 14px rgba(0,0,0,0.7), 0 0 28px rgba(0,0,0,0.4), 0 0 42px rgba(0,0,0,0.25);
}

.hero .btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About page hero – image background */
.hero-about {
  background-image: url("../assets/heroabout.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-about .hero-content h1 {
  text-shadow: 0 0 14px rgba(0,0,0,0.7), 0 0 28px rgba(0,0,0,0.4), 0 0 42px rgba(0,0,0,0.25);
}

/* Logo wheel – full-width white strip, shorter, larger logos */
.logo-wheel-wrap {
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  overflow: hidden;
  background: #fff;
}
.logo-wheel-track {
  overflow: hidden;
  width: 100%;
}
.logo-wheel-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: logo-wheel-scroll 40s linear infinite;
  width: max-content;
}
.logo-wheel-inner:hover {
  animation-play-state: paused;
}
.logo-wheel-img {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
@keyframes logo-wheel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section blocks – single container, no cards */
.section {
  padding: var(--space-lg) var(--space);
  margin: 0 auto;
  max-width: var(--container);
}

.section-alt {
  /* same container, no extra background */
}

.section .section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}

.section-head h2 {
  margin-bottom: 0.5rem;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--gray);
}

/* Services grid (home) – no card boxes */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  padding: 1rem 1.25rem;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--magenta);
}

.service-card h3 {
  color: var(--magenta);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.service-card p {
  margin-bottom: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #e8e8e8;
  font-weight: 600;
  font-family: var(--font-body);
}

/* Testimonials + Case studies – no boxes, typography-led */
.testimonial-block {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(253, 40, 121, 0.12);
}

.testimonial-block:last-of-type {
  border-bottom: none;
}

.testimonial-card {
  background: none;
  border: none;
  border-left: 3px solid var(--magenta);
  padding: 0 0 0 1rem;
  margin-bottom: var(--space);
}

.testimonial-card .quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.testimonial-card .author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--magenta);
}

.testimonial-card .role {
  font-size: 0.9rem;
  color: var(--gray);
}

.testimonial-raw {
  margin-top: var(--space-lg);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  border-left: 3px solid var(--magenta);
  padding-left: 1rem;
}

.case-study {
  background: none;
  border: none;
  padding: 0;
  margin-top: var(--space);
  padding-left: 1rem;
  border-left: 1px solid rgba(253, 40, 121, 0.2);
}

.case-study h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--magenta);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.case-study p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: rgba(250, 250, 250, 0.85);
}

.case-study p:last-child {
  margin-bottom: 0;
}

/* Platform list – minimal tags */
.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: var(--space) 0 var(--space-lg);
}

.platform-tag {
  padding: 0.35rem 0.75rem;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 500;
}

.platform-tag::after {
  content: "·";
  margin-left: 0.5rem;
  color: var(--magenta);
}

.platform-tag:last-child::after {
  display: none;
}

/* Services page – same container, no card */
.services-main .page-header-services,
.section-services {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space) var(--space);
}
.services-main .page-header-services {
  text-align: center;
  padding-bottom: 0.5rem;
}
.services-main .page-header-services h1 {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--magenta);
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.services-main .page-header-services p {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 0;
}
.section-services .platform-list {
  margin: 0.75rem 0 var(--space-lg);
}
.section-services .service-detail:first-child {
  padding-top: 0;
  border-top: none;
}

/* Home page: same container, no extra box */
.section-home {
  /* uses .section container */
}

/* Page headers – centered, no card */
.page-header {
  padding: var(--space-lg) var(--space);
  margin: 0 auto;
  max-width: var(--container);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.5rem;
  color: var(--magenta);
}

.page-header p {
  max-width: 560px;
  margin: 0 auto;
}

.page-header-blog .page-header-contact-text {
  text-align: center;
}

/* Contact page: header matches rest of site (no box) */
.page-header-contact {
  padding: var(--space-lg) var(--space);
  margin: 0 auto;
  max-width: var(--container);
  text-align: center;
}
.page-header-contact .page-header-contact-text h1 {
  color: var(--magenta);
}
.page-header-contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.page-header-contact-text {
  text-align: center;
}
.page-header-contact-text h1 {
  margin-bottom: 0.2rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.page-header-contact-text p {
  margin: 0 auto;
  font-size: 0.95rem;
  max-width: none;
}
.blog-index-logo-link {
  display: block;
  margin-bottom: 1rem;
}
.blog-index-logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.blog-index-logo-link:hover {
  opacity: 0.9;
}
.chat-area-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
}
.chat-area-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.chat-form-section {
  padding-top: 1rem;
}

/* Services page – no boxes, dividers only */
.service-detail {
  margin-bottom: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(253, 40, 121, 0.15);
}
.service-detail:first-child {
  padding-top: 0;
  border-top: none;
}

.service-detail h2 {
  color: var(--magenta);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-detail p {
  color: rgba(250, 250, 250, 0.9);
  margin-bottom: 0.75rem;
}

.service-detail ul {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

.service-detail li {
  margin-bottom: 0.35rem;
  color: rgba(250, 250, 250, 0.85);
}

/* About page */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 2.5rem;
  align-items: start;
}
.about-content {
  max-width: 720px;
  margin: 0 auto;
}
.about-layout .about-content {
  margin: 0;
  max-width: none;
}
.about-sidebar {
  position: static;
}
.about-founder-card {
  background: none;
  border: none;
  border-top: 1px solid rgba(253, 40, 121, 0.2);
  padding: var(--space) 0;
  margin-bottom: var(--space);
}
.about-founder-card:first-child {
  border-top: none;
  padding-top: 0;
}
.about-founder-card:last-child {
  margin-bottom: 0;
}
.about-founder-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.about-founder-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--magenta);
  margin-bottom: 0.2rem;
}
.about-founder-role {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}
.about-founder-bio {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(250, 250, 250, 0.88);
  margin: 0;
}

.about-content .section {
  padding: 0;
}

.page-header-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--magenta);
}

/* Podcast page */
.page-header-podcast {
  text-align: center;
}
.page-header-podcast .podcast-logo {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 280px;
  height: auto;
}
.page-header-podcast h1 {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.page-header-podcast .page-header-tagline {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.podcast-content {
  max-width: 560px;
  margin: 0 auto;
}
.podcast-content p {
  margin-bottom: 1rem;
}
.podcast-lead {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.podcast-h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--magenta);
  margin: 2rem 0 0.75rem;
}
.podcast-episodes {
  font-style: italic;
}
.podcast-tagline {
  margin-top: 2rem;
  margin-bottom: 0;
}

.manifesto p {
  margin-bottom: 1.25rem;
}

.manifesto-punch {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--magenta);
  margin: 1.5rem 0;
}

.manifesto-punch strong {
  color: var(--magenta);
}

.manifesto-list {
  margin: 0.5rem 0 1.5rem 1.5rem;
  list-style: none;
}

.manifesto-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: rgba(250, 250, 250, 0.9);
}

.manifesto-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--magenta);
}

/* Blog */
.blog-list {
  list-style: none;
}

.blog-list li {
  border-bottom: 1px solid rgba(253, 40, 121, 0.2);
  padding: 1.5rem 0;
}

.blog-list a {
  color: var(--white);
  display: block;
}

.blog-list a:hover {
  color: var(--magenta);
}

.blog-list .date {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.blog-list h3 {
  color: inherit;
  margin-bottom: 0.25rem;
}

/* Blog section – same container, no box */
.section.blog-section {
  max-width: var(--container);
}

.blog-section {
  padding-top: var(--space);
}
.blog-layout {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.blog-main {
  flex: 1;
  min-width: 0;
}
.blog-box {
  padding: 0;
  border: none;
  background: none;
}
.blog-box .blog-list {
  margin: 0;
  padding: 0;
}
.blog-box .blog-list li {
  padding: 1rem 0;
  border-top: 1px solid rgba(253, 40, 121, 0.12);
}
.blog-box .blog-list li:first-child {
  padding-top: 0;
  border-top: none;
}

/* Blog index: grid – no card boxes */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: 0;
}
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.blog-card:hover .blog-card-title {
  color: var(--magenta);
}
.blog-card-image,
.blog-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 0;
}
.blog-card-image {
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.blog-card-image img {
  border: none;
}
.blog-card-category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.25rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.35;
  transition: color 0.2s ease;
}
.blog-card-summary {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--gray);
  margin: 0.25rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-index-divider {
  height: 1px;
  background: rgba(253, 40, 121, 0.15);
  margin: var(--space-lg) 0;
}

/* Blog index: featured + sidebar – no boxes */
.blog-index-layout {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.blog-index-bios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.blog-index-bio-block {
  min-width: 0;
}
.blog-index-bio-block .post-author-photo {
  margin-bottom: 0.5rem;
}
.blog-index-bio-block .post-author-bio {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(250, 250, 250, 0.88);
}
.blog-featured {
  flex: 1;
  min-width: 0;
}
.blog-featured-category {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.5rem;
}
.blog-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.blog-featured-title a {
  color: var(--white);
  text-decoration: none;
}
.blog-featured-title a:hover {
  color: var(--magenta);
}
.blog-featured-byline {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.blog-featured-image-link {
  display: block;
  margin-bottom: 1rem;
  overflow: hidden;
}
.blog-featured-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--black);
}
.blog-featured-excerpt {
  color: rgba(250, 250, 250, 0.85);
  margin-bottom: 1rem;
}
.blog-index-sidebar {
  flex-shrink: 0;
  width: 320px;
  position: sticky;
  top: 100px;
  border-left: 1px solid rgba(253, 40, 121, 0.15);
  padding-left: 1.5rem;
}

/* Single post page: two-column + author sidebar */
.post-page {
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.post-divider {
  height: 1px;
  background: rgba(253, 40, 121, 0.2);
  margin-bottom: 2rem;
}
.post-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.post-main {
  flex: 1;
  min-width: 0;
}
.post-breadcrumb {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
  text-align: right;
}
.post-breadcrumb a {
  color: var(--gray);
}
.post-breadcrumb a:hover {
  color: var(--magenta);
}
.post-lbl-header {
  display: block;
  margin-bottom: 1.25rem;
  text-align: center;
}
.post-lbl-header:hover {
  opacity: 0.9;
}
.post-lbl-logo {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.post-lbl-byline {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253, 40, 121, 0.2);
  text-align: center;
}
.post-lbl-byline-logo {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto 0.5rem;
  display: block;
  opacity: 0.9;
}
.post-lbl-byline-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
  letter-spacing: 0.02em;
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.post-byline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 2rem;
}
.post-featured-image {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(253, 40, 121, 0.2);
}
.post-featured-img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--black-soft);
  padding: 2rem;
  box-sizing: border-box;
  object-fit: contain;
}
.post-body {
  font-size: 1.05rem;
  line-height: 1.7;
}
.post-body h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.post-body p {
  margin-bottom: 1.25rem;
}
.post-body a {
  color: var(--magenta);
  text-decoration: underline;
}
.post-body a:hover {
  color: var(--magenta);
}
.post-body-fig {
  margin: 2rem 0;
}
.post-body-fig .post-body-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Post sidebar: author */
.post-sidebar {
  flex-shrink: 0;
  width: 220px;
  position: sticky;
  top: 100px;
  border-left: 1px solid rgba(253, 40, 121, 0.2);
  padding-left: 1.5rem;
}
.post-sidebar-inner {
  padding-top: 0.5rem;
}
.post-sidebar-divider {
  height: 1px;
  background: rgba(253, 40, 121, 0.2);
  margin-bottom: 1.5rem;
}
.post-author-greeting {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
  text-align: center;
}
.post-author-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid rgba(253, 40, 121, 0.2);
}
.post-author-bio {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(250, 250, 250, 0.85);
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(253, 40, 121, 0.2);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.footer-logo {
  height: 84px;
  width: auto;
  opacity: 0.9;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: rgba(250, 250, 250, 0.85);
}
.footer-nav a:hover {
  color: var(--magenta);
}

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: var(--gray);
}

/* Contact – chat thread form */
.section.chat-form-section {
  max-width: 1000px;
}
.chat-form-section {
  padding-top: 1rem;
}
.chat-form-wrap {
  max-width: none;
  margin: 0 auto;
}
.chat-form-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
/* Contact: chat first on mobile, sidebar left on desktop */
.chat-main {
  order: 1;
}
.chat-sidebar {
  order: 2;
  flex-shrink: 0;
  width: 180px;
  position: sticky;
  top: 100px;
}
@media (min-width: 769px) {
  .chat-sidebar {
    order: 1;
  }
  .chat-main {
    order: 2;
  }
}
.chat-sidebar-box {
  background: var(--black-soft);
  border: 1px solid rgba(253, 40, 121, 0.25);
  border-radius: 14px;
  padding: 1rem;
}
.chat-sidebar-title {
  font-size: 0.9rem;
  color: var(--magenta);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: none;
}
.chat-sidebar-founders {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-sidebar-founder {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(253, 40, 121, 0.15);
}
.chat-sidebar-founder:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.chat-sidebar-photo {
  width: 100%;
  max-width: 56px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.chat-sidebar-photo.photo-zee,
.about-founder-photo.photo-zee,
.post-author-photo.photo-zee {
  object-position: 50% 25%;
}
.chat-sidebar-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.1rem;
}
.chat-sidebar-role {
  font-size: 0.75rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.chat-sidebar-bio {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(250, 250, 250, 0.85);
  margin: 0;
}
.chat-main {
  flex: 1;
  min-width: 0;
  min-height: 0;
}
.chat-form {
  display: block;
}
.chat-box {
  border: 1px solid rgba(253, 40, 121, 0.3);
  border-radius: 20px;
  padding: 1.25rem;
  background: rgba(10, 10, 10, 0.6);
}
.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.chat-msg-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.chat-msg-tara { align-self: flex-start; max-width: 92%; }
.chat-msg-you { align-self: flex-end; max-width: 92%; }
.chat-msg-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.chat-msg-tara .chat-msg-label { color: var(--white); }
.chat-msg-you .chat-msg-label { color: rgba(250, 250, 250, 0.7); }
.chat-from-tara {
  margin: 0;
  padding: 1rem 1.25rem;
  background: rgba(253, 40, 121, 0.15);
  border: 1px solid rgba(253, 40, 121, 0.35);
  border-radius: 18px 18px 18px 6px;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.5;
  font-family: var(--font-body);
}
.chat-from-tara.chat-send {
  color: var(--magenta);
  margin-top: 0.5rem;
}
.chat-bubble.chat-reply {
  align-self: flex-end;
  max-width: 100%;
  width: 100%;
}
.chat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.35rem;
}
.chat-input,
.chat-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(20, 20, 20, 0.95);
  border: 2px solid var(--magenta);
  border-radius: 18px 18px 6px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.chat-input::placeholder,
.chat-textarea::placeholder {
  color: var(--gray);
}
.chat-input:focus,
.chat-textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(253, 40, 121, 0.35);
}
.chat-input:focus-visible,
.chat-textarea:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 2px;
}
.chat-textarea {
  resize: vertical;
  min-height: 100px;
}
.chat-submit-wrap {
  margin-top: 0.5rem;
}
.chat-submit-wrap .btn {
  min-height: 48px;
  padding: 0.85rem 1.75rem;
}

/* Interactive chat: messages container + typing + user reply */
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 220px;
  max-height: 55vh;
  overflow-y: auto;
  margin-bottom: 1rem;
  padding-right: 0.5rem;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar {
  width: 8px;
}
.chat-messages::-webkit-scrollbar-track {
  background: var(--black-soft);
  border-radius: 4px;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: var(--magenta);
  border-radius: 4px;
}
.chat-messages::-webkit-scrollbar-thumb:hover {
  background: var(--magenta);
}
.chat-user-reply {
  align-self: flex-end;
  max-width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px 18px 6px 18px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
}
.chat-typing-wrap {
  align-self: flex-start;
  gap: 0.25rem;
}
.chat-typing {
  padding: 1rem 1.25rem;
  background: rgba(253, 40, 121, 0.15);
  border: 1px solid rgba(253, 40, 121, 0.35);
  border-radius: 18px 18px 18px 6px;
  min-width: 60px;
}
.chat-typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}
.chat-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
  opacity: 0.7;
  animation: typingBounce 0.6s ease-in-out infinite alternate;
}
.chat-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
  to { transform: translateY(-4px); opacity: 1; }
}
.chat-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}
.chat-input-row .chat-input,
.chat-input-row .chat-textarea {
  flex: 1;
  margin-bottom: 0;
}
.chat-input-row .btn {
  flex-shrink: 0;
  min-height: 48px;
}
.chat-final-cta {
  margin-top: 0.5rem;
}

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cta-block {
  margin-top: 2.5rem;
  padding-top: 1rem;
}
.cta-block-btn {
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Responsive: tablet and down */
@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.95);
  }
  .site-header .wrap {
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
  }
  .nav-toggle {
    display: block;
  }
  .nav-toggle-label {
    display: flex;
    margin-left: auto;
  }
  .site-header nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    order: 10;
  }
  .nav-toggle:checked ~ nav {
    max-height: 400px;
    opacity: 1;
  }
  .nav-list {
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0 1.25rem;
    border-top: 1px solid rgba(253, 40, 121, 0.2);
    margin-top: 0.5rem;
    align-items: center;
    text-align: center;
  }
  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-list li:last-child {
    border-bottom: none;
  }
  .nav-list a {
    padding: 1.1rem 1rem;
    min-height: 56px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  main {
    padding-top: 100px;
  }
  #main-content {
    scroll-margin-top: 100px;
  }
  .page-header {
    padding-top: 1.5rem;
  }
  .page-header h1 {
    scroll-margin-top: 100px;
  }
  .wrap {
    padding: 0 1rem;
  }
  .chat-form-layout,
  .blog-layout {
    flex-direction: column;
    gap: 1.5rem;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-index-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .blog-index-bios {
    grid-template-columns: 1fr;
  }
  .blog-index-sidebar {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border-left: none;
    border-top: 1px solid rgba(253, 40, 121, 0.2);
    padding-left: 0;
    padding-top: 1.5rem;
    position: static;
  }
  .post-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .post-sidebar {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border-left: none;
    border-top: 1px solid rgba(253, 40, 121, 0.2);
    padding-left: 0;
    padding-top: 1.5rem;
    position: static;
  }
  .post-breadcrumb {
    text-align: left;
  }
  .post-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }
  .chat-sidebar {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .chat-sidebar-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .chat-sidebar-photo {
    width: 80px;
    height: 80px;
    aspect-ratio: 1;
    margin-bottom: 0;
  }
  .chat-sidebar-title {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  .chat-sidebar-name,
  .chat-sidebar-role {
    margin-bottom: 0;
  }
  .chat-sidebar-bio {
    width: 100%;
    margin-top: 0.25rem;
  }
  .hero {
    margin-top: -100px;
    padding: var(--space-lg) var(--space);
    padding-top: calc(100px + var(--space-lg));
    min-height: 65vh;
  }
  .hero .logo-hero {
    height: 72px;
    margin-bottom: 1.5rem;
  }
  .hero .btns {
    gap: 0.75rem;
  }
  .btn {
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .section {
    padding: var(--space-lg) var(--space);
  }
  .page-header {
    padding: var(--space-lg) var(--space);
  }
  .page-header-contact {
    padding: var(--space-lg) var(--space);
  }
  .page-header-contact-text {
    text-align: center;
  }
  .page-header-contact-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .chat-area-logo {
    justify-content: center;
    padding: 1rem 0 0;
  }
  .page-header p {
    font-size: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    padding: 0;
  }
  .platform-tag::after {
    display: inline;
  }
  .testimonial-card {
    padding-left: 1rem;
  }
  .case-study {
    padding-left: 1rem;
  }
  .service-detail {
    margin-bottom: 2rem;
  }
  .site-footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    margin-top: 3rem;
  }
  .site-footer .wrap {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .footer-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 0.5rem;
  }
  /* Home: more space between section head and service cards / lines */
  .section-home .section-head {
    margin-bottom: 2rem;
  }
  .section-home .platform-list {
    margin-bottom: 1.5rem;
  }
  .section-home .services-grid {
    margin-top: 0.5rem;
    gap: 1.25rem;
  }
  .section-home .service-card {
    padding-left: 1rem;
    padding-top: 0.5rem;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-sidebar {
    position: static;
    display: block;
  }
  .about-founder-card {
    margin-bottom: 1rem;
  }
  .about-content.manifesto .manifesto-punch {
    font-size: 1.1rem;
  }
  .chat-from-tara {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }
  .chat-input, .chat-textarea {
    padding: 0.65rem 0.9rem;
  }
}

/* Responsive: small phones */
@media (max-width: 480px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .site-header {
    padding: 0.5rem 0.75rem;
  }
  .logo-img {
    height: 40px;
  }
  .hero {
    padding: var(--space) 0.75rem;
  }
  .hero .logo-hero {
    height: 60px;
  }
  h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  h2 {
    font-size: clamp(1.4rem, 5vw, 1.85rem);
  }
  .footer-logo {
    height: 72px;
  }
}
