/* style.css — Avora Combined: V1 Design + V2 Content */

/* ══════════════════════════════════════════════════════
   GLOBAL UTILITIES
   ══════════════════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-10); }
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.section-body {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

.section-padding {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

/* Light section variants */
.section--light .section-label { color: var(--color-primary); }
.section--light .section-heading { color: var(--color-text-dark); }
.section--light .section-body { color: var(--color-text-dark-secondary); }

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-lg);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-glow-orange);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-text-dark);
  border-color: rgba(29, 49, 73, 0.25);
}
.btn-outline-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(232, 98, 42, 0.04);
}

.btn-blue {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.btn-blue:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  box-shadow: var(--shadow-glow-blue);
}

/* Card base — dark variant */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium), transform var(--transition-medium);
}
.card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow-orange);
  transform: translateY(-2px);
}

/* Card — light variant (for light sections) */
.card-light {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-border-light);
  backdrop-filter: blur(8px);
}
.card-light:hover {
  border-color: rgba(232, 98, 42, 0.3);
  box-shadow: 0 8px 30px rgba(29, 49, 73, 0.08);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════
   SECTION 0 — INTRO SPLASH (V2 typing animation)
   ══════════════════════════════════════════════════════ */

#splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-manganese);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#splash.gone {
  display: none;
}

.splash-logo img {
  width: clamp(100px, 18vw, 180px);
  height: auto;
  animation: splashPulse 2s ease-in-out infinite;
}

@keyframes splashPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

.splash-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #fff;
}

.splash-typing {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  height: auto;
  min-height: 1.6em;
  overflow: visible;
  margin-top: var(--space-2);
}

.splash-typing span {
  display: inline;
  border-right: 2px solid var(--color-primary);
  animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { border-color: var(--color-primary); }
  50% { border-color: transparent; }
}

/* ── Cinematic light-line transition canvas ── */
#transition-canvas {
  position: fixed;
  inset: 0;
  z-index: 10001;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   SECTION 1 — NAVIGATION (V1 style)
   ══════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(29, 49, 73, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-3) 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}
.nav-logo-img {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-5);
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--color-primary-hover);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
    background: var(--color-manganese);
    padding: var(--space-20) var(--space-8);
    transition: right 0.3s ease;
    border-left: 1px solid var(--color-divider);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: var(--text-base); }
  .nav-cta-desktop { display: none; }
}
@media (min-width: 1025px) {
  .nav-cta-mobile { display: none; }
}

