/* ===========================
   iTRUEMATCH – FINAL STYLE SHEET
   Fixed: Wide Header (Desktop), Compact Cards (Laptop), Swipeable (Mobile)
   Added: App Loader Styles
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root{
  --bg: #0a0f1a;
  --text: #F6FAFF;
  --muted: #C7D0DC;
  --primary: #64E9EE;
  --primary-ink: #03151A;
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

*{ box-sizing:border-box; }

/* --- BOOT LOADER STYLES (first render only) --- */
#app-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    background:
      radial-gradient(circle at top, rgba(100, 233, 238, 0.08), transparent 36%),
      #000;
    transition: opacity 0.45s ease-out;
}

.loader-logo {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    box-shadow:
      0 0 0 1px rgba(100, 233, 238, 0.10),
      0 18px 40px rgba(0, 0, 0, 0.38);
    animation: pulseLogo 1.9s ease-in-out infinite;
}

.loader-text {
    margin-top: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 1.2px;
    font-size: 1.05rem;
    color: #F6FAFF;
    text-transform: uppercase;
}

@keyframes pulseLogo {
    0% {
      transform: scale(1);
      box-shadow:
        0 0 0 0 rgba(100, 233, 238, 0.30),
        0 18px 40px rgba(0, 0, 0, 0.38);
    }
    70% {
      transform: scale(1.06);
      box-shadow:
        0 0 0 18px rgba(100, 233, 238, 0),
        0 22px 50px rgba(0, 0, 0, 0.44);
    }
    100% {
      transform: scale(1);
      box-shadow:
        0 0 0 0 rgba(100, 233, 238, 0),
        0 18px 40px rgba(0, 0, 0, 0.38);
    }
}
/* -------------------------------- */

html, body{ 
  scroll-behavior:smooth; 
  overflow-x: hidden; 
  width: 100%;
}

body:not(.admin-page){
  margin:0;
  color:var(--text);
  font: 400 16px/1.7 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
  background: #000000 !important;
}
body:not(.admin-page)::before{
  content:""; position: fixed !important; inset: 0 !important; z-index: -1 !important;
  pointer-events: none; background: #000000;
}

/* Global Container */
.container{ width:100%; max-width: 1600px; margin:0 auto; padding:0 2rem; }
body:not(.admin-page) section { min-height: 100vh; padding: 4rem 0; display: flex; flex-direction: column; justify-content: center; position: relative; }

/* =========================================================================
   HEADER & NAVIGATION (UPDATED: WIDE DESKTOP)
   ========================================================================= */
.site-header{
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent; padding-top: 10px;
}

.nav{ 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  
  /* FIXED: WIDE LAYOUT (Dulo-dulo) for Desktop */
  max-width: 100%; 
  width: 100%;
  margin: 0; 
  padding: 1rem 3rem; /* Wide padding */
  
  position: relative;
  z-index: 1001;
}

/* BRAND LOGO (Left Dulo) */
body:not(.admin-page) .brand{ 
  display:flex !important; 
  align-items:center; 
  gap:.7rem; 
  color:var(--text); 
  text-decoration:none; 
  transition:transform .2s ease; 
  z-index: 1005; 
  opacity: 1 !important;
  visibility: visible !important;
}
.brand__logo{ width:48px; height:48px; object-fit:contain; } 
.brand__name{ font-weight:800; letter-spacing:.24px; white-space:nowrap; font-size:1.3rem; text-transform: none; }
body:not(.admin-page) .brand:hover{ transform: translateY(-1px) scale(1.03); }

/* DESKTOP MENU - ABSOLUTE CENTER (Gitna) */
.nav__menu{ 
  display:flex; align-items:center; gap: 2.5rem; 
  /* Centers the links regardless of side element widths */
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav__menu a{ color: var(--text); text-decoration:none; padding:.5rem .7rem; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; transition: color .2s ease; }
.nav__menu a:hover{ color: var(--primary); background: transparent; }

/* NAV ACTIONS (Right Dulo) */
.nav__actions{ display:flex; align-items:center; gap:.65rem; z-index: 1001; }

body:not(.admin-page) .btn{ display:inline-flex; align-items:center; justify-content:center; padding: 10px 24px; border-radius: 50px; font-weight: 600; border:1px solid transparent; background: transparent; color: var(--text); text-decoration:none; transition: transform .2s ease, color .2s ease; cursor:pointer; }
body:not(.admin-page) .btn:hover{ transform: translateY(-1px); color: var(--primary); }
body:not(.admin-page) .btn.primary{ background: linear-gradient(135deg, rgba(100,233,238,.95), rgba(41,163,255,.85)); color: var(--primary-ink); border: none; box-shadow: none; }
body:not(.admin-page) .btn.primary:hover{ filter: brightness(1.05); box-shadow: 0 5px 15px rgba(100, 233, 238, 0.3); }

.nav__toggle{
  display:none; 
  width:42px; height:42px; 
  border-radius:12px; border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06); box-shadow: 0 10px 30px rgba(0,0,0,.35); 
  cursor:pointer; z-index: 1003; position: relative;
  align-items: center; justify-content: center; flex-direction: column;
}
.nav__bar{ display:block; width:18px; height:2px; background: rgba(255,255,255,.9); margin:4px auto; border-radius:999px; }


/* =========================================================================
   SIDEBAR (OFF-CANVAS)
   ========================================================================= */
.nav__dropdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  width: min(280px, calc(100vw - 18px));
  height: auto;
  max-height: calc(100vh - 12px);
  background: rgba(10, 15, 26, 0.98);
  border-left: 1px solid rgba(100, 233, 238, 0.2);
  border-bottom: 1px solid rgba(100, 233, 238, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 76px 20px 20px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.8);
  transform: translateX(110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  z-index: 10000;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.25s ease,
    visibility 0s linear 0.4s;
}

.nav__dropdown.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.25s ease;
}

