:root {
  --background: #1e233f;
  --button-start: #4c5bc0ff;
  --button-end: #3c48a3ff;
  --button-gradient: linear-gradient(135deg, var(--button-start) 0%, var(--button-end) 100%);
  --item: #9ea7f9;
  --navbar: #28305a99;
  --white: #f4f8fb;
  --muted: #8faab8;
  --red: #e05252;
  --green: #3dba7e;
  --amber: #e8a23c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--white);
  font-family: 'Albert Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* Page system */
.page { display: block; }
.page.active { display: block; }

/* FONTS */
.serif { font-family: 'Outfit', sans-serif; }
.mono { font-family: 'DM Mono', monospace; }

/* GRAIN */
body::after {
  content:'';
  position:fixed;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:9999;
  opacity:0.5;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navbar);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid #2f588e33;
  display: flex;
  align-items: center;
  height: 68px;
}

.nav-inner {
  max-width: 1380px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; width: 100%; height: 100%;
  gap: 16px;
  position: relative;
}
.nav-links { display: flex; gap: 8px; align-items: center; flex-wrap: nowrap; }
.nav-link {
  padding: 8px 14px;
  font-size: 13px; font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: #3c6aa626; }
.nav-cta {
  padding: 9px 20px;
  background: var(--button-gradient);
  color: var(--white);
  font-size: 13px; font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #ffffff1a;
  box-shadow: 0 4px 24px #3c6aa659;
  text-decoration: none;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--button-end) 0%, var(--button-start) 100%);
  box-shadow: 0 8px 32px #3c6aa680;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #dceaf24d;
  background: #ffffff0a;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: #ffffff17;
  border-color: #dceaf280;
}
.theme-toggle-icon {
  font-size: 18px;
  line-height: 1;
}
.mobile-menu-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #dceaf233;
  background: #ffffff0a;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
nav.mobile-open .mobile-menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.mobile-open .mobile-menu-btn span:nth-child(2) { opacity: 0; }
nav.mobile-open .mobile-menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-panel {
  display: none;
  border-top: 1px solid #2f588e33;
  background: #1e233ff2;
  backdrop-filter: blur(10px);
}
.mobile-nav-links {
  padding: 12px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav-link {
  border: 1px solid #3c6aa633;
  border-radius: 10px;
  background: #ffffff05;
  color: var(--muted);
  padding: 12px 14px;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--white);
  border-color: #3c6aa666;
  background: #3c6aa626;
}
.mobile-nav-cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--button-gradient);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ffffff1a;
  box-shadow: 0 4px 24px #3c6aa659;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.mobile-nav-cta:hover {
  background: linear-gradient(135deg, var(--button-end) 0%, var(--button-start) 100%);
  box-shadow: 0 8px 32px #3c6aa680;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: var(--button-gradient);
  color: var(--white);
  font-size: 15px; font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #ffffff1a;
  box-shadow: 0 4px 24px #3c6aa659;
}
.form-actions button {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.form-actions .btn-primary {
  padding: 14px 24px;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--button-end) 0%, var(--button-start) 100%);
  box-shadow: 0 8px 32px #3c6aa680;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  background: transparent;
  color: var(--item);
  font-size: 14px; font-weight: 400;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  border: 1px solid #dceaf240;
}
.btn-outline:hover { background: #dceaf214; border-color: #dceaf280; }
.btn-lg { padding: 18px 44px; font-size: 16px; }

/* Home hero tuning */
.hero-lead { font-size: 16px; }
.hero-cta-row .btn-primary,
.hero-cta-row .btn-lg {
  padding: 14px 34px;
  font-size: 15px;
}
.hero-cta-row .btn-outline {
  padding: 12px 24px;
  font-size: 13px;
}

/* SECTION */
.section {
  padding: 100px 32px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.section-sm { padding: 60px 32px; }
.container { max-width: 1280px; margin: 0 auto; }
.container-narrow { max-width: 860px; margin: 0 auto; }

/* Round bordered container blocks that do not define their own radius inline */
.container > [style*="border:1px"],
.container > [style*="border: 1px"],
.container-narrow > [style*="border:1px"],
.container-narrow > [style*="border: 1px"] {
  border-radius: 16px;
  overflow: hidden;
}

/* LABEL */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--item);
  margin-bottom: 20px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--item);
}

