* { box-sizing: border-box; }

:root {
  --bg: #0b0d10;
  --bg-soft: #11151a;
  --panel: #151a20;
  --panel-2: #1b2129;
  --text: #f5f7fa;
  --muted: #a9b1bc;
  --line: rgba(255,255,255,.09);
  --accent: #f4b63f;
  --accent-2: #ff7b47;
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(244,182,63,.10), transparent 28%),
    radial-gradient(circle at 10% 30%, rgba(255,123,71,.07), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11,13,16,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 40px;
  padding: 0 8px;
  border-radius: 10px;
  color: #111;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: -1px;
}
.brand-text { font-size: 18px; }

.nav { display: flex; gap: 28px; color: var(--muted); font-size: 14px; font-weight: 600; }
.nav a:hover { color: var(--text); }

.hero { padding: 92px 0 72px; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 72px; }
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 16px;
}

h1,h2,h3 { font-family: "Space Grotesk", Inter, sans-serif; margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 900px;
}
h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { max-width: 760px; color: var(--muted); font-size: 19px; margin: 0 0 30px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #151515; }
.btn-secondary { background: rgba(255,255,255,.04); border-color: var(--line); color: var(--text); }

.mini-points { display: flex; flex-wrap: wrap; gap: 16px; color: #c7cdd5; font-size: 13px; }
.mini-points span::before { content: "•"; color: var(--accent); margin-right: 7px; }

.hero-panel { display: grid; gap: 14px; }
.panel-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  border-radius: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.panel-card:nth-child(2) { transform: translateX(28px); }
.icon {
  flex: 0 0 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #161616;
  font-weight: 900;
}
.panel-card strong { display: block; margin-bottom: 4px; font-size: 17px; }
.panel-card span { display: block; color: var(--muted); font-size: 14px; line-height: 1.45; }

.section { padding: 88px 0; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2, .about h2, .coming h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 18px;
}
.section-heading p, .about-copy, .coming p { color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.service-number { color: var(--accent); font-weight: 800; font-size: 12px; letter-spacing: .15em; margin-bottom: 40px; }
.service-card h3 { font-size: 25px; margin-bottom: 12px; }
.service-card p { color: var(--muted); }
.service-card ul { padding-left: 18px; color: #d7dbe0; margin-bottom: 0; }
.service-card li + li { margin-top: 8px; }

.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.about-copy p:first-child { margin-top: 2px; }

.coming-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(244,182,63,.09), rgba(255,123,71,.04)),
    var(--panel);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
.coming-card p { max-width: 740px; margin-bottom: 0; }
.status-box {
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(0,0,0,.16);
}
.status-dot {
  width: 10px;
  height: 10px;
  background: #51d88a;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(81,216,138,.08);
}
.status-box strong, .status-box span { display: block; }
.status-box span { color: var(--muted); font-size: 13px; }

footer { border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--muted); font-size: 13px; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-wrap strong { color: var(--text); display: block; font-size: 14px; }

@media (max-width: 880px) {
  .nav { display: none; }
  .hero { padding-top: 64px; }
  .hero-grid, .about-grid, .coming-card { grid-template-columns: 1fr; gap: 42px; }
  .panel-card:nth-child(2) { transform: none; }
  .service-grid { grid-template-columns: 1fr; }
  .status-box { min-width: 0; }
}

@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .brand-text { font-size: 16px; }
  .hero { padding: 50px 0 56px; }
  .section { padding: 64px 0; }
  .coming-card { padding: 26px; }
  .footer-wrap { align-items: flex-start; flex-direction: column; }
}

.site-logo {
  display: block;
  width: 190px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.hero-logo {
  display: block;
  width: min(480px, 82%);
  height: auto;
  margin-bottom: 26px;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.22));
}

@media (max-width: 560px) {
  .site-logo { width: 150px; max-height: 44px; }
  .hero-logo { width: min(360px, 90%); margin-bottom: 22px; }
}
