:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.68);
  --line: rgba(165,30,24,.18);
  --brand: #A51E18;
  --brand-2: #7f1713;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", Times, serif;
  --shadow: 0 18px 60px rgba(10,10,10,.14);
  --shadow-soft: 0 12px 32px rgba(10,10,10,.12);
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color:var(--text);
  background:
    radial-gradient(800px 520px at 12% 0%, rgba(165,30,24,.08), transparent 58%),
    radial-gradient(820px 560px at 90% 14%, rgba(165,30,24,.06), transparent 60%),
    var(--bg);
}

h1, h2, h3{
  font-family: var(--font-display);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; }

.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.skip{
  position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:14px; top:14px; width:auto; height:auto; padding:10px 12px;
  background:var(--bg); border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow-soft);
  z-index:1000;
}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(165,30,24,.10);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand__logo{
  width:38px; height:38px; object-fit:contain;
  border-radius:12px;
  background: rgba(165,30,24,.06);
  border: 1px solid rgba(165,30,24,.16);
  padding:6px;
}
.brand__name{ font-weight:800; letter-spacing:.2px; }

.nav{ display:flex; align-items:center; }
.nav__links{
  display:flex; align-items:center; gap:18px;
}
.nav__links a{
  padding:10px 12px;
  border-radius:12px;
  color: rgba(18,18,18,.84);
}
.nav__links a:hover{
  background: rgba(165,30,24,.06);
  color: var(--text);
}
.nav__cta{
  border:1px solid rgba(165,30,24,.22);
  background: rgba(165,30,24,.06);
}
.nav__cta:hover{
  background: rgba(165,30,24,.10);
}

.nav__burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(165,30,24,.18);
  background: rgba(255,255,255,.65);
  align-items:center; justify-content:center; gap:5px;
}
.nav__burger span{
  display:block;
  width:18px; height:2px;
  background: rgba(18,18,18,.76);
  border-radius:999px;
}

.hero{
  padding:56px 0 22px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:34px;
  align-items:center;
}

.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(165,30,24,.20);
  background: rgba(165,30,24,.06);
  color: rgba(18,18,18,.82);
  font-weight:650;
  letter-spacing:.15px;
}
.hero__title{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.02;
  letter-spacing: -.7px;
}
.accent{ color: var(--brand); }
.hero__lead{
  margin:0;
  color: var(--muted);
  font-size: 16.5px;
  line-height:1.65;
}
.hero__actions{
  display:flex; gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(165,30,24,.20);
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: rgba(165,30,24,.30);
  box-shadow: 0 16px 32px rgba(165,30,24,.20);
}
.btn--primary:hover{ box-shadow: 0 18px 40px rgba(165,30,24,.24); }
.btn--ghost{
  background: rgba(255,255,255,.65);
}
.btn--ghost:hover{ background: rgba(165,30,24,.06); }
.btn--lg{ padding:14px 18px; border-radius:16px; }

