
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --bg:#f7f4ee;
  --surface:#ffffff;
  --text:#171717;
  --muted:#6f6f6f;
  --line:#e8e2d8;
  --brand:#7a1721;
  --brand-dark:#571019;
  --brand-soft:#f4e8e9;
  --success:#1f8a5b;
  --shadow:0 24px 70px rgba(55,38,23,.12);
  --radius-xl:34px;
  --radius-lg:24px;
  --radius-md:18px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Manrope',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(122,23,33,.06), transparent 28%),
    linear-gradient(180deg,#fbf9f5 0%,var(--bg) 100%);
  -webkit-font-smoothing:antialiased;
}

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

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

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(251,249,245,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(232,226,216,.75);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  font-size:22px;
  letter-spacing:-.03em;
}

.brand__mark{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,var(--brand),var(--brand-dark));
  color:#fff;
  box-shadow:0 10px 24px rgba(122,23,33,.22);
  font-weight:800;
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  color:#4c4c4c;
  font-size:14px;
  font-weight:600;
}

.btn{
  min-height:52px;
  padding:0 22px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid transparent;
  font-family:inherit;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn--primary{
  background:linear-gradient(145deg,var(--brand),var(--brand-dark));
  color:#fff;
  box-shadow:0 14px 30px rgba(122,23,33,.24);
}

.btn--light{
  background:#fff;
  border-color:var(--line);
}

.hero{
  padding:64px 0 56px;
}

.hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);
  gap:56px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  color:var(--brand);
  background:var(--brand-soft);
  font-size:13px;
  font-weight:700;
}

.hero h1{
  margin:20px 0 18px;
  max-width:720px;
  font-size:clamp(44px,7vw,78px);
  line-height:.98;
  letter-spacing:-.055em;
}

.hero__lead{
  max-width:650px;
  margin:0 0 30px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.store-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.store-btn{
  min-width:190px;
  padding:12px 16px;
  border-radius:18px;
  background:#161616;
  color:#fff;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:0 14px 28px rgba(0,0,0,.12);
  transition:.2s ease;
}

.store-btn:hover{
  transform:translateY(-2px);
}

.store-btn__icon{
  width:32px;
  height:32px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.1);
  font-weight:800;
}

.store-btn small{
  display:block;
  color:#bdbdbd;
  font-size:10px;
  margin-bottom:2px;
}

.store-btn strong{
  display:block;
  font-size:15px;
}

.hero__note{
  margin-top:18px;
  font-size:13px;
  color:#8a8a8a;
}

.phone-wrap{
  position:relative;
  min-height:560px;
  display:grid;
  place-items:center;
}

.phone-glow{
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(122,23,33,.18), rgba(122,23,33,0) 68%);
  filter:blur(2px);
}

.phone{
  position:relative;
  width:min(330px, 78vw);
  aspect-ratio:9/18.8;
  padding:12px;
  border-radius:46px;
  background:#111;
  box-shadow:0 40px 100px rgba(49,32,22,.25);
  transform:rotate(4deg);
}

.phone__screen{
  width:100%;
  height:100%;
  overflow:hidden;
  border-radius:37px;
  background:#faf8f3;
  border:1px solid rgba(255,255,255,.08);
}

