@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg:         #000000;
  --bg-2:       #0d0d0d;
  --card:       #141414;
  --card-2:     #1a1a1a;
  --line:       rgba(255, 180, 60, 0.14);
  --line-strong:rgba(255, 180, 60, 0.32);
  --text:       #ffffff;
  --muted:      #a8a8a8;
  --dim:        #666666;
  --orange:     #ff8a1f;
  --yellow:     #ffc833;
  --gold:       #ffd84d;
  --red:        #ff5500;
  --red-dim:    #cc4400;
  --green:      #ff8a1f;
  --blue:       #ffc833;
  --purple:     #ffaa00;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body { font-size: 17px; line-height: 1.65; }

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
  background:
    radial-gradient(1200px 700px at 90% -10%, rgba(255, 138, 31, 0.18), transparent 60%),
    radial-gradient(800px 500px at -10% 30%, rgba(255, 60, 20, 0.06), transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 200, 80, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 200, 80, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.page > * { position: relative; z-index: 1; }

h1 {
  font-size: 72px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

h1 .accent {
  background: linear-gradient(90deg, #ffd84d 0%, #ff6a1f 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 18px;
  border-bottom: 1px solid var(--line);
}

.logo { display: flex; align-items: center; gap: 14px; }

.logo-img {
  height: 28px;
  width: auto;
  max-width: 140px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  margin-left: auto;
  margin-bottom: 12px;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-weight: 800; font-size: 22px; letter-spacing: 0.18em;
  background: linear-gradient(90deg, #ffd84d 0%, #ff6a1f 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.logo-sub {
  display: block; font-size: 9px; letter-spacing: 0.32em;
  color: var(--muted); margin-top: 2px; font-weight: 500; text-transform: uppercase;
}

.meta {
  display: flex; gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase;
}

.meta span b { color: var(--gold); font-weight: 500; }

.hero {
  padding: 72px 0 64px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center;
  border-top: none;
}

.hero p.lede {
  font-size: 20px; line-height: 1.65; color: var(--muted); max-width: 540px; margin-bottom: 32px;
}

.hero p.lede strong { color: var(--text); font-weight: 500; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line);
  font-size: 12px; color: var(--text); font-weight: 500;
}

.pill .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pill .dot.red    { background: var(--red);   box-shadow: 0 0 8px var(--red); }
.pill .dot.yellow { background: var(--gold);  box-shadow: 0 0 8px var(--gold); }
.pill .dot.green  { background: var(--green); box-shadow: 0 0 8px var(--green); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-primary {
  background: linear-gradient(95deg, #ffd84d 0%, #ff8a1f 60%, #ff5a1f 100%);
  color: #1a0d05;
  box-shadow: 0 8px 24px rgba(255, 138, 31, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 138, 31, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-ghost {
  background: transparent; color: var(--text); border: 1px solid var(--line-strong);
}

.btn-ghost:hover { background: rgba(255, 200, 80, 0.06); border-color: var(--gold); color: var(--gold); }

.hero-visual {
  position: relative;
  aspect-ratio: auto;
  min-height: 360px;
  border-radius: 20px;
  background: var(--card-2); border: 1px solid var(--line);
  overflow: hidden;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: ""; position: absolute;
  width: 70%; height: 70%; right: -10%; top: -10%;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.6) 0%, rgba(255, 60, 20, 0.4) 40%, transparent 70%);
  filter: blur(20px); pointer-events: none;
}

.hero-visual::after {
  content: ""; position: absolute;
  width: 40%; height: 40%; right: 5%; top: 35%;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.5) 0%, transparent 60%);
  filter: blur(15px); pointer-events: none;
}

.product-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 20px;
  position: relative; z-index: 1;
}

section { padding: 56px 0; border-top: 1px solid var(--line); }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 36px; gap: 32px;
}

.section-head h2 { font-size: 36px; line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
.section-head h2 .pre { color: var(--gold); font-weight: 800; }
.section-head .lead { font-size: 16px; color: var(--muted); max-width: 380px; line-height: 1.65; flex-shrink: 0; }

.problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.problem-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 28px 28px 26px; position: relative; overflow: hidden;
}

.problem-card .num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.2em; color: var(--gold); margin-bottom: 16px; display: block;
}

.problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; line-height: 1.35; }
.problem-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.problem-card li {
  display: grid; grid-template-columns: 16px 1fr; gap: 12px;
  font-size: 15px; color: var(--muted); line-height: 1.6;
}

.problem-card li::before {
  content: ""; width: 6px; height: 6px; background: var(--red); border-radius: 50%;
  margin-top: 7px; box-shadow: 0 0 8px var(--red); flex-shrink: 0;
}

