/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --ojo-plasma-bg: #f9fafb;
  --ojo-plasma-surface: #ffffff;
  --ojo-plasma-accent: #ff2e63;
  --ojo-plasma-accent-hover: #e01b4c;
  --ojo-plasma-dark: #111827;
  --ojo-plasma-dark-surface: #1f2937;
  --ojo-plasma-ink: #1f2937;
  --ojo-plasma-ink-light: #4b5563;
  --ojo-plasma-ink-white: #ffffff;
  --ojo-plasma-soft: #f3f4f6;
  --ojo-plasma-border: #e5e7eb;
  
  --ojo-plasma-gradient: linear-gradient(135deg, #ff2e63 0%, #ff5e7e 100%);
  --ojo-plasma-gradient-dark: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  --ojo-plasma-gradient-opaque: rgba(255, 46, 99, 0.9);
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --ojo-plasma-radius-soft: 16px;
  --ojo-plasma-radius-pill: 999px;
  
  --ojo-plasma-shadow-raised: 0 12px 30px -10px rgba(17, 24, 39, 0.15);
  --ojo-plasma-shadow-deep: 0 20px 40px -15px rgba(255, 46, 99, 0.2);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--ojo-plasma-bg);
  color: var(--ojo-plasma-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll Progress Tracker */
.ojo-scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--ojo-plasma-accent-hover);
  width: 0%;
  z-index: 1001;
  animation: ojo-progress-grow linear;
  animation-timeline: scroll();
}
@keyframes ojo-progress-grow {
  to { width: 100%; }
}

/* Header */
.ojo-nav-header {
  background-color: var(--ojo-plasma-accent);
  color: var(--ojo-plasma-ink-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--ojo-plasma-shadow-raised);
}

.ojo-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}

.ojo-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ojo-plasma-ink-white);
  text-decoration: none;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.ojo-brand-logo svg {
  stroke: var(--ojo-plasma-ink-white);
  fill: none;
}

.ojo-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.ojo-nav-links a {
  color: var(--ojo-plasma-ink-white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.ojo-nav-links a:hover {
  opacity: 0.8;
}

.ojo-menu-checkbox {
  display: none;
}

.ojo-hamburger-btn {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.ojo-hamburger-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--ojo-plasma-ink-white);
  transition: 0.3s;
}

/* Scroll-Driven Animations for Sections */
@keyframes ojo-section-reveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ojo-section-animated {
  animation: ojo-section-reveal linear both;
  animation-timeline: view();
  animation-range: entry 5% cover 30%;
}

/* Main Section Padding (Preset spacious: 16dvh) */
.ojo-content-epoch {
  padding: 16dvh 2rem;
}

/* Helper Aligners */
.ojo-max-width-aligner {
  max-width: 1200px;
  margin: 0 auto;
}

.ojo-text-uppercase {
  text-transform: uppercase;
}

/* Buttons (Preset pill) */
.ojo-pill-trigger {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--ojo-plasma-accent);
  color: var(--ojo-plasma-ink-white);
  font-family: var(--font-display);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: var(--ojo-plasma-radius-pill);
  box-shadow: var(--ojo-plasma-shadow-deep);
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.ojo-pill-trigger:hover {
  background-color: var(--ojo-plasma-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -10px rgba(255, 46, 99, 0.4);
}

.ojo-pill-trigger-dark {
  background-color: var(--ojo-plasma-dark);
}

.ojo-pill-trigger-dark:hover {
  background-color: #000000;
}

/* --- INDEX HERO (Preset C - Bold Accent) --- */
.ojo-hero-fullscreen {
  min-height: 100vh;
  background: var(--ojo-plasma-gradient);
  color: var(--ojo-plasma-ink-white);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 2rem;
}

.ojo-deco-big-number {
  font-size: 20rem;
  font-family: var(--font-display);
  font-weight: 900;
  opacity: 0.06;
  position: absolute;
  right: 5%;
  bottom: -4rem;
  user-select: none;
  pointer-events: none;
}

.ojo-hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

.ojo-hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.ojo-hero-descriptor {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
}

.ojo-hero-interactive-stage {
  position: relative;
  height: 400px;
}

/* Abstract CSS shapes for Hero Right side (Preset C) */
.ojo-hero-interactive-stage::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 4px solid var(--ojo-plasma-surface);
  animation: floatCircle 8s infinite alternate ease-in-out;
}

.ojo-hero-interactive-stage::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: var(--ojo-plasma-dark);
  border-radius: 30px;
  opacity: 0.3;
  transform: rotate(45deg);
  animation: rotateShape 12s infinite linear;
}

@keyframes floatCircle {
  from { transform: translateY(0px) scale(1); }
  to { transform: translateY(-20px) scale(1.05); }
}