.app-top{
  padding:24px 18px 10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.app-logo{
  font-size:18px;
  font-weight:800;
}

.app-dot{
  width:34px;
  height:34px;
  border-radius:11px;
  background:var(--brand-soft);
}

.app-search{
  margin:8px 16px 18px;
  height:44px;
  border-radius:14px;
  background:#fff;
  border:1px solid #eee6db;
  display:flex;
  align-items:center;
  padding:0 14px;
  color:#aaa;
  font-size:13px;
}

.app-banner{
  margin:0 16px 18px;
  padding:22px;
  min-height:150px;
  border-radius:24px;
  background:linear-gradient(145deg,#7a1721,#3c0b12);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.app-banner small{
  opacity:.75;
}

.app-banner strong{
  font-size:24px;
  line-height:1.1;
  margin-top:6px;
}

.app-title{
  padding:0 16px;
  font-size:16px;
  font-weight:800;
}

.app-cards{
  padding:12px 16px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.app-card{
  background:#fff;
  border-radius:18px;
  padding:10px;
  border:1px solid #eee8df;
}

.app-card__img{
  aspect-ratio:1.15;
  border-radius:13px;
  background:linear-gradient(145deg,#f5ece7,#e4d4c8);
}

.app-card strong{
  display:block;
  margin-top:9px;
  font-size:11px;
}

.app-card span{
  display:block;
  margin-top:5px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
}

.app-nav{
  position:absolute;
  left:24px;
  right:24px;
  bottom:20px;
  height:54px;
  border-radius:18px;
  background:rgba(255,255,255,.96);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
}

.app-nav span{
  margin:auto;
  width:19px;
  height:19px;
  border-radius:6px;
  background:#ddd5ca;
}

.app-nav span:first-child{
  background:var(--brand);
}

.section{
  padding:70px 0;
}

.section__head{
  max-width:720px;
  margin-bottom:32px;
}

.section__head h2{
  margin:0 0 12px;
  font-size:clamp(34px,5vw,52px);
  line-height:1.05;
  letter-spacing:-.045em;
}

.section__head p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.feature{
  padding:24px;
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  box-shadow:0 10px 30px rgba(50,35,23,.04);
}

.feature__icon{
  width:48px;
  height:48px;
  border-radius:15px;
  background:var(--brand-soft);
  color:var(--brand);
  display:grid;
  place-items:center;
  font-size:20px;
  font-weight:800;
}

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

.feature p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.download{
  margin:30px 0 70px;
}

.download__box{
  padding:42px;
  border-radius:var(--radius-xl);
  background:#171717;
  color:#fff;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
  position:relative;
}

.download__box:after{
  content:'';
  position:absolute;
  width:300px;
  height:300px;
  right:-120px;
  top:-120px;
  border-radius:50%;
  background:rgba(122,23,33,.5);
  filter:blur(8px);
}

.download__content,
.qr{
  position:relative;
  z-index:2;
}

.download__content h2{
  margin:0 0 12px;
  font-size:clamp(32px,5vw,50px);
  letter-spacing:-.04em;
}

.download__content p{
  margin:0 0 24px;
  color:#bcbcbc;
  max-width:650px;
  line-height:1.7;
}

.qr{
  width:164px;
  height:164px;
  border-radius:24px;
  background:
    linear-gradient(90deg,#fff 10px,transparent 10px) 0 0/28px 28px,
    linear-gradient(#fff 10px,transparent 10px) 0 0/28px 28px,
    #fff;
  border:12px solid #fff;
  box-shadow:0 16px 40px rgba(0,0,0,.22);
}

.qr:before,
.qr:after{
  content:'';
  position:absolute;
  width:44px;
  height:44px;
  border:10px solid #111;
  top:14px;
  left:14px;
  background:#fff;
}

.qr:after{
  left:auto;
  right:14px;
}

.footer{
  border-top:1px solid var(--line);
  padding:34px 0 42px;
  background:rgba(255,255,255,.45);
}

.footer__top{
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:flex-start;
}

.footer__links{
  display:flex;
  flex-wrap:wrap;
  gap:12px 22px;
  color:#666;
  font-size:13px;
}

.footer__links a:hover{
  color:var(--brand);
}

.footer__bottom{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid var(--line);
  color:#919191;
  font-size:12px;
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.legal{
  padding:56px 0 84px;
}

.legal__card{
  max-width:900px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:40px;
  box-shadow:var(--shadow);
}

.legal__card h1{
  margin-top:0;
  font-size:clamp(34px,5vw,54px);
  letter-spacing:-.04em;
}

.legal__card h2{
  margin-top:34px;
  font-size:22px;
}

.legal__card p,
.legal__card li{
  color:#5f5f5f;
  line-height:1.75;
}

.legal__meta{
  color:#969696;
  font-size:13px;
  margin-bottom:30px;
}

@media (max-width: 980px){
  .hero__grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .hero__content{
    text-align:center;
  }

  .hero__lead{
    margin-left:auto;
    margin-right:auto;
  }

  .eyebrow{
    margin:auto;
  }

  .store-buttons{
    justify-content:center;
  }

  .features{
    grid-template-columns:repeat(2,1fr);
  }

  .phone-wrap{
    min-height:520px;
  }
}

@media (max-width: 720px){
  .nav a:not(.btn){
    display:none;
  }

  .header__inner{
    min-height:66px;
  }

  .hero{
    padding-top:42px;
  }

  .hero h1{
    font-size:46px;
  }

  .hero__lead{
    font-size:16px;
  }

  .store-btn{
    width:100%;
    max-width:330px;
  }

  .phone{
    width:285px;
  }

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

  .download__box{
    grid-template-columns:1fr;
    text-align:center;
    padding:30px 22px;
  }

  .download__box .store-buttons{
    justify-content:center;
  }

  .qr{
    margin:0 auto;
  }

  .footer__top,
  .footer__bottom{
    flex-direction:column;
  }

  .legal__card{
    padding:26px 20px;
    border-radius:22px;
  }
}