.nav__links-container{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.nav__links-container a{
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.2;
  background: rgba(255,255,255,0.012);
  border: 1px solid rgba(255,255,255,0.04);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav__links-container a:hover,
.nav__links-container a:focus-visible{
  color: var(--primary);
  text-decoration: none;
  background: rgba(100, 233, 238, 0.06);
  border-color: rgba(100, 233, 238, 0.20);
  box-shadow: 0 0 0 1px rgba(100, 233, 238, 0.08) inset;
  transform: translateX(2px);
  outline: none;
}

.sidebar-bottom-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding-bottom: 0;
}
.sidebar-bottom-actions .btn { width: 100%; }

.nav__close {
  position: absolute; top: 25px; right: 25px;
  background: none; border: none; font-size: 2.5rem;
  color: var(--muted); cursor: pointer; line-height: 1; padding: 0;
  transition: color 0.3s ease;
}
.nav__close:hover { color: var(--primary); }


/* =========================================================================
   HERO
   ========================================================================= */
.hero{ padding-top: 80px; z-index: 1; }
.hero .hero-container { width: 100%; max-width: 100%; padding: 0 4rem; }

.hero__grid{ display:flex; align-items:center; justify-content:space-between; gap: 4rem; width: 100%; }
.hero__copy{ flex: 1; max-width: 650px; }

.hero h1{
  font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.04em;
  font-weight: 800; margin: 1.2rem 0 .8rem; line-height: 1.1;
}
.hero h1 .highlight{
  background: linear-gradient(135deg, #64E9EE 0%, #29a3ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent;
}
.hero p{ color: var(--muted); margin: 0 0 2rem; max-width: 40rem; font-size: 1.15rem; line-height: 1.6; }
.hero__cta{ display:flex; gap: 1rem; justify-content:flex-start; flex-wrap:wrap; margin-top: 1rem; }
.hero-btn { min-width: 120px; height: 50px; padding: 0 30px; font-size: 1rem; }
.hero__social-proof { margin-top: 2rem; display: flex; align-items: center; gap: 12px; }
.avatars { display: flex; margin-left: 10px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid #0a0f1a; margin-left: -12px;
  background-size: cover; background-position: center;
}
.avatar.c1 { background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%); }
.avatar.c2 { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.avatar.c3 { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); }
.proof-text { font-size: 0.9rem; color: var(--text); }
.proof-text strong { color: var(--primary); }

.hero__media{ flex: 1; display: flex; justify-content: flex-end; position: relative; }
.hero__img-wrapper { position: relative; max-width: 550px; width: 100%; }
.floating { animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
.hero__logo{ width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 0 25px rgba(100, 233, 238, 0.5)); }
.pill{
  display:inline-flex; padding:.4rem .8rem; border-radius: 999px;
  font-size:.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  border: 1px solid rgba(100, 233, 238, 0.3); color: var(--primary); background: rgba(100, 233, 238, 0.05);
}
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none;
  opacity: 0.7; transition: opacity 0.3s;
}
.scroll-indicator:hover { opacity: 1; }
.scroll-indicator span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.mouse { width: 26px; height: 42px; border: 2px solid var(--muted); border-radius: 20px; position: relative; }
.wheel { width: 4px; height: 8px; background: var(--primary); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scroll 1.5s infinite; }
.scroll-arrow { width: 12px; height: 12px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); margin-top: -5px; animation: arrow-bounce 2s infinite; }
@keyframes arrow-bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); } 40% { transform: translateY(5px) rotate(45deg); } 60% { transform: translateY(3px) rotate(45deg); } }
@keyframes scroll { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 15px); opacity: 0; } }


/* =========================================================================
   1280px & DOWN (Laptop/Tablet) - FIX CARDS COMPACTNESS
   ========================================================================= */
@media (max-width: 1280px) {
  
  /* --- HEADER COMPACTING --- */
  .nav { padding: 0.8rem 2rem; max-width: 100%; }
  .brand__logo { width: 40px; height: 40px; }
  .brand__name { font-size: 1.1rem; }
  .nav__menu { gap: 1.5rem; }
  .nav__menu a { padding: 0.4rem 0.5rem; font-size: 0.9rem; }
  
  /* --- HERO SCALING --- */
  .hero { padding-top: 60px; }
  .hero h1 { font-size: 3rem; margin-bottom: 0.5rem; }
  .hero p { font-size: 1rem; max-width: 450px; }
  .hero__img-wrapper { max-width: 400px; }
  
  /* --- FIX: COMPACT CARDS (Smaller Padding & Text) --- */
  .step-card, 
  .bento-card, 
  .price-card {
    padding: 1.25rem 1.5rem !important; /* Smaller Padding */
  }
  
  .step-card h3, 
  .bento-card h3 {
    font-size: 1.3rem; /* Smaller Font */
    margin-bottom: 0.5rem;
  }
  
  .price-card .price__value { font-size: 2rem; }
  .step-card p, .bento-card p, .price-card p, .price-card li { font-size: 0.9rem; }

  /* --- FIX: PRICING TOO THIN (Wider Cards) --- */
  .pricing-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.5rem; 
    max-width: 100%; /* FULL WIDTH */
    margin: 0 auto; 
  }
}

/* =========================================================================
   1024px & DOWN (Tablet Portrait)
   ========================================================================= */
@media (max-width: 1024px) {
  .nav { padding: 1rem 20px; justify-content: space-between; }
  body:not(.admin-page) .brand { display: flex !important; opacity: 1 !important; }
  .nav__menu, .nav__actions { display: none !important; }
  .nav__toggle { display: flex !important; }
    .nav__dropdown {
    width: min(280px, calc(100vw - 18px));
    padding-top: 76px;
    padding-bottom: 20px;
  }

  .nav__links-container {
    gap: 2px;
  }

  .nav__dropdown a:not(.btn) {
    padding: 0.95rem 0.9rem;
  }

  .sidebar-bottom-actions {
    margin-top: 14px;
  }
  .hero { padding-top: 40px; }
  .hero .hero-container { padding: 0 20px; }
  
  .hero__grid { 
    flex-direction: column; text-align: center; gap: 1rem; 
    margin-top: -40px; 
    padding-bottom: 100px; 
  }
  
  .hero__media { 
    width: 100%; justify-content: center; display: flex;
    order: -1; 
    margin-bottom: 0;
  }
  .hero__img-wrapper { margin: 0 auto; max-width: 55%; }
  .hero__copy { max-width: 100%; align-items: center; display: flex; flex-direction: column; }
  .hero__cta { justify-content: center; }
}