.hero__meta{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.meta{
  border:1px solid rgba(165,30,24,.16);
  background: rgba(255,255,255,.6);
  border-radius: var(--radius-sm);
  padding:12px 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.meta__k{ font-size:12px; color: rgba(18,18,18,.60); }
.meta__v{ font-weight:750; margin-top:3px; }

.hero__visual{
  position:relative;
  padding:18px;
}
.frame{
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid rgba(165,30,24,.18);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.frame img{ width:100%; height:auto; }
.badge{
  position:absolute;
  right: -6px;
  bottom: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(165,30,24,.20);
  border-radius: 18px;
  padding:10px 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  transform: rotate(-2deg);
}
.badge__top{ font-size:12px; color: rgba(18,18,18,.62); }
.badge__big{ font-weight:850; letter-spacing:.1px; }

.section{ padding:62px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(165,30,24,.04), rgba(165,30,24,.00));
  border-top: 1px solid rgba(165,30,24,.08);
  border-bottom: 1px solid rgba(165,30,24,.08);
}
.section__head{ margin-bottom:22px; }
.section__title{
  margin:0 0 10px;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -.35px;
}
.section__subtitle{
  margin:0;
  color: var(--muted);
  max-width: 66ch;
  line-height:1.6;
}

.features{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.card{
  padding:18px 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(165,30,24,.14);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}
.card h3{ margin:0 0 8px; font-size:18px; letter-spacing:-.1px; }
.card p{ margin:0; color: var(--muted); line-height:1.6; }

.slider{
  position:relative;
  border-radius: 24px;
  border: 1px solid rgba(165,30,24,.14);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.slider__viewport{ overflow:hidden; }
.slider__track{
  display:flex;
  transform: translateX(0);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.slide{
  margin:0;
  min-width: 100%;
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.slide img{
  width:100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(165,30,24,.16);
  background: #fff;
  cursor: zoom-in;
}

.slider__btn{
  position:absolute; top:50%;
  transform: translateY(-50%);
  width:46px; height:46px;
  border-radius: 16px;
  border: 1px solid rgba(165,30,24,.18);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 24px rgba(0,0,0,.12);
  cursor:pointer;
}
.slider__btn:hover{ background: rgba(165,30,24,.06); }
.slider__btn--prev{ left:14px; }
.slider__btn--next{ right:14px; }

.slider__dots{
  display:flex;
  gap:8px;
  padding: 0 18px 16px;
  justify-content:center;
}
.dot{
  width:8px; height:8px;
  border-radius: 999px;
  border: 1px solid rgba(165,30,24,.25);
  background: rgba(165,30,24,.10);
  cursor:pointer;
}
.dot[aria-selected="true"]{
  width: 22px;
  background: rgba(165,30,24,.55);
}

.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.steps__item{
  display:flex;
  gap:14px;
  padding:18px;
  border-radius: var(--radius);
  border: 1px solid rgba(165,30,24,.14);
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
}
.steps__n{
  width:56px; height:56px;
  border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  font-weight:850;
  color: var(--brand);
  background: rgba(165,30,24,.08);
  border: 1px solid rgba(165,30,24,.18);
}
.steps__body h3{ margin:2px 0 6px; }
.steps__body p{ margin:0; color: var(--muted); line-height:1.6; }

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:stretch;
}
.chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.chip{
  display:inline-flex;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(165,30,24,.16);
  background: rgba(255,255,255,.68);
  color: rgba(18,18,18,.82);
}
.quote{
  height:100%;
  border-radius: 24px;
  border: 1px solid rgba(165,30,24,.16);
  background:
    radial-gradient(900px 480px at 10% 0%, rgba(165,30,24,.10), transparent 58%),
    rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.quote__text{
  margin:0;
  font-size: 18px;
  line-height:1.7;
  color: rgba(18,18,18,.86);
}
.quote__by{
  margin-top:14px;
  color: rgba(18,18,18,.62);
  font-weight:650;
}

.cta{
  border-radius: 28px;
  border: 1px solid rgba(165,30,24,.16);
  background:
    radial-gradient(860px 520px at 0% 0%, rgba(165,30,24,.12), transparent 55%),
    radial-gradient(800px 520px at 100% 40%, rgba(165,30,24,.10), transparent 56%),
    rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  padding: 20px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  overflow:hidden;
}
.cta__title{ margin:0 0 10px; font-size: clamp(22px, 2.4vw, 32px); letter-spacing:-.3px; }
.cta__text{ margin:0; color: var(--muted); line-height:1.6; }
.cta__actions{ margin-top:16px; display:flex; gap:12px; flex-wrap:wrap; }
.cta__note{ margin-top:10px; color: rgba(18,18,18,.52); font-size: 12.5px; }
.stack{
  position:relative;
  height: 100%;
  min-height: 260px;
}
.stack img{
  position:absolute;
  width: 84%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(165,30,24,.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.stack img:nth-child(1){ left: 2%; top: 22px; transform: rotate(-2deg); }
.stack img:nth-child(2){ right: -2%; bottom: 6px; transform: rotate(2.4deg); }

.faq{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
.faq__item{
  border-radius: var(--radius);
  border: 1px solid rgba(165,30,24,.14);
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  padding: 12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:750;
  color: rgba(18,18,18,.90);
  list-style:none;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item p{
  margin:10px 0 0;
  color: var(--muted);
  line-height:1.6;
}

.footer{
  padding: 26px 0 34px;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding-top: 14px;
  border-top: 1px solid rgba(165,30,24,.10);
}
.footer__brand{ display:flex; align-items:center; gap:12px; }
.footer__logo{
  width:38px; height:38px;
  object-fit:contain;
  border-radius:12px;
  background: rgba(165,30,24,.06);
  border: 1px solid rgba(165,30,24,.16);
  padding:6px;
}
.footer__name{ font-weight:850; }
.footer__tag{ color: rgba(18,18,18,.62); font-size: 13px; margin-top:2px; }
.footer__small{ margin-top:12px; color: rgba(18,18,18,.52); font-size: 12.5px; }
.footer__right{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.footer__link{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(165,30,24,.14);
  background: rgba(255,255,255,.68);
}
.footer__link:hover{ background: rgba(165,30,24,.06); }

.lightbox{
  position:fixed;
  inset:0;
  background: rgba(18,18,18,.76);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
  z-index:200;
}
.lightbox[hidden]{ display:none !important; }
.lightbox__img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: #fff;
}
.lightbox__close{
  position:fixed;
  top: 16px; right: 16px;
  width: 46px; height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  color:#fff;
  font-size: 26px;
  line-height:1;
  cursor:pointer;
}
.lightbox__close:hover{ background: rgba(255,255,255,.20); }

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual{ order:-1; }
  .features{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .cta{ grid-template-columns: 1fr; }
  .stack{ min-height: 300px; }
}

@media (max-width: 820px){
  .nav__burger{ display:inline-flex; }
  .nav__links{
    position:absolute;
    right: 20px;
    top: 62px;
    width: min(360px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 6px;
    padding: 10px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(165,30,24,.14);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,.16);
  }
  .nav__links.is-open{ display:flex; }
  .nav__links a{ padding: 12px 12px; }
  .nav__cta{ text-align:center; }
  .badge{ right: 6px; }
  .hero{ padding-top: 38px; }
  .hero__meta{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .slider__track{ transition:none; }
  .btn{ transition:none; }
}

