  :root{
    --bg: #0b0b0c;
    --elev: #121214;
    --card: #141417;
    --text: #f5f6f8;
    --muted: #b4b7c2;
    --line: #2a2a2e;
  --accent-1: #7EE2C4; /* Fuji mint highlight */
  --accent-2: #2A7B5B; /* deep forest/teal */
  --accent-3: #FFB07A; /* soft peach glow */
    --radius-lg: 20px;
    --radius-sm: 12px;
    --shadow-soft: 0 20px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.04);
  }

  /* Base */
  html,body{height:100%}
  body{
    margin:0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg); /* SOLID background — no viewport-wide gradients */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    letter-spacing: .01em;
  }
  a{color:inherit;text-decoration:none}
  img{max-width:100%;display:block}
  .container{width:min(1120px, 92vw); margin-inline:auto}

  /* Header */
  .site-header{
    position: sticky; top:0; z-index: 50;
    backdrop-filter: saturate(140%) blur(8px);
    background: linear-gradient(180deg, rgba(11,11,12,.8), rgba(11,11,12,.55));
    border-bottom: 1px solid var(--line);
  }
  .nav{
    height:64px; display:flex; align-items:center; justify-content:space-between;
  }
  .brand{
    display:flex; align-items:center; gap:12px; font-weight:700; font-size:15px;
  }
.logo {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  object-fit: cover; /* ensures the img behaves like background-size: cover */
  box-shadow: 0 0 24px rgba(126, 226, 196, .36),
            inset 0 0 12px rgba(255, 255, 255, .20);
  display: inline-block;
  vertical-align: middle; /* keeps text aligned with logo */
}

  .nav-cta{
    display:flex; align-items:center; gap:10px;
  }
  .pill{
    display:inline-flex; align-items:center; gap:10px;
    padding:8px 12px; border-radius:999px; color:var(--muted); font-size:13px;
  }

  /* Hero */
  .hero{
    text-align:center;
    padding: clamp(56px, 10vw, 96px) 0 40px;
  }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(255, 91, 91, 0.2),   /* warm Fuji red */
    rgba(80, 200, 120, 0.2)   /* soft Fuji green */
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

  .hero h1{
    margin:18px auto 10px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .sub{
    margin: 0 auto 28px;
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(16px, 2.4vw, 19px);
  }
  .price{
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 700;
    margin: 4px 0 18px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .cta{
    display:inline-flex; align-items:center; gap:14px;
    padding: 16px 22px; border-radius: 16px;
    font-weight: 600; font-size: 16px;
    background:linear-gradient(
  90deg,
  rgba(40, 120, 80, 0.9),   /* deeper natural green */
  rgba(80, 200, 120, 0.9)   /* soft Fuji green */
);
   /* border: 1px solid rgba(255,255,255,.2); */
    box-shadow: 
  0 12px 40px rgba(40, 120, 80, 0.25),   /* deeper green shadow */
  0 8px 28px rgba(80, 200, 120, 0.18);   /* soft Fuji green glow */
    transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
  }
  .cta:hover{ transform: translateY(-1px); box-shadow:
    0 18px 60px rgba(40,120,80,.28),
    0 12px 36px rgba(80,200,120,.22);
}

  .cta small{opacity:.8;font-weight:500}
  .cta-row{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}
  .cta-secondary{
    display:inline-flex; align-items:center; gap:10px; padding: 8px 12px; border-radius: 999px;
    border: 1px solid var(--line); background: #101012; color: var(--text); font-size: 13px;
  }

/* ===== Base Button Styles ===== */
.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

/* Primary Button */
  .btn {
            background: #6ab7ff;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background-color .2s ease, transform .1s ease;
        }


.btn-primary:hover {
  filter: brightness(1.05);

}

.btn-primary:active {

 
}

/* ===== Secondary Button ===== */
.btn-secondary {
  background: #18181d;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: 0 2px 6px rgba(0,0,0,.25) inset;
}

.btn-secondary:hover {
  background: #202024;
  border-color: rgba(255,255,255,.15);
}

.btn-secondary:active {
  background: #141417;
  transform: translateY(1px);
}


/* Stripe button container */
#payment-request-button {
  width: 100%;
  max-width: 400px;
  height: 50px;
  margin: 20px auto;
  display: block;
}

 /* .pay-badges{display:flex; gap:10px}
  .pay{display:inline-flex; align-items:center; gap:8px; padding:16px 36px; border:1px solid var(--line); border-radius:10px; background:#0f0f12; font-size:13px; color:#eaecef}
 
*/

/* Payment Buttons */
.pay-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
/* Payment Buttons */
.pay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border: 1px solid var(--line); 
  border-radius: 10px;
  background: #0f0f12;
  font-size: 13px;
  color: #eaecef;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pay:hover {
  background: #1a1a1e;
  filter: brightness(1.1);
}