.problem-card li b { color: var(--text); font-weight: 600; }

.stat-line {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
}

.stat-line .big { font-size: 28px; font-weight: 800; color: var(--gold); letter-spacing: -0.02em; }
.stat-line .desc { font-size: 12px; color: var(--muted); text-align: right; line-height: 1.5; }

.solution {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 138, 31, 0.04) 50%, transparent 100%);
}

.solution-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 8px; }

.feat { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 26px 22px; }

.feat .icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, rgba(255, 138, 31, 0.18), rgba(255, 60, 20, 0.1));
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  font-family: 'JetBrains Mono', monospace; color: var(--gold); font-size: 13px; font-weight: 600;
}

.feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.04em; }
.feat p { font-size: 15px; color: var(--muted); line-height: 1.65; }

.badges { display: flex; gap: 10px; margin-top: 28px; align-items: center; flex-wrap: wrap; }

.badge-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--bg-2); font-size: 12px; font-weight: 500;
}

.badge-chip.trl {
  background: linear-gradient(135deg, rgba(255, 200, 80, 0.16), rgba(255, 138, 31, 0.08));
  border: 1px solid rgba(255, 200, 80, 0.4); color: var(--gold);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; font-weight: 700;
}

.flow { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; position: relative; }
.flow-step { padding: 28px 24px 4px; position: relative; }

.flow-step:not(:last-child)::after {
  content: ""; position: absolute;
  right: -1px; top: 30px; bottom: 30px; width: 1px; background: var(--line);
}

.step-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--dim); letter-spacing: 0.2em; margin-bottom: 14px; }
.step-num b { color: var(--gold); }
.flow-step h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.flow-step p { font-size: 15px; color: var(--muted); line-height: 1.65; }

.vision-rows { display: flex; flex-direction: column; gap: 12px; }

.vision-row {
  display: grid; grid-template-columns: 200px 1fr auto; gap: 24px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 22px 26px;
}

.vision-row .layer { font-size: 17px; font-weight: 800; color: var(--gold); letter-spacing: 0.02em; text-transform: uppercase; }
.vision-row .desc { font-size: 15px; color: var(--muted); line-height: 1.65; }
.vision-row .desc b { color: var(--text); font-weight: 600; }
.vision-row .desc em { color: var(--muted); font-style: italic; }

.vision-row .tag {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.15em;
  padding: 6px 12px; border-radius: 999px; text-transform: uppercase; border: 1px solid; white-space: nowrap;
}

.vision-row .tag.green  { color: var(--orange); border-color: rgba(255, 138, 31, 0.45); background: rgba(255, 138, 31, 0.10); }
.vision-row .tag.blue   { color: var(--yellow); border-color: rgba(255, 200, 51, 0.40); background: rgba(255, 200, 51, 0.08); }
.vision-row .tag.purple { color: var(--dim);    border-color: rgba(150, 150, 150, 0.30); background: rgba(150, 150, 150, 0.06); }

footer.contact {
  margin-top: 16px; border-top: 1px solid var(--line);
  padding: 36px 0 56px; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: end;
}

footer h2 { font-size: 56px; font-weight: 900; letter-spacing: -0.03em; line-height: 0.95; margin-bottom: 22px; }

footer h2 span {
  background: linear-gradient(90deg, #ffd84d, #ff6a1f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.contact-list { display: flex; flex-direction: column; gap: 10px; font-family: 'JetBrains Mono', monospace; }

.contact-list a, .contact-list span {
  color: var(--text); text-decoration: none; font-size: 14px;
  display: flex; align-items: center; gap: 12px; transition: color .15s ease;
}

.contact-list a:hover { color: var(--gold); }

.contact-list .ico {
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: 6px; color: var(--gold); font-size: 11px; flex-shrink: 0;
}

.copyright {
  text-align: right; font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--dim); letter-spacing: 0.1em; line-height: 1.7;
}


@media (max-width: 900px) {
  .page { padding: 0 28px; }
  h1 { font-size: 44px; }
  .hero { grid-template-columns: 1fr; padding: 48px 0 40px; gap: 40px; }
  .hero p.lede { max-width: 100%; }
  .section-head { flex-direction: column; gap: 12px; }
  .section-head .lead { max-width: 100%; }
  .problems-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-step:not(:last-child)::after { display: none; }
  .vision-row { grid-template-columns: 1fr; gap: 12px; }
  footer.contact { grid-template-columns: 1fr; }
  footer h2 { font-size: 40px; }
  .meta { display: none; }
}

@media (max-width: 600px) {
  .page { padding: 0 20px; }
  h1 { font-size: 36px; }
  .solution-grid { grid-template-columns: 1fr; }
}