/* ============================================
   VIDHRA LANDING PAGE
   Warm charcoal + amber gold + artistic SVG backgrounds
   ============================================ */

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

:root {
  --bg: #f8f6f3;
  --bg-alt: #fff;
  --ink: #191919;
  --ink-soft: #666;
  --ink-muted: #999;
  --accent: #D4943C;
  --accent-light: #F5E3C8;
  --accent-dark: #BD832F;
  --surface: #fff;
  --surface-border: rgba(0, 0, 0, 0.07);
  --dark-bg: #131318;
  --dark-bg-2: #1c1c24;
  --blue: #5b6ef5;
  --purple: #a855f7;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   DECORATIVE SVG BACKGROUNDS
   ============================================ */
.bg-art {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-art-svg {
  width: 100%;
  height: 100%;
}

.section-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-art-svg {
  width: 100%;
  height: 100%;
}

.mission-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mission-art-svg {
  width: 100%;
  height: 100%;
}

/* ----- REVEAL ANIMATION ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.35s, box-shadow 0.35s;
}

.nav.scrolled {
  background: rgba(248, 246, 243, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--surface-border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.nav-logo-svg {
  height: 28px;
  width: auto;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--ink);
}

.nav-cta {
  margin-left: 8px;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  padding: 11px 22px;
  border-radius: 10px;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(212, 148, 60, 0.25);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 148, 60, 0.08), transparent);
}

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

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 148, 60, 0.1);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 28px;
  border: 1px solid rgba(212, 148, 60, 0.2);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.accent {
  background: linear-gradient(135deg, var(--accent) 0%, #e8a240 40%, #f7c97e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}

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

.hero-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.hero-link:hover {
  gap: 10px;
}

/* ----- Hero mockup ----- */
.hero-visual {
  position: relative;
}

.hero-mockup {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 2px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.mockup-window {
  background: var(--dark-bg-2);
  border-radius: 26px;
  overflow: hidden;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.titlebar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.titlebar-dot.red {
  background: #ff5f57;
}

.titlebar-dot.yellow {
  background: #febc2e;
}

.titlebar-dot.green {
  background: #28c840;
}

.mockup-body {
  display: flex;
  min-height: 320px;
}

.mock-sidebar {
  width: 180px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.mock-sidebar-item.active {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.mock-sidebar-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mock-sidebar-item.active .mock-sidebar-icon {
  background: var(--accent);
}

.mock-editor {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-h1 {
  height: 18px;
  width: 65%;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
}

.mock-line {
  height: 9px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.mock-line.w90 {
  width: 90%;
}

.mock-line.w75 {
  width: 75%;
}

.mock-line.w60 {
  width: 60%;
}

.mock-line.w40 {
  width: 40%;
}

.mock-line.w85 {
  width: 85%;
}

.mock-spacer {
  height: 8px;
}

.mock-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--accent);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 2px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* floating badge on mockup */
.hero-float-badge {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-float-badge.badge-top {
  top: -16px;
  right: -20px;
}

.hero-float-badge.badge-bottom {
  bottom: 20px;
  left: -24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28c840;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ============================================
   SECTION LAYOUT
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-label-light {
  color: var(--accent-light);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 560px;
  margin-top: 16px;
}

.section-header {
  margin-bottom: 56px;
}

/* ============================================
   FEATURES — bento grid
   ============================================ */
.features-section {
  background: var(--bg);
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 148, 60, 0.3), rgba(91, 110, 245, 0.3), rgba(168, 85, 247, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(212, 148, 60, 0.06);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-wide {
  grid-column: span 7;
}

.feature-card-narrow {
  grid-column: span 5;
}

.feature-card-visual {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.feature-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.feature-card-visual .card-mockup {
  position: relative;
  z-index: 1;
}

.fv-editor {
  background: linear-gradient(155deg, #1c1c24 0%, #252530 100%);
  background-color: #1c1c24;
}

/* Real editor screenshot */
.feature-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.fv-palette {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/a/aa/Claude_Monet_-_Water_Lilies_-_1906%2C_Chicago.jpg');
  background-color: #2a3520;
}

.fv-share {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/2/21/Pierre-Auguste_Renoir%2C_Le_Moulin_de_la_Galette.jpg');
  background-color: #2a2520;
}

.fv-ai {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/4/4c/Edgar_Degas_-_The_Dance_Class_-_Google_Art_Project.jpg');
  background-color: #2a2515;
}

/* ----- Card Mockup Graphics ----- */
.card-mockup {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  padding: 16px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  overflow: hidden;
}

.fv-editor .card-mockup {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.06);
}

.mockup-sidebar {
  width: 35%;
  padding-right: 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fv-editor .mockup-sidebar {
  border-color: rgba(255, 255, 255, 0.06);
}

.mockup-content {
  flex: 1;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mockup-line {
  height: 7px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.08);
}

.fv-editor .mockup-line {
  background: rgba(255, 255, 255, 0.1);
}

.mockup-line.short {
  width: 40%;
}

.mockup-line.medium {
  width: 65%;
}

.mockup-line.long {
  width: 90%;
}

/* AI Chat Mockup */
.card-mockup-ai {
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.75);
}

.ai-chat-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ai-msg {
  border-radius: 10px;
  padding: 10px 14px;
}

.ai-msg-user {
  background: rgba(212, 148, 60, 0.12);
  align-self: flex-end;
  max-width: 75%;
}

.ai-msg-user .mockup-line {
  background: rgba(212, 148, 60, 0.25);
  width: 100%;
}

.ai-msg-assistant {
  background: rgba(91, 110, 245, 0.06);
  align-self: flex-start;
  max-width: 85%;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ai-avatar {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(212, 148, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-msg-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.ai-msg-assistant .mockup-line {
  background: rgba(91, 110, 245, 0.15);
}

/* Command Palette Mockup */
.mockup-palette {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.palette-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.palette-icon {
  font-size: 0.65rem;
  font-weight: 700;
  color: #aaa;
  background: rgba(0, 0, 0, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}

.palette-results {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.palette-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.palette-item.active {
  background: rgba(212, 148, 60, 0.08);
  border-color: rgba(212, 148, 60, 0.15);
}

.feature-card-body {
  padding: 24px 28px 32px;
}

.feature-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================
   WHY VIDHRA
   ============================================ */
.why-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.why-section .section-header {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 14px;
  color: var(--accent-dark);
}

.why-card-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.why-card-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================
   MISSION (dark)
   ============================================ */
.mission-section {
  background: var(--dark-bg);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.mission-texture {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mission-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 28px;
}

.mission-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.mission-founders {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.founders-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.founders-dot {
  color: rgba(255, 255, 255, 0.3);
}

.founders-role {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
}

.mission-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-orb {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
  animation: orbSpin 12s linear infinite;
}

.mission-orb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent), var(--blue), var(--purple), var(--accent));
  opacity: 0.6;
  filter: blur(40px);
}

.mission-orb::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: var(--dark-bg);
}

@keyframes orbSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   AUDIENCE / BUILT FOR YOU
   ============================================ */
.audience-section {
  background: var(--bg);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--purple));
  opacity: 0;
  transition: opacity 0.3s;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.audience-card:hover::before {
  opacity: 1;
}

/* Art header area */
.audience-card-art {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.audience-card-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.3) 100%);
}

.aca-students {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Claude_Monet%2C_Impression%2C_soleil_levant.jpg/1280px-Claude_Monet%2C_Impression%2C_soleil_levant.jpg');
  background-position: center 40%;
  background-color: #2a3040;
}

.aca-researchers {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/d/d4/Gustave_Caillebotte_-_Jour_de_pluie_%C3%A0_Paris.jpg');
  background-color: #2a2520;
}

.aca-creators {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Van_Gogh_-_Starry_Night_-_Google_Art_Project.jpg/1280px-Van_Gogh_-_Starry_Night_-_Google_Art_Project.jpg');
  background-position: center 40%;
  background-color: #1a2535;
}

/* Content area */
.audience-card-content {
  padding: 28px 24px 24px;
}

.audience-card-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.audience-card-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Tags */
.audience-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.audience-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 20px;
  background: var(--accent-light);
  color: var(--accent-dark);
  letter-spacing: 0.02em;
}

/* ============================================
   UPDATES
   ============================================ */
.updates-section {
  background: var(--bg);
}

.newsletter-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.view-all-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: color 0.2s;
}

.view-all-link:hover {
  color: var(--accent-dark);
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.update-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
  display: block;
}

.update-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.update-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.update-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.update-icon {
  position: relative;
  z-index: 1;
}

.uci-1 {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/Monet_-_Der_Japansteg_%28Japanese_Footbridge%29_-_1899.jpg/1280px-Monet_-_Der_Japansteg_%28Japanese_Footbridge%29_-_1899.jpg');
  background-color: #1a3525;
}

.uci-2 {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Paul_C%C3%A9zanne_-_La_Montagne_Sainte-Victoire_vue_du_bosquet_du_Ch%C3%A2teau_Noir.jpg/1280px-Paul_C%C3%A9zanne_-_La_Montagne_Sainte-Victoire_vue_du_bosquet_du_Ch%C3%A2teau_Noir.jpg');
  background-color: #3a3520;
}

.uci-3 {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/8d/Pierre-Auguste_Renoir_-_Luncheon_of_the_Boating_Party_-_Google_Art_Project.jpg');
  background-color: #2a2520;
}

.update-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px 8px;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.update-card-author {
  font-weight: 600;
  color: var(--ink-soft);
}

.update-card-title {
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0 24px;
  line-height: 1.3;
}

.update-card-excerpt {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 8px 24px 28px;
  line-height: 1.55;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  text-align: center;
  padding: 120px 0;
  background: var(--dark-bg);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 148, 60, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .cta-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

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

.footer-logo-text {
  display: flex;
  align-items: center;
}

.footer-logo-svg {
  height: 24px;
  width: auto;
  color: #fff;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-link-item {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-link-item:hover {
  color: #fff;
}

.footer-watermark {
  text-align: center;
  padding: 24px 0 40px;
  overflow: hidden;
}

.footer-watermark span {
  font-weight: 900;
  font-size: clamp(6rem, 18vw, 16rem);
  letter-spacing: 0.08em;
  color: #0c0c10;
  text-shadow:
    0 2px 1px rgba(255, 255, 255, 0.08),
    0 -2px 1px rgba(0, 0, 0, 0.9),
    0 4px 6px rgba(255, 255, 255, 0.03);
  line-height: 0.85;
  user-select: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .features-bento {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card-wide,
  .feature-card-narrow {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .mission-visual {
    order: -1;
  }

  .mission-orb {
    width: 200px;
    height: 200px;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .updates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .features-bento,
  .why-grid,
  .updates-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    text-align: left;
  }

  .why-card-icon {
    margin: 0 0 16px;
  }

  .audience-card-art {
    height: 120px;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
  }

  .newsletter-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-float-badge {
    display: none;
  }

  .mock-sidebar {
    display: none;
  }

  .bg-art {
    display: none;
  }

  .footer-links {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* ============================================
   PREMIUM DESIGN ELEMENTS
   ============================================ */

/* ── Noise Texture Overlay ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── Hero Glow Orbs ── */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(212, 148, 60, 0.12);
  top: -10%;
  right: 10%;
  animation: glowFloat1 8s ease-in-out infinite;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(91, 110, 245, 0.1);
  bottom: -5%;
  left: 5%;
  animation: glowFloat2 10s ease-in-out infinite;
}

.glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(168, 85, 247, 0.08);
  top: 30%;
  left: 40%;
  animation: glowFloat3 12s ease-in-out infinite;
}

@keyframes glowFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-40px, 30px) scale(1.1);
  }
}

@keyframes glowFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -40px) scale(1.05);
  }
}

@keyframes glowFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, -20px) scale(1.15);
  }
}

/* ── Hero Dot Grid ── */
.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 80%);
}

/* ── Gradient Section Dividers ── */
.features-section::before,
.audience-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 148, 60, 0.25), rgba(91, 110, 245, 0.25), transparent);
}

