:root {
  --color-bg: #000000;
  --color-bg-alt: #0a0a0a;
  --color-bg-card: #111111;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.65);
  --color-gold: #d6a96d;
  --color-gold-light: #e8d48b;
  --color-pink: #ff3366;
  --color-pink-hover: #ff4d7a;
  --color-pink-glow: rgba(255, 51, 102, 0.4);
  --color-seen-bg: #1b1d1e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-hero: 'Bebas Neue', Impact, sans-serif;
  --font-hero-pre: 'Montserrat', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-height: 80px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.text-gold {
  color: var(--color-gold);
}

.text-white {
  color: var(--color-text);
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.section__label--gold {
  color: var(--color-gold);
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s ease;
    border-radius:0;
}

.btn--primary{
    background:#ff2b72;
    color:#fff;
    padding:18px 48px;
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    clip-path: polygon(12% 0%,100% 0%,88% 100%,0% 100%);
    border-radius:0;
    transition:.3s ease;
    box-shadow:none;
}

.btn--primary:hover{
    background:#ff4b89;
    transform:translateY(-2px);
}

.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  pointer-events: none;
}

.section-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-divider--hero {
  height: 60px;
}

.section-divider--animated .divider-path {
  animation: dividerWave 8s ease-in-out infinite alternate;
}

@keyframes dividerWave {
  0% { d: path("M0,25 C240,50 480,0 720,25 C960,50 1200,0 1440,25 L1440,50 L0,50 Z"); }
  100% { d: path("M0,30 C240,10 480,40 720,20 C960,0 1200,35 1440,15 L1440,50 L0,50 Z"); }
}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    background:#000;
    z-index:1000;
    display:flex;
    align-items:center;
    border-bottom:3px solid #ff2d72;
    box-shadow:0 6px 20px rgba(0,0,0,.45);
}

.header--scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.nav__logo img{
    height:65px;
    width:auto;
    display:block;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  z-index: 1001;
}

.nav__toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav__toggle--active .nav__toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle--active .nav__toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle--active .nav__toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   NAVIGATION MENU
========================================= */

.nav__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 24px;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================
   NAVIGATION LINKS
========================================= */

.nav__link {
    position: relative;

    display: inline-block;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #fff;

    padding: 10px 0;

    white-space: nowrap;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


/* Underline */

.nav__link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #ff2d7a;

    transition: width 0.35s ease;
}


.nav__link:hover {
    color: var(--color-gold);
}


.nav__link:hover::after {
    width: 100%;
}


/* =========================================
   CONFIDENT AVATAR
========================================= */

.nav__link--avatar {
    color: #d6a96d;
    font-weight: 700;
}


.nav__link--avatar:hover {
    color: #e8d48b;
}


/* =========================================
   JOIN ZIVA BUTTON
========================================= */

