:root{
  --bg:#f5f6f7;
  --text:#111;
  --muted:#6b737a;
  --line:#e6e8ea;
  --accent:#0aa7a6;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
  background:linear-gradient(180deg,#f8f9fa,#eef1f2);
  color:var(--text);
}

/* header */

.header{
  background:white;
  border-bottom:1px solid var(--line);
}

.header-inner{
  max-width:1200px;
  margin:0 auto;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
}

/* hamburger */

.icon-btn{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--line);
  background:white;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
}

.icon-btn span{
  width:16px;
  height:2px;
  background:#333;
}

/* yazı */

.brand-line{
  font-size:15px;
  color:var(--muted);
  letter-spacing:0.02em;
}

.brand-gacik{
  font-family:"Playfair Display", serif;
  font-size:26px;
  font-weight:600;
  margin-left:6px;
  color:#0aa7a6;
  letter-spacing:-0.02em;
}

/* sağ buton */

.pill-btn{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:white;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color:#111;
}
.logo{
  height:48px;
}
/* hero */

.hero{
  min-height:calc(100vh - 72px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero h1{
  font-size:52px;
  margin:0;
  letter-spacing:-0.04em;
}

.hero p{
  margin-top:12px;
  font-size:18px;
  color:var(--muted);
}