.pay.selected {
  border-color: #6ab7ff; /* Only change border color */
  background: #1a1a1e;
}

.pay-apple {
  background: #0f0f12;
  border: 1px solid var(--line); 
}

.pay-apple:hover {
  background: #1a1a1e;
 
}

.pay-apple.selected {
  border-color: #6ab7ff; /* Only change border color */
  background: #1a1a1e;
}

.pay-google {
  background: #0f0f12;
  border: 1px solid var(--line); 
}

.pay-google:hover {
  background: #1a1a1e;
}

.pay-google.selected {
  border-color: #6ab7ff; /* Only change border color */
  background: #1a1a1e;
}

.pay-card {
  background: #0f0f12;
  border: 1px solid var(--line); 
}

.pay-card:hover {
  background: #1a1a1e;
 
}

.pay-card.selected {
  border-color: #6ab7ff; /* Only change border color */
  background: #1a1a1e;
}

.pay-badges {
  display: flex;
  gap: 10px;
}




.downloads {
  display: block;
  align-items: center;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}



/* Legal modals: long content scroll */

.legal-modal{
  max-width: 780px !important;
  width: 82vw !important;
}
.legal-modal .modal-scroll {
  max-height: min(72vh, 780px);
  overflow: auto;
  padding-right: 2px; /* avoid text hugging scrollbar */
}




/* ===== Modal base ===== */
.modal-backdrop{
  position: fixed; inset: 0; display: grid; place-items: center;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0; pointer-events: none; 
  transition: opacity .3s ease;
}
.modal-backdrop.open{ opacity: 1; pointer-events: auto; }

/* --- Entrance animation (modal card) --- */
.modal{
  width:min(360px, 92vw); 
  max-height: 85vh;
  background:#111114; 
  color:var(--text);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px; 
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
  padding:22px 20px 20px; 
  position: relative;
  transform: translateY(12px);
  opacity: 0.98;
  transition: transform 0.32s ease, opacity 0.32s ease, height 0.3s ease; /* Add max-height transition */
  overflow-y: auto;
}
.modal-backdrop.open .modal {
  transform: translateY(0);
  opacity: 1;
}

.modal-close{
  position:absolute; top:8px; right:10px; width:36px; height:36px;
  border-radius:10px; border:1px solid var(--line); background:#18181d; color:#fff;
  cursor:pointer; font-size:22px; line-height:1;
}
.modal-head{padding:8px 4px 14px}
.modal-head h3{margin:0 0 6px; letter-spacing:-.01em}

.modal-section{
  border-top:1px solid var(--line); 
  padding:16px 4px 4px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease;
  height: auto;
  overflow: hidden;
}
.modal-section[hidden] {
  display: block !important; /* Override default hidden behavior */
  opacity: 0;
  transform: translateX(20px); /* Slide out to the right */
  height: 0;
  padding: 0 4px; /* Collapse padding to prevent space */
  pointer-events: none; /* Prevent interaction when hidden */
}
.modal-section:not([hidden]) {
  opacity: 1;
  transform: translateX(0); /* Slide in from the right */
  height: auto;
}
.label{display:block; margin:0 0 8px; font-weight:600}
.select{
  width:100%; padding:12px 12px; border-radius:12px; background:#0f0f12; color:#fff;
  border:1px solid var(--line);
}
.modal-cta{margin-top:12px}