.nav__link--cta {
    margin-top: 0;

    padding: 10px 18px;

    font-size: 12px;

    background: #ff2d72;
    color: #fff;

    clip-path: polygon(
        10% 0%,
        100% 0%,
        90% 100%,
        0% 100%
    );

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.nav__link--cta::after {
    display: none;
}


.nav__link--cta:hover {
    background: #ff4b89;
    color: #fff;

    transform: translateY(-2px);
}


/* =========================================
   HAMBURGER
========================================= */

.nav__toggle {
    display: none;
}

.infinite-text-class,
.infinite-possibilities-title,
.potential h1,
.potential h2 {
    font-size: clamp(2rem, 3vw, 2.5rem) !important;
    letter-spacing: 2px !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.potential__image,
.infinite-possibilities-section img,
.potential img {
    position: relative !important;
    transform: translateY(25px) !important;
    margin-bottom: 0 !important;
    z-index: 5 !important;
}

.potential,
.infinite-possibilities-section {
    padding-bottom: 0 !important;
    margin-bottom: -15px !important;
}
.ps-hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    position:relative;
    overflow:hidden;
    background:#000;
    padding:100px 0 0;
}

.ps-hero__glow{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    pointer-events:none;
    z-index:0;
}

.ps-hero__glow::before{
    content:"";
    position:absolute;
    top:-140px;
    width:1200px;
    height:900px;
    background:
    radial-gradient(circle,
    rgba(31,155,92,.55) 0%,
    rgba(19,120,74,.35) 28%,
    rgba(8,40,28,.18) 52%,
    transparent 75%);
    filter:blur(85px);
}

.ps-hero__content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1500px;
    margin:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.ps-hero__pre{
    text-align: center;
    font-size: clamp(2.5rem, 4.2vw, 4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 5px;
    top:-15px;
}

.ps-hero__center{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    width:100%;
}

.ps-hero__text-wrapper{
    position:absolute;
    top:-5px;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    overflow:visible;
    z-index:1;
}

.ps-hero__text-left{
    display:block;
    text-align:center;
    white-space:nowrap;
    font-family:"Permanent Marker", cursive;
    font-size:clamp(4rem,9vw,7rem);
    font-weight:400;
    line-height:.9;
    letter-spacing:-3px;
    text-transform:uppercase;
    background:linear-gradient(
        90deg,
        #ffb8a9 0%,
        #ff6aa6 28%,
        #b38cff 60%,
        #bfe8ff 100%
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    animation:prestonReveal 1.2s cubic-bezier(.15,.85,.3,1) forwards;
    transform:translateY(110%);
}

.ps-hero__figure{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    margin:0;
    position:relative;
    bottom:-90px;
    z-index:5;
}

.ps-hero__photo{
    display:block;
    height:750px;
    width:auto;
    object-fit:contain;
    filter:drop-shadow(0 15px 25px rgba(0,0,0,.45));
}

@keyframes prestonReveal{
0%{
transform:translateY(110%);
}
100%{
transform:translateY(0);
}
}

.hero-divider{
position:relative;
left:0;
width:100%;
height:130px;
line-height:0;
overflow:hidden;
margin-top:-128px;
z-index:15;
pointer-events:none;
}

.hero-divider svg{
display:block;
width:100%;
height:100%;
}

.ps-seen{
    background:black;
    padding-top:20px !important;
    padding-bottom:10px !important;
    overflow:hidden;
}

.ps-seen__title{
    text-align:center;
    color: white;
    font-size:35px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:25px !important;
    font-family:Montserrat,sans-serif;
}

.ps-seen__inner {
  width: 100%;
  max-width: 100%;
  font-weight: 600;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.ps-seen__label {
  font-family: var(--font-hero-pre);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-bottom: 2.5rem;
  opacity: 0;
}

.ps-seen__marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ps-seen__track {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  width: max-content;
  animation: seenMarquee 28s linear infinite;
  padding: 0 2rem;
}

.ps-seen__track:hover {
  animation-play-state: paused;
}

@keyframes seenMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ps-seen__logo {
  flex-shrink: 0;
  font-family: var(--font-hero-pre);
  font-size: clamp(2rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity 0.3s ease, color 0.3s ease;
  padding: 1rem 0;
}

.ps-seen__logo:hover {
  opacity: 1;
  color: var(--color-text);
}

.ps-seen__logo--toi {
  font-family: 'Times New Roman', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}

.ps-seen__logo--dd {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-gold);
  opacity: 0.9;
}

.ps-seen__logo--at {
  font-family: var(--font-hero);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #e63946;
  opacity: 0.95;
}

.ps-seen__logo--zn {
  font-family: var(--font-hero-pre);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .ps-seen {
    padding: 4rem 0 4.5rem;
  }
  .ps-seen__label {
    margin-bottom: 3rem;
  }
}

.download {
  background: var(--color-bg);
}

.download-section,
#download,
.ps-download {
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.download__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.download__image-col {
  width: 100%;
  max-width: 500px;
}

.download__image-wrapper {
  position: relative;
}

.download__image {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: contain;
}

.download__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.download__content-col {
  width: 100%;
  max-width: 520px;
}

.download_white {
    color: #ffffff !important;
    font-family: 'Permanent Marker', cursive, sans-serif !important;
    font-weight: 900 !important;
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    margin-bottom: 15px !important;
    display: inline-block;
}
.download__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: goldenrod;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.download__desc {
  font-size: 1.5rem;
  color: white;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.download__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input::placeholder {
  color: black;
}

.form__input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form__submit {
  margin-top: var(--space-xs);
  width: 100%;
}

.potential {
  background: #000000;
  position: relative;
  padding: 20px 0 120px 0;
  overflow: hidden;
}

.potential.section {
    padding-top: 10px !important;
    margin-top: -30px !important;
    padding-bottom: 10px !important;
}

.potential__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 20px;
  position: relative;
}

.potential__left-content {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
}

.potential__content-block {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.potential__title {
  display: block;
  margin-bottom: 35px;
  text-align: left;
  font-size: 0.85em !important;
}

.potential__subtitle {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}

.potential__p {
  font-family: var(--font-sans), sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 1.5rem);
  line-height: 1.6;
  color: white;
  max-width: 520px;
  font-weight: 500;
}

.potential__right-image {
  flex: 1.5;
  max-width: 550px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
  position: relative;
  right: -60px;
}
.potential__right-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 800px;
}

@media (max-width: 992px) {
  .potential__right-image {
    right: 0 !important;
    margin: 20px auto 0 auto;
    max-width: 90%;
  }
}

.potential__line {
  display: block;
}

.potential__line--1 {
  display: inline-block;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  margin-left: -150px;
}

.potential__line--2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
}

.potential__line--3 {
  font-size: clamp(1rem, 3vw, 2rem);
  color: var(--color-text-muted);
  letter-spacing: 0.3em;
  margin: var(--space-xs) 0;
}

.potential__line--4 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing : -0.02em;
}
.potential__shared-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: start;
  column-gap: 0px;
  row-gap: -8px;
}

.text-gold {
  color: var(--color-gold);
}

.text-white {
  color: #ffffff;
}

.potential__cell {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  font-weight: 800;
  line-height: 0.82;
}

.potential__cell--left {
    text-align: right;
    margin-right: 18px;
}

.potential__cell--right{
    text-align:left;
    margin-left:18px;
}

.potential__line--2.potential__cell{
  grid-row: 1;
}

.potential__line--4.potential__cell{
  grid-row: 2;
  margin-top: 0;
}

.potential__cell.text-gold {
  font-size: clamp(3.5rem, 6vw, 6.4rem) !important;
}

.potential__shared-n {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(11rem, 14vw, 12rem);
  font-weight: 800;
  line-height: 0.72;
  margin-left: -15px;
  margin-right: -15px;
  padding: 0;
}
/* =========================================
   MENTOR MODAL FORM
========================================= */
.mentor-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* Allows the modal wrapper to catch scrolling */
  padding: 20px;
}

