*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;text-size-adjust:100%}
html,body{height:100%}
body{-webkit-font-smoothing:antialiased;text-rendering:optimizeSpeed;line-height:1.5}
img,picture,svg,video{display:block;max-width:100%}
input,button,textarea,select{font:inherit;color:inherit}
button{cursor:pointer;background:none;border:none}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}

:root{
  --color-bg:#0E0E0F;
  --color-surface:#17181A;
  --color-border:rgba(255,255,255,.08);
  --color-text:#FFFFFF;
  --color-muted:#A1A1AA;
  --color-yellow:#FFC21A;
  --color-mint:#62E2A3;

  --font-body:'Inter',system-ui,-apple-system,sans-serif;
  --font-heading:'Space Grotesk',system-ui,-apple-system,sans-serif;

  --fs-sm:.875rem;
  --fs-base:1rem;
  --fs-lg:1.125rem;
  --fs-xl:1.25rem;
  --fs-2xl:1.5rem;
  --fs-3xl:2rem;
  --fs-4xl:2.5rem;
  --fs-5xl:3.25rem;

  --space-1:.25rem;
  --space-2:.5rem;
  --space-3:.75rem;
  --space-4:1rem;
  --space-5:1.5rem;
  --space-6:2rem;
  --space-8:3rem;
  --space-10:4rem;
  --space-12:6rem;

  --radius-sm:6px;
  --radius-md:10px;
  --radius-lg:16px;
  --container-width:1200px;
}

body{
  background:var(--color-bg);
  color:var(--color-text);
  font-family:var(--font-body);
  font-size:var(--fs-base);
}

h1,h2,h3,h4,h5,h6{
  font-family:var(--font-heading);
  font-weight:600;
  line-height:1.2;
}

h1{font-size:var(--fs-4xl)}
h2{font-size:var(--fs-3xl)}
h3{font-size:var(--fs-2xl)}
h4{font-size:var(--fs-xl)}
h5{font-size:var(--fs-lg)}
h6{font-size:var(--fs-base)}

@media(min-width:768px){
  h1{font-size:var(--fs-5xl)}
  h2{font-size:var(--fs-4xl)}
  h3{font-size:var(--fs-3xl)}
}

small{font-size:var(--fs-sm)}
.text-muted{color:var(--color-muted)}

.container{
  width:100%;
  max-width:var(--container-width);
  margin-inline:auto;
  padding-inline:var(--space-4);
}

@media(min-width:768px){
  .container{padding-inline:var(--space-6)}
}

.m-0{margin:0}
.mt-1{margin-top:var(--space-1)} .mt-2{margin-top:var(--space-2)} .mt-3{margin-top:var(--space-3)} .mt-4{margin-top:var(--space-4)} .mt-5{margin-top:var(--space-5)} .mt-6{margin-top:var(--space-6)} .mt-8{margin-top:var(--space-8)}
.mb-1{margin-bottom:var(--space-1)} .mb-2{margin-bottom:var(--space-2)} .mb-3{margin-bottom:var(--space-3)} .mb-4{margin-bottom:var(--space-4)} .mb-5{margin-bottom:var(--space-5)} .mb-6{margin-bottom:var(--space-6)} .mb-8{margin-bottom:var(--space-8)}
.p-1{padding:var(--space-1)} .p-2{padding:var(--space-2)} .p-3{padding:var(--space-3)} .p-4{padding:var(--space-4)} .p-5{padding:var(--space-5)} .p-6{padding:var(--space-6)} .p-8{padding:var(--space-8)}

.flex{display:flex}
.flex-col{flex-direction:column}
.items-center{align-items:center}
.justify-center{justify-content:center}
.justify-between{justify-content:space-between}
.gap-1{gap:var(--space-1)} .gap-2{gap:var(--space-2)} .gap-3{gap:var(--space-3)} .gap-4{gap:var(--space-4)} .gap-6{gap:var(--space-6)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:var(--space-2);
  padding:var(--space-3) var(--space-5);
  border-radius:var(--radius-md);
  font-family:var(--font-body);
  font-weight:600;
  font-size:var(--fs-base);
  line-height:1;
  border:1px solid transparent;
  transition:background-color .15s ease,border-color .15s ease,color .15s ease,transform .15s ease;
}

.btn-primary{
  background:var(--color-yellow);
  color:var(--color-bg);
}
.btn-primary:hover{transform:translateY(-1px)}

.btn-secondary{
  background:var(--color-mint);
  color:var(--color-bg);
}
.btn-secondary:hover{transform:translateY(-1px)}

.btn-outline{
  background:transparent;
  color:var(--color-text);
  border-color:var(--color-border);
}
.btn-outline:hover{background:var(--color-surface)}

.surface{
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-lg);
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  height:80px;
  background:transparent;
}

