@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&family=Playfair+Display:ital,wght@0,600;0,800;1,600&display=swap');

:root {
  --artic-vivid: #FF3366;
  --artic-deep: #4A00E0;
  --artic-canvas: #F8F9FA;
  --artic-surface: #FFFFFF;
  --artic-ink: #0D0518;
  --artic-ink-muted: #4A4555;
  --artic-pure: #FFFFFF;
  --artic-shadow-color: rgba(74, 0, 224, 0.15);
  
  --artic-gradient-flow: linear-gradient(135deg, var(--artic-vivid) 0%, var(--artic-deep) 100%);
  --artic-gradient-warm: linear-gradient(135deg, #FF6B6B 0%, var(--artic-vivid) 100%);
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Mulish', sans-serif;
  
  --space-compact: 6dvh;
  --space-normal: 10dvh;
  --space-spacious: 16dvh;
  
  --radius-soft: 20px;
  --radius-round: 999px;
}

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

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

h1, h2, h3, h4, .display-txt {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.1;
  color: inherit;
}

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

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

/* --- TOP BAR (HEADER) --- */
.top-navigation-hub {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--artic-vivid);
  color: var(--artic-pure);
  box-shadow: 0 10px 40px var(--artic-shadow-color);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-identity-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.brand-icon-svg {
  width: 32px;
  height: 32px;
  fill: var(--artic-pure);
}

.main-links-track {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item-link {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: opacity 0.3s ease;
}

.nav-item-link:hover {
  opacity: 0.8;
}

.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--artic-pure);
  transition: width 0.3s ease;
}

.nav-item-link:hover::after {
  width: 100%;
}

.mobile-toggle-input {
  display: none;
}

.mobile-toggle-label {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-toggle-line {
  display: block;
  height: 3px;
  background: var(--artic-pure);
  border-radius: var(--radius-soft);
  transition: 0.3s;
}

@media (max-width: 991px) {
  .mobile-toggle-label {
    display: flex;
  }
  .main-links-track {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--artic-vivid);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
  }
  .mobile-toggle-input:checked ~ .main-links-track {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* --- HERO ZONE --- */
.mobility-hero-zone {
  min-height: 90vh;
  position: relative;
  background: var(--artic-gradient-flow);
  color: var(--artic-pure);
  display: flex;
  align-items: center;
  padding: var(--space-normal) 5%;
  overflow: hidden;
}

.hero-giant-digit {
  position: absolute;
  top: -5%;
  right: -5%;
  font-size: clamp(15rem, 30vw, 30rem);
  font-family: var(--font-display);
  font-weight: 800;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.hero-abstract-shape {
  position: absolute;
  right: 15%;
  bottom: 20%;
  width: 300px;
  height: 300px;
  background: var(--artic-gradient-warm);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.3;
  filter: blur(40px);
  animation: morphShape 8s ease-in-out infinite alternate;
}

@keyframes morphShape {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg); }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(45deg); }
}

.hero-content-cluster {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-main-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-sub-text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0.9;
}

.action-trigger {
  display: inline-flex;
  background: var(--artic-pure);
  color: var(--artic-vivid);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-round);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-trigger:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.action-trigger-outline {
  background: transparent;
  color: var(--artic-pure);
  border: 2px solid var(--artic-pure);
}

.action-trigger-outline:hover {
  background: var(--artic-pure);
  color: var(--artic-ink);
}

/* --- DIAGONAL OBLIQUE SECTION --- */
.oblique-knowledge-area {
  position: relative;
  padding: var(--space-spacious) 5%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  margin-top: -6vh;
  margin-bottom: -6vh;
  z-index: 5;
  background-color: var(--artic-ink);
}

.oblique-bg-layer {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: -1;
}

.oblique-content-panel {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 4rem;
  border-radius: var(--radius-soft);
  max-width: 900px;
  text-align: center;
  box-shadow: 0 30px 60px var(--artic-shadow-color);
}

.oblique-headline {
  color: var(--artic-deep);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.oblique-paragraph {
  font-size: 1.15rem;
  color: var(--artic-ink-muted);
}

/* --- BOLD NUMBERS FEATURES --- */
.vital-principles-zone {
  padding: var(--space-spacious) 5%;
  background: var(--artic-canvas);
}

.principles-layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.principle-item-cell {
  position: relative;
}

.principle-huge-digit {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--artic-vivid);
  line-height: 0.8;
  margin-bottom: 1rem;
}

.principle-item-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--artic-deep);
}

.principle-item-desc {
  color: var(--artic-ink-muted);
}

/* --- PROCESS TRACK (HOW IT WORKS) --- */
.methodology-track-zone {
  padding: var(--space-spacious) 5%;
  background: var(--artic-surface);
  overflow: hidden;
}

.track-heading-wrap {
  text-align: center;
  margin-bottom: 5rem;
}

.track-heading-wrap h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--artic-ink);
}