.mentor-modal.active {
  display: flex;
}

.mentor-modal__content {
  background: #111111;
  border: 2px solid var(--color-gold, #d4af37);
  padding: 40px;
  width: 100%;
  max-width: 550px;
  max-height: 85vh;
  overflow-y: auto; /* Ensures form content itself scrolls smoothly */
  -webkit-overflow-scrolling: touch; /* Fixes mobile momentum scrolling */
  border-radius: 8px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  margin: auto;
}

.mentor-modal__content h3 {
  font-size: 2.2rem;
  color: var(--color-gold, #d4af37);
  margin-bottom: 10px;
}

.mentor-modal__content p {
  color: #a0a0a0;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.mentor-modal__close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.mentor-modal__close:hover {
  color: #ff3366;
}

.mentor-form .form__group {
  margin-bottom: 22px; 
}

.mentor-form .form__input {
  width: 100%;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #111111;
  border-radius: 6px;
  font-size: 1rem;
}

.mentor-form .form__input::placeholder {
  color: #666666;
}

.mentor-form textarea.form__input {
  resize: vertical;
  height: 120px;
}
@media (max-width: 992px) {
  .potential__container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .potential__left-content {
    align-items: center;
    max-width: 100%;
  }
  .potential__title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .potential__p {
    text-align: center;
  }
  .potential__right-image {
    max-width: 80%;
  }
}

.potential__line--1 {
    display:inline-block;
    white-space:nowrap;
}

.better {
  background: var(--color-bg);
  padding-bottom: 0;
  margin-bottom: -80px !important;
}

.better__container {
  text-align: center;
}

.better__text {
  margin-bottom: var(--space-xl);
}

.better__title {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
  margin-bottom: 15px;
  text-align: center;
}

.better__subtitle {
  font-family: var(--font-sans), sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.confidence__collage{
    position:relative;
    width:100%;
    max-width:1550px;
    height:720px;
    margin:40px 0 auto;
}
.confidence__center {
    position: relative;
    width: 440px;
    max-width: 42%;
    margin: 60px auto 0;
    text-align: center;
    z-index: 10;
    padding: 0 20px;
    overflow: visible;
}

.confidence__script {
  font-family: "Permanent Marker", cursive;
  font-size: 76px;
  color: white;
  margin-bottom: 5px;
  transform: rotate(-3deg);
  display: block;
}

.confidence__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 5vw, 3.5rem);
    line-height: 0.95;
    margin: 0 auto 25px;
    letter-spacing: 0.04em;
    display: inline-block;
    white-space: nowrap;
    overflow: visible;
    padding: 0 12px;
    background: linear-gradient(
        90deg,
        #ffd6d6 0%,
        #ff6db6 30%,
        #b76cff 70%,
        #8fd3ff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 15;
}
.confidence__p {
  color: white;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 22px;
  font-family: "Outfit", sans-serif;
}

.confidence__collage-item{
    position:absolute;
    overflow:hidden;
    border:12px solid #fff;
    border-bottom:40px solid #fff;
    background:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.6);
    width:350px;
    height:200px;
    transition:transform .3s ease;
}
.confidence__collage-item:hover {
  transform: scale(1.06) !important;
  z-index: 20;
}

.confidence__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.confidence__collage-item--1 {
  top: 3%;
  transform: rotate(-6deg);
}

.confidence__collage-item--2 {
  top: 38%;
  transform: rotate(4deg);
}

.confidence__collage-item--4 {
  bottom: 3%;
  transform: rotate(-3deg);
}

.confidence__collage-item--3 {
  top: 3%;
  right: -1%;
  transform: rotate(6deg);
}

.confidence__collage-item--5 {
  top: 38%;
  right: -1%;
  transform: rotate(-5deg);
}

.confidence__collage-item--6 {
  bottom: 3%;
  right: -1%;
  transform: rotate(4deg);
}

.confidence-section,
#confidence {
    padding-top: 10px !important;
    margin-top: 0 !important;
     padding-bottom: 0 !important;
    margin-bottom: -100px !important;
}