.nav-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--space-4);
  padding-inline:24px;
}

@media(min-width:768px){
  .nav-inner{padding-inline:40px}
}

.nav-brand{
  display:inline-flex;
  align-items:center;
  gap:var(--space-2);
  font-family:var(--font-heading);
  font-weight:600;
  font-size:var(--fs-lg);
  color:var(--color-text);
}

.nav .nav-brand img{width:44px;height:44px;object-fit:contain}

.footer .nav-brand img{width:32px;height:32px;object-fit:contain}

.nav-links{
  display:none;
  align-items:center;
  gap:var(--space-6);
}

.nav-links a{
  font-size:var(--fs-sm);
  font-weight:500;
  color:var(--color-muted);
  transition:color .15s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible{color:var(--color-text)}

.nav-cta{display:none}

.nav-toggle{
  display:inline-flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:40px;
  height:40px;
  border-radius:var(--radius-sm);
}

.nav-toggle span{
  width:20px;
  height:2px;
  background:var(--color-text);
}

.nav-toggle:hover{background:var(--color-surface)}

@media(max-width:1023px){
  .nav-links.is-open{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:var(--space-5);
    position:absolute;
    top:80px;
    left:0;
    right:0;
    background:var(--color-bg);
    border-top:1px solid var(--color-border);
    padding:var(--space-6) 24px;
  }

  .nav-links.is-open .nav-cta{
    display:inline-flex;
    margin-top:var(--space-2);
  }
}

@media(min-width:1024px){
  .nav-links{display:flex;margin-left:auto}
  .nav-cta{display:inline-flex}
  .nav-toggle{display:none}
}

a:focus-visible,
button:focus-visible{
  outline:2px solid var(--color-mint);
  outline-offset:2px;
}

.hero{
  min-height:calc(100vh - 80px);
  display:flex;
  align-items:center;
}

.hero-inner{
  display:grid;
  grid-template-columns:1fr;
  align-items:center;
  gap:var(--space-10);
  padding-block:var(--space-10);
}

@media(min-width:1024px){
  .hero-inner{grid-template-columns:1fr 1fr;gap:calc(var(--space-12) + var(--space-6))}
}

.hero-content h1{max-width:600px}

.hero-content p{
  color:var(--color-muted);
  font-size:var(--fs-lg);
  margin-top:var(--space-5);
  max-width:520px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:var(--space-3);
  margin-top:var(--space-8);
}

.hero-visual{
  position:relative;
}

.browser-mock{
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-lg);
  overflow:hidden;
}

.browser-bar{
  display:flex;
  align-items:center;
  gap:var(--space-2);
  padding:var(--space-3) var(--space-4);
  border-bottom:1px solid var(--color-border);
}

.browser-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--color-border);
}

.browser-address{
  flex:1;
  height:22px;
  margin-left:var(--space-2);
  border-radius:var(--radius-sm);
  background:var(--color-bg);
  border:1px solid var(--color-border);
}

.browser-body{
  padding:var(--space-6);
  display:flex;
  flex-direction:column;
  gap:var(--space-3);
}

.site-block{
  height:14px;
  width:70%;
  border-radius:var(--radius-sm);
  background:var(--color-bg);
  border:1px solid var(--color-border);
}

.site-block-lg{
  height:120px;
  width:100%;
}

.capture-panel{
  position:absolute;
  left:calc(var(--space-4) * -1);
  bottom:calc(var(--space-4) * -1);
  display:inline-flex;
  align-items:center;
  gap:var(--space-3);
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
  padding:var(--space-3) var(--space-4);
  box-shadow:0 16px 32px rgba(0,0,0,.4);
}

@media(min-width:1024px){
  .capture-panel{
    left:calc(var(--space-6) * -1);
    bottom:calc(var(--space-6) * -1);
  }
}

.capture-icon{
  width:32px;
  height:32px;
  flex-shrink:0;
  border-radius:var(--radius-sm);
  background:var(--color-mint);
}

.capture-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.capture-text strong{
  font-family:var(--font-heading);
  font-weight:600;
  font-size:var(--fs-sm);
}

.capture-text small{
  color:var(--color-muted);
}

.features{
  background:transparent;
  padding-top:120px;
  padding-bottom:var(--space-12);
}

.features-header{
  max-width:600px;
  margin-inline:auto;
  text-align:center;
}

.eyebrow{
  display:inline-block;
  color:var(--color-yellow);
  font-size:var(--fs-sm);
  font-weight:600;
  letter-spacing:.08em;
}

.features-header h2{margin-top:var(--space-3)}

.features-header p{
  color:var(--color-muted);
  font-size:var(--fs-lg);
  margin-top:var(--space-4);
}

.features-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:var(--space-6);
  margin-top:var(--space-10);
}

