:root{
  --bg0:#f5f4ef;
  --bg1:#fffcf7;
  --text:#1f221d;
  --muted:#4f5548;
  --border: rgba(255, 255, 255, .42);
  --shadow: 0 24px 70px rgba(30, 34, 22, .18);
  --shadow2: 0 14px 35px rgba(30, 34, 22, .14);
  --radius: 24px;
  --radius2: 16px;
  --primary1:#f7a02c;
  --primary2:#7bc043;
  --accent:#6dac3f;
  --focus: rgba(247, 160, 44, .28);
  --max: 1120px;
  --hero-photo: url('/assets/img/kitchen-background.jpg');
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: "Avenir Next", "Plus Jakarta Sans", "SF Pro Display", "Segoe UI", sans-serif;
  color:var(--text);
  background: var(--bg0);
  position:relative;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image: var(--hero-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index:-3;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(70% 45% at 12% 12%, rgba(255,255,255,.78), transparent 68%),
    radial-gradient(58% 40% at 84% 86%, rgba(123,192,67,.22), transparent 72%),
    linear-gradient(160deg, rgba(255,250,241,.66), rgba(245,239,221,.74));
  z-index:-2;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:18px; top:12px; width:auto; height:auto; padding:10px 12px; background:#fff; border:1px solid var(--border); border-radius:10px; z-index:999}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(1.08) blur(14px);
  background:rgba(253, 249, 240, .64);
  border-bottom:1px solid rgba(255,255,255,.45);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}

.brand{display:flex; gap:12px; align-items:center; text-decoration:none}

.logo{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(140deg, var(--primary1), var(--primary2));
  box-shadow: var(--shadow2);
  position:relative;
}

.logo:after{
  content:""; position:absolute; inset:10px; border-radius:10px;
  background: rgba(255,255,255,.55);
  mask: radial-gradient(circle at 60% 40%, transparent 0 7px, #000 8px);
  -webkit-mask: radial-gradient(circle at 60% 40%, transparent 0 7px, #000 8px);
}

.brand span{font-weight:900; letter-spacing:-.02em}

.navlinks{display:flex; gap:14px; align-items:center}

.navlinks a{
  text-decoration:none; color:var(--muted);
  padding:10px 10px; border-radius:12px;
}

.navlinks a:hover{background:rgba(255,255,255,.5); color:var(--text)}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(255,255,255,.66);
  background:rgba(255,255,255,.57);
  padding:10px 14px; border-radius:999px;
  box-shadow: 0 8px 20px rgba(40, 45, 28, .12);
  text-decoration:none;
}

.pill strong{font-weight:900}

.lang{
  border:1px solid rgba(255,255,255,.66);
  border-radius:999px;
  overflow:hidden;
  display:flex;
  backdrop-filter: blur(6px);
}

.lang a{
  font-size:14px;
  padding:8px 10px;
  text-decoration:none;
  color:var(--muted);
  background:transparent;
}

.lang a[aria-current="page"]{
  color:var(--text);
  background:rgba(255,255,255,.62);
}

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

.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:30px;
  align-items:center;
}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid rgba(255,255,255,.75);
  background:rgba(255,255,255,.67);
  padding:10px 14px;
  border-radius:999px;
  box-shadow: 0 10px 25px rgba(40,45,28,.10);
  color:var(--muted);
  width:fit-content;
}

.badge .dot{
  width:10px; height:10px; border-radius:99px;
  background: linear-gradient(135deg,var(--primary1),var(--primary2));
}

h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height:1.02;
  letter-spacing:-.03em;
}

.lead{
  font-size: clamp(16px, 1.45vw, 19px);
  line-height:1.5;
  color:var(--muted);
  margin:0 0 18px;
}

.muted{
  color: #5e6458;
  font-weight: 600;
}

.ctaRow{display:flex; gap:12px; flex-wrap:wrap; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:14px 16px;
  border-radius:16px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.72);
  font-weight:900;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(35, 39, 27, .14);
}

.btnPrimary{
  border:0;
  color:#17210f;
  background: linear-gradient(135deg, var(--primary1), var(--primary2));
  box-shadow: 0 18px 45px rgba(123,192,67,.23);
}

.btnGhost{background:rgba(255,255,255,.65)}

.storeBadges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:2px;
}

.storeBadge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#0f1113;
  color:#fff;
  border-radius:14px;
  text-decoration:none;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.28);
  box-shadow: 0 10px 22px rgba(0,0,0,.23);
  transition: transform .22s ease, box-shadow .22s ease;
}

.storeBadge:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}

.storeBadgeIcon{
  font-size:26px;
  line-height:1;
}

.storeBadgeText{
  display:flex;
  flex-direction:column;
  line-height:1.02;
}

.storeBadgeText small{
  font-size:10px;
  letter-spacing:.03em;
  text-transform:uppercase;
  opacity:.85;
}

.storeBadgeText strong{
  font-size:17px;
  font-weight:800;
  letter-spacing:.01em;
}

.note{
  font-size:13px;
  color:var(--muted);
  margin-top:12px;
}