.confidence-section .container,
.confidence__title-wrapper,
.confidence-section h2 {
    overflow: visible !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding-right: 15px !important;
}
.confidence-section h2,
.confidence__title,
[class*="confidence"] h2{
    overflow: visible !important;
    padding: 0 15px !important;
}

.confidence-section .container,
.confidence__title-wrapper {
    overflow: visible !important;
    width: 100% !important;
}

.unstoppable-section .polaroid-right,
.confidence-section [class*="right"],
.confidence-section img:first-of-type {
    margin-top: 140px !important;
    position: relative !important;
}

.unstoppable-section .polaroid-left,
.confidence-section [class*="left"] {
    margin-top: 60px !important;
}

.unstoppable-section .row,
.confidence-section .grid-container {
    padding-top: 50px !important;
}

.community {
  background: var(--color-bg);
  text-align: center;
  padding: var(--space-2xl) 0;
}

.community__container {
  max-width: 800px;
}

.community__content {
  margin-bottom: var(--space-lg);
}

.community__line {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
}

.community__line--highlight {
  color: var(--color-gold);
  font-weight: 600;
}

.community__cta {
  opacity: 0;
}

footer, .footer {
  background-color: #000000;
  width: 100%;
  position: relative;
  padding-top: 140px;
  padding-bottom: 40px;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.tilt-hover {
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
  .nav__toggle {
    display: none;
  }
  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    gap: var(--space-md);
    transform: none;
  }
  .nav__link {
    font-size: 0.8rem;
    opacity: 1;
    transform: none;
  }
  .nav__link--cta {
    margin-top: 0;
  }
  .download__container {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xl);
  }
  .download__image-col {
    flex: 1;
  }
  .download__content-col {
    flex: 1;
  }
  .confidence__collage {
    height: 720px;
  }
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 90px;
  }
  .potential__line--2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
  }
  .potential__line--4 {
    font-size: clamp(3rem, 7vw, 6.5rem);
  }
}

@media (max-width: 767px) {
  .confidence__collage {
    height: 400px;
  }
  .confidence__collage-item--1{ width:55%; height:55%; }
  .confidence__collage-item--2{ width:40%; height:40%; }
  .confidence__collage-item--3{ width:50%; height:45%; left:20%; }
  .confidence__collage-item--4{ width:35%; height:35%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 992px) {
  footer, .footer {
    padding-top: 80px;
  }
}

.confidence-section,
.confidence.section,
#confidence {
    padding-bottom: 0 !important;
    margin-bottom: -50px !important;
}

.about-section,
#about,
.mehar-about,
.potential + section {
    padding-top: 3px !important;
    margin-top: 0 !important;
}

.about-section .about__title,
.about-section h2,
#about h2 {
  margin-top: 0px !important;
}

.about-meharr {
  background-color: #ffffff;
  position: relative;
   margin-top: 40px;
  padding: 30px 0 0 0;
  width: 100%;
}
.about-meharr__divider-top{
    position:absolute;
    top:-82px;
    left:0;
    width:100%;
    height:82px;
    z-index:10;
    pointer-events:none;
    overflow:hidden;
}

.about-meharr__divider-top svg{
    display:block;
    width:100%;
    height:102%;
}

@media (max-width: 992px) {
  .about-meharr__divider-top {
    height: 60px;
    top: -60px;
  }
}

.about-meharr__divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  transform: translateY(99%);
  z-index: 5;
  pointer-events: none;
}

.about-meharr__divider-bottom svg {
  display: block;
  width: 100%;
  height: 100%;
  shape-rendering: crispEdges;
}
.about-meharr__footer-buffer {
  display: none;
  height: 0px;
}

.about-meharr__container{
    max-width:950px;
    margin:0 auto;
    padding:0 40px;
}

@media (max-width: 992px) {
  .about-meharr__divider-bottom {
    height: 60px;
    transform: translateY(98%);
  }
}