/* ── Enhanced Button Glow ── */
.btn-accent {
  position: relative;
}

.btn-accent:hover {
  box-shadow: 0 8px 28px rgba(212, 148, 60, 0.3), 0 0 60px rgba(212, 148, 60, 0.1);
}

/* ── Card Shine Effect on Hover ── */
.why-card {
  position: relative;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.why-card:hover::after {
  opacity: 1;
}

/* ── Audience Card Gradient Borders ── */
.audience-card {
  position: relative;
}

.audience-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 148, 60, 0.2), rgba(91, 110, 245, 0.2), rgba(168, 85, 247, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}

.audience-card:hover::after {
  opacity: 1;
}

.audience-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(212, 148, 60, 0.04);
}

/* ── Update Cards Gradient Border ── */
.update-card {
  position: relative;
}

.update-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 148, 60, 0.25), rgba(91, 110, 245, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.update-card:hover::after {
  opacity: 1;
}

.update-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(212, 148, 60, 0.04);
}

/* ── Hero Mockup Animated Glow Ring ── */
.hero-mockup {
  position: relative;
}

.hero-mockup::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 30px;
  background: conic-gradient(from 0deg, rgba(212, 148, 60, 0.4), rgba(91, 110, 245, 0.3), rgba(168, 85, 247, 0.3), rgba(212, 148, 60, 0.4));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
  filter: blur(6px);
}

.hero-visual:hover .hero-mockup::after {
  opacity: 1;
  animation: borderSpin 4s linear infinite;
}

@keyframes borderSpin {
  from {
    filter: blur(6px) hue-rotate(0deg);
  }

  to {
    filter: blur(6px) hue-rotate(360deg);
  }
}

/* ── Marquee Glow on Mission Orb ── */
.mission-orb {
  box-shadow: 0 0 80px rgba(212, 148, 60, 0.15), 0 0 160px rgba(91, 110, 245, 0.1);
}

/* ── Smooth Scroll Indicator ── */
@media (min-width: 1025px) {
  .hero::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
  }

  .hero::before {
    content: '';
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent);
    animation: scrollDot 2s ease-in-out infinite;
    z-index: 2;
  }

  @keyframes scrollDot {

    0%,
    100% {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    50% {
      opacity: 0.3;
      transform: translateX(-50%) translateY(12px);
    }
  }
}

/* ── Responsive: hide glow orbs on mobile ── */
@media (max-width: 768px) {

  .hero-glow,
  .hero-dots,
  .noise-overlay {
    display: none;
  }
}