:root{
  --bg:#f5f5f7;
  --card:#fff;
  --line:#e5e5ea;
  --text:#1d1d1f;
  --muted:#6e6e73;
  --shadow:0 20px 50px rgba(0,0,0,.08);
  --max:1240px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 100% -10%, rgba(94,92,230,.10), transparent 55%),
    radial-gradient(900px 600px at 0% 5%, rgba(0,113,227,.08), transparent 48%),
    var(--bg);
}

img{max-width:100%;display:block}

a{
  text-decoration:none;
  color:inherit;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(245,245,247,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  min-height:74px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:700;
  min-width:0;
}

.logo{
  width:42px;
  height:42px;
  border-radius:12px;
  object-fit:cover;
  box-shadow:0 8px 22px rgba(0,0,0,.10);
}

.brand-text{
  line-height:1.15;
}

.nav-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:var(--muted);
}

.nav-links a.active,
.nav-links a:hover{
  color:var(--text);
}

.hero{
  padding:78px 0 54px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  font-size:1rem;
  font-weight:600;
}

.dot{
  width:10px;
  height:10px;
  background:#00b37a;
  border-radius:50%;
}

h1{
  margin:40px 0 24px;
  font-size:clamp(3rem,5vw,5.4rem);
  line-height:1.12;
  letter-spacing:-0.01em;
  word-spacing:0.16em;
  font-weight:700;
}

.hero-intro{
  text-align:center;
  max-width:1300px;
  margin:0 auto 52px;
}

.hero-intro h1 br{
  display:block;
  margin-top:.18em;
}

.spacer{
  display:block;
  height:.22em;
}

.lead{
  max-width:980px;
  margin:0 auto 18px;
  color:var(--muted);
  font-size:1.18rem;
  line-height:1.82;
}

.hero-note{
  color:var(--muted);
  font-size:1rem;
  margin-top:18px;
}

.showcase{
  display:grid;
  grid-template-columns:.88fr auto;
  gap:24px;
  align-items:stretch;
  margin-top:44px;
}

.panel{
  background:linear-gradient(180deg,#fff,#f9f9fb);
  border:1px solid rgba(0,0,0,.06);
  border-radius:32px;
  box-shadow:var(--shadow);
  height:100%;
}

.panel-pad{
  padding:28px;
  text-align:center;
}

panel-pad .pill{
  margin:0 auto;
}

.panel-pad h2,
.panel-pad .intro{
  text-align:center;
}

.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#f2f2f7;
  border:1px solid #ececf0;
  color:var(--muted);
  font-size:.84rem;
  font-weight:700;
}

.kpis{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:24px;
}

.kpi{
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  background:#fff;
  text-align:center;
}

.kpi .label{
  font-size:.88rem;
  color:var(--muted);
}

.kpi strong{
  display:block;
  margin-top:7px;
  font-size:1.18rem;
}

.devices{
  display:grid;
  grid-template-columns:300px 465px;
  gap:24px;
  align-items:end;
  justify-content:center;
  padding:18px 18px 0;
  height:100%;
}

.device{
  background:#111;
  padding:10px;
  border-radius:34px;
  box-shadow:0 28px 60px rgba(0,0,0,.18);
  display:flex;
  align-items:stretch;
}

.device.phone{
  width:300px;
  height:620px;
  justify-self:center;
}

.device.tablet{
  width:465px;
  height:620px;
  justify-self:center;
}

.device-inner{
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
}

.device.phone .device-inner img,
.device.tablet .device-inner img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#fff;
  display:block;
}

.caption{
  text-align:center;
  color:var(--muted);
  padding:14px 0 18px;
}

.section{
  padding:54px 0;
}

.section-header{
  max-width:980px;
  margin:0 auto 24px;
  text-align:center;
}

.section h2{
  margin:0 0 18px;
  font-size:clamp(2rem,4vw,3.6rem);
  line-height:1.14;
  letter-spacing:-.01em;
  word-spacing:.14em;
  font-weight:700;
}

.section h2 br{
  display:block;
  margin-top:.15em;
}