.about-meharr__content{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.about-meharr__title {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-meharr__name-gradient {
  display: inline-block;
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  padding-left: 8px;
  background: linear-gradient(135deg, #ff7eb9 0%, #ff65a3 35%, #7afcff 70%, #9effaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-meharr__description{
    max-width:850px;
    margin:25px auto 40px;
    font-family:"Outfit",sans-serif;
    font-size:1.17rem;
    font-weight:540;
    line-height:1.75;
    color:#2b2b2b;
    text-align:center;
}

.about-meharr__video-wrapper{
    display:flex;
    justify-content:center;
    margin-top:20px;
}

.about-meharr__video-wrapper iframe{
    width:900px;
    max-width:80%;
    aspect-ratio:16/9;
    border:none;
    border-radius:18px;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}
.about-meharr__watch-video{
    margin-top: 10px;
    margin-bottom: 70px;
    text-align: center;
    font-family: var(--font-display), sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #000;
}
.about-meharr__watch-video span{
    font-family: 'Permanent Marker', cursive;
    font-size: 3.2rem;
    font-weight: 400;
    background: linear-gradient(
        90deg,
        #ff5ca8,
        #ff7a59,
        #ffc857
    );
    background-clip:text;
    -webkit-background-clip:text;
    color:transparent;
    -webkit-text-fill-color:transparent;
}

.story-video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  width: 100%;
  box-sizing: border-box;
}

.video-responsive-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-responsive-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
@media screen and (max-width: 768px) {
  .story-video {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  .video-responsive-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 992px) {
  .about-meharr {
    margin-top: 80px;
    padding-top: 40px;
  }
  .about-meharr__divider-top,
  .about-meharr__divider-bottom {
    height: 60px;
  }
  .about-meharr__footer-buffer {
    height: 60px;
  }
  .about-meharr__container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 0 24px;
  }
  .about-meharr__content {
    text-align: center;
    max-width: 100%;
  }
  .about-meharr__right-column {
    right: 0 !important;
    margin: 0 auto;
    max-width: 85%;
    width: 100%;
  }
  .about-meharr__quote {
    max-width: 480px;
  }
}

.book-promo {
  background-color: #000000;
  width: 100%;
  position: relative;
  padding: 130px 0 100px 0;
  overflow: hidden;
}

.book-promo__container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 50px;
}

.book-promo__content {
  flex: 1;
  max-width: 620px;
  text-align: left;
  z-index: 5;
  padding-top: 40px;
}

.book-promo__title {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 25px 0;
  background: linear-gradient(135deg, #fce0ad 0%, #dfac6c 30%, #c68b45 70%, #f6d394 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.book-promo__headline {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.book-promo__description {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 35px;
  font-weight: 545;
}

.book-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0;
  font-family: var(--font-sans), sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #ff2b72;
  color: #fff;
  padding: 18px 48px;
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
  transition: 0.3s ease;
  box-shadow: none;
}

.book-promo__btn:hover {
  background: #ff4b89;
  transform: translateY(-2px);
}

.book-promo__image-box {
  flex: 1.1;
  max-width: 950px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
  margin: -90px;
}
.book-promo__image-box img{
    width: 130%;
    max-width: 900px;
    height: auto;
    display: block;
}
.book-promo__mockup {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 640px;
  filter: drop-shadow(0 20px 40px rgba(223, 172, 108, 0.15));
}

@media (max-width: 992px) {
  .book-promo {
    padding: 70px 0;
  }
  .book-promo__container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 35px;
    padding: 0 24px;
  }
  .book-promo__content {
    text-align: center;
    max-width: 100%;
    padding-top: 0;
  }
  .book-promo__image-box {
    max-width: 75%;
    margin: 0 auto;
  }
  .book-promo__btn {
    padding: 14px 50px;
  }
}
/* =======================================================
   TESTIMONIAL
======================================================= */
.testimonial-section-title h3{
    font-family:"Permanent Marker", cursive;
    font-size:2.5rem;
    font-weight:900;
    color:#ffffff;
    text-transform:uppercase;
    letter-spacing:2px;
    text-align:center;
    display:block;
    margin-top: 50px;
    margin-bottom: -70px;
}

.testimonial-section{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    margin-top:80px;
}

.testimonial-box{
    position:relative;
    width:min(900px,90%);
    min-height:340px;
    background:#0b0b0b;
    border:2px solid #d4af37;
    padding:70px 70px 60px;
    overflow:hidden;
}

.testimonial-quote{
    position:absolute;
    top:15px;
    left:28px;
    font-size:6rem;
    color:#d4af37;
    font-family:Georgia,serif;
    line-height:1;
}

.testimonial-text{
    color:#ffffff;
    font-family:"Outfit",sans-serif;
    font-size:1.35rem;
    line-height:1.9;
    text-align:center;
    max-width:860px;
    margin:35px auto 0;
    font-weight:400;
    transition:.45s;
}

.testimonial-dots{
    display:flex;
    gap:14px;
    margin-top:28px;
}