@keyframes rotateShape {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- INDEX CONTENT VIEW (Preset C: fullwidth diagonal clip-path & bg2.webp) --- */
.ojo-diagonal-epoch {
  background: linear-gradient(rgba(17, 24, 37, 0.85), rgba(17, 24, 37, 0.85)), url('img/bg2.webp') no-repeat center center;
  background-size: cover;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  color: var(--ojo-plasma-ink-white);
  padding: 12dvh 2rem;
}

.ojo-diagonal-text-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 46, 99, 0.15);
  backdrop-filter: blur(8px);
  padding: 4rem 3rem;
  border-radius: var(--ojo-plasma-radius-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ojo-diagonal-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

/* --- FEATURES GRID (Preset C: 3-column, numbers, no icons, no borders) --- */
.ojo-tri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.ojo-feature-card {
  padding: 1rem 0;
}

.ojo-feature-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ojo-plasma-accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.ojo-feature-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.ojo-feature-caption {
  font-size: 1rem;
  color: var(--ojo-plasma-ink-light);
}

/* --- HOW IT WORKS (Preset C: horizontal line connector) --- */
.ojo-stepper-wrap {
  position: relative;
  padding: 3rem 0;
}

.ojo-stepper-line {
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: var(--ojo-plasma-accent);
  z-index: 1;
}

.ojo-stepper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.ojo-step-node {
  text-align: center;
}

.ojo-step-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  transition: transform 0.3s ease;
}

/* Alternating nodes */
.ojo-step-node:nth-child(odd) .ojo-step-circle {
  background-color: var(--ojo-plasma-accent);
  color: var(--ojo-plasma-ink-white);
  border: 4px solid var(--ojo-plasma-accent);
}

.ojo-step-node:nth-child(even) .ojo-step-circle {
  background-color: var(--ojo-plasma-surface);
  color: var(--ojo-plasma-accent);
  border: 4px solid var(--ojo-plasma-accent);
}

.ojo-step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.ojo-step-desc {
  font-size: 0.95rem;
  color: var(--ojo-plasma-ink-light);
  padding: 0 1rem;
}

/* --- CTA STRIP (Preset C: Dark bg, flex-row justify) --- */
.ojo-dark-strip {
  background: var(--ojo-plasma-gradient-dark);
  color: var(--ojo-plasma-ink-white);
  padding: 6rem 2rem;
}

.ojo-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ojo-strip-heading {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
  flex: 1;
}

.ojo-strip-action {
  flex-shrink: 0;
}

/* --- EXPERT PAGE (Preset C) --- */
.ojo-expert-billboard {
  background: linear-gradient(rgba(17, 24, 37, 0.75), rgba(17, 24, 37, 0.75)), url('img/bg.webp') no-repeat center center;
  background-size: cover;
  padding: 8rem 2rem;
  text-align: center;
  color: var(--ojo-plasma-ink-white);
}

.ojo-expert-billboard h1 {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 1rem;
}

.ojo-expert-fast-cta {
  background-color: var(--ojo-plasma-accent);
  color: var(--ojo-plasma-ink-white);
  padding: 3rem 2rem;
  text-align: center;
}

.ojo-expert-philosophy {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.ojo-philosophy-text {
  flex: 1.1;
}

.ojo-philosophy-img {
  flex: 0.9;
  height: 450px;
  background: url('img/bg2.webp') no-repeat center center;
  background-size: cover;
  border-radius: var(--ojo-plasma-radius-soft);
  box-shadow: var(--ojo-plasma-shadow-raised);
}

.ojo-stats-lineup {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  background-color: var(--ojo-plasma-soft);
  padding: 4rem 2rem;
  border-radius: var(--ojo-plasma-radius-soft);
}

.ojo-stat-unit {
  text-align: center;
}

.ojo-stat-quantum {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ojo-plasma-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ojo-stat-metric {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ojo-plasma-ink-light);
}

.ojo-expert-finale {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.ojo-finale-img {
  flex: 0.9;
  height: 400px;
  background: url('img/bg3.webp') no-repeat center center;
  background-size: cover;
  border-radius: var(--ojo-plasma-radius-soft);
}

.ojo-finale-text {
  flex: 1.1;
}

/* --- RESERVE / REGISTRATION PAGE (Preset C) --- */
.ojo-minimal-hero {
  background-color: var(--ojo-plasma-soft);
  padding: 6rem 2rem;
  text-align: center;
}

.ojo-minimal-hero h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.ojo-reserve-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.ojo-reserve-box {
  background-color: var(--ojo-plasma-surface);
  padding: 3rem;
  border-radius: var(--ojo-plasma-radius-soft);
  box-shadow: var(--ojo-plasma-shadow-raised);
}

.ojo-form-group {
  margin-bottom: 2rem;
}

.ojo-form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.ojo-form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--ojo-plasma-border);
  border-radius: var(--ojo-plasma-radius-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.ojo-form-control:focus {
  outline: none;
  border-color: var(--ojo-plasma-accent);
}

.ojo-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--ojo-plasma-ink-light);
  cursor: pointer;
}

