@font-face{
  font-family:'Trend Slab One';
  src:url('/assets/fonts/TrendSlabOne.otf') format('opentype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
:root{
  --bg:#FAFAFA;
  --ink:#111111;
  --muted:#6B6B6B;
  --line:#E8E8E8;
  --max:1120px;
  --phone:300px;
  --font-display:'Trend Slab One',Rockwell,'Roboto Slab',serif;
  --font-body:Inter,ui-sans-serif,system-ui,-apple-system,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:var(--bg);color:var(--ink);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--max);margin:0 auto;padding:0 28px}

nav{
  position:sticky;top:0;z-index:20;
  background:rgba(250,250,250,.86);
  backdrop-filter:blur(16px);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:72px;
}
.brand{display:flex;align-items:center;gap:10px;font-size:15px;letter-spacing:.08em}
.brand,.hero-copy h1,.feature h2,.cta h2,.page h1,.connect h1{
  font-family:var(--font-display);
  font-weight:400;
  text-transform:uppercase;
}
.brand img{width:28px;height:28px;border-radius:7px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-weight:500;font-size:15px;padding:12px 18px;border-radius:10px;
  border:0;cursor:pointer;
}
.btn-dark{background:var(--ink);color:#fff}
.btn-dark:hover{background:#000}
.btn-ghost{border:1px solid var(--line);background:#fff}
.btn svg{flex-shrink:0}

.hero{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);
  align-items:center;gap:64px;
  padding:72px 0 96px;min-height:calc(100svh - 72px);
}
.hero-copy h1{
  font-size:clamp(40px,5.8vw,68px);
  letter-spacing:.02em;line-height:.95;
  max-width:11ch;
}
.hero-copy p{
  font-size:clamp(18px,2vw,22px);font-weight:500;
  margin:22px 0 28px;max-width:28ch;letter-spacing:-.02em;
}
.hero-visual{display:flex;justify-content:center}

.phone{width:var(--phone)}
.phone img{
  width:100%;height:auto;
  filter:drop-shadow(0 36px 50px rgba(0,0,0,.28));
}

.feature{
  display:grid;grid-template-columns:1fr 1fr;
  align-items:center;gap:72px;
  padding:88px 0;
}
.feature:nth-child(even) .feature-media{order:-1}
.feature h2{
  font-size:clamp(26px,3.2vw,38px);
  letter-spacing:.04em;line-height:1.12;
  margin-bottom:14px;max-width:16ch;
}
.feature p{font-size:18px;color:var(--muted);max-width:36ch;font-weight:400}
.feature-media{display:flex;justify-content:center}

.cta{
  text-align:center;padding:120px 0 80px;
}
.cta h2{
  font-size:clamp(32px,4.6vw,56px);
  letter-spacing:.03em;line-height:1.05;
  max-width:16ch;margin:0 auto 16px;
}
.cta p{font-size:20px;font-weight:500;margin-bottom:28px}

footer{border-top:1px solid var(--line);padding:40px 0 56px}
.foot{
  display:flex;justify-content:space-between;gap:32px;flex-wrap:wrap;
  align-items:flex-start;
}
.foot-meta{color:var(--muted);font-size:14px;margin-top:8px;max-width:32ch}
.foot-links,.socials{display:flex;flex-wrap:wrap;gap:16px 22px;font-size:14px;color:var(--muted)}
.foot-links a:hover,.socials a:hover{color:var(--ink)}
.copyright{margin-top:36px;font-size:13px;color:var(--muted)}

.page{max-width:720px;margin:0 auto;padding:56px 28px 96px}
.page h1{font-size:clamp(32px,4.5vw,48px);letter-spacing:.04em;line-height:1.1;margin-bottom:12px}
.lede{color:var(--muted);margin-bottom:40px}
.page h2{font-size:20px;font-weight:600;letter-spacing:-.02em;margin:32px 0 10px}
.page p,.page li{font-size:16px;color:#333;margin-bottom:12px}
.page ul{padding-left:1.2em;margin-bottom:16px}
.page a{text-decoration:underline;text-underline-offset:3px}

.connect{
  min-height:calc(100svh - 72px);
  display:flex;align-items:center;justify-content:center;
  text-align:center;padding:48px 28px;
}
.connect h1{font-size:32px;letter-spacing:.06em;margin:20px 0 12px}
.connect p{color:var(--muted);max-width:36ch;margin:0 auto 28px}

@media(max-width:860px){
  .hero,.feature{grid-template-columns:1fr;gap:40px;padding:48px 0;text-align:center;min-height:0}
  .hero-copy h1,.hero-copy p,.feature h2,.feature p{margin-left:auto;margin-right:auto;max-width:20ch}
  .feature:nth-child(even) .feature-media{order:0}
  .hero{padding-top:32px}
  .cta{padding:72px 0}
}
