/* ============================================================
   RESET & BASE
   ============================================================ */
   *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  :root {
    --bg:           #F7F4EF;
    --white:        #FFFFFF;
    --dark:         #1A1A1A;
    --forest-deep:  #162B15;
    --forest-mid:   #2D4A2A;
    --cream:        #EDE9E1;
    --gold:         #C99A2E;
    --orange-live:  #D95B2B;
    --muted:        #717171;
    --border:       #E2DDD5;
  
    --radius-sm:    10px;
    --radius-md:    18px;
    --radius-lg:    28px;
    --radius-pill:  10px;
  
    --shadow-card:  0 4px 28px rgba(0,0,0,0.38);
    --shadow-lift:  0 16px 60px rgba(0,0,0,0.38);
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body {
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.55;
    overflow-x: hidden;
    font-size: 1.2rem;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* ============================================================
     TYPOGRAPHY
     ============================================================ */
  h1, h2, h3 {
    font-family: 'Libre Bodoni', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.025em;
  }
  
  h1 { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  h2 { font-size: clamp(1.6rem, 5.8vw, 2.6rem); font-weight: 200; }
  h3 { font-size: 1.3rem; font-weight: 400; }
  
  em {
    font-style: italic;
  }
  
  /* ============================================================
     UTILITY
     ============================================================ */
  .section-inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* ============================================================
     PORTALS PAGE
     ============================================================ */
  .portals-page {
    background: #F7F4EF;
  }
  
  .portals-main {
    padding-top: 90px;
    padding-bottom: 56px;
  }
  
  .portals-hero {
    text-align: center;
    padding: 24px 24px 16px;
  }
  
  .portals-hero h1 {
    font-size: 1.4rem;
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .portals-hero p {
    font-size: 0.9rem;
    color: var(--muted);
  }
  
  .portals-list {
    max-width: 520px;
    margin: 10px auto 0;
    padding: 0 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 45px;
  }
  
  .portal-card {
    background: var(--white);
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    overflow: hidden;
  }
  
  .portal-card-media {
    padding: 0
  }
  
  .portal-card-img {
    width: 100%;
    height: 230px;
    background-color: #333;
    display: block;
    object-fit: cover;
  }
  
  .portal-card-body {
    padding: 18px 22px 22px;
    text-align: center;
  }
  
  .portal-card h2 {
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin:15px 0;
  }
  
  .portal-card-name-strong {
    font-weight: 700;
  }
  
  .portal-card-subtitle {
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 12px;
  }
  
  .portal-card-subtitle a {
    text-decoration: underline;
    cursor: pointer;
  }
  
  /* Lifetime Access modal */
  .lifetime-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease-out, visibility 220ms ease-out;
  }
  
  .lifetime-modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }
  
  .lifetime-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 420px;
    width: 100%;
    padding: 22px 22px 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.28);
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 220ms ease-out, transform 220ms ease-out;
  }
  
  .lifetime-modal-backdrop.is-open .lifetime-modal {
    opacity: 1;
    transform: translateY(0);
  }
  
  .lifetime-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }
  
  .lifetime-modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  
  .lifetime-modal-close {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
  }
  
  .lifetime-modal-close img {
    display: block;
    width: 22px;
    height: 22px;
  }
  
  .lifetime-modal p {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 10px;
  }
  
  .lifetime-modal p strong {
    font-weight: 800;
  }
  
  .lifetime-modal ul {
    padding-left: 1.1em;
    margin: 6px 0 16px;
    font-size: 0.9rem;
  }
  
  .lifetime-modal li + li {
    margin-top: 4px;
  }
  
  .lifetime-modal-footer {
    text-align: center;
  }
  
  .lifetime-modal-footer button {
    border-radius: 999px;
    padding: 10px 26px;
    border: 2px solid var(--dark);
    background: #FFFFFF;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
  }
  
  .portal-card-specs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
  }
  
  .portal-card-spec-pill {
    border-radius: 10px;
    border: 2px solid var(--dark);
    padding: 4px 10px 3px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  
  .portal-card-price-row {
    margin-bottom: 14px;
  }
  
  .portal-card-price {
    font-size: 2.2rem;
    font-weight: 100;
  }
  
  .portal-card-cta,
  .portal-card-secondary {
    width: 100%;
    border-radius: 999px;
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    border: 2px solid var(--dark);
    cursor: pointer;
  }
  
  .portal-card-cta {
    background: var(--dark);
    color: var(--white);
    margin-bottom: 8px;
  }
  
  .portal-card-secondary {
    background: transparent;
    color: var(--dark);
  }
  
  /* ============================================================
     LOGO MARK
     ============================================================ */
  .logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--dark);
    color: var(--white);
    border-radius: 7px;
    font-family: 'Libre Bodoni', serif;
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    line-height: 1;
    flex-shrink: 0;
  }
  
  /* ============================================================
     BUTTONS
     ============================================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  
  .shop-cta {
    font-size: 1.2rem;
  }
  
  .btn:hover {
    opacity: 0.82;
    transform: translateY(-1px);
  }
  
  .btn-dark {
    background: var(--dark);
    color: var(--white);
  }
  
  .btn-white {
    background: var(--white);
    color: var(--dark);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--dark);
    border: 4px solid var(--dark);
  }
  
  /* ============================================================
     NAVIGATION
     ============================================================ */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(247, 244, 239, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }
  
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;
    max-width: 960px;
    margin: 0 auto;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
  }
  
  .logo-img {
    height: 45px;
    width: auto;
    display: block;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .nav-rating {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .nav-stars {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
  
  .nav-rating-val {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
  }
  
  .nav-reviews {
    font-size: 0.7rem;
    color: var(--muted);
  }
  
  .nav-cart {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 4px;
    display: flex;
    align-items: center;
    opacity: 0.8;
    position: relative;
  }
  
  .nav-cart:hover {
    opacity: 1;
  }
  
  .nav-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    padding: 2px 4px;
    border-radius: 999px;
    background: var(--dark);
    color: #FFFFFF;
    font-size: 0.65rem;
    line-height: 1;
    text-align: center;
  }
  
  .nav-burger {
    background: none;
    border: none;
    padding: 4px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
  }
  
  .nav-burger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--dark);
  }
  
  /* ============================================================
     SIDEBAR
     ============================================================ */
  .sidebar {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  
  .sidebar.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .sidebar-inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 16px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .sidebar-logo {
    height: 45px;
    width: auto;
  }
  
  .sidebar-close {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  
  .sidebar-close-img {
    width: 32px;
    height: 32px;
    display: block;
  }
  
  .sidebar-hero {
    margin-inline: -24px; /* pull image to screen edges */
  }
  
  .sidebar-hero-img {
    width: 100%;
    display: block;
  }
  
  .sidebar-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 20px;
  }
  
  .sidebar-cta {
    min-width: 210px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
  }
  
  .sidebar-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .sidebar-support {
    width: 100%;
  }
  
  .sidebar-support-panel {
    margin-top: 14px;
    padding: 18px 20px 20px;
    border-radius: 22px;
    background: #ffffff;
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  
  .sidebar-support-panel h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  
  .sidebar-support-panel p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  
  .sidebar-support-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .sidebar-support-btn {
    display: block;
    text-align: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 600;
  }
  
  .sidebar-link {
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    cursor: pointer;
    font-weight: 500;
  }
  
  .sidebar-link-icon {
    font-size: 1.1rem;
  }
  
  .sidebar-arrow {
    width: 16px;
    height: 16px;
    display: block;
    transition: transform 0.16s ease;
  }
  
  .sidebar-arrow-down {
    width:24px;
    height: 20px;
  }
  
  .sidebar-arrow-right {
    width:22px;
    height: 20px;
  }
  
  .sidebar-support-toggle.is-open .sidebar-arrow {
    transform: rotate(180deg);
  }
  
  /* ============================================================
     HERO
     ============================================================ */
  .hero {
    position: relative;
    height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 56px;
    overflow: hidden;
  }
  
  .hero-media {
    position: absolute;
    inset: 0;
  }
  
  .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }
  
  .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.02) 25%,
      rgba(0,0,0,0.38) 62%,
      rgba(0,0,0,0.82) 100%
    );
    opacity: 0.3;
  }
  
  .hero-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 28px 24px;
    gap: 31px;
  }
  
  .hero-frame {
    width: 198px;
    margin-left: -1px;
    /* border: 1px solid #000000; */
    background: #333333;
  }
  
  .hero-frame-inner {
    position: relative;
    overflow: hidden;
  }
  
  .hero-video {
    display: block;
    width: 100%;
    height:366px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.25s ease-out;
  }
  
  .hero-video-mini {
    display: block;
    width: 100%;
    object-fit: cover;
    background: #1F1F1F;
  }
  
  .hero-frame-mini {
    background: #1F1F1F;
  }
  
  /* Second frame overlay: position/size set by JS to match hero-bg-img cover */
  .hero-frame-mini.hero-frame-br {
    position: absolute;
    margin-left: 0;
    transform-origin: top left;
    transform: perspective(400px) rotateX(3deg) rotateY(6deg) rotateZ(-1deg) skew(5.1deg, -3.9deg);
    opacity: 0;
    transition: opacity 0.1s ease-out;
  }
  
  .hero-frame-mini.hero-frame-br.is-loaded {
    opacity: 1;
  }
  
  .hero-frame-mini .hero-frame-inner {
    aspect-ratio: 3/4;
    background: #1F1F1F;
  }
  
  .hero-frame-mini .hero-video {
    height: 100%;
    min-height: 160px;
  }
  
  .hero-copy {
    text-align: center;
    color: var(--white);
  }
  
  .hero-copy h1 {
    color: var(--dark);
    margin-bottom: 18px;
    font-size: 29px;
    font-weight: 500;
  }
  
  .hero-title-1-span {
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
  }
  
  .hero-title-1-span-span{
    font-weight: 400;
  }
  
  .hero-pill {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--cream);
    padding: 13px 22px;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
  }
  
  .hero-rating-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 28px 40px;
    color: var(--white);
  }
  
  .rating-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
  
  .rating-val {
    font-size: 0.85rem;
    font-weight: 600;
  }
  
  .rating-reviews {
    font-size: 0.75rem;
    opacity: 0.75;
  }
  
  /* ============================================================
     LIVE TAGLINE (below hero)
     ============================================================ */
  .live-tagline {
    background: #F5F0EC;
    padding: 48px 24px 56px;
    text-align: center;
  }
  
  .live-tagline-head {
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: clamp(1.2rem, 3vw, 1.2rem);
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 1.3;
  }
  
  .live-tagline-sub {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 1.2rem);
    color: var(--dark);
    margin: 0;
  }
  
  /* ============================================================
     FRAME FEATURE
     ============================================================ */
  .frame-feature {
    background: var(--white);
    padding: 42px 24px 20px;
    overflow: hidden;
  }
  
  .frame-img-wrap {
    width: min(340px, 88vw);
    margin: 0 auto 44px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
  }
  
  .frame-img {
    width: 100%;
    display: block;
  }
  
  .frame-copy {
    text-align: center;
  }
  
  
  .frame-feature-title{
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 400;
    font-size: 2.4rem !important;
  }
  
  .portal-title-strong{
    font-weight: 800;
  }
  
  .frame-feature.frame-feature-mini {
    overflow: visible;
  }
  
  .frame-feature-mini-img-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .frame-feature-mini-swiper .swiper-slide {
    width: 100%;
  }
  
  .frame-feature-mini-swiper .frame-feature-mini-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
    object-fit: cover;
  }
  
  .frame-feature-mini-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
  }
  
  .frame-feature-mini-thumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 0 24px;
  }
  
  .frame-feature-mini-thumb {
    flex: 0 0 auto;
    width: 80px;
    height: 50px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s ease, opacity 0.2s ease;
  }
  
  .frame-feature-mini-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .frame-feature-mini-thumb:hover {
    opacity: 0.9;
  }
  
  .frame-feature-mini-thumb.is-active {
    border-color: var(--dark);
  }
  
  .frame-feature-mini-list {
    list-style: disc;
    padding-left: 1.25em;
    margin: 28px auto 0;
    max-width: 340px;
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.4;
    text-align: left;
  }
  
  .frame-feature-mini-list li {
    margin-bottom: 8px;
  }
  
  .frame-feature-mini-list li:last-child {
    margin-bottom: 0;
  }
  
  .frame-feature.frame-feature-max {
    overflow: visible;
  }
  
  .frame-feature.frame-feature-max-product {
    padding: 0px 24px 20px;
  }
  
  .frame-feature-max-composite {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .frame-feature-max-room {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
  }
  
  .frame-feature-max-overlay {
    margin-top: -90px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
  }
  
  .frame-feature-max-dimensions-img {
    display: block;
    max-width: 85%;
    width: auto;
    height: auto;
    max-height: 75vh;
    vertical-align: bottom;
  }
  
  .spec-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0 40px;
  }
  
  .spec-tag {
    
    color: var(--dark);
    font-size: 1rem;
    font-weight: 1000;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--dark);
  }
  
  .frame-copy h2 {
    max-width: 340px;
    margin: 0 auto;
  }
  
  .frame-scroll-mask {
    margin: 25px auto 0;
    width: min(360px, 86vw);
    height: 360px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    background: #000;
    position: relative;
  }
  
  .frame-scroll-mask-wide {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    box-shadow: none;
  }
  
  .frame-scroll-img {
    width: 100%;
    height: 180%;
    object-fit: cover;
    transition: transform 0.12s linear;
  }
  
  /* ============================================================
     WORLD SECTION
     ============================================================ */
  .world {
    padding: 30px 0 0px;
    background: var(--white);
    overflow: hidden; /* prevent page-level horizontal scroll from peeking slides */
  }
  
  .world-content {
    text-align: center;
  }
  
  .world-content h2 {
    margin-bottom: 36px;
  }
  
  .world-swiper {
    width: 100%;
    padding: 8px 24px 32px;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .world-swiper-mini .location-thumb {
    aspect-ratio: 3 / 4.2;
    border: 18px solid var(--dark);
  }
  
  .world-swiper-portal {
    width: 100%;
    padding: 8px 0 32px;
    margin: 0;
    box-sizing: border-box;
  }
  
  .world-swiper-mini {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  
  .world-swiper-max {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  
  .location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 260px;
    margin: 0 auto;
  }
  
  .location-thumb {
    width: 100%;
    border-radius: 2px;
    
    background: #000;
    overflow: hidden;
    aspect-ratio: 3 / 5.3;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
  }
  
  .world-swiper .location-thumb--frame {
    background-image: url('images/frame.png');
    background-image: url(images/frame.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      padding: 0px 11px;
  }
  
  .location-thumb img,
  .location-thumb video {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 3 / 5.2;
    
  }
  
  .location-thumb--list {
    
    
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .location-list-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--white);
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  
  .location-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.7;
    color: var(--white);
    text-align: center;
  }
  
  .location-name {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  
  .world-footer {
    text-align: center;
  }
  
  .world-cta {
    margin-top: 8px;
    padding-inline: 56px;
    padding-block: 16px;
    border-radius: 999px;
  }
  
  /* ============================================================
     TEACHING MOMENTS
     ============================================================ */
  .teaching {
    padding: 72px 24px;
    background: var(--bg);
  }
  
  .teaching-product{
    padding: 20px 0px 35px;
    background: #fff;
    text-align: left;
  }
  
  
  
  .teaching-product .moment-img{
    aspect-ratio: 3 / 4.2;
  }
  
  .teaching-product-max .moment-img{
    aspect-ratio: 3 / 5.2;
    }
  
  .teaching-product .moment-card{
    border: 22px solid var(--dark);
  }
  
  .teaching-product-max .moment-card{
    border: 10px solid var(--dark);
    border-radius: 2px;
    }
  
  .teaching-product h2 {
    margin-bottom: 20px !important;
  }
  
  .teaching-product .section-inner {
    text-align: left !important;
  }
  
  
  .teaching-product h2 {
    margin-bottom: 20px;
  }
  
  .teaching-product p {
    margin-bottom: 20px;
  }
  
  /* ============================================================
     LOGIN PAGE
     ============================================================ */
  .login-page {
    background: var(--bg);
  }
  
  .login-main {
    max-width: 520px;
    margin: 96px auto 40px;
    padding: 0 24px;
  }
  
  .login-hero {
    text-align: left;
    margin-bottom: 28px;
    text-align: center;
  }
  
  .login-hero h1 {
    margin-bottom: 10px;
  }
  
  .login-hero p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
  }
  
  .login-card {
    background: #FFFFFF;
    border-radius: 26px;
    padding: 26px 24px 24px;
    box-shadow: var(--shadow-card);
  }
  
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .login-field span {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 6px;
  }
  
  .login-field input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
  }
  
  .login-field input:focus {
    border-color: var(--dark);
  }
  
  .login-field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    background-color: #FFFFFF;
  }
  
  .login-field select:focus {
    border-color: var(--dark);
  }
  
  .login-submit {
    margin-top: 8px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    background: var(--dark);
    color: #FFFFFF;
    font-size: 0.95rem;
    cursor: pointer;
  }
  
  .login-meta {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .login-link {
    font-size: 0.8rem;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  .login-close-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid var(--dark);
    font-size: 1.1rem;
  }
  
  /* ============================================================
     PRODUCT PAGE
     ============================================================ */
  .product-page {
    background: #FFFFFF;
    overflow-x: hidden;
  }
  
  .policy-main {
    max-width: 640px;
    margin: 80px auto 48px;
    padding: 0 24px 40px;
  }
  
  .policy-section {
    margin-bottom: 24px;
  }
  
  .policy-section h1 {
    margin-bottom: 10px;
    font-size: 30px;
  }
  
  .policy-section h2 {
    margin-bottom: 8px;
  }
  
  .policy-updated {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 12px;
  }
  
  .policy-list {
    margin: 10px 0 0;
    padding-left: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .product-main {
    max-width: 520px;
    margin: 70px auto 96px;
    padding: 0 24px;
  }
  
  .product-main-wide {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  
  .product-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 26px;
  }
  
  .product-hero-frame {
    width: 100vw;
    height: 260px;
    margin: 0;
    margin-left: 50%;
    transform: translateX(-50%);
    background: #000;
    overflow: hidden;
  }
  
  .product-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .product-hero-thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
  }
  
  .product-thumb {
    width: 52px;
    height: 38px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #eeeeee;
    cursor: pointer;
  }
  
  .product-title-span{
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  
  .product-thumb.is-active {
    border-color: var(--dark);
  }
  
  .product-body {
    margin-bottom: 28px;
  }
  
  .product-body .portal-card-specs{
    margin-top: 14px;
  }
  
  .product-header h1 {
    text-align: center;
    margin-bottom: 8px;
  }
  
  .product-header h3 {
    text-align: center;
  }
  
  .product-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    justify-content: center;
  }
  
  .product-rating-score {
    font-weight: 600;
  }
  
  .product-rating-stars {
    color: var(--gold);
    letter-spacing: 1px;
  }
  
  .product-rating-reviews {
    color: var(--muted);
  }
  
  .product-bullets {
    margin: 16px 0;
    padding-left: 18px;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .product-locations {
    margin-top: 8px;
  }
  
  .product-network {
    overflow: visible;
  }
  
  .product-copy {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 25px;
  }
  
  .product-subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
  }
  
  .product-returns {
    margin-top: 8px;
  }
  
  .product-review {
    padding-bottom: 16px;
  }
  
  .product-read-reviews{
    width: 100%;
  }
  
  .product-review-portal {
    margin-top:20px;
  }
  
  .product-read-reviews {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .product-sticky-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
    padding: 10px 16px 14px;
    z-index: 260;
  }
  
  .product-sticky-inner {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  
  .product-sticky-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .product-price {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  
  .product-price-sub {
    font-size: 0.72rem;
    color: var(--muted);
  }
  
  .product-sticky-btn {
    padding: 16px 30px;
    border-radius: 999px;
    border: none;
    background: var(--dark);
    color: #FFFFFF;
    font-size: 1rem;
    white-space: nowrap;
    cursor: pointer;
  }
  
  /* ============================================================
     CART PAGE
     ============================================================ */
  .cart-main {
    padding-top: 64px;
  }
  
  .cart-hero {
    width: 100%;
  }
  
  .cart-hero-img-wrap {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  
  .cart-hero-img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .cart-body {
    padding-top: 10px;
    padding-bottom: 72px;
  }
  
  .cart-header {
    text-align: center;
    margin:36px 0;
  }
  
  .cart-header h1 {
    font-size: 1.9rem;
    letter-spacing: 0.04em;
  }
  
  .cart-card {
    border-radius: 26px;
    border: 1.5px solid #dddddd;
    padding: 28px 15px 32px;
    background: #FFFFFF;
  }
  
  .cart-table {
    display: grid;
    row-gap: 18px;
  }
  
  .cart-row {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 0.9fr;
    column-gap: 8px;
    align-items: center;
    font-size: 0.95rem;
  }
  
  .cart-row-head {
    font-weight: 600;
  }
  
  .cart-product-name {
    display: block;
  }
  
  .cart-row-lifetime .cart-product-name-lifetime {
    text-decoration: underline;
  }
  
  .cart-qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .cart-qty-static {
    justify-content: flex-start;
  }
  
  .cart-qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid #111111;
    background: transparent;
    font-size: 1rem;
    line-height: 1;
  }
  
  .cart-qty-value {
    min-width: 10px;
    text-align: center;
  }
  
  .cart-price {
    text-align: right;
  }
  
  .cart-price-free {
    font-weight: 600;
  }
  
  .cart-row-total {
    border-top: 1px solid #111111;
    padding-top: 14px;
    margin-top: 8px;
    font-weight: 600;
  }
  
  .cart-total-label {
    font-weight: 600;
  }
  
  .cart-total-amount {
    text-align: right;
  }
  
  .cart-note {
    margin-top: 28px;
    text-align: center;
    font-size: 0.83rem;
    color: var(--muted);
  }
  
  .cart-checkout-btn-wrap-or{
    text-align: center;
  }
  
  .premium-card {
    margin-top: 26px;
  }
  
  .premium-card-inner {
    background: #FFFBF7;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
    padding: 26px 26px 20px;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }
  
  .premium-card-kicker {
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
    margin-top: 14px;
  }
  
  .premium-card-title {
    font-family: 'Libre Bodoni', Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 24px;
    margin-top:-4px;
  }
  
  .premium-card-list {
    margin: 0 0 18px;
    padding-left: 1.1em;
    font-size: 0.95rem;
    font-weight: 800;
    text-align: left;
  }
  
  .premium-card-list li + li {
    margin-top: 2px;
  }
  
  .premium-card-pricing {
    text-align: center;
    margin: 12px 0 18px;
  }
  
  .premium-card-pricing-main {
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
  }
  
  .premium-card-pricing-sub {
    font-family: 'Fustat', system-ui, -apple-system BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    margin-top: 2px;
  }
  
  .premium-card-cta {
    width: 100%;
    background: #FFFBF7;
    margin-top: 4px;
    border-radius: 999px;
    padding: 12px 24px;
    border: 2px solid #111111;
    cursor: pointer;
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
  }
  
  .premium-card-cta:hover {
    background: #111111;
    color: #FFFFFF;
  }
  
  .premium-card-footnote {
    text-align: center;
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--muted);
  }
  
  .cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 10px 26px;
    border-radius: 999px;
    border: 2px solid #111111;
    background: #FFFFFF;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    margin-top: 20px;
  }
  
  .cart-checkout-btn-wrap{
    padding:25px;
  }
  
  .cart-empty {
    text-align: center;
    padding: 10px 0 0;
  }
  
  .cart-empty-title {
    font-weight: 500;
    margin-bottom: 4px;
  }
  
  .cart-empty-body {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 18px;
  }
  
  /* ============================================================
     CHECKOUT PAGE
     ============================================================ */
  .checkout-main {
    padding-bottom: 0;
  }
  
  .checkout-header h1 {
    font-size: 1.9rem;
    letter-spacing: 0.04em;
  }
  
  .checkout-card {
    
    padding: 5px 5px 32px;
    background: #FFFFFF;
  }
  
  .checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .checkout-block-title {
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 4px;
    padding-top: 16px;
  }
  
  .checkout-form .checkout-block-title:first-child {
    padding-top: 0;
  }
  
  .checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr 0.9fr;
    gap: 12px;
  }
  
  .checkout-summary {
    margin-top: 8px;
    padding-top: 20px;
    
  }
  
  .checkout-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .checkout-summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #111111;
  }
  
  .checkout-summary-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 10px 0 0;
  }
  
  .checkout-order {
    width: 100vw;
    padding: 10px;
    margin-left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid rgba(15,23,42,0.12);
    background: #F9FAFB;
  }
  
  .checkout-order-inner {
    max-width: 640px;
    margin: 0 auto;
  }
  
  .order-summary-toggle {
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
  }
  
  .order-summary-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .order-summary-total {
    font-weight: 600;
    font-size: 20px;
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  
  .order-summary-chevron {
    margin-left: 4px;
    font-size: 0.85rem;
    transition: transform 0.15s ease;
  }
  
  .order-summary-toggle.is-collapsed .order-summary-chevron {
    transform: rotate(180deg);
  }
  
  .order-summary-panel {
    border-top: 1px solid rgba(15,23,42,0.12);
    padding: 10px 14px 14px;
  }
  
  .checkout-express {
    padding: 14px 14px 18px;
  }
  
  .checkout-express-title {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .checkout-express-btn {
    border-radius: 999px;
    border: none;
    padding: 11px 16px;
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
  }
  
  .checkout-express-btn-primary {
    width: 100%;
    background: #5B21FF;
    color: #FFFFFF;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .checkout-express-logo {
    max-width: 105px;
    height: auto;
    display: block;
  }
  
  .paypal-logo{
    max-width: 70px;
  }
  
  .google-pay-logo{
    max-width: 60px;
  }
  
  .checkout-express-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .checkout-express-btn-paypal {
    flex: 1;
    background: #FFC439;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .checkout-express-btn-gpay {
    flex: 1;
    background: #111827;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .checkout-express-btn-gpay .checkout-express-logo {
    filter: invert(1);
  }
  
  .checkout-express-copy {
    margin: 6px 0 10px;
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
  }
  
  .checkout-express-divider {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .checkout-express-line {
    flex: 1;
    height: 1px;
    background: rgba(15,23,42,0.12);
  }
  
  .checkout-express-or {
    font-size: 0.78rem;
    color: var(--muted);
  }
  
  .checkout-payment {
    border-radius: 14px;
    border: 1.5px solid #2563eb;
    padding: 14px 14px 16px;
    background: #F9FAFB;
  }
  
  .checkout-payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .checkout-payment-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .checkout-radio-indicator {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid #2563eb;
    box-shadow: inset 0 0 0 3px #2563eb;
  }
  
  .checkout-card-brands {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  
  .checkout-card-pill {
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,0.18);
    font-size: 0.7rem;
    background: #FFFFFF;
  }
  
  .checkout-card-pill-more {
    background: #111827;
    color: #FFFFFF;
  }
  
  .checkout-payment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .checkout-row-tight {
    grid-template-columns: 1.1fr 0.9fr;
  }
  
  .checkout-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 0.85rem;
  }
  
  .checkout-checkbox input {
    width: 14px;
    height: 14px;
  }
  
  .checkout-billing {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(15,23,42,0.12);
    display: none;
  }
  
  .checkout-order-inline {
    margin-top: 18px;
    padding: 12px 14px 14px;
    border-radius: 16px;
    border: 1.5px solid #111827;
    background: #F9FAFB;
  }
  
  .checkout-order-inline-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .checkout-order-inline-main {
    display: flex;
    flex-direction: column;
  }
  
  .checkout-order-inline-title {
    font-weight: 600;
  }
  
  .checkout-order-inline-items {
    font-size: 0.78rem;
    color: var(--muted);
  }
  
  .checkout-order-inline-chip {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 999px;
    background: #E5E7EB;
  }
  
  .checkout-order-inline-amount {
    font-weight: 700;
    font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  
  .checkout-order-inline-breakdown {
    border-top: 1px solid rgba(15,23,42,0.12);
    padding-top: 8px;
  }
  
  .checkout-submit {
    width: 100%;
    margin-top: 12px;
    padding: 16px 26px;
    border-radius: 999px;
    border: none;
    background: var(--dark);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
  }
  
  @media (max-width: 480px) {
    .checkout-row {
      grid-template-columns: 1fr;
    }
  }
  
  .teaching .section-inner {
    text-align: center;
    padding: 0 10px;
  }
  
  .teaching h2 {
    margin-bottom: 36px;
  }
  
  .moment-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    text-align: left;
    border: 18px solid var(--dark);
  }
  
  .moment-img-wrap {
    position: relative;
    overflow: hidden;
  }
  
  .moment-img {
    width: 100%;
    aspect-ratio: 3 / 4.7;
    object-fit: cover;
    object-position: center 30%;
    display: block;
  }
  
  .moment-back {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: rgba(0,0,0,0.45);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .moment-back span {
    font-size: 1.3rem;
    line-height: 1;
  }
  
  .moment-top-right {
    position: absolute;
    top: 26px;
    right: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  
  .moment-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.6rem;
    color: #FFFFFF;
  }
  
  .live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
  }
  
  .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--orange-live);
  }
  
  .live-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  
  .moment-text-overlay {
    position: absolute;
    inset-inline: 22px;
    bottom: 26px;
    color: #FFFFFF;
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 85%;
  }
  
  .moment-text-overlay p {
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  }
  
  
  /* ============================================================
     WILDLIFE ID
     ============================================================ */
  .wildlife {
    padding: 72px 0 0px;
    background: var(--white);
  }
  
  
  .wildlife .section-inner {
    text-align: center;
    padding: 0 10px;
  }
  
  .wildlife-product .section-inner{
    text-align: left;
    position: relative;
    z-index: 1;
  }
  
  .wildlife-product {
    padding: 30px 0;
  }
  
  .wildlife-product .wildlife-collection-img  {
    margin-top: -55px;
  }
  
  
  .wildlife-copy {
    margin-bottom: 40px;
  }
  
  .wildlife-copy h2 {
    margin-bottom: 14px;
  }
  
  .wildlife-copy p {
    font-size: 1.2rem;
    color: var(--dark);
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .wildlife-device {
    margin: 32px 0 0px;
  }
  
  .wildlife-collection-img {
    width: 100vw;
    max-width: none;
    display: block;
    border-radius: 0;
    margin-left: 50%;
    margin-top: -45px;
    transform: translateX(-50%);
  }
  
  @media (min-width: 768px) {
    .wildlife-device {
      margin: 40px auto 40px;
      max-width: 960px;
    }
  
    .wildlife-collection-img {
      width: 100%;
      max-width: 100%;
      border-radius: 26px;
      margin-left: 0;
      transform: none;
    }
  }
  
  .wildlife-cta-wrap {
    text-align: center;
  }
  
  /* ============================================================
     REVIEWS
     ============================================================ */
  .reviews {
    padding: 40px 0 40px;
    background: var(--bg);
  }
  
  .reviews .section-inner {
    text-align: center;
  }
  
  .reviews-header .review-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  
  .reviews-swiper {
    padding: 0 24px;
  }
  
  .review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 26px 22px 24px;
    border: 1.5px solid #111111;
    text-align: left;
    height:243px;
  }
  
  #product-reviews-list .review-card{
    margin-bottom: 20px;
  }
  
  .review-stars-inline {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  .review-card h3 {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .review-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 22px;
  }
  
  .reviewer-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--muted);
  }
  
  .reviewer-name {
    font-weight: 600;
    color: var(--dark);
  }
  
  .reviewer-sep {
    opacity: 0.4;
  }
  
  .verified {
    color: var(--dark);
  }
  
  .reviews-footer {
    text-align: center;
  }
  
  .reviews-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  /* ============================================================
     MOBILE APP SECTION
     ============================================================ */
  .app-sec {
    padding: 72px 24px;
    background: var(--white);
    overflow: hidden;
  }
  
  .app-sec .section-inner {
    text-align: center;
  }
  
  .app-sec h2 {
    margin-bottom: 44px;
  }
  
  .phone-wrap {
    display: flex;
    justify-content: center;
  }
  
  .phone {
    width: min(210px, 56vw);
    background: #18181B;
    border-radius: 46px;
    padding: 10px;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.08),
      0 28px 80px rgba(0,0,0,0.32),
      inset 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
  }
  
  .phone-dynamic-island {
    width: 78px;
    height: 26px;
    background: #18181B;
    border-radius: 14px;
    margin: 0 auto 6px;
    position: relative;
    z-index: 2;
  }
  
  .phone-screen {
    background: #0D1F12;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
  }
  
  .phone-bg-img {
    position: absolute;
    inset: 0;
  }
  
  .phone-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .phone-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(8, 22, 10, 0.55) 0%,
      rgba(8, 22, 10, 0.35) 40%,
      rgba(8, 22, 10, 0.55) 100%
    );
  }
  
  .phone-content {
    position: relative;
    padding: 24px 16px 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  
  .phone-time-block {
    text-align: center;
    padding-top: 8px;
  }
  
  .phone-date-label {
    color: rgba(255,255,255,0.65);
    font-size: 0.66rem;
    letter-spacing: 0.03em;
    margin-bottom: 3px;
  }
  
  .phone-time-label {
    color: var(--white);
    font-size: 2.9rem;
    font-weight: 200;
    letter-spacing: -0.04em;
    line-height: 1;
  }
  
  .phone-notif {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 14px;
    padding: 12px 12px;
    border: 1px solid rgba(255,255,255,0.09);
  }
  
  .notif-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--forest-mid);
    color: var(--white);
    border-radius: 8px;
    font-family: 'Libre Bodoni', serif;
    font-size: 13px;
    font-style: italic;
    flex-shrink: 0;
  }
  
  .notif-text {
    flex: 1;
    min-width: 0;
  }
  
  .notif-title-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
  }
  
  .notif-app {
    font-family: 'Libre Bodoni', serif;
    font-style: italic;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
  }
  
  .notif-title {
    font-size: 0.67rem;
    font-weight: 600;
    color: var(--white);
  }
  
  .notif-msg {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin-bottom: 4px;
  }
  
  .notif-time {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.45);
  }
  
  /* ============================================================
     PRODUCT NETWORK SECTION
     ============================================================ */
  .product-network {
    background: var(--white);
  }
  
  .product-network .section-inner{
    text-align: left;
    padding: 0;
  }
  
  .product-network .product-copy {
    margin-bottom: 24px;
  }
  
  /* ============================================================
     SOUNDS SECTION
     ============================================================ */
  .sounds {
    padding: 72px 24px 80px;
    background: var(--white);
  }
  
  .sounds-portal .section-inner{
   text-align: left;
  }
  
  .sounds-portal .sounds-content {
    padding:0;
  }
  
  .sounds-portal{
    padding:0 0 24px;
  }
  
  .sounds-content {
    text-align: center;
  }
  
  .sounds-content h2 {
    margin-bottom: 20px;
  }
  
  .sounds-body {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.72;
    margin: 0 auto;
  }
  
  .sounds-integrations {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--dark);
    line-height: 1.6;
  }
  
  .sounds-brand {
    font-weight: 600;
  }
  
  .sounds-image-wrap {
    margin-top: 32px;
  }
  
  .sounds-device-img {
    width: 100%;
    border-radius: 26px;
    display: block;
    box-shadow: var(--shadow-card);
  }
  
  /* ============================================================
     CONSERVATION SECTION
     ============================================================ */
  .conservation {
    padding: 0px 24px 80px;
    background: var(--white);
    text-align: center;
  }
  
  .conservation-content h2 {
    margin-bottom: 14px;
  }
  
  .conservation-body {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.7;
    max-width: 390px;
    margin: 10px auto 0;
  }
  
  .conservation-image-wrap {
    margin-top: 32px;
  }
  
  .conservation-img {
    width: 100%;
    border-radius: 26px;
    display: block;
    box-shadow: var(--shadow-card);
  }
  
  .conservation-cta-wrap {
    text-align: center;
    margin-top: 36px;
  }
  
  /* ============================================================
     FAQ SECTION
     ============================================================ */
  .faq {
    padding: 0 24px 80px;
    background: var(--white);
  }
  
  .faq-portal{
    padding: 50px 0px 80px;
  }
  
  .faq .section-inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
  }
  
  .faq h2 {
    text-align: center;
    margin-bottom: 28px;
  }
  
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .faq-item {
    border-radius: 18px;
    border: 1.5px solid #111111;
    padding: 14px 18px;
    background: #FFFFFF;
  }
  
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
  }
  
  .faq-item[open] summary {
    margin-bottom: 8px;
  }
  
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
  }
  
  /* ============================================================
     FOOTER
     ============================================================ */
  .footer {
    background: var(--bg);
    padding: 40px 24px 32px;
  }
  
  .footer-inner {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
  }
  
  .footer-top {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-wordmark {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.3rem;
  }
  
  .footer-links-grid {
    display: flex;
    gap: 40px;
    width: 100%;
  }
  
  .footer-links-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-nav-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.92rem;
  }
  
  .footer-nav-underline {
    height: 1px;
    background: var(--dark);
  }
  
  .footer-copy {
    color: var(--dark);
    font-size: 0.75rem;
    margin-top: 8px;
  }
  
  /* ============================================================
     RESPONSIVE — TABLET & UP
     ============================================================ */
  @media (min-width: 640px) {
    .hero-body {
      padding: 100px 40px 24px;
    }
  
    .hero-frame {
      width: min(300px, 60vw);
    }
  
    .frame-img-wrap {
      width: min(420px, 80vw);
    }
  
    .location-card {
      width: 180px;
      height: 180px;
    }
  
    .moment-img {
      height: 340px;
    }
  
    .sounds {
      min-height: 500px;
    }
  
    .conservation {
      min-height: 560px;
    }
  }
  
  @media (min-width: 900px) {
    .nav-inner {
      padding: 14px 48px;
    }
  
    .hero-frame {
      width: min(360px, 50vw);
    }
  
    .frame-feature {
      display: flex;
      align-items: center;
      gap: 60px;
      padding: 80px 60px;
      max-width: 1000px;
      margin: 0 auto;
    }
  
    .frame-img-wrap {
      width: 420px;
      flex-shrink: 0;
      margin-bottom: 0;
    }
  
    .frame-copy {
      text-align: left;
      flex: 1;
    }
  
  
    .spec-tags {
      justify-content: flex-start;
    }
  
    .frame-copy h2 {
      margin: 0;
    }
  
    .teaching .section-inner,
    .wildlife .section-inner,
    .reviews .section-inner,
    .app-sec .section-inner {
      max-width: 680px;
    }
  }