/* Ensure anything explicitly marked hidden truly disappears */
[hidden]{ display:none !important; }

/* pending spinner */
.pending{display:grid; place-items:center; gap:8px; padding:14px 0}
.spinner{
  width:34px; height:34px; border-radius:50%;
  border:3px solid rgba(255,255,255,.15);
  border-top-color:#6ab7ff; animation: spin .9s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

/* result */
.result{display:grid; place-items:center; text-align:center; gap:10px; padding-top: 20px; }
.result .msg{font-weight:600; padding-top: 20px; }
.ok-svg{width:84px; height:84px; display:block}
.ok-ring{
  fill: rgba(46, 204, 113, .18);
  stroke: rgba(46, 204, 113, .32);
  stroke-width: 8;
  stroke-dasharray: 290;
  stroke-dashoffset: 290;
  animation: ring 700ms ease forwards;
}
.ok-check{
  fill:none; stroke:#fff; stroke-width:10; stroke-linecap:round; stroke-linejoin:round;
  stroke-dasharray: 120; stroke-dashoffset: 120;
  animation: check 500ms 400ms ease forwards;
}
@keyframes ring{to{stroke-dashoffset:0}}
@keyframes check{to{stroke-dashoffset:0}}

/* payment buttons (mock) 
.pay-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}
.pay-apple{background:#111; border-color:#222}
.pay-google{background:#0f0f12}
.pay-card{background:#0f0f12}

*/

  /* Sections */
  .section{padding: clamp(32px, 4vw, 86px) 0}
  .section h2{
    text-align:center; margin:0 0 24px; font-size: clamp(26px, 4vw, 40px); letter-spacing:-.015em;
  }
   /* Testimonials */
   .testimonials {
    padding: clamp(20px, 2vw, 32px) 0;
    }

  /* Comparison Slider */
  .comparison{
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
    border:1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow:hidden;
  }
  .cmp-wrap{position:relative; aspect-ratio: 16 / 9; background: #0e0f12;}
  .cmp-wrap img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover}
  .cmp-after{clip-path: inset(0 0 0 50%)}
  .cmp-handle{
    position:absolute; inset:0; pointer-events:none;
    background: linear-gradient(90deg, rgba(255,91,91,.12), rgba(106,167,255,.12));
    mix-blend-mode: screen;
  }
  .cmp-divider{
    position:absolute; top:0; bottom:0; left:50%; width:2px; background: linear-gradient(#ffffff, rgba(255,255,255,.2));
    box-shadow: 0 0 16px rgba(255,255,255,.25);
  }
  .cmp-knob{
    position:absolute; top:50%; left:50%; translate:-50% -50%;
    width:44px; height:44px; border-radius:50%;
    background: radial-gradient(circle at 30% 30%, #fff, #dcdde3 60%, #aeb1be 100%);
    border: 2px solid rgba(255,255,255,.75);
    box-shadow: 0 10px 30px rgba(0,0,0,.45);
    display:grid; place-items:center; pointer-events:none;
  }
  .cmp-knob:after{content:""; font-weight:700; color:#18181b;}
  .cmp-range{
    appearance:none; -webkit-appearance:none; position:absolute; inset:0; width:100%; height:100%;
    background: transparent; cursor: ew-resize;
  }
  .cmp-label{
    position:absolute; top:12px; padding:6px 10px; font-size:12px; border-radius:999px; background: rgba(0,0,0,.45); border:1px solid rgba(255,255,255,.12)
  }
  .lab-before{left:12px}
  .lab-after{right:12px}
  
 /* ============================
   Carousel Styles
============================ */

.caro {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0f0f12;
  border: 1px solid rgba(255, 255, 255, .08);
}

/* Viewport */
.caro-viewport {
  overflow: hidden;
  width: 100%;
}

/* Track (UL) */
.caro-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  will-change: transform;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}

/* Slides (LI) */
.caro-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  background: #111114;
  overflow: hidden;
}

.caro-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transform: translateZ(0); /* Safari fix */
  transform: translateZ(0);
}

/* Label inside each slide */
.caro-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .1);
}