.dot{
    width:11px;
    height:11px;
    border-radius:50%;
    background:#555;
    transition:.3s;
}

.dot.active{
    background:#d4af37;
    transform:scale(1.3);
}

.wheel-section {
  background-color: #ffffff !important;
  padding: 120px 0 !important;
}
.wheel-section__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}
.wheel-section__title{
  font-family: "Permanent Marker", cursive;
  font-size:4rem;
  font-weight:900;
  letter-spacing:1px;
  line-height:1;
  margin-bottom:38px;
  background: linear-gradient(135deg, #ff7eb9 0%, #ff65a3 35%, #7afcff 70%, #9effaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wheel-section__placeholder-text p{
    font-family:"Outfit",sans-serif;
    font-size:1.28rem;
    line-height:1.3;
    font-weight:540;
    color:#2b2b2b;
    margin-bottom:22px;
    max-width:620px;
}

.mission-p-highlight {
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  color: #111111 !important;
}

.mission-p-accent {
  border-left: 3px solid #ff65a3;
  padding-left: 20px;
}

.build-bold {
  font-weight: 700;
  color: #000000;
}

#wheelCanvas{
    display:block;
    width:100%;
    max-width:800px;
    height:auto;
    border-radius:50%;
    transition:transform 5s cubic-bezier(.2,.95,.3,1);
    box-shadow:0 25px 65px rgba(0,0,0,.06);
}

.wheel-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto; /* Added top margin to ensure space from previous sections */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible !important; /* Prevents laptop clipping */
}

.wheel-pointer {
  position: absolute;
  top: -25px; /* Pushes the pointer cleanly above the wheel on all screens */
  left: 50%;
  transform: translateX(-50%);
  z-index: 50; /* Higher z-index to ensure it sits above the canvas */
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 30px solid #ff3366; /* Bright pink/red arrow */
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.3));
}

.wheel-spin-trigger{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:110px;
    height:110px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#000;
    border:6px solid #fff;
    color:#fff;
    font-family:'Montserrat',sans-serif;
    font-size:1.1rem;
    font-weight:900;
    cursor:pointer;
    z-index:30;
}

.wheel-spin-trigger:hover {
  background: #ff3366;
}

.mission-quote-wrapper {
    background-color: #0d0d0d !important;
    padding: 30px 20px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 400px;
    margin: 25px 0 0 0 !important;
    text-align: center;
    border-radius: 4px;
}

.wheel-section__question{
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    margin: -65px 0 10px;
    font-size:2rem;
    font-weight:700;
    color:#111;
    text-align:center;
    margin-bottom:8px;
}

.question-red{
    color:#E53935;
}

.question-black{
    color:#111111;
}
.wheel-section__spin-text{
    font-family:"Permanent Marker",cursive;
    font-size:2rem;
    text-align:center;
    margin-bottom:18px;
    background:linear-gradient(
        90deg,
        #ff5a5f,
        #ffb347,
        #ffd93d,
        #4cd964,
        #5ac8fa,
        #af52de
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}
.wheel-section__right-column{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.mission-custom-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: #e5a49e !important;
    font-size: clamp(1.5rem, 2.7vw, 1.6rem) !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 15px !important;
    display: inline-block;
}

.mission-quote-mark {
    font-family: 'Playfair Display', 'Georgia', serif !important;
    color: #e5a49e !important;
    font-size: 2.5rem !important;
    position: absolute;
    line-height: 1;
    opacity: 0.8;
}

.mission-quote-mark--start {
    top: 10px;
    left: 15px;
}

.mission-quote-mark--end {
    bottom: -5px;
    right: 15px;
}

.wheel-section__content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    transform:translateY(-70px);
    max-width:520px;
}

.potential + section,
.about-section + section,
#mission,
.mission-section {
    padding-top: 10px !important;
    margin-top: -50px !important;
}

.wheel-container text,
svg text,
.slice-text,
.wheel-slice span {
    font-size: 11px !important;
    font-weight: 700 !important;
    transform: translate(0, -12px) !important;
}

.mission-section,
.wheel-section,
#mission {
    padding-bottom: 70px !important;
    margin-bottom: 20 !important;
}

.results-section,
#results,
.results {
    padding-top: 25px !important;
    margin-top: -30px !important;
}

.results-section h2,
#results h2 {
    margin-top: 0 !important;
}
/* ==========================================================
   RESULTS YOU CAN MEASURE
========================================================== */

.results-section{
    position:relative;
    background:#f9f9f9;
    overflow:visible;
    padding:100px 0 80px;
}

.results-v-divider-bottom{
    position:absolute;
    left:0;
    bottom:-120px;
    width:100%;
    height:120px;
    z-index:20;
    pointer-events:none;
}