/* HEADING */
h1.display {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5.2vw, 54px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
h2.display {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h3.display {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}
.accent, .accent-teal { color: var(--item); }

/* DIVIDER */
.divider { height: 1px; background: linear-gradient(90deg, transparent, #3c6aa666, transparent); margin: 0; }

/* CARD */
.card {
  background: #ffffff08;
  border: 1px solid #3c6aa62e;
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, background 0.3s;
}
.card:hover { border-color: #3c6aa666; background: #ffffff0d; }

/* GLOW */
.glow-blue { box-shadow: 0 0 80px #3c6aa626; }
.glow-teal { box-shadow: 0 0 60px #0851594d; }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal:not(.visible) { will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* BADGE */
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: #08515966;
  border: 1px solid #4ec4c44d;
  border-radius: 20px;
  font-size: 11px; font-weight: 500;
  color: #4ec4c4;
  letter-spacing: 0.05em;
}

/* TICKER */
.ticker-wrap { overflow: hidden; border-top: 1px solid #3c6aa626; border-bottom: 1px solid #3c6aa626; background: #00000033; }
.ticker-track { display: flex; animation: tick 30s linear infinite; will-change: transform; }
.ticker-track { animation-play-state: paused; }
.ticker-wrap.in-view .ticker-track { animation-play-state: running; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { padding: 10px 36px; font-family: 'DM Mono',monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--muted); white-space: nowrap; border-right: 1px solid #3c6aa61f; display:flex; align-items:center; gap:8px; }
.up { color: var(--green); }
.dn { color: var(--red); }

/* STAT NUMBERS */
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

/* BIAIS GRID */
.bias-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  cursor: default;
}

/* FAQ */
details { border-bottom: 1px solid #3c6aa633; }
details summary {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 500;
  transition: color 0.2s;
}
details summary:hover { color: #6eaee8; }
details[open] summary { color: #6eaee8; }
details summary::-webkit-details-marker { display: none; }
.faq-chevron { transition: transform 0.3s; color: var(--button-end); flex-shrink: 0; }
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-body { padding: 0 0 22px; color: var(--muted); line-height: 1.75; font-size: 15px; }

/* HERO BG */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, #3c6aa61f 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, #08515926 0%, transparent 50%),
    linear-gradient(180deg, #0a0840 0%, #0d0c5a 50%, #0a0840 100%);
}

/* MESH GRID */
.mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(#3c6aa60f 1px, transparent 1px),
    linear-gradient(90deg, #3c6aa60f 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* PROGRESS BARS */
.progress-bar {
  height: 4px;
  border-radius: 2px;
  background: #3c6aa633;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--button-start), #6eaee8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.4,0,0.2,1) 0.3s;
}
.progress-fill.animated { transform: scaleX(1); }

/* STEP */
.step-number {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--button-start) 0%, #1a4070 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px #3c6aa666;
}

/* MOBILE MENU */
.mobile-menu-btn { display: none; }
@media (min-width: 1025px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 1240px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { gap: 4px; }
  .nav-link { padding: 8px 10px; font-size: 12px; }
  .nav-cta { display: none; }
}

@media (max-width: 1024px) {
  nav { height: auto; min-height: 68px; display: block; }
  .nav-inner { min-height: 68px; }
  .nav-links { display: none; }
  .nav-actions { gap: 8px; }
  .mobile-menu-btn { display: flex; }
  nav.mobile-open .mobile-nav-panel { display: block; }
}

@media (max-width: 768px) {
  h1.display { font-size: 38px; }
  h2.display { font-size: 32px; }
  .section { padding: 70px 20px; }
  .grid-3 { grid-template-columns: 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .hide-mobile { display: none !important; }
  .stat-num { font-size: 48px; }
}

/* OWL SVG INLINE */
.owl-float {
  animation: owlFloat 4s ease-in-out infinite;
}
.owl-float { animation-play-state: paused; }
.owl-float.in-view { animation-play-state: running; }
@keyframes owlFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* TABS */
.tab-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  color: var(--muted);
}
.tab-btn.active {
  background: #3c6aa633;
  border-color: #3c6aa666;
  color: var(--white);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* COMPARISON TABLE */
.comp-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid #3c6aa61f; }
.comp-cell { padding: 16px 20px; font-size: 14px; }
.comp-header .comp-cell { font-weight: 600; background: #3c6aa614; }
.comp-yes { color: var(--green); }
.comp-no { color: var(--red); }

.offer-comparison-wrapper {
  display: block;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.offer-comparison-wrapper .offer-comparison {
  min-width: 680px;
}

@media (max-width: 768px) {
  .offer-comparison-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
  }

  .offer-comparison-wrapper::-webkit-scrollbar {
    display: none;
  }

  .offer-comparison-wrapper {
    scrollbar-width: none;
  }
}

/* PROFILE CARD */
.profile-card {
  background: linear-gradient(135deg, #0851594d 0%, #0a0840cc 100%);
  border: 1px solid #08515966;
  border-radius: 16px;
  padding: 32px;
}

/* CHART BAR */
.chart-bar {
  display: flex; align-items: flex-end; gap: 4px; height: 80px;
}
.bar-item {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: #3c6aa666;
  animation: barGrow 1.5s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-play-state: paused;
  transform-origin: bottom;
  transform: scaleY(0);
}
.chart-bar.in-view .bar-item { animation-play-state: running; }
@keyframes barGrow {
  to { transform: scaleY(1); }
}

/* CONTACT FORM */
.form-input {
  width: 100%;
  background: #ffffff0a;
  border: 1px solid #3c6aa640;
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Albert Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: #3c6aa6b3; }
.form-input::placeholder { color: var(--muted); }
label.form-label { font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 8px; display: block; letter-spacing: 0.05em; }

/* BOOKING FORM CONTROLS */
#page-form input:not([type="radio"]):not([type="checkbox"]),
#page-form select,
#page-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border-radius: 10px !important;
  border: 1px solid rgba(143,170,184,0.26) !important;
  background: linear-gradient(145deg, rgba(30,35,63,0.95) 0%, rgba(40,48,90,0.86) 100%) !important;
  color: var(--white) !important;
  font-family: 'Albert Sans', sans-serif;
  font-size: 14px;
  line-height: 1.3;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 16px rgba(8,12,34,0.22);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#page-form input:not([type="radio"]):not([type="checkbox"])::placeholder,
#page-form textarea::placeholder {
  color: #c6d3df;
  opacity: 0.88;
}

#page-form input:not([type="radio"]):not([type="checkbox"]):focus,
#page-form select:focus,
#page-form textarea:focus {
  border-color: rgba(158,167,249,0.85) !important;
  box-shadow: 0 0 0 3px rgba(76,91,192,0.24), 0 10px 22px rgba(8,12,34,0.32);
  background: linear-gradient(145deg, rgba(34,40,75,0.96) 0%, rgba(46,56,103,0.9) 100%) !important;
}

#page-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 38px;
  background-image: linear-gradient(145deg, rgba(30,35,63,0.95) 0%, rgba(40,48,90,0.86) 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%23c6d3df' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 12px center;
  background-size: 100% 100%, 14px;
}

#page-form .phone-row {
  grid-template-columns: 110px 1fr !important;
}

#page-form .country-code-group {
  position: relative;
}

#page-form .country-code-select {
  padding-right: 38px !important;
  background-image: linear-gradient(145deg, rgba(30,35,63,0.95) 0%, rgba(40,48,90,0.86) 100%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-position: 0 0 !important;
}

#page-form .currency-select {
  padding-right: 38px !important;
  background-image: linear-gradient(145deg, rgba(30,35,63,0.95) 0%, rgba(40,48,90,0.86) 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5' stroke='%23eef5ff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: 0 0, right 12px center !important;
  background-size: 100% 100%, 13px !important;
}

#page-form .payment-metadata-field {
  min-height: 46px;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  line-height: 1.3;
  box-sizing: border-box;
}

#page-form .free-amount-input {
  appearance: textfield;
  -moz-appearance: textfield;
}

#page-form .free-amount-input::-webkit-outer-spin-button,
#page-form .free-amount-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#page-form .country-code-group::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 13px;
  width: 13px;
  height: 13px;
  transform: translateY(-50%);
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5' stroke='%23eef5ff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 13px 13px;
  filter: drop-shadow(0 0 2px rgba(238,245,255,0.45));
}

/* SCROLL INDICATOR */
.scroll-indicator {
  width: 24px; height: 40px;
  border: 1px solid #dceaf24d;
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--item);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
  animation-play-state: paused;
}
.scroll-indicator.in-view .scroll-dot { animation-play-state: running; }
@keyframes scrollDot { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(8px);opacity:0.3} }

/* ANIMATED CONVICTION BOX */
.conviction-box {
  background: #ffffff08;
  border: 1px solid #3c6aa640;
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--item);
  position: relative;
}
.typing-cursor::after {
  content: '|';
  animation: blink 1s step-end infinite;
  animation-play-state: paused;
  color: var(--button-end);
}
.typing-cursor.in-view::after { animation-play-state: running; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* SCORE RING */
.score-ring {
  width: 100px; height: 100px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.score-ring svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.score-value {
  font-family: 'Outfit', sans-serif;
  font-size: 26px; font-weight: 900;
  z-index: 1;
}

/* FEATURE ICON */
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* REGIME BADGE */
.regime {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
}

/* PAGE HERO MINI */
.page-hero {
  padding: 140px 32px 80px;
  position: relative; overflow: hidden;
}

#page-form .form-hero-title {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* TIMELINE */
.timeline-item { display: flex; gap: 24px; }
.timeline-line { display: flex; flex-direction: column; align-items: center; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--button-start); flex-shrink: 0; margin-top: 4px; }
.timeline-connector { width: 1px; flex: 1; background: #3c6aa64d; min-height: 40px; margin: 4px 0; }
.how-work-layout { align-items: start; }
.how-work-steps { width: 100%; }
.how-work-video { position: static; }

.owlie-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.owlie-hero-visual {
  overflow: hidden;
  border-radius: 24px;
  -webkit-mask-image: linear-gradient(180deg, #000 75%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  justify-self: end;
  max-width: 500px;
  width: 100%;
  transform: translateX(-24px);
}

/* PERSON CARD */
.person-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--button-start) 0%, var(--button-end) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.visible,
  .progress-fill,
  .bar-item,
  .owl-float,
  .ticker-track,
  .scroll-dot,
  .typing-cursor::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 768px) {
  .how-work-layout {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .how-work-video {
    position: static !important;
  }

  .how-work-steps {
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .science-hero-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .science-hero-visual {
    display: none !important;
  }

  .hero-owlie-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .owlie-hero-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .hero-owlie-visual {
    display: none !important;
  }

  .owlie-hero-visual {
    display: none !important;
  }
}