.heroPoints{
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.heroPoints li{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-weight:600;
}

.heroPoints li::before{
  content:"✓";
  width:20px;
  height:20px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  background: rgba(123,192,67,.2);
  color:#39561f;
  flex:0 0 auto;
}

.card{
  border:1px solid rgba(255,255,255,.66);
  background: rgba(255,255,255,.64);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(3px);
}

.phoneWrap{padding:14px}

.phone{
  aspect-ratio: 9/19.5;
  border-radius: 34px;
  border: 10px solid rgba(255,255,255,.8);
  overflow:hidden;
  position:relative;
  background:#fff;
}

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

.phone:after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.0) 62%, rgba(255,255,255,.7) 100%);
  pointer-events:none;
}

section{padding:34px 0}

.sectionTitle{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:16px; margin-bottom:14px;
}

.sectionTitle h2{
  margin:0;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing:-.02em;
}

.sectionTitle p{margin:0; color:var(--muted); max-width:65ch}

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

.feature{
  padding:18px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(44, 48, 35, .14);
}

.icon{
  width:42px; height:42px; border-radius:14px;
  background: rgba(247,160,44,.18);
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(247,160,44,.25);
}

.icon.green{
  background: rgba(123,192,67,.2);
  border:1px solid rgba(123,192,67,.3);
}

.icon.gray{
  background: rgba(79,85,72,.12);
  border:1px solid rgba(79,85,72,.2);
}

.feature h3{margin:12px 0 6px; font-size:17px}
.feature p{margin:0; color:var(--muted); line-height:1.45}

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

.proofCard{
  padding:16px 18px;
}

.proofCard h3{
  margin:0 0 6px;
  font-size:16px;
}

.proofCard p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}

.how{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.step{padding:18px}

.step h3{margin:10px 0 6px}
.step p{margin:0; color:var(--muted); line-height:1.45}

.faq{padding:0}
.accordion{padding:10px}

details{
  border:1px solid rgba(255,255,255,.72);
  border-radius: 16px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 10px 25px rgba(16,24,40,.05);
  padding: 14px 16px;
  margin: 10px 0;
}

summary{
  cursor:pointer;
  font-weight:800;
  list-style:none;
}

summary::-webkit-details-marker{display:none}
details p{color:var(--muted); line-height:1.55; margin:10px 0 0}

.ctaPanel{
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.ctaPanelText h2{
  margin:0 0 6px;
  font-size: clamp(22px, 2.5vw, 30px);
}

.ctaPanelText p{
  margin:0;
  color:var(--muted);
}

footer{
  padding:28px 0 34px;
  border-top:1px solid rgba(255,255,255,.6);
  background: rgba(253,249,240,.5);
  backdrop-filter: blur(6px);
}

.footerGrid{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap:14px;
}

.small{color:var(--muted); font-size:13px; line-height:1.55}
.footerLinks a{display:block; color:var(--muted); text-decoration:none; padding:6px 0}
.footerLinks a:hover{color:var(--text)}

.kbd{
  border:1px solid var(--border);
  background:#fff;
  border-radius:10px;
  padding:2px 8px;
  font-size:12px;
  color:var(--muted);
}

.legal h1{font-size:34px}
.legal h2{font-size:20px}
.legal p, .legal li{color:var(--muted); line-height:1.65}
.legal a{text-decoration:underline}

@media (max-width: 900px){
  .heroGrid{grid-template-columns: 1fr; }
  .grid3{grid-template-columns: 1fr;}
  .proofGrid{grid-template-columns:1fr;}
  .how{grid-template-columns:1fr}
  .footerGrid{grid-template-columns:1fr}
  .navlinks{display:none}
  .hero{padding-top:48px}
}

@media (max-width: 620px){
  .container{padding:0 14px}
  .ctaRow{width:100%}
  .btn{width:100%}
  .storeBadges{width:100%}
  .storeBadge{width:100%; justify-content:center}
  .pill{padding:9px 12px}
}

a.disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}

/* Legal pages polish */
body.legalPage .card.legal h1 { margin-top: 0; }
body.legalPage .card.legal h2 { margin-top: 22px; }
body.legalPage .card.legal p,
body.legalPage .card.legal li { line-height: 1.65; }
body.legalPage .card.legal ul { padding-left: 18px; }

@keyframes floatIn{
  from{opacity:0; transform: translateY(12px)}
  to{opacity:1; transform: translateY(0)}
}

.hero .badge,
.hero h1,
.hero .muted,
.hero .lead,
.hero .ctaRow,
.hero .heroPoints,
.hero .storeBadges,
.hero .note,
.hero .phoneWrap{
  animation: floatIn .6s ease both;
}

.hero h1{animation-delay:.08s}
.hero .muted{animation-delay:.16s}
.hero .lead{animation-delay:.22s}
.hero .heroPoints{animation-delay:.28s}
.hero .ctaRow{animation-delay:.34s}
.hero .storeBadges{animation-delay:.4s}
.hero .note{animation-delay:.46s}
.hero .phoneWrap{animation-delay:.18s}