.results-v-divider-bottom svg{
    display:block;
    width:100%;
    height:100%;
}

/* ---------------- CONTAINER ---------------- */

.results-container{
    max-width:1300px;
    margin:0 auto;
    padding:0 24px;
    position:relative;
    z-index:6;
    overflow:visible;
}

/* ---------------- HEADER ---------------- */

.results-header{
    text-align:center;
    margin-bottom:70px;
}

.results-title-wrapper{
    overflow:hidden;
}

.results-main-title{
    font-family:var(--font-display),sans-serif;
    font-size:clamp(2.2rem,5vw,3.5rem);
    font-weight:900;
    color:#000;
    letter-spacing:-0.02em;
    text-transform:uppercase;
}

.results-title-gradient{
    font-family:"Permanent Marker",cursive;
    font-weight:400;
    background:linear-gradient(
        135deg,
        #ff7eb9 0%,
        #ff65a3 50%,
        #7afcff 100%
    );
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    padding-left:8px;
}

/* ---------------- GRID ---------------- */

.hexagon-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    max-width:1150px;
    margin:0 auto;
}

/* ---------------- HEXAGON ---------------- */

.hex-item{
    position:relative;
    width:250px;
    height:285px;
    clip-path:polygon(
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75%,
        0% 25%
    );
    background:linear-gradient(
        135deg,
        #d4af37 0%,
        rgba(212,175,55,.3) 100%
    );
    padding:3px;
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.hex-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(212,175,55,.18);
}

.hex-inner{
    width:100%;
    height:100%;
    background:#111;
    clip-path:polygon(
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75%,
        0% 25%
    );
    display:flex;
    align-items:center;
    justify-content:center;
    padding:35px;
    box-sizing:border-box;
}

.hex-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    width:100%;
}

/* ---------------- TEXT ---------------- */

.hex-text{
    font-family:"Cormorant Garamond",serif;
    font-size:1.65rem;
    font-weight:700;
    line-height:1.35;
    letter-spacing:.4px;
    color:#F4C430;
    margin:0;
    text-shadow:0 3px 12px rgba(244,196,48,.25);
}

/* ---------------- MOBILE ---------------- */

@media(max-width:600px){
    .results-section{
        padding:80px 0 120px;
    }
    .hex-item{
        width:220px;
        height:250px;
    }
    .hex-text{
        font-size:1.35rem;
    }
}
/* =========================================
   WALL OF GROWTH
========================================= */

.wall-growth {
    padding: 120px 8% 80px;
    background: #000;
    position: relative;
    overflow: hidden;
}


/* =========================================
   TITLE
========================================= */

.wall-growth__title {
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    font-weight: 600;
    margin: 0 0 55px;
    color: #fff;
    line-height: 1.1;
}

.wall-growth__title span {
    color: #2E7D32;
    font-weight: 600;
}


/* =========================================
   BOOKS CONTAINER
========================================= */

.growth-books-container {
    width: 100%;
    max-width: 1400px;
    margin-bottom: 0;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    gap: 30px;
}


/* =========================================
   INDIVIDUAL BOOK + BUTTON COLUMN
========================================= */

.growth-book {
    flex: 1 1 0;
    max-width: 430px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
}


/* =========================================
   BOOK CARD
========================================= */

.growth-book-card {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}


/* =========================================
   BOOK MOCKUP
========================================= */

.growth-book-mockup {
    width: 100%;

    position: relative;

    transform-style: preserve-3d;

    /* Initial book angle */
    transform: rotateY(-12deg);

    transition:
        transform 0.4s ease,
        filter 0.4s ease;

    cursor: pointer;

    /* Make sure the book is above decorative elements */
    z-index: 2;
}


/* =========================================
   BOOK HOVER
   IMPORTANT:
   ONLY THE BOOK CHANGES
   THE BUTTON DOES NOT
========================================= */

.growth-book-mockup:hover {
    transform: rotateY(-2deg) scale(1.04);

    filter: brightness(1.08);
}


/* =========================================
   BOOK IMAGE
========================================= */