/* =========================================================================
   MOBILE SWIPEABLE CARDS (768px Down)
   ========================================================================= */
@media (max-width: 768px) {
  html { font-size: 16px; }
  .steps-wrapper{
    padding-bottom: 16px !important;
  }
  /* FORCE HORIZONTAL SWIPE */
  .steps-wrapper,
  .pricing-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; 
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 20px 40px 20px;
    width: 100vw;
    margin-left: -20px;
    -webkit-overflow-scrolling: touch;
  }
  
  .steps-wrapper::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar { display: none; }
  .nav__dropdown {
    width: min(280px, calc(100vw - 18px));
    padding-top: 76px;
    padding-bottom: 20px;
  }

  .nav__links-container {
  gap: 8px;
}

.nav__links-container a {
  padding: 0.95rem 0.9rem;
  min-height: 52px;
  font-size: 1rem;
}

  .sidebar-bottom-actions {
    margin-top: 14px;
  }
  /* CARD SIZING */
  .step-card,
  .price-card {
    flex: 0 0 85% !important; 
    width: 85% !important;
    min-width: 280px !important;
    max-width: 400px;
    scroll-snap-align: center;
    margin: 0 !important;
  }

  .pricing-grid.pricing-grid--access{
    justify-content: flex-start !important;
    max-width: none !important;
    margin: 0 0 0 -20px !important;
    width: 100vw !important;
    scroll-padding-left: 20px;
    scroll-padding-right: 20px;
  }

  .pricing-grid.pricing-grid--access .price-card{
    flex: 0 0 85% !important;
    width: 85% !important;
    min-width: 280px !important;
    max-width: 400px !important;
    scroll-snap-align: center;
  }

/* Bento Grid Mobile: all cards stacked as square cards */
.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bento-grid > .bento-card {
  width: 100%;
  min-height: 240px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.bento-grid > .bento-card.wide {
  grid-column: span 1;
}

.bento-grid > .bento-card .bento-content,
.bento-grid > .bento-card.wide .bento-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.bento-grid > .bento-card .bento-icon,
.bento-grid > .bento-card.wide .bento-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
}

.bento-grid > .bento-card h3 {
  margin: 0 0 0.75rem;
}

.bento-grid > .bento-card p {
  margin: 0;
}

/* Exact mobile order */
.bento-grid > .bento-card.reveal-down {
  order: 1;
}

.bento-grid > .bento-card.reveal-left {
  order: 2;
}

.bento-grid > .bento-card.reveal-right {
  order: 3;
}

.bento-grid > .bento-card.reveal-up {
  order: 4;
}

  /* Hero Mobile Fixes */
  .hero__grid { margin-top: -60px; padding-bottom: 120px; }
  .hero__img-wrapper { max-width: 65%; }

  /* Footer */
  .footer-middle-content { flex-direction: column-reverse; gap: 3rem; text-align: center; }
  .footer-left-section { align-items: center; }
  .footer-newsletter-card { max-width: 100%; }
  .footer-form { flex-direction: column; }
  .footer-watermark { font-size: 5rem; }



/* Landing pricing pills (same oval style as tier page) */
.pricing-grid{
  padding-bottom: 16px !important; /* pull pills closer */
}

.tier-carousel-pills{
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 0 6px;
  margin-top: -18px; /* sit right under the cards */
  width: 100%;
}

.access-layers-section .tier-carousel-pills{
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 0 6px;
  margin-top: -18px;
  width: 100%;
}

.tier-pill{
  width: 26px;
  height: 7px;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);

  cursor: pointer;
  padding: 0;

  transition: width 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.tier-pill.is-active{
  width: 40px;
  background: rgba(0, 255, 188, 0.40);
  border-color: rgba(0, 255, 188, 0.65);
  box-shadow: 0 0 14px rgba(0, 255, 188, 0.30);
}

.tier-pill:focus-visible{
  outline: 2px solid rgba(0, 255, 188, 0.65);
  outline-offset: 3px;
}
}


/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
.section__title{ 
  font-size: 2.5rem; font-weight: 800; margin: 0 auto 3rem; 
  text-align: center; 
  text-transform: none; 
  letter-spacing: 1px; color: var(--text);
  text-shadow: 0 0 15px rgba(100, 233, 238, 0.5), 0 0 30px rgba(100, 233, 238, 0.3);
}

.steps-wrapper { display: flex; justify-content: space-between; gap: 3rem; position: relative; padding-top: 2rem; width: 100%; }
.steps-wrapper::before { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); z-index: 0; opacity: 0.3; }
.step-card { flex: 1; background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid var(--primary); box-shadow: 0 0 20px rgba(100, 233, 238, 0.2), inset 0 0 10px rgba(100, 233, 238, 0.05); padding: 3rem 2.5rem; border-radius: 20px; position: relative; z-index: 1; transition: transform 0.4s ease, box-shadow 0.4s ease; text-align: left; min-height: 380px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.step-card:hover { transform: translateY(-15px); box-shadow: 0 15px 40px rgba(100, 233, 238, 0.35); }
.step-card h3 { margin: 1rem 0 0.5rem; font-size: 1.4rem; font-weight: 700; color: var(--text); }
.step-number { font-size: 4.5rem; font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(100, 233, 238, 0.6); opacity: 0.8; margin-bottom: -15px; display: block; }
@media (max-width: 768px){
  .steps-wrapper::before {
    display: none;
  }

  .step-card {
    margin-left: 0;
    min-height: auto;
  }
}

/* =========================================================================
   FEATURES (BENTO GRID)
   ========================================================================= */
.bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.bento-card { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid var(--primary); box-shadow: 0 0 15px rgba(100, 233, 238, 0.15), inset 0 0 10px rgba(100, 233, 238, 0.05); border-radius: 20px; padding: 2rem; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.bento-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(100, 233, 238, 0.25); }
.bento-card.wide { grid-column: span 2; }
.bento-card.wide .bento-content { display: flex; align-items: center; gap: 1.5rem; }
.bento-icon { width: 54px; height: 54px; color: var(--primary); flex-shrink: 0; filter: drop-shadow(0 0 8px rgba(100, 233, 238, 0.5)); margin-bottom: 1rem; }
.bento-card.wide .bento-icon { margin-bottom: 0; }
.bento-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 700; color: var(--text); }
.bento-card p { font-size: 0.95rem; line-height: 1.5; color: var(--muted); margin: 0; }