.intro{
  color:var(--muted);
  line-height:1.78;
  font-size:1.08rem;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.feature,
.doc,
.shot,
.value,
.callout{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.feature{
  padding:26px;
  text-align:center;
}

.icon{
  width:48px;
  height:48px;
  border-radius:15px;
  background:linear-gradient(135deg,rgba(0,113,227,.14),rgba(94,92,230,.13));
  display:grid;
  place-items:center;
  font-weight:800;
  color:#335ad3;
  margin:0 auto 16px;
}

.feature h3{
  margin:0 0 8px;
  font-size:1.16rem;
}

.feature p,
.doc p,
.doc li,
.shot p,
.value p,
.callout p{
  color:var(--muted);
  line-height:1.72;
}

.callout,
.value{
  max-width:900px;
  margin:0 auto;
  padding:32px;
  text-align:center;
}

.callout h3,
.value h3{
  font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1.05;
  letter-spacing:-.04em;
  text-align:center;
}

.callout h3{
  margin:18px 0 12px;
}

.value h3{
  margin:0 0 12px;
}

.bullets{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.bullet{
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:18px;
  text-align:center;
}

.bullet strong{
  display:block;
  color:var(--text);
  margin-bottom:4px;
}

.sync-two{
  display:grid;
  grid-template-columns:auto auto;
  gap:20px;
  max-width:980px;
  margin:0 auto;
  align-items:start;
  justify-content:center;
}

.sync-two .shot{
  padding:18px;
  text-align:center;
}

.frame.phone-natural,
.frame.ipad-natural{
  background:transparent;
  padding:0;
  box-shadow:none;
  height:620px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.frame.phone-natural .phone-wrap{
  width:300px;
  height:620px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.frame.ipad-natural .ipad-wrap{
  width:auto;
  height:620px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.frame.phone-natural img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:22px;
}

.frame.ipad-natural img{
  width:auto;
  height:100%;
  object-fit:contain;
  border-radius:22px;
  display:block;
}

.compare{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.04);
}

.compare th,
.compare td{
  padding:18px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
}

.compare th{
  background:#fbfbfd;
}

.compare td{
  color:var(--muted);
}

.compare td strong{
  color:var(--text);
}

.page-hero{
  padding:56px 0 14px;
}

.meta{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
}

.page-title{
  margin:12px 0 8px;
  font-size:clamp(2rem,5vw,4rem);
  letter-spacing:-.05em;
}

.page-subtitle{
  max-width:780px;
  color:var(--muted);
  line-height:1.72;
}

.doc{
  padding:30px;
  margin:20px 0 26px;
}

.doc h2{
  margin:26px 0 10px;
  font-size:1.18rem;
}

.notice{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(0,113,227,.14);
  background:rgba(0,113,227,.05);
  color:#335ad3;
}

.site-footer{
  border-top:1px solid var(--line);
  margin-top:60px;
  padding:24px 0;
}

.footer-copy{
  text-align:center;
  font-size:.85rem;
  color:var(--muted);
}

@media (max-width:1100px){
  .showcase,
  .grid3,
  .support-grid{
    grid-template-columns:1fr;
  }

  .devices{
    grid-template-columns:1fr;
    justify-items:center;
  }

  .sync-two{
    grid-template-columns:1fr;
    max-width:520px;
  }

  .frame.phone-natural,
  .frame.ipad-natural{
    height:auto;
  }

  .frame.phone-natural .phone-wrap,
  .frame.ipad-natural .ipad-wrap{
    width:100%;
    height:auto;
  }
}

@media (max-width:760px){
  .wrap{
    padding:0 18px;
  }

  .kpis{
    grid-template-columns:1fr;
  }

  .nav{
    min-height:60px;
  }

  .nav-links{
    gap:14px;
  }

  .brand-text{
    font-size:.92rem;
  }

  .device.phone,
  .device.tablet{
    width:100%;
    max-width:440px;
    height:auto;
  }
}
.media-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:1000px;
  margin:0 auto;
}

.media{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  aspect-ratio:1320 / 2868;
}

.media img,
.media video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.media.video{
  grid-row:span 1;
}

.store-badge{
  margin-top:16px;
  display:flex;
  justify-content:center;
}

.hero-store{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.store-badge img{
  height:48px;
  width:auto;
}

@media (max-width:760px){
  .store-badge img{
    height:44px;
  }
}

.footer-links{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-nav{
  display:flex;
  gap:18px;
  color:var(--muted);
}

.footer-store img{
  height:38px;
  width:auto;
}

@media (max-width:760px){

  .footer-links{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .footer-store img{
    height:34px;
  }

}
.footer-copy{
  width:100%;
  margin-top:14px;
  font-size:.85rem;
  color:var(--muted);
  text-align:center;
}
.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
  color:var(--text);
}

@media (max-width:760px){
  .nav{
      position:relative;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }

    .brand{
      flex:1;
    }

  .logo{
    width:34px;
    height:34px;
    border-radius:10px;
  }
  
  .menu-toggle{
    display:block;
  }

  .nav-links{
    display:none !important;
    position:absolute;
    top:100%;
    right:18px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    padding:12px 16px;
    flex-direction:column;
    gap:12px;
    min-width:160px;
    z-index:1000;
  }

  .nav-links.open{
    display:flex !important;
  }
  .hero{
      padding-top:20px;
    }

    .hero-intro{
      margin-top:0;
    }
    
    .hero .wrap{
      padding-top:8px;
    }

}
