/* TAPIALL — Landing (Apple-clean, white/black, no links/buttons) */

:root{
  --bg:#ffffff;
  --text:#0b0b0b;
  --muted:#5e5e5e;
  --line:#e9e9e9;
  --card:#ffffff;
  --radius:18px;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height:1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap{
  width:min(1100px, calc(100% - 48px));
  margin:0 auto;
}

.top{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  z-index:10;
}
.top__inner{
  padding:14px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  font-weight:800;
  letter-spacing:.12em;
  font-size:12px;
}

.hero{
  padding:28px 0 10px;
}
.hero__inner{
  display:grid;
  gap:22px;
}
.hero__media{
  margin:0;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow);
}
.hero__media img{
  width:100%;
  height:auto;
  display:block;
}

.hero__copy h1{
  margin:0;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing:-.02em;
}
.lead{
  margin:10px 0 0;
  color:var(--text);
  font-size: clamp(16px, 1.45vw, 18px);
  max-width: 68ch;
}
.lead strong{ font-weight:750; }

.section{
  padding:38px 0;
}
.section h2,
.footer h2,
.cta h2{
  margin:0 0 10px;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing:-.01em;
}
.copy{
  margin:0;
  max-width: 75ch;
  font-size:16px;
}
.muted{
  color:var(--muted);
}
.small{ font-size:13px; }

.strip{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.strip__inner{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  align-items:center;
  padding:14px 0;
}
.strip__label{
  font-weight:700;
  letter-spacing:-.01em;
}
.strip__items{
  color:var(--muted);
}

.grid{
  margin-top:18px;
  display:grid;
  gap:14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px 18px 16px;
  box-shadow: var(--shadow);
}
.card h3{
  margin:0 0 4px;
  font-size:16px;
}
.card .muted{
  margin:0 0 10px;
  font-size:13px;
}
.card ul{
  margin:0 0 12px 18px;
  padding:0;
  color:var(--text);
}
.card li{ margin:6px 0; }
.deliverable{
  margin:0;
  font-size:13px;
  color:var(--muted);
}
.deliverable strong{ color:var(--text); }

.steps{
  margin:0;
  padding-left:18px;
  max-width: 75ch;
}
.steps li{ margin:8px 0; }

.cred{
  margin:14px 0 0;
  color:var(--muted);
  font-size:13px;
  letter-spacing:.02em;
}

.cta{
  padding:34px 0 44px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.cta__box{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px 16px;
  background:#fff;
}
.cta__box p{ margin:6px 0; }

.footer{
  padding:34px 0 44px;
  background:#fff;
}
.footer__inner p{
  margin:6px 0;
}
.social{
  margin-top:12px !important;
  letter-spacing:.03em;
}

/* Responsive */
@media (max-width: 820px){
  .grid{ grid-template-columns: 1fr; }
  .wrap{ width:min(1100px, calc(100% - 28px)); }
  .section{ padding:30px 0; }
}