/* =========================================================================
   PRICING SECTION
   ========================================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; align-items: stretch; width: 100%; }
/* Additional Access Layers - centered 3-card layout */
.pricing-grid.pricing-grid--access {
  grid-template-columns: repeat(3, minmax(280px, 340px));
  justify-content: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.price-card { position: relative; background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(14px); border-radius: 20px; padding: 3rem 2rem; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid transparent; min-width: 0; }
.price-card.free { border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.05); }
.price-card.free .price__tag { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255,255,255,0.3); }
.price-card.free .price-btn { border: 1px solid rgba(255, 255, 255, 0.3); color: #fff; }
.price-card.free:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25); }
.price-card.plus { border: 1px solid var(--primary); box-shadow: 0 0 20px rgba(100, 233, 238, 0.25), inset 0 0 10px rgba(100, 233, 238, 0.05); }
.price-card.plus .price__tag { background: rgba(100, 233, 238, 0.1); color: var(--primary); border-color: var(--primary); }
.price-card.plus .price-btn { background: var(--primary); color: #000; border: none; }
.price-card.plus:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(100, 233, 238, 0.45); }
.price-card.elite { border: 1px solid #9d4edd; box-shadow: 0 0 20px rgba(157, 78, 221, 0.35), inset 0 0 10px rgba(157, 78, 221, 0.1); }
.price-card.elite .price__tag { background: rgba(157, 78, 221, 0.2); color: #e0aaff; border-color: #9d4edd; }
.price-card.elite .price-btn { background: #9d4edd; color: #fff; border: none; }
.price-card.elite:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(157, 78, 221, 0.55); }
.price-card.concierge { border: 1px solid #ffd700; box-shadow: 0 0 25px rgba(255, 215, 0, 0.35), inset 0 0 15px rgba(255, 215, 0, 0.1); }
.price-card.concierge .price__tag { background: rgba(255, 215, 0, 0.2); color: #ffe66d; border-color: #ffd700; }
.price-card.concierge .price-btn { background: #ffd700; color: #000; border: none; font-weight: 800; }
.price-card.concierge:hover { transform: translateY(-5px); box-shadow: 0 10px 50px rgba(255, 215, 0, 0.65); }
.price__tag{ display:inline-flex; align-items:center; gap:.5rem; padding:.25rem .55rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); font-size:.82rem; text-transform: uppercase; font-weight: 700; align-self: flex-start; }
.price__value{ font-size: 2.5rem; font-weight: 800; margin:.8rem 0 .3rem; }
.price__value small { font-size: 1rem; color: var(--muted); font-weight: 400; }
.price__list{ margin: 1.5rem 0 2.5rem; padding-left: 1.1rem; color: var(--muted); flex:1; list-style-type: disc; line-height: 1.6; }
.price__list li{ margin: .6rem 0; }
.price-btn { width: 100%; }

@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

  .pricing-grid.pricing-grid--access {
    grid-template-columns: repeat(3, minmax(240px, 320px));
    justify-content: center;
    max-width: 100%;
  }
}
.faq-wrapper { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--primary); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.faq-card summary { padding: 1.5rem; font-weight: 700; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text); transition: color 0.3s ease; }
.faq-card summary:hover { color: var(--primary); }
.faq-icon { font-size: 1.5rem; font-weight: 300; color: var(--primary); text-shadow: 0 0 10px var(--primary); transition: transform 0.3s ease, color 0.3s ease; }
.faq-card[open] summary .faq-icon { transform: rotate(45deg); }
.faq-content { padding: 0 1.5rem 1.5rem; border-top: 1px solid rgba(100, 233, 238, 0.2); animation: fadeIn 0.3s ease; }
.faq-content p { margin: 0; line-height: 1.6; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.faq-card summary::-webkit-details-marker { display: none; }
@media (max-width: 600px) { .faq-card summary { font-size: 1rem; padding: 1.2rem; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { position: relative; background: #02040a; border-top: 1px solid var(--primary); box-shadow: 0 -5px 30px rgba(100, 233, 238, 0.15); overflow: hidden; padding: 4rem 0 2rem; margin-top: 4rem; }
.footer-watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -40%); font-size: 14rem; font-weight: 900; color: rgba(255, 255, 255, 0.02); white-space: nowrap; pointer-events: none; z-index: 0; user-select: none; }
.footer-middle-content { display: flex; justify-content: space-between; align-items: center; gap: 4rem; position: relative; z-index: 2; margin-bottom: 4rem; }
.footer-left-section { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
.footer-split-brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.5rem; }
.footer-split-brand .brand__logo { width: 36px; height: 36px; }
.footer-split-brand span { font-size: 1.3rem; font-weight: 800; text-transform: none; letter-spacing: 1px; color: #fff; }
.footer-socials { display: flex; gap: 1.5rem; }
.footer-socials a { color: var(--muted); width: 24px; height: 24px; transition: all 0.3s ease; }
.footer-socials a:hover { color: var(--primary); transform: translateY(-3px); filter: drop-shadow(0 0 8px var(--primary)); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--primary); }
.footer-newsletter-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(100, 233, 238, 0.3); padding: 2rem; border-radius: 20px; max-width: 450px; width: 100%; box-shadow: 0 0 20px rgba(100, 233, 238, 0.05); }
.footer-newsletter-card h3 { font-size: 1.4rem; margin-bottom: 0.3rem; color: var(--text); }
.footer-form { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-form input { flex: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 0.8rem 1.2rem; border-radius: 50px; color: #fff; font-family: inherit; font-size: 0.9rem; transition: all 0.3s ease; }
.footer-form input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 15px rgba(100, 233, 238, 0.3); }
.small-btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
.footer-bottom-copyright { text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 2rem; position: relative; z-index: 2; }

/* Desktop Animations */
@media (min-width: 991px) {
  .reveal-left,
  .reveal-right,
  .reveal-up,
  .reveal-down {
    opacity: 0;
    will-change: opacity, transform;
    transition:
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.42s ease-out;
  }

  .reveal-left  { transform: translateX(-72px); }
  .reveal-right { transform: translateX(72px); }
  .reveal-up    { transform: translateY(56px); }
  .reveal-down  { transform: translateY(-56px); }

  .hero .reveal-left,
  .hero .reveal-right {
    transition-duration: 1.15s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-trigger.is-visible .reveal-left,
  .reveal-trigger.is-visible .reveal-right,
  .reveal-trigger.is-visible .reveal-up,
  .reveal-trigger.is-visible .reveal-down,
  .reveal-left.is-visible,
  .reveal-right.is-visible,
  .reveal-up.is-visible,
  .reveal-down.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
  }

  .reveal-delay-100 { transition-delay: 0.08s; }
  .reveal-delay-200 { transition-delay: 0.16s; }
  .reveal-delay-300 { transition-delay: 0.24s; }
  .bento-card:hover, .price-card:hover, .step-card:hover { transform: translateY(-10px) scale(1.02) !important; box-shadow: 0 20px 40px rgba(100, 233, 238, 0.15); border-color: var(--primary); }
  @keyframes slideDownFade { 0% { opacity: 0; transform: translateY(-30px); } 100% { opacity: 1; transform: translateY(0); } }
  @keyframes slideDownFadeCenter { 0% { opacity: 0; transform: translate(-50%, -30px); } 100% { opacity: 1; transform: translate(-50%, 0); } }
  .site-header .brand { animation: slideDownFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; opacity: 0; }
  .site-header .nav__menu { animation: slideDownFadeCenter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; animation-delay: 0.2s; opacity: 0; }
  .site-header .nav__actions { animation: slideDownFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; animation-delay: 0.4s; opacity: 0; }
}

/* Background */
html.tm-home::before, html.tm-home::after{ opacity: .18; }
:root{ --currents-bg: #071018; --currents-blue-1: #00eaff; --currents-blue-2: #29a3ff; --currents-blue-3: #5ef0ff; --currents-opacity-a: .50; --currents-opacity-b: .35; --currents-speed-a: 38s; --currents-speed-b: 62s; }
html:not(.admin-theme-light):not(.admin-theme-dark){ background: #000; }
@keyframes currentsDriftA{ 0% { transform: translate3d(0,0,0) rotate(0deg); } 50% { transform: translate3d(-2.5%, -1.2%,0) rotate(0.5deg); } 100% { transform: translate3d(0,0,0) rotate(0deg); } }
@keyframes currentsDriftB{ 0% { transform: translate3d(0,0,0) rotate(0deg); } 50% { transform: translate3d(1.8%, 2.2%,0) rotate(-0.6deg); } 100% { transform: translate3d(0,0,0) rotate(0deg); } }
html:not(.admin-theme-light):not(.admin-theme-dark)::before,
html:not(.admin-theme-light):not(.admin-theme-dark)::after{ content:""; position:fixed; inset:-6%; pointer-events:none; background-repeat:repeat; background-position:0 0; background-size:700px 700px; mix-blend-mode:screen; transform:translateZ(0); }
html:not(.admin-theme-light):not(.admin-theme-dark)::before{ z-index:-3; opacity: var(--currents-opacity-a); background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="700" height="700" viewBox="0 0 700 700"><defs><linearGradient id="g" x1="0" x2="1" y1="0" y2="1"><stop offset="0" stop-color="%2300eaff" stop-opacity="0.55"/><stop offset="1" stop-color="%2329a3ff" stop-opacity="0.35"/></linearGradient></defs><g fill="none" stroke="url(%23g)" stroke-width="1.15" stroke-linecap="round" stroke-linejoin="round" opacity="0.85"><path d="M20 90 C120 30 210 140 320 80 S520 130 660 60"/><path d="M40 210 C160 120 260 260 360 180 S520 260 680 220"/><path d="M10 360 C140 300 220 420 340 330 S520 410 690 370"/><path d="M30 520 C170 450 260 560 380 480 S530 560 690 520"/><path d="M60 670 C200 610 280 700 420 640 S560 700 700 670"/></g><g fill="%235ef0ff" opacity="0.55"><circle cx="80" cy="95" r="2"/><circle cx="210" cy="135" r="2"/><circle cx="320" cy="82" r="2"/><circle cx="470" cy="110" r="2"/><circle cx="610" cy="72" r="2"/><circle cx="140" cy="220" r="2"/><circle cx="270" cy="255" r="2"/><circle cx="360" cy="180" r="2"/><circle cx="520" cy="260" r="2"/><circle cx="650" cy="230" r="2"/><circle cx="120" cy="360" r="2"/><circle cx="240" cy="420" r="2"/><circle cx="340" cy="330" r="2"/><circle cx="520" cy="410" r="2"/><circle cx="660" cy="372" r="2"/></g></svg>'); animation: currentsDriftA var(--currents-speed-a) ease-in-out infinite; }
html:not(.admin-theme-light):not(.admin-theme-dark)::after{ z-index:-3; opacity: var(--currents-opacity-b); background-size:900px 900px; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="900" height="900" viewBox="0 0 900 900"><defs><linearGradient id="g2" x1="0" x2="1" y1="1" y2="0"><stop offset="0" stop-color="%235ef0ff" stop-opacity="0.36"/><stop offset="1" stop-color="%2300eaff" stop-opacity="0.22"/></linearGradient></defs><g fill="none" stroke="url(%23g2)" stroke-width="1.05" stroke-linecap="round" opacity="0.9"><path d="M40 130 Q160 40 260 140 T520 120 T780 160"/><path d="M80 320 Q220 240 340 320 T560 310 T820 360"/><path d="M60 520 Q200 460 320 540 T560 520 T840 580"/><path d="M40 720 Q200 640 320 720 T560 700 T860 760"/></g><g fill="%2329a3ff" opacity="0.42"><circle cx="260" cy="140" r="2"/><circle cx="520" cy="120" r="2"/><circle cx="780" cy="160" r="2"/><circle cx="340" cy="320" r="2"/><circle cx="560" cy="310" r="2"/><circle cx="820" cy="360" r="2"/><circle cx="320" cy="540" r="2"/><circle cx="560" cy="520" r="2"/><circle cx="840" cy="580" r="2"/></g></svg>'); filter: blur(0.2px); animation: currentsDriftB var(--currents-speed-b) ease-in-out infinite; }
#tm-bg-canvas{ position: fixed; inset: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 0; opacity: .95; transform: translateZ(0); }
body.has-bg-canvas:not(.admin-page) > :not(#tm-bg-canvas){ position: relative; z-index: 1; }
body.has-bg-canvas:not(.admin-page)::before{ z-index: -2 !important; background: transparent !important; background-image: radial-gradient(1200px 700px at 50% 25%, rgba(100,233,238,.08), transparent 60%), radial-gradient(900px 600px at 12% 88%, rgba(41,163,255,.06), transparent 55%), radial-gradient(800px 520px at 88% 78%, rgba(94,240,255,.05), transparent 58%); background-repeat: no-repeat; background-position: center, center, center; background-size: cover, cover, cover; opacity: 1 !important; }
@media (prefers-reduced-motion: reduce){ #tm-bg-canvas{ opacity: .35; } }
#tm_loader_overlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 16px !important;
  padding: 24px !important;
  background:
    radial-gradient(circle at 50% 28%, rgba(100, 233, 238, 0.12), transparent 34%),
    rgba(0,0,0,.68) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  pointer-events: all !important;
}

#tm_loader_overlay.show{
  display: flex !important;
}

#tm_loader_overlay .loader-spinner{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.18);
  border-top-color: #64E9EE;
  border-right-color: rgba(100,233,238,0.55);
  box-shadow:
    0 0 0 1px rgba(100,233,238,0.10),
    0 0 28px rgba(100,233,238,0.22);
  animation: tm-loader-spin 0.82s linear infinite;
}

#tm_loader_overlay .loader-copy{
  display: grid;
  gap: 4px;
  text-align: center;
}

#tm_loader_overlay .loader-copy h3{
  margin: 0;
  color: #F6FAFF;
  font-size: 1rem;
  font-weight: 800;
}

#tm_loader_overlay .loader-copy p{
  margin: 0;
  color: rgba(199,208,220,0.86);
  font-size: 0.88rem;
  font-weight: 600;
}

@keyframes tm-loader-spin{
  to { transform: rotate(360deg); }
}
.tm-intent-modal { border: none; border-radius: 18px; padding: 2.5rem 2rem; max-width: 480px; width: 100%; background: rgba(3, 7, 18, 0.96); color: #fff; }
.tm-intent-modal::backdrop { background: rgba(0, 0, 0, 0.7); }
.tm-intent-modal__title { font-size: 1.4rem; margin-bottom: 0.4rem; }
.tm-intent-modal__subtitle { font-size: 0.9rem; }
.tm-intent-grid { margin: 1.6rem 0 1.4rem; display: grid; gap: 0.9rem; }
.tm-intent-btn { width: 100%; text-align: left; border-radius: 14px; padding: 0.9rem 1rem; border: 1px solid rgba(148, 163, 184, 0.6); background: rgba(15, 23, 42, 0.9); color: inherit; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease; }
.tm-intent-btn:hover { border-color: #facc15; background: rgba(15, 23, 42, 1); transform: translateY(-1px); }
.tm-intent-btn__title { display: block; font-weight: 600; margin-bottom: 0.2rem; }
.tm-intent-btn__desc { display: block; font-size: 0.8rem; opacity: 0.8; }
.tm-intent-modal__footer { display: flex; justify-content: flex-end; }


/* =========================================================
   Legal modal (Privacy / Terms / Cookies) — landing page
   ========================================================= */
.tm-legal-modal {
  border: none;
  border-radius: 18px;
  padding: 0;
  width: min(920px, calc(100vw - 24px));
  background: rgba(3, 7, 18, 0.96);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}
.tm-legal-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.tm-legal-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tm-legal-modal__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.tm-legal-modal__meta {
  margin: 6px 0 0;
  font-size: 0.78rem;
  opacity: 0.72;
}
.tm-legal-modal__close {
  height: 36px;
  width: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
}
.tm-legal-modal__close:hover {
  background: rgba(255, 255, 255, 0.06);
}
.tm-legal-modal__body {
  padding: 16px 18px 18px;
  max-height: min(72vh, 640px);
  overflow: auto;
}
.tm-legal-modal__body h4 {
  margin: 18px 0 8px;
  font-size: 0.95rem;
  font-weight: 800;
}
.tm-legal-modal__body p {
  margin: 0 0 10px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.tm-legal-modal__body .legal-small {
  font-size: 0.82rem;
  opacity: 0.85;
}
.tm-legal-modal__body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 520px) {
  .tm-legal-modal { border-radius: 16px; width: calc(100vw - 18px); }
  .tm-legal-modal__header { padding: 16px 14px 10px; }
  .tm-legal-modal__body { padding: 14px 14px 16px; max-height: 75vh; }
}
/* =========================================
   MOBILE FOOTER FIX (Landing Page)
   ========================================= */
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 40px 15px 20px !important;
  }
  
  .footer-newsletter-card {
    padding: 25px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-form {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .footer-form input,
  .footer-form button {
    width: 100% !important;
    flex: none !important;
  }

  .footer-bottom-bar {
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 20px !important;
  }

  .footer-legal {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
  }

  /* ETO YUNG FIX PARA SA COPYRIGHT TEXT */
  .footer-bottom-copyright p {
    font-size: 10px !important; /* Liit na sakto para sa mobile */
    letter-spacing: -0.2px !important; /* Siksik para hindi mag-wrap */
    white-space: nowrap !important; /* Pinipilit na isang linya lang */
  }
}

/* =========================================================================
   PRICING — Mobile carousel pills (landing page)
   Matches tier page pill style
   ========================================================================= */
.tier-carousel-pills{
  display: none;
}
/* =========================================
   iTM Ecosystem cards — final mobile fix
   Stacked full-width cards with normal text flow
   ========================================= */
@media screen and (max-width: 768px) {
  .bento-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 100% !important;
  }

  .bento-card,
  .bento-card.wide {
    grid-column: span 1 !important;
    width: 100% !important;
    min-height: 240px !important;
    padding: 2rem 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .bento-card .bento-content,
  .bento-card.wide .bento-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    text-align: center !important;
  }

  .bento-card .bento-icon,
  .bento-card.wide .bento-icon {
    width: 54px !important;
    height: 54px !important;
    margin: 0 auto 1rem !important;
    flex-shrink: 0 !important;
  }

  .bento-card h3,
  .bento-card.wide h3 {
    margin: 0 0 0.75rem !important;
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .bento-card p,
  .bento-card.wide p {
    margin: 0 !important;
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  /* exact order on mobile */
  .bento-card.reveal-down { order: 1 !important; }   /* Match */
  .bento-card.reveal-left { order: 2 !important; }   /* Explore */
  .bento-card.reveal-right { order: 3 !important; }  /* Creators */
  .bento-card.reveal-up { order: 4 !important; }     /* Premium Society & Concierge */
}
/* =========================================================
   PHASE 1 FINAL WAVE — BOOT LOADER / SHARED MOTION CLEANUP
   Append-only cleanup layer
   ========================================================= */

/* Keep #app-loader as first-render boot layer only */
#app-loader {
  isolation: isolate;
}

#app-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(100, 233, 238, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  opacity: 0.95;
}

#app-loader .loader-logo,
#app-loader .loader-text {
  position: relative;
  z-index: 1;
}

/* Calm generic hover scale so shared animation helpers stay in control */
.btn,
.price-card,
.bento-card,
.step-card,
.feature-card,
.home-module-card,
.pulse-launch-card {
  transform-origin: center center;
}

/* Avoid motion stacking if a component already uses shared hover helpers */
.hover-lift.price-card:hover,
.hover-lift.bento-card:hover,
.hover-lift.step-card:hover,
.hover-pop.btn:hover,
.hover-pop.price-btn:hover {
  will-change: transform, box-shadow;
}

/* Smooth card/button polish without making movement feel too busy */
body:not(.admin-page) .btn,
.price-card,
.bento-card,
.step-card,
.feature-card {
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease,
    background-color 0.22s ease,
    opacity 0.22s ease;
}

/* Slightly calmer section rhythm on landing */
body:not(.admin-page) section {
  scroll-margin-top: 96px;
}

@media (max-width: 768px) {
  body:not(.admin-page) section {
    scroll-margin-top: 82px;
  }

  #app-loader .loader-logo {
    width: 76px;
    height: 76px;
  }

  #app-loader .loader-text {
    font-size: 0.98rem;
    letter-spacing: 1px;
  }
}
/* =========================================
   Landing polish patch:
   1) Creators beside Concierge with same shape
   2) Compact one-row Pulse preview cards on desktop
   3) Mobile swipe carousel support for Pulse preview
   ========================================= */

/* Desktop / tablet: keep the Pulse preview cards in one compact row */
.pulse-preview-section .pricing-grid.pricing-grid--access {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.1rem !important;
  max-width: 1220px !important;
  margin: 28px auto 0 !important;
  align-items: stretch !important;
}

.pulse-preview-section .pricing-grid.pricing-grid--access .price-card {
  min-height: 100% !important;
  padding: 1.25rem 1.05rem !important;
}

.pulse-preview-section .pricing-grid.pricing-grid--access .price__tag {
  font-size: 0.76rem !important;
}

.pulse-preview-section .pricing-grid.pricing-grid--access .price__value {
  font-size: clamp(1.9rem, 2.3vw, 2.65rem) !important;
  margin-bottom: 0.45rem !important;
}

.pulse-preview-section .pricing-grid.pricing-grid--access p,
.pulse-preview-section .pricing-grid.pricing-grid--access .price__list li {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.pulse-preview-section .pricing-grid.pricing-grid--access .price__list {
  margin-top: 0.9rem !important;
}

/* Keep one row even on tighter desktop/laptop widths */
@media (max-width: 1280px) {
  .pulse-preview-section .pricing-grid.pricing-grid--access {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0.9rem !important;
    max-width: 1120px !important;
  }

  .pulse-preview-section .pricing-grid.pricing-grid--access .price-card {
    padding: 1.05rem 0.95rem !important;
  }

  .pulse-preview-section .pricing-grid.pricing-grid--access .price__value {
    font-size: clamp(1.7rem, 2.1vw, 2.35rem) !important;
  }

  .pulse-preview-section .pricing-grid.pricing-grid--access p,
  .pulse-preview-section .pricing-grid.pricing-grid--access .price__list li {
    font-size: 0.84rem !important;
  }
}

/* Mobile: let this section use the shared swipe system cleanly */
@media (max-width: 768px) {
  .pulse-preview-section .pricing-grid.pricing-grid--access {
    display: flex !important;
    grid-template-columns: none !important;
    max-width: none !important;
    width: 100vw !important;
    margin: 0 0 0 -20px !important;
    padding-right: 20px !important;
    scroll-padding-left: 20px !important;
    scroll-padding-right: 20px !important;
  }

  .pulse-preview-section .pricing-grid.pricing-grid--access .price-card {
    flex: 0 0 85% !important;
    width: 85% !important;
    min-width: 280px !important;
    max-width: 400px !important;
    scroll-snap-align: center !important;
  }

  .pulse-preview-section .tier-carousel-pills {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: -18px !important;
    padding: 8px 0 6px !important;
  }
}
/* =========================================================
   iTM Landing Patch Update Section
   Full-width app-style release section
   ========================================================= */

.itm-patch-section {
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  padding: 7rem 0 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.itm-patch-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.itm-patch-heading {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
}

.itm-patch-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.45rem 0.92rem;
  border-radius: 999px;
  color: #64E9EE;
  background: rgba(100, 233, 238, 0.10);
  border: 1px solid rgba(100, 233, 238, 0.34);
  box-shadow: 0 0 24px rgba(100, 233, 238, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.itm-patch-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  color: #F6FAFF;
  text-shadow:
    0 0 18px rgba(100, 233, 238, 0.28),
    0 0 42px rgba(100, 233, 238, 0.14);
}

.itm-patch-heading p {
  margin: 0;
  max-width: 860px;
  color: rgba(246, 250, 255, 0.86);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 600;
}

.itm-patch-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  max-height: min(82svh, 860px);
  padding: 1.15rem;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(100, 233, 238, 0.16), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(157, 78, 221, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(8, 16, 30, 0.96), rgba(4, 9, 18, 0.95));
  border: 1px solid rgba(100, 233, 238, 0.24);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.5),
    0 0 44px rgba(100, 233, 238, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.itm-patch-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(100,233,238,0.08), transparent 34%),
    linear-gradient(315deg, rgba(255,255,255,0.05), transparent 28%);
  opacity: 0.9;
}

.itm-patch-panel__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0.25rem 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,0.11);
}