@media(min-width:1024px){
  .features-grid{grid-template-columns:repeat(3,1fr)}
}

.feature-card{
  height:100%;
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:20px;
  padding:var(--space-6);
}

.feature-icon{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
  margin-bottom:var(--space-6);
}

.feature-card h3{margin-bottom:var(--space-3)}

.feature-card p{
  color:var(--color-muted);
}

.icon-frame{
  position:relative;
  width:26px;
  height:26px;
  border:2px solid var(--color-yellow);
  border-radius:6px;
}

.icon-frame::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:6px;
  height:6px;
  background:var(--color-yellow);
  border-radius:50%;
  transform:translate(-50%,-50%);
}

.icon-arrow{
  position:relative;
  display:block;
  width:2px;
  height:16px;
  background:var(--color-mint);
}

.icon-arrow::before{
  content:"";
  position:absolute;
  top:16px;
  left:50%;
  width:10px;
  height:10px;
  border-right:2px solid var(--color-mint);
  border-bottom:2px solid var(--color-mint);
  transform:translate(-50%,-50%) rotate(45deg);
}

.icon-arrow::after{
  content:"";
  position:absolute;
  top:26px;
  left:50%;
  width:28px;
  height:2px;
  background:var(--color-mint);
  transform:translateX(-50%);
}

.icon-bars{
  display:flex;
  align-items:flex-end;
  gap:5px;
  height:28px;
}

.icon-bars i{
  display:block;
  width:6px;
  border-radius:2px;
  background:var(--color-yellow);
}

.icon-bars i:nth-child(1){height:14px}
.icon-bars i:nth-child(2){height:28px;background:var(--color-mint)}
.icon-bars i:nth-child(3){height:20px}

.how{
  padding-block:var(--space-12);
}

.how-header{
  max-width:600px;
  margin-inline:auto;
  text-align:center;
}

.how-header h2{margin-top:var(--space-3)}

.how-header p{
  color:var(--color-muted);
  font-size:var(--fs-lg);
  margin-top:var(--space-4);
}

.how-timeline{
  display:flex;
  flex-direction:column;
  gap:var(--space-10);
  margin-top:var(--space-10);
}

.how-step{
  display:flex;
  gap:var(--space-5);
}

.how-step-marker{
  position:relative;
  flex-shrink:0;
}

.how-step-number{
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--color-border);
  border-radius:50%;
  background:var(--color-bg);
  font-family:var(--font-heading);
  font-weight:600;
  font-size:var(--fs-xl);
  position:relative;
  z-index:1;
}

.how-step:not(:last-child) .how-step-marker::after{
  content:"";
  position:absolute;
  top:64px;
  bottom:calc(var(--space-10) * -1);
  left:50%;
  width:1px;
  background:var(--color-border);
  transform:translateX(-50%);
}

.how-step-content{flex:1}
.how-step-content h3{margin-bottom:var(--space-2)}
.how-step-content p{color:var(--color-muted)}

@media(min-width:1024px){
  .how-timeline{
    flex-direction:row;
    gap:var(--space-6);
    position:relative;
  }

  .how-timeline::before{
    content:"";
    position:absolute;
    top:32px;
    left:0;
    right:0;
    height:1px;
    background:var(--color-border);
  }

  .how-step{
    flex:1;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .how-step-content{
    max-width:320px;
    margin-inline:auto;
  }

  .how-step:not(:last-child) .how-step-marker::after{
    display:none;
  }
}

.trust{
  padding-block:var(--space-12);
}

.trust-header{
  max-width:600px;
  margin-inline:auto;
  text-align:center;
}

.trust-header h2{margin-top:var(--space-3)}

.trust-header p{
  color:var(--color-muted);
  font-size:var(--fs-lg);
  margin-top:var(--space-4);
}

.trust-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:var(--space-10);
  margin-top:var(--space-10);
}

@media(min-width:1024px){
  .trust-grid{
    grid-template-columns:55fr 45fr;
    align-items:center;
  }
}

.trust-image{
  max-width:700px;
}

.gallery{
  display:flex;
  flex-direction:column;
  gap:var(--space-4);
}

.gallery-main{
  border:1px solid var(--color-border);
  border-radius:20px;
  overflow:hidden;
  background:var(--color-surface);
}

.gallery-main img{
  display:block;
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;
  background:var(--color-surface);
  transition:opacity .18s ease;
}

.gallery-caption{
  color:var(--color-muted);
  font-size:var(--fs-sm);
  text-align:center;
}

.gallery-thumbs{
  display:flex;
  gap:var(--space-3);
  overflow-x:auto;
}

.gallery-thumb{
  flex:0 0 auto;
  width:72px;
  height:72px;
  padding:0;
  border:1px solid var(--color-border);
  border-radius:12px;
  overflow:hidden;
  background:var(--color-surface);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:var(--color-surface);
}