.process-horizontal-path {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-connector-line {
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: var(--artic-gradient-flow);
  z-index: 1;
}

.process-node {
  position: relative;
  z-index: 2;
  width: 30%;
  text-align: center;
}

.node-circle-marker {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--artic-pure);
  border: 4px solid var(--artic-vivid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--artic-vivid);
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px var(--artic-shadow-color);
}

.process-node:nth-child(even) .node-circle-marker {
  background: var(--artic-vivid);
  color: var(--artic-pure);
}

.node-title-text {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--artic-deep);
}

@media (max-width: 768px) {
  .process-horizontal-path {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .process-connector-line {
    top: 0; left: 50%; width: 4px; height: 100%; transform: translateX(-50%);
  }
  .process-node {
    width: 100%;
    max-width: 300px;
  }
}

/* --- DARK CTA STRIP --- */
.final-push-strip {
  padding: var(--space-normal) 5%;
  background: var(--artic-ink);
  color: var(--artic-pure);
  position: relative;
  overflow: hidden;
}

.push-strip-bg {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}

.push-strip-flex {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.push-strip-flex h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  flex: 1 1 500px;
}

/* --- EXPERT PAGE SPECIFICS --- */
.educator-direct-cta {
  padding: var(--space-normal) 5%;
  background: var(--artic-gradient-warm);
  text-align: center;
  color: var(--artic-pure);
}

.educator-direct-cta h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.educator-split-view {
  display: flex;
  flex-wrap: wrap;
  min-height: 70vh;
}

.educator-text-side, .educator-img-side {
  flex: 1 1 500px;
}

.educator-text-side {
  padding: var(--space-spacious) 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--artic-surface);
}

.educator-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-metrics-row {
  display: flex;
  flex-wrap: wrap;
  background: var(--artic-deep);
  color: var(--artic-pure);
}

.metric-data-cell {
  flex: 1 1 200px;
  padding: 4rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.metric-giant-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--artic-vivid);
}

.insight-closure-zone {
  position: relative;
  padding: var(--space-spacious) 5%;
  color: var(--artic-pure);
  text-align: center;
}

.insight-closure-zone img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

.insight-closure-zone::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(13, 5, 24, 0.8);
  z-index: -1;
}

/* --- RESERVE PAGE SPECIFICS --- */
.booking-split-arena {
  display: flex;
  flex-wrap: wrap;
  min-height: 90vh;
}

.booking-form-flank {
  flex: 1 1 60%;
  padding: var(--space-normal) 5%;
  background: var(--artic-canvas);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-info-flank {
  flex: 1 1 40%;
  padding: var(--space-normal) 5%;
  background: var(--artic-gradient-flow);
  color: var(--artic-pure);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.info-card-snippet {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: var(--radius-soft);
  backdrop-filter: blur(10px);
}

.snippet-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 800;
}

.snippet-svg-icon {
  width: 32px; height: 32px; fill: currentColor;
}

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

.snippet-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.snippet-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--artic-pure);
}

.interaction-form-core {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  background: var(--artic-surface);
  padding: 3rem;
  border-radius: var(--radius-soft);
  box-shadow: 0 20px 40px var(--artic-shadow-color);
}

.interaction-form-core h2 {
  color: var(--artic-deep);
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.data-input-wrap {
  margin-bottom: 1.5rem;
}

.data-input-field {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.data-input-field:focus {
  outline: none;
  border-color: var(--artic-vivid);
}

.consent-check-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.submit-action-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: center;
}

.direct-mail-link {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--artic-ink-muted);
  font-weight: 700;
}

.faq-accordion-zone {
  padding: var(--space-normal) 5%;
  background: var(--artic-surface);
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion-zone h3 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--artic-ink);
}

.faq-element-box {
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--artic-canvas);
}

.faq-element-box summary {
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem 0;
  cursor: pointer;
  color: var(--artic-deep);
}

.faq-element-box p {
  padding-bottom: 1rem;
  color: var(--artic-ink-muted);
}

/* --- FOOTER --- */
.bottom-footer-hub {
  background: var(--artic-ink);
  color: rgba(255,255,255,0.7);
  padding: 4rem 5% 2rem;
  text-align: center;
}

.footer-brand-lockup {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  color: var(--artic-pure);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-nav-links a:hover {
  color: var(--artic-pure);
}

.legal-disclaimer-text {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
}

/* --- COOKIE BANNER --- */
.consent-dialog-bar {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: var(--artic-surface);
  color: var(--artic-ink);
  padding: 1.5rem 5%;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.consent-dialog-bar.active-state {
  transform: translateY(0);
}

.consent-buttons-tray {
  display: flex;
  gap: 1rem;
}

.consent-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-round);
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-accept { background: var(--artic-vivid); color: white; }
.btn-decline { background: #E0E0E0; color: var(--artic-ink); }

/* --- TEXT PAGES (Privacy, Terms) --- */
.document-reading-zone {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-normal) 5%;
  min-height: 100vh;
}

.document-reading-zone h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--artic-deep);
}

.document-reading-zone h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--artic-ink);
}

.document-reading-zone p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}