.growth-book img {
    width: 100%;
    max-width: 410px;
    height: auto;

    display: block;

    filter: drop-shadow(
        0 20px 30px rgba(0, 0, 0, 0.45)
    );

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


/* =========================================
   VIEW COURSES BUTTON
========================================= */

.btn--gold-para {
    width: 150px;
    min-height: 45px;

    margin-top: -60px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 30px;

    background: #d6a96d;
    color: #000;

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    text-decoration: none;
    text-align: center;

    white-space: nowrap;

    /* Angled shape */
    clip-path: polygon(
        8% 0%,
        100% 0%,
        92% 100%,
        0% 100%
    );

    border: none;
    border-radius: 0;

    position: relative;

    /* Above decorative lines */
    z-index: 10;

    opacity: 1;
    visibility: visible;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

    cursor: pointer;
}


/* =========================================
   BUTTON HOVER
========================================= */

.btn--gold-para:hover {
    background: #e8d48b;
    color: #000;

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(214, 169, 109, 0.25);
}


/* =========================================
   IMPORTANT:
   PREVENT ANY BOOK HOVER FROM HIDING BUTTON
========================================= */

.growth-book:hover .btn--gold-para {
    opacity: 1;
    visibility: visible;
    display: inline-flex;
    transform: none;
}


/* =========================================
   REMOVE OLD BOOK HOVER BEHAVIOUR
========================================= */

.growth-book:hover {
    transform: none;
}


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');

.ziva-v-divider-wrapper{
    width:100%;
    line-height:0;
    background:#000;
    margin-top:-70px;
    margin-bottom:-10px;
    position:relative;
    z-index:20;
}

.ziva-v-svg{
    display:block;
    width:100%;
    height:90px;
    background:#000;
}

.ziva-choice-footer {
  background-color: #000000;
  padding: 60px 20px 40px 20px;
  margin-top: -2px;
  border: none;
  position: relative;
}

.ziva-choice-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.choice-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 80px;
  display: inline-block;
}

.choice-heading .script-gold {
  font-family: 'Permanent Marker', 'Caveat Brush', sans-serif;
  font-size: 4rem;
  color: #d6a96d;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 18px;
  display: inline-block;
  text-transform: uppercase;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c;
  padding-top: 35px;
  margin-top: 50px;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
}

.ziva-logo-text {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #d6a96d;
  letter-spacing: 0.5px;
}
.footer-socials a {
  color: #f05a7e;
  font-size: 1.2rem;
  margin-right: 20px;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover {
  opacity: 0.8;
}

.footer-copyright {
  font-family: sans-serif;
  font-size: 0.85rem;
  color: #777777;
}

.footer-copyright a {
  color: #777777;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.2s ease;
}

.footer-copyright a:hover {
  color: #d6a96d;
}

.footer-copyright .sep {
  color: #333333;
}

@media (max-width: 768px) {
  .choice-heading {
    font-size: 2.2rem;
  }
  .choice-heading .script-gold {
    font-size: 2.6rem;
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* =====================================================
   FINAL NAVIGATION FIX
   ===================================================== */

/* DESKTOP NAVIGATION */
@media (min-width: 1101px) {

    .nav__menu {
        position: static !important;

        width: auto !important;
        height: auto !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;

        gap: 22px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: transparent !important;

        transform: none !important;

        transition: none !important;

        z-index: 1001 !important;

        visibility: visible !important;
        opacity: 1 !important;
    }


    .nav__menu li {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }


    .nav__link {
        display: inline-block !important;

        visibility: visible !important;
        opacity: 1 !important;

        color: #ffffff !important;

        white-space: nowrap !important;

        font-size: 12px !important;
        font-weight: 600 !important;
        letter-spacing: 1px !important;

        padding: 8px 0 !important;
    }


    /* CONFIDENT AVATAR */
    .nav__link--avatar {
        display: inline-block !important;

        visibility: visible !important;
        opacity: 1 !important;

        color: #d6a96d !important;

        font-weight: 700 !important;
    }


    .nav__link--avatar:hover {
        color: #e8d48b !important;
    }


    /* JOIN ZIVA */
    .nav__link--cta {
        display: inline-flex !important;

        visibility: visible !important;
        opacity: 1 !important;

        margin-top: 0 !important;

        padding: 10px 18px !important;

        background: #ff2d72 !important;
        color: #ffffff !important;
    }


    /* Hide hamburger on desktop */
    .nav__toggle {
        display: none !important;
    }
}


/* =====================================================
   MOBILE / TABLET
   ===================================================== */

@media (max-width: 1100px) {

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed !important;

        top: 0 !important;
        right: 0 !important;

        width: 100% !important;
        height: 100vh !important;
        height: 100dvh !important;

        background: rgba(0, 0, 0, 0.97) !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        gap: 18px !important;

        transform: translateX(100%) !important;

        transition: transform 0.5s cubic-bezier(
            0.77,
            0,
            0.175,
            1
        ) !important;

        z-index: 999 !important;
    }


    .nav__menu--open {
        transform: translateX(0) !important;
    }


    .nav__link {
        display: inline-block !important;

        visibility: visible !important;
        opacity: 1 !important;

        color: #ffffff !important;

        font-size: 14px !important;

        white-space: nowrap !important;
    }


    .nav__link--avatar {
        color: #d6a96d !important;
        font-weight: 700 !important;
    }


    .nav__link--cta {
        margin-top: 8px !important;
    }
}