:root{
  --bg:#ffffff;
  --surface:#f8faf9;
  --muted:#6b7280;
  --accent:#0f766e; /* teal-ish accent */
  --accent-600:#0b6b61;
  --glass: rgba(255,255,255,0.6);
  --radius:14px;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color-scheme: light;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:linear-gradient(180deg,#ffffff 0%, #fbfdfe 100%);
  color:#0f172a;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  font-size:16px;
}

/* container */
.container{
  width:92%;
  max-width:1100px;
  margin:0 auto;
}

/* header */
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter: blur(6px);
  background:linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
  border-bottom:1px solid rgba(15,23,42,0.04);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex;
  gap:12px;
  text-decoration:none;
  color:inherit;
  align-items:center;
}
.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-600));
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.brand-name{
  font-weight:700;
  font-size:18px;
  letter-spacing:0.2px;
  font-family:'Pacifico', cursive;
}
.brand-tag{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

/* nav */
.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}
.btn{
  padding:8px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn-ghost{
  border:1px solid rgba(15,23,42,0.06);
}

/* hero */
.hero{
  padding:48px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:28px;
  align-items:center;
}
.hero-content h1{
  font-size:38px;
  margin:0 0 12px 0;
  line-height:1.05;
}
.lead{color:var(--muted); margin-bottom:18px; font-size:16px;}

.hero-cta {
  display: flex;
  gap: 12px; /* space between buttons */
  flex-wrap: wrap; /* ensures buttons don't overflow container */
}

.store-btn {
  display: inline-block;
  line-height: 0;
  max-width: 100px; /* adjust width to fit side by side */
  flex: 1 1 auto; /* allows it to shrink if needed */
}

.store-btn img {
  width: 100%; /* ensures image fits the smaller button */
  height: auto;
}

.store-btn img {
  display: block;
  width: 100%; /* ensures image fits button width */
  height: auto;
}


.store-btn small{display:block; color:var(--muted); font-size:11px}
.store-btn strong{display:block; font-size:14px; color:#081135}

/* feature pills */
.feature-pills{list-style:none; padding:0; margin:10px 0 0; display:flex; gap:8px; flex-wrap:wrap}
.feature-pills li{background:var(--surface); padding:8px 12px; border-radius:999px; color:var(--muted); font-weight:600; font-size:13px}

/* phone mockup */
.hero-phone{display:flex; justify-content:center}
.phone-mockup{
  width:300px;
  border-radius:30px;
  padding:18px;
  background: linear-gradient(180deg,#ffffff,#f4fbfa);
  box-shadow: 0 24px 50px rgba(11,107,97,0.08), 0 8px 20px rgba(2,6,23,0.06);
  border: 1px solid rgba(11,107,97,0.04);
}
.phone-screen{
  width:264px;
  height:540px;
  border-radius:22px;
  overflow:hidden;
  background:linear-gradient(180deg,#fff,#fff);
  position:relative;
}
.screen-item{position:absolute; inset:0; display:flex; justify-content:center; align-items:center; opacity:0; transform:scale(0.98); transition:all .45s ease}
.screen-item img{width:100%; height:100%; object-fit:cover}
.screen-item.active{opacity:1; transform:scale(1);}

/* carousel dots */
.carousel-dots{display:flex; justify-content:center; gap:8px; margin-top:12px}
.carousel-dots button{width:8px; height:8px; background:rgba(15,23,42,0.12); border-radius:999px; border:0}
.carousel-dots button.active{background:var(--accent)}

/* sections */
.section{padding:50px 0}
.section.alt{background:linear-gradient(180deg,#fbfeff,#f9fbfb)}
.section-title{font-size:22px; margin-bottom:8px}
.muted{color:var(--muted)}

/* features grid */
.features-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:18px;
}
.feature{
  background:white;
  border-radius:14px;
  padding:18px;
  box-shadow:0 8px 22px rgba(2,6,23,0.04);
  border:1px solid rgba(15,23,42,0.04);
}
.feature-icon{font-size:22px; margin-bottom:8px}

/* screenshots */
.screenshot-row{display:flex; gap:14px; margin-top:18px; flex-wrap:wrap}
.screenshot-card{width:calc(33.333% - 9.33px); background:white; border-radius:12px; overflow:hidden; box-shadow:0 10px 30px rgba(2,6,23,0.04)}
.screenshot-card img{width:100%; height:450px; object-fit:cover}
.screenshot-card figcaption{padding:12px; font-weight:600; color:var(--muted)}

/* testimonials */
.testimonials .testimonial-strip{
  display:flex;
  gap:16px;
  overflow:auto;
  padding:8px 6px;
}
.testi{
  min-width:260px;
  background:white;
  padding:18px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.04);
  box-shadow:0 10px 30px rgba(2,6,23,0.04);
  margin:0;
}

/* CTA */
.cta{background:linear-gradient(90deg, rgba(15,118,110,0.06), rgba(15,118,110,0.02)); padding:36px 0}
.cta-inner{display:flex; justify-content:space-between; align-items:center; gap:18px}
.btn-primary{
  background:linear-gradient(90deg,var(--accent),var(--accent-600));
  color:white;
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}
.btn-outline{
  border:1px solid rgba(15,23,42,0.08);
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
}

.socials .social img {
  width: 24px;   /* adjust icon size */
  height: 24px;
  display: inline-block;
}


/* footer */
.site-footer{border-top:1px solid rgba(15,23,42,0.04); padding:32px 0; margin-top:36px}
.footer-grid{display:grid; grid-template-columns:1fr 160px 140px; gap:18px; align-items:start}
.brand.small{display:flex; gap:12px; align-items:center}
.footer-links ul{list-style:none; padding:0; margin:0}
.footer-links a{text-decoration:none; color:var(--muted); font-size:14px}
.socials{display:flex; gap:8px; margin-top:8px}
.social{display:inline-block; text-decoration:none; color:var(--muted); font-weight:600; font-size:14px}

/* small screens */
@media (max-width:920px){
  .hero-grid{grid-template-columns:1fr; text-align:center}
  .hero-phone{order:-1; margin-bottom:18px}
  .features-grid{grid-template-columns:1fr}
  .screenshot-card{width:100%}
  .footer-grid{grid-template-columns:1fr; gap:12px}
  .cta-inner{flex-direction:column; align-items:flex-start}
}

/* tiny screens */
@media (max-width:480px){
  .hero-content h1{font-size:28px}
  .phone-mockup{width:240px}
  .phone-screen{width:208px; height:450px}
  .screen-item img{object-position:center}
}