.gallery-thumb.is-active{border-color:var(--color-mint)}

@media(min-width:1024px){
  .gallery{
    display:grid;
    grid-template-columns:1fr auto;
    grid-template-areas:"main thumbs" "caption thumbs";
    gap:var(--space-4);
  }

  .gallery-main{grid-area:main}
  .gallery-caption{grid-area:caption}

  .gallery-thumbs{
    grid-area:thumbs;
    flex-direction:column;
    width:88px;
    overflow-x:visible;
  }

  .gallery-thumb{width:88px;height:88px}
}

.trust-cards{
  display:flex;
  flex-direction:column;
  gap:var(--space-3);
}

.trust-card{
  display:flex;
  align-items:flex-start;
  gap:var(--space-3);
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:20px;
  padding:var(--space-4);
}

.trust-icon{
  width:36px;
  height:36px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
}

.trust-text h3{font-size:var(--fs-lg);margin-bottom:var(--space-2)}
.trust-text p{color:var(--color-muted)}

.icon-cloud-off{
  position:relative;
  width:20px;
  height:20px;
  border:2px solid var(--color-mint);
  border-radius:50%;
}

.icon-cloud-off::after{
  content:"";
  position:absolute;
  top:50%;
  left:-2px;
  right:-2px;
  height:2px;
  background:var(--color-mint);
  transform:translateY(-50%) rotate(45deg);
}

.icon-click{
  width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--color-yellow);
  border-radius:50%;
}

.icon-click::after{
  content:"";
  width:7px;
  height:7px;
  background:var(--color-yellow);
  border-radius:50%;
}

.icon-lock{
  position:relative;
  width:18px;
  height:14px;
  margin-top:10px;
  background:var(--color-yellow);
  border-radius:3px;
}

.icon-lock::before{
  content:"";
  position:absolute;
  top:-9px;
  left:50%;
  width:12px;
  height:12px;
  border:2px solid var(--color-yellow);
  border-bottom:none;
  border-radius:7px 7px 0 0;
  transform:translateX(-50%);
}

.policy{
  padding-block:var(--space-12);
}

.policy-content{
  max-width:900px;
  margin-inline:auto;
}

.policy-header{
  margin-bottom:var(--space-10);
}

.policy-updated{
  color:var(--color-muted);
  margin-top:var(--space-2);
}

.policy-body > * + *{margin-top:var(--space-4)}
.policy-body > h2{margin-top:var(--space-10)}
.policy-body > h2:first-child{margin-top:0}

.policy-body p{color:var(--color-muted)}

.policy-body ul{
  list-style:disc;
  padding-left:1.25rem;
  color:var(--color-muted);
}

.policy-body li + li{margin-top:var(--space-1)}

.policy-body strong{
  color:var(--color-text);
  font-weight:600;
}

.policy-body a{
  color:var(--color-mint);
  text-decoration:underline;
  text-underline-offset:2px;
}

.share-viewer-frame{
  border:1px solid var(--color-border);
  border-radius:20px;
  overflow:hidden;
  background:var(--color-surface);
  margin-top:var(--space-8);
}

.share-viewer-frame img{
  display:block;
  width:100%;
  max-height:70vh;
  object-fit:contain;
  background:var(--color-surface);
}

.share-viewer-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:var(--space-3);
  margin-top:var(--space-8);
}

.share-viewer-actions[hidden]{display:none}

.cta{
  background:var(--color-bg);
  padding-block:var(--space-12);
}

.cta-content{
  max-width:900px;
  margin-inline:auto;
  text-align:center;
}

.cta-content p{
  color:var(--color-muted);
  font-size:var(--fs-lg);
  margin-top:var(--space-4);
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:var(--space-3);
  margin-top:var(--space-8);
}

.footer{
  border-top:1px solid var(--color-border);
}

.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:var(--space-4);
  padding-block:var(--space-8);
  text-align:center;
}

@media(min-width:768px){
  .footer-inner{
    flex-direction:row;
    justify-content:space-between;
    text-align:left;
  }
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:var(--space-5);
}

.footer-links a{
  color:var(--color-muted);
  font-size:var(--fs-sm);
  transition:color .15s ease;
}

.footer-links a:hover,
.footer-links a[aria-current="page"]{color:var(--color-text)}

.footer-copy{color:var(--color-muted)}

.footer-credit{
  margin-top:14px;
  text-align:center;
  font-size:14px;
  color:var(--color-muted);
}

.footer-credit a{
  color:var(--color-muted);
  text-decoration:underline;
  text-underline-offset:2px;
  transition:color .15s ease;
}

.footer-credit a:hover{color:var(--color-text)}