.ojo-form-checkbox-label input {
  margin-top: 0.2rem;
}

.ojo-info-cards-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ojo-info-card-unit {
  background-color: var(--ojo-plasma-surface);
  padding: 2rem;
  border-radius: var(--ojo-plasma-radius-soft);
  box-shadow: var(--ojo-plasma-shadow-raised);
}

.ojo-info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ojo-info-card-header svg {
  stroke: var(--ojo-plasma-accent);
}

.ojo-info-card-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}

.ojo-info-card-body {
  font-size: 0.95rem;
  color: var(--ojo-plasma-ink-light);
}

.ojo-info-bullet-list {
  list-style: none;
  margin-top: 1rem;
}

.ojo-info-bullet-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}

.ojo-info-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ojo-plasma-accent);
}

.ojo-mailto-link {
  color: var(--ojo-plasma-accent);
  text-decoration: none;
  font-weight: 700;
}

.ojo-mailto-link:hover {
  text-decoration: underline;
}

/* FAQ Box */
.ojo-faq-box {
  margin-top: 5rem;
}

.ojo-faq-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
}

.ojo-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.ojo-faq-bubble {
  background-color: var(--ojo-plasma-surface);
  padding: 2rem;
  border-radius: var(--ojo-plasma-radius-soft);
  box-shadow: var(--ojo-plasma-shadow-raised);
}

.ojo-faq-ask {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.ojo-faq-answer {
  font-size: 0.95rem;
  color: var(--ojo-plasma-ink-light);
}

/* --- COOKIE BANNER --- */
.ojo-cookie-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ojo-plasma-dark);
  color: var(--ojo-plasma-ink-white);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.25);
  display: none;
}

.ojo-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.ojo-cookie-content p {
  font-size: 0.9rem;
}

.ojo-cookie-actions {
  display: flex;
  gap: 1rem;
}

.ojo-cookie-btn-accept {
  background-color: var(--ojo-plasma-accent);
  color: var(--ojo-plasma-ink-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--ojo-plasma-radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
}

.ojo-cookie-btn-decline {
  background-color: transparent;
  color: var(--ojo-plasma-ink-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: var(--ojo-plasma-radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
}

/* --- FOOTER --- */
.ojo-footer {
  background-color: var(--ojo-plasma-dark);
  color: var(--ojo-plasma-ink-white);
  padding: 5rem 2rem 3rem;
  border-top: 4px solid var(--ojo-plasma-accent);
}

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

.ojo-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.ojo-footer-links {
  display: flex;
  gap: 2.5rem;
}

.ojo-footer-links a {
  color: var(--ojo-plasma-ink-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.ojo-footer-links a:hover {
  opacity: 0.8;
}

.ojo-footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  line-height: 1.5;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ojo-footer-bottom {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* --- POLICY / TERMS / THANK YOU PAGES --- */
.ojo-policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.ojo-policy-block {
  margin-bottom: 3rem;
}

.ojo-policy-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ojo-policy-block p {
  margin-bottom: 1.25rem;
  color: var(--ojo-plasma-ink-light);
}

.ojo-thank-frame {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.ojo-thank-img {
  width: 100%;
  height: 250px;
  background: url('img/bg3.webp') no-repeat center center;
  background-size: cover;
  border-radius: var(--ojo-plasma-radius-soft);
  margin-bottom: 2.5rem;
}

.ojo-thank-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.ojo-thank-paragraph {
  font-size: 1.1rem;
  color: var(--ojo-plasma-ink-light);
  margin-bottom: 3rem;
}

/* Responsive constraints */
@media (max-width: 992px) {
  .ojo-hero-split-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .ojo-hero-interactive-stage {
    display: none;
  }
  .ojo-tri-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ojo-stepper-line {
    display: none;
  }
  .ojo-stepper-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ojo-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .ojo-philosophy-text, .ojo-philosophy-img {
    flex: none;
    width: 100%;
  }
  .ojo-philosophy-img {
    height: 300px;
  }
  .ojo-expert-philosophy {
    flex-direction: column;
  }
  .ojo-stats-lineup {
    flex-direction: column;
    gap: 2.5rem;
  }
  .ojo-expert-finale {
    flex-direction: column;
  }
  .ojo-finale-text, .ojo-finale-img {
    flex: none;
    width: 100%;
  }
  .ojo-finale-img {
    height: 300px;
  }
  .ojo-reserve-grid {
    grid-template-columns: 1fr;
  }
  .ojo-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .ojo-footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}