/* ══════════════════════════════════════════════════════
   SECTION 2 — HERO (V1 design, V2 content)
   ══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--space-24);
  padding-bottom: var(--space-12);
  overflow: hidden;
  /* Soft dark-to-deep gradient */
  background: linear-gradient(180deg, #1d3149 0%, #172b42 50%, #0f1d30 100%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.hero-badges span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}
.hero-badges .badge-dot {
  color: var(--color-primary);
  margin-right: 0.1em;
}
.hero-badges .badge-dot-separator {
  margin: 0 0.15em;
  font-size: 0.8em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: var(--space-8);
  max-width: 800px;
  color: #fff;
}
.gradient-text {
  background: linear-gradient(90deg, #7b9cc0, #b0917a 40%, #d48a52 70%, #E8622A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-body {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-2);
}

/* ══════════════════════════════════════════════════════
   MARQUEE (V1 style ticker)
   ══════════════════════════════════════════════════════ */

.marquee {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-3) 0;
  margin-top: calc(-1 * var(--space-8));
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-right: var(--space-8);
  flex-shrink: 0;
}
.marquee-track span.highlight {
  color: var(--color-primary);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   SECTION 3 — COST OF GETTING IT WRONG (Light section)
   ══════════════════════════════════════════════════════ */

.cost-section {
  background: var(--color-bg-light);
  position: relative;
}

/* Soft blurred transition from dark hero into light */
.cost-section::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(15, 29, 48, 0.9) 0%, rgba(29, 49, 73, 0.6) 30%, rgba(90, 130, 175, 0.4) 60%, var(--color-bg-light) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Soft blend at bottom into next dark section */
.cost-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent 0%, rgba(90, 130, 175, 0.2) 40%, rgba(29, 49, 73, 0.5) 70%, rgba(29, 49, 73, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

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

.cost-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cost-metric {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.cost-subtitle {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.3;
}

.cost-source {
  font-size: var(--text-xs);
  color: var(--color-text-dark-muted);
  font-style: italic;
}

.cost-quote {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
  font-style: italic;
  padding-left: var(--space-4);
  border-left: 3px solid var(--color-primary);
  line-height: 1.4;
}

.cost-body {
  font-size: var(--text-sm);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.cost-body-source {
  font-size: var(--text-xs);
  color: var(--color-text-dark-muted);
  font-style: italic;
  margin-top: var(--space-2);
}

/* ══════════════════════════════════════════════════════
   SECTION 4 — PLATFORM (Back to dark, V1 centered layout)
   ══════════════════════════════════════════════════════ */

.platform-section {
  background: linear-gradient(180deg, #1d3149 0%, #1a2e46 50%, #152a42 100%);
  position: relative;
}
.platform-section > .container {
  position: relative;
  z-index: 2;
}

/* Soft top blend from light section */
.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(29, 49, 73, 0.6) 0%, rgba(29, 49, 73, 0.9) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.platform-highlight {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  margin-top: var(--space-6);
  margin-bottom: var(--space-12);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-secondary);
  max-width: 700px;
  text-align: center;
  margin-inline: auto;
  position: relative;
}
.platform-highlight em {
  color: var(--color-primary);
  font-style: normal;
}
.highlight-quote {
  font-family: Georgia, serif;
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.2em;
  color: rgba(232, 98, 42, 0.35);
  margin: 0 0.05em;
}

/* V1-style: centered heading, "See All Features" button, then 2-col layout */
.platform-section .section-heading,
.platform-section .section-label {
  text-align: left;
}

.platform-btn-wrap {
  text-align: center;
  margin-bottom: var(--space-12);
}

.platform-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (max-width: 900px) {
  .platform-layout { grid-template-columns: 1fr; }
}

.platform-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.platform-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

.platform-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
}

.platform-card-body {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Hub Diagram — V1 style with icons */
.hub-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.hub-diagram {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  position: relative;
}

.hub-diagram canvas {
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════════════════════
   SECTION 5 — WHO IT'S FOR (Mid-navy, V2 content, no titles)
   ══════════════════════════════════════════════════════ */

.who-section {
  background: linear-gradient(180deg, #152a42 0%, #0f1d30 40%, #0f1d30 60%, #122236 100%);
  position: relative;
}

/* Soft top blend from platform dark */
.who-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(21, 42, 66, 0.8) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Soft bottom blend into light innovation */
.who-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent 0%, rgba(50, 80, 120, 0.15) 40%, rgba(90, 130, 175, 0.25) 70%, rgba(140, 175, 210, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

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

.who-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.who-card-body {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   SECTION 6 — INNOVATION (Light pastel section)
   ══════════════════════════════════════════════════════ */

.innovation-section {
  background: var(--color-bg-light);
  position: relative;
}

/* Soft top blend from dark who-section */
.innovation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(100, 145, 190, 0.35) 0%, rgba(160, 195, 225, 0.15) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Soft bottom blend into dark markets */
.innovation-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent 0%, rgba(90, 130, 175, 0.2) 40%, rgba(29, 49, 73, 0.5) 70%, rgba(29, 49, 73, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

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

.innovation-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 3px solid var(--color-primary);
}

.innovation-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-dark);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-divider-light);
  margin-bottom: var(--space-4);
}

.innovation-way-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.innovation-way-label.old { color: var(--color-text-dark-muted); }
.innovation-way-label.avora { color: var(--color-primary); }
.innovation-way-label.change { color: var(--color-blue-sparkle); }

.innovation-way-text {
  font-size: var(--text-sm);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

/* ══════════════════════════════════════════════════════
   SECTION 7 — MARKETS (Dark navy, V1 centered cards with icons)
   ══════════════════════════════════════════════════════ */

.markets-section {
  background: linear-gradient(180deg, #1d3149 0%, #1a2e46 50%, #152a42 100%);
  position: relative;
}

/* Soft top blend */
.markets-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(29, 49, 73, 0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.markets-section .section-heading,
.markets-section .section-label,
.markets-section .section-body {
  text-align: center;
  margin-inline: auto;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

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

.market-card {
  text-align: center;
  padding: var(--space-10) var(--space-8);
}

.market-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-6);
  color: var(--color-secondary);
}

.market-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
}

.market-card-body {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Conference strip — "Meet Avora" */
.conference-strip {
  margin-top: var(--space-16);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(0, 116, 255, 0.12), rgba(232, 98, 42, 0.08));
  border: 1px solid rgba(0, 116, 255, 0.2);
  text-align: center;
}

/* Larger Meet Avora variant */
.conference-strip--large {
  padding: var(--space-16) var(--space-10);
  margin-top: var(--space-20);
  background: linear-gradient(135deg, rgba(0, 116, 255, 0.15), rgba(232, 98, 42, 0.10));
  border: 1px solid rgba(0, 116, 255, 0.25);
}

.conference-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-6);
}

.conference-title--large {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.conference-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-10);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.6;
}

.conference-list {
  display: flex;
  gap: var(--space-10);
  flex-wrap: wrap;
  justify-content: center;
}

.conference-list--large {
  gap: var(--space-6);
}

.conference-item {
  font-size: var(--text-sm);
  color: #fff;
  font-weight: 600;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.conference-item--large {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.conference-item:hover {
  transform: scale(1.05);
  background: rgba(232, 98, 42, 0.1);
  border-color: rgba(232, 98, 42, 0.3);
}
.conference-item .date {
  color: var(--color-text-muted);
  margin-left: var(--space-2);
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════
   SECTION 8 — FOUNDER / WHY AVORA EXISTS (V1 + V2 photo area, mid navy)
   ══════════════════════════════════════════════════════ */

.founder-section {
  background: linear-gradient(180deg, #152a42 0%, #0f1d30 40%, #0f1d30 60%, #122236 100%);
  position: relative;
  overflow: hidden;
}

/* Soft top blend from markets dark */
.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(21, 42, 66, 0.8) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle gradient accent behind the section */
.founder-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 116, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.founder-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-12);
  align-items: start;
  margin-top: var(--space-10);
  position: relative;
  z-index: 1;
}

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

.founder-avatar-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

/* Team intro block (appears first in section) */
.founder-team-intro {
  max-width: 760px;
  margin-bottom: var(--space-10);
}

.founder-team-lead {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 760px;
}

/* Accent statement block */
.founder-accent-block {
  margin-bottom: var(--space-12);
}

/* Founder photo */
.founder-photo {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-full);
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 0 40px rgba(232, 98, 42, 0.2), 0 0 80px rgba(59, 130, 246, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.founder-avatar {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 40px rgba(232, 98, 42, 0.2), 0 0 80px rgba(59, 130, 246, 0.1);
}

.founder-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
}

.founder-title-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 600;
}

.founder-quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: var(--space-6);
  border-left: 4px solid var(--color-primary);
  margin-bottom: var(--space-8);
  font-style: italic;
}

.founder-accent {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.founder-bio {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* (founder-team class removed — team info now in founder-team-intro block) */

/* ══════════════════════════════════════════════════════
   SECTION 9 — CTA + CONTACT (Pastel light blue)
   ══════════════════════════════════════════════════════ */

.contact-section {
  background: var(--color-bg-light);
  position: relative;
}

/* Soft top blend from dark founder section */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(80, 120, 170, 0.35) 0%, rgba(140, 175, 210, 0.15) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Soft bottom blend into dark footer */
.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, rgba(90, 130, 175, 0.15) 40%, rgba(29, 49, 73, 0.4) 70%, rgba(29, 49, 73, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  margin-top: var(--space-10);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-left { max-width: 540px; }

.contact-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.contact-email {
  font-size: var(--text-sm);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-6);
}
.contact-email a {
  color: var(--color-blue-sparkle);
  text-decoration: none;
  font-weight: 600;
}
.contact-email a:hover {
  text-decoration: underline;
}

.contact-tagline {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-dark-muted);
  letter-spacing: 0.05em;
}

/* Contact Form — dark card on light background */
.contact-form-card {
  background: var(--color-manganese);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: #fff;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--color-manganese);
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: var(--space-4);
  grid-column: 1 / -1;
}

.form-submit .btn {
  width: 100%;
}

/* ══════════════════════════════════════════════════════
   FOOTER (Dark navy)
   ══════════════════════════════════════════════════════ */

.footer {
  background: linear-gradient(180deg, #1d3149 0%, #1a2e46 100%);
  border-top: none;
  padding: var(--space-8) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.footer-links a, .footer-links span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }

.footer-links .divider {
  color: var(--color-text-faint);
}

.footer-tagline {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-linkedin svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

/* ══════════════════════════════════════════════════════
   PLATFORM OVERLAY (V1 style)
   ══════════════════════════════════════════════════════ */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(29, 49, 73, 0.96);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  padding: var(--space-16) var(--space-6);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay.active {
  display: block;
  opacity: 1;
}

.overlay-close {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  z-index: 9001;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.overlay-close:hover {
  border-color: var(--color-primary);
}

.overlay-content {
  max-width: var(--content-max);
  margin: 0 auto;
}

.overlay-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-10);
  text-align: center;
}

.overlay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

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

.overlay-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
}

.overlay-card-body {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   MOBILE REFINEMENTS (≤ 480px)
   ══════════════════════════════════════════════════════ */

@media (max-width: 480px) {

  /* ── Splash / Intro ── */
  .splash-logo img {
    width: clamp(80px, 22vw, 120px);
  }
  .splash-wordmark {
    font-size: clamp(1.4rem, 5vw, 2rem);
    letter-spacing: 0.25em;
  }
  .splash-typing {
    font-size: clamp(0.85rem, 3vw, 1.1rem);
  }

  /* ── Hero ── */
  .hero {
    padding-top: var(--space-20);
    padding-bottom: var(--space-8);
    min-height: 100dvh;
  }
  .hero-badges {
    gap: var(--space-1) var(--space-3);
    margin-bottom: var(--space-6);
    justify-content: center;
    text-align: center;
  }
  .hero-badges span {
    font-size: 0.65rem;
  }
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    margin-bottom: var(--space-6);
  }
  .hero-body {
    font-size: var(--text-sm);
    margin-bottom: var(--space-8);
    line-height: 1.6;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* ── Marquee ── */
  .marquee {
    margin-top: 0;
  }

  /* ── Section transitions — taller gradient overlays for smooth blending ── */
  .cost-section::before {
    top: -200px;
    height: 260px;
    background: linear-gradient(180deg, rgba(15, 29, 48, 0.95) 0%, rgba(29, 49, 73, 0.7) 25%, rgba(90, 130, 175, 0.45) 55%, var(--color-bg-light) 100%);
  }
  .cost-section::after {
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(90, 130, 175, 0.2) 30%, rgba(29, 49, 73, 0.5) 65%, rgba(29, 49, 73, 0.9) 100%);
  }

  .platform-section::before {
    height: 180px;
    background: linear-gradient(180deg, rgba(29, 49, 73, 0.5) 0%, rgba(29, 49, 73, 0.85) 40%, transparent 100%);
  }

  .who-section::before {
    height: 160px;
    background: linear-gradient(180deg, rgba(21, 42, 66, 0.85) 0%, rgba(21, 42, 66, 0.4) 50%, transparent 100%);
  }
  .who-section::after {
    height: 220px;
    background: linear-gradient(180deg, transparent 0%, rgba(50, 80, 120, 0.12) 30%, rgba(90, 130, 175, 0.22) 55%, rgba(140, 175, 210, 0.35) 80%, rgba(196, 216, 240, 0.5) 100%);
  }

  .innovation-section::before {
    height: 200px;
    background: linear-gradient(180deg, rgba(140, 175, 210, 0.4) 0%, rgba(196, 216, 240, 0.2) 40%, transparent 100%);
  }
  .innovation-section::after {
    height: 220px;
    background: linear-gradient(180deg, transparent 0%, rgba(90, 130, 175, 0.2) 30%, rgba(29, 49, 73, 0.5) 65%, rgba(29, 49, 73, 0.9) 100%);
  }

  .markets-section::before {
    height: 180px;
    background: linear-gradient(180deg, rgba(29, 49, 73, 0.5) 0%, rgba(29, 49, 73, 0.85) 40%, transparent 100%);
  }

  .founder-section::before {
    height: 160px;
  }

  .contact-section::before {
    height: 220px;
    background: linear-gradient(180deg, rgba(80, 120, 170, 0.4) 0%, rgba(140, 175, 210, 0.2) 40%, transparent 100%);
  }
  .contact-section::after {
    height: 160px;
  }

  /* ── Cost section ── */
  .section-heading {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }
  .section-body {
    font-size: var(--text-sm);
  }
  .cost-metric {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  .cost-subtitle {
    font-size: var(--text-base);
  }

  /* ── Platform section ── */
  .platform-highlight {
    font-size: var(--text-sm);
    padding: var(--space-4) var(--space-5);
    margin-bottom: var(--space-8);
  }
  .platform-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  /* ── Hub diagram: bigger on mobile, bigger labels ── */
  .hub-diagram {
    max-width: 100%;
    width: 100%;
  }

  /* ── Innovation grid cards ── */
  .innovation-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .innovation-card-title {
    font-size: var(--text-base);
  }
  .innovation-way-text {
    font-size: var(--text-sm);
    line-height: 1.65;
  }

  /* ── Markets section ── */
  .market-card {
    padding: var(--space-8) var(--space-6);
  }
  .market-card-icon {
    width: 56px;
    height: 56px;
  }

  /* ── Conference / Meet Avora ── */
  .conference-strip--large {
    padding: var(--space-10) var(--space-6);
    margin-top: var(--space-12);
  }
  .conference-title--large {
    font-size: var(--text-xl);
  }
  .conference-subtitle {
    font-size: var(--text-sm);
  }
  .conference-list--large {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  .conference-item--large {
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-5);
    text-align: center;
    width: 100%;
    max-width: 340px;
  }

  /* ── Founder section ── */
  .founder-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .founder-avatar-area {
    align-items: center;
  }
  .founder-photo {
    width: 160px;
    height: 160px;
  }
  .founder-quote {
    font-size: var(--text-base);
    padding-left: var(--space-4);
    line-height: 1.55;
  }
  .founder-team-lead {
    font-size: var(--text-base);
  }

  /* ── Contact section ── */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .contact-form-card {
    padding: var(--space-6);
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  /* ── Footer ── */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* ── Generic section padding reduction ── */
  .section-padding {
    padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  }

  /* ── Cards ── */
  .card {
    padding: var(--space-6);
  }
}