/* Navigation buttons */
.caro-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(15, 15, 18, .6);
  color: #fff;
  font-size: 22px;
  /* line-height: 38px; */
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(6px);
  transition: transform .18s ease, opacity .18s ease;
}

.caro-btn:hover {
  transform: translateY(-50%) scale(1.06);
}

.caro-prev {
  left: 14px;
}

.caro-next {
  right: 14px;
}

/* Dots navigation */
.caro-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.caro-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  opacity: .6;
  cursor: pointer;
  padding: 0;
}

.caro-dots button[aria-selected="true"] {
  opacity: 1;
  background: #fff;
  border-color: #fff;
}

/* Mobile tweaks */
@media (hover: none) {
  .caro-btn {
    opacity: .9;
  }
}




  /* Features */
  .features{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}
  .feat{
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
    border:1px solid var(--line); border-radius: 16px; padding:18px; box-shadow: var(--shadow-soft);
  }
  .feat h3{margin:10px 0 6px; font-size:18px}
  .feat p{margin:0;color:var(--muted); font-size:14.5px}
  .icon{width:22px;height:22px;opacity:.9}

  /* Testimonials */
  .quotes{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;              
  align-items:stretch;
}


  .quote{
    padding:22px;
    border-radius:16px;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
    border:1px solid var(--line);
    box-shadow: var(--shadow-soft);
    margin:0; 
  }
  .quote p{font-size:15.5px; line-height:1.55; margin:0 0 14px}
  .q-meta{display:flex; align-items:center; gap:12px; color:var(--muted); font-size:14px}
  .avatar{width:34px;height:34px;border-radius:50%;background:
      linear-gradient(135deg, rgba(255,91,91,.7), rgba(106,167,255,.7));}

  /* FAQ */
  .faq{max-width:860px;margin-inline:auto}
  details{
    border:1px solid var(--line); border-radius:14px; padding:14px 16px; background:#101014; margin:10px 0;
  }
  summary{
    cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:16px;
    font-weight:600;
  }
  summary::-webkit-details-marker{display:none}
  details p{color:var(--muted); margin:10px 2px 6px; font-size:15px; line-height:1.65}
  .chev{rotate:0deg; transition: rotate .2s ease}
  details[open] .chev{rotate:180deg}

  /* LOCKED gradient decoration INSIDE the FAQ section */
  #faq{ position:relative; overflow:hidden; }
  #faq::before{
    content:"";
    position:absolute;
    left:0; right:0;
    top:-90px;              /* begins just above the "FAQ" title */
    height:240px;           /* adjust glow height as needed */
    pointer-events:none;
    z-index:-1;
    background:
      radial-gradient(600px 160px at 20% 0%, rgba(255,91,91,.22), transparent 60%),
      radial-gradient(600px 160px at 80% 0%, rgba(106,167,255,.22), transparent 60%);
    filter: saturate(110%);
  }

  /* Bottom CTA */
  .cta-panel{
    margin-top: 18px;
    border-radius: 20px; padding:28px;
    border:1px solid var(--line);
    background:
      linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
    text-align:center;
    box-shadow: var(--shadow-soft);
    position:relative;
    overflow:hidden;
  }
  .cta-panel::after{
    content:"";
    position:absolute; inset:auto 0 -60px 0; height:200px; pointer-events:none; z-index:-1;
    background:
      radial-gradient(600px 140px at 25% 100%, rgba(255,91,91,.22), transparent 60%),
      radial-gradient(600px 140px at 75% 100%, rgba(106,167,255,.22), transparent 60%);
  }

  /* Footer */
  footer{
    border-top:1px solid var(--line); color:var(--muted);
    padding:28px 0 40px; font-size:13px;
  }
  .foot-flex{display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap}

  /* Responsive */
  @media (max-width: 960px){
    .features{grid-template-columns:1fr 1fr}
    .quotes{grid-template-columns:1fr 1fr}
  }
  @media (max-width: 640px){
    .features{grid-template-columns:1fr}
    .quotes{grid-template-columns:1fr; gap:14px;}
    .nav{height:56px}
    .pill{display:none}
  }


