:root {
  --bg: #1d1f22;
  --bg-2: #25282d;
  --panel: rgba(20, 22, 25, 0.74);
  --line: rgba(255,255,255,0.16);
  --line-soft: rgba(255,255,255,0.09);
  --text: #f5f5f2;
  --muted: #d7d8db;
  --muted-2: #b9bcc2;
  --accent: #ffffff;
  --shadow: 0 24px 70px rgba(0,0,0,0.30);
  --max: 1180px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ececec;
}

a { color: inherit; text-decoration: none; }

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(rgba(25,27,30,0.68), rgba(25,27,30,0.72)),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.06), transparent 26%),
    radial-gradient(circle at 25% 10%, rgba(255,255,255,0.03), transparent 22%),
    repeating-linear-gradient(120deg,
      rgba(255,255,255,0.025) 0 220px,
      rgba(255,255,255,0.012) 220px 360px,
      rgba(0,0,0,0.05) 360px 520px),
    linear-gradient(135deg, #2d3137, #3c4148 42%, #2c2f35 76%, #4c525a);
}

.container {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(20,22,25,0.28);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.82);
}

.nav-links a {
  position: relative;
  transition: 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: rgba(255,255,255,0.95);
  border-radius: 999px;
}

.hero {
  padding: 76px 0 96px;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

h1, h2, h3, p { margin: 0; }

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 700;
  text-wrap: balance;
}

.hero-sub {
  margin: 18px auto 0;
  max-width: 42ch;
  font-size: 1.06rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 14px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.78);
  color: #fff;
  font-weight: 600;
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  transition: 0.18s ease;
}

.btn:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.hero-contact {
  margin-top: 18px;
  text-align: left;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
}

.hero-contact a,
.legal-card a,
.footer-links a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.panel-wrap {
  background: #2a2c30;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.14);
}

.about {
  padding: 54px 0 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.about-main h2,
.legal-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.about-main p,
.legal-card p,
.legal-card li {
  color: rgba(255,255,255,0.94);
  line-height: 1.62;
  font-size: 1.02rem;
}

.about-main p + p,
.legal-card p + p {
  margin-top: 16px;
}

.about-side {
  display: grid;
  gap: 14px;
}

.mini-card,
.legal-card,
.footer-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 20px 22px;
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.mini-card span {
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  font-size: 0.97rem;
}

.legal {
  padding: 54px 0 72px;
}

.legal-card {
  padding: 30px 32px;
  max-width: 760px;
}

.legal-card h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.footer {
  padding: 0 0 40px;
  background: #2a2c30;
}

.footer-card {
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-card strong {
  display: block;
  margin-bottom: 6px;
}

.footer-card p,
.footer-links {
  color: rgba(255,255,255,0.84);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .nav-inner {
    min-height: 68px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }

  .nav-links {
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.92rem;
  }

  .hero {
    padding: 54px 0 72px;
  }

  .legal-card,
  .footer-card {
    padding: 22px;
  }
}
