:root{
  color-scheme: light;
  --bg: #ffffff;
  --text: #0b1220;
  --muted: rgba(11,18,32,0.68);
  --border: rgba(15,23,42,0.10);
  --card: rgba(255,255,255,0.8);
  --shadow: 0 8px 24px rgba(2,6,23,0.07);
  --radius: 16px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 12% 0%, rgba(59,130,246,0.07), transparent 60%),
              radial-gradient(900px 500px at 92% 10%, rgba(16,185,129,0.06), transparent 65%),
              var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}
.brand-logo{
  height: 34px;
  width: auto;
  display:block;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(2,6,23,0.10));
}
.brand-title{
  display:flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.brand-title strong{
  font-size: 16px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-title span{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav a{
  font-size: 14px;
  color: rgba(11,18,32,0.80);
}
.nav a:hover{ color: rgba(11,18,32,1); }
.btn{
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 6px 18px rgba(2,6,23,0.06);
}
.btn:hover{
  transform: translateY(-1px);
}

.hero{
  padding: 68px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
h1{
  margin: 0 0 10px;
  font-size: 46px;
  letter-spacing: -0.04em;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.pills{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.pill{
  font-size: 14px;
  padding: 10px 16px;
  font-weight: 500;

  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  color: rgba(11,18,32,0.82);
}

.section{
  padding: 18px 0 56px;
}
.section h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(11,18,32,0.82);
  line-height: 1.7;
}

.footer{
  border-top: 1px solid var(--border);
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 13px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.address{
  white-space: pre-line;
  margin: 10px 0 0;
}

@media (max-width: 860px){
  h1{ font-size: 38px; }
  .hero-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .brand-title span{ display:none; }
  .brand-logo{ height: 30px; }
  .nav a{ display:none; }
  .nav .btn{ display:inline-flex; }
  h1{ font-size: 34px; }
}

.meta{
  margin-top: 14px;
  color: rgba(11,18,32,0.72);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.tagline{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.hero-minimal{
  padding: 80px 0 40px;
}
.hero-minimal h1{
  font-size: 52px;
  letter-spacing: -0.04em;
}
.hero-minimal .tagline{
  font-size: 22px;
  font-weight: 500;
  margin-top: 8px;
}