.itm-patch-panel__header span {
  display: block;
  margin-bottom: 0.38rem;
  color: #64E9EE;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.itm-patch-panel__header h3 {
  margin: 0;
  color: #F6FAFF;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.itm-patch-panel__header strong {
  flex: 0 0 auto;
  color: #FFD76A;
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
}

.itm-patch-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.68rem;
  padding: 0.9rem 0.1rem 0 0.1rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.itm-patch-list::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.itm-patch-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.78rem;
  padding: 0.76rem 0.9rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease,
    background 0.22s ease;
}

.itm-patch-item:hover {
  transform: translateY(-2px);
  border-color: rgba(100, 233, 238, 0.32);
  background: rgba(100, 233, 238, 0.10);
}

.itm-patch-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #03151A;
  background: linear-gradient(135deg, rgba(100,233,238,0.98), rgba(41,163,255,0.92));
  box-shadow: 0 10px 24px rgba(100,233,238,0.16);
  font-size: 0.72rem;
  font-weight: 900;
}

.itm-patch-section .itm-patch-item strong {
  display: block;
  margin: 0 0 0.16rem;
  color: #FFFFFF;
  font-size: 0.94rem;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.itm-patch-section .itm-patch-item p {
  margin: 0;
  color: rgba(246, 250, 255, 0.92);
  font-size: 0.84rem;
  line-height: 1.44;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.itm-patch-experience {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  margin-top: 0.78rem;
  padding: 0.82rem 0.95rem;
  border-radius: 18px;
  background: rgba(100, 233, 238, 0.105);
  border: 1px solid rgba(100, 233, 238, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.itm-patch-section .itm-patch-experience span {
  display: block;
  margin-bottom: 0.35rem;
  color: #64E9EE;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.itm-patch-section .itm-patch-experience p {
  margin: 0;
  color: rgba(246, 250, 255, 0.94);
  font-size: 0.84rem;
  line-height: 1.5;
  font-weight: 700;
}

.itm-patch-cta {
  position: relative;
  z-index: 1;
  width: auto;
  min-width: 240px;
  max-width: 320px;
  min-height: 44px;
  margin: 0.85rem auto 0;
  padding-inline: 1.4rem;
  border-radius: 999px;
  align-self: center;
}

@media (max-width: 1024px) {
  .itm-patch-section {
    padding: 6rem 0 4rem;
  }

  .itm-patch-container {
    max-width: 100%;
  }

  .itm-patch-heading {
    margin-bottom: 1.35rem;
  }

  .itm-patch-heading h2 {
    font-size: clamp(2.25rem, 8vw, 3.6rem);
  }

  .itm-patch-heading p {
    font-size: 0.95rem;
  }

  .itm-patch-panel {
    border-radius: 28px;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .itm-patch-section {
    min-height: 100svh;
    padding: 5.5rem 0 4rem;
  }

  .itm-patch-heading {
    gap: 0.72rem;
    margin-bottom: 1.05rem;
  }

  .itm-patch-heading p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .itm-patch-panel {
    padding: 0.9rem;
    border-radius: 24px;
  }

  .itm-patch-panel__header {
    flex-direction: column;
    gap: 0.7rem;
  }

  .itm-patch-panel__header strong {
    white-space: normal;
  }

  .itm-patch-item {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 0.9rem;
    border-radius: 18px;
  }

  .itm-patch-number {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    font-size: 0.72rem;
  }

  .itm-patch-section .itm-patch-item strong {
    font-size: 0.95rem;
  }

  .itm-patch-section .itm-patch-item p,
  .itm-patch-section .itm-patch-experience p {
    font-size: 0.84rem;
    line-height: 1.58;
  }
}