*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --text: #e8e8e8;
  --white: #fff;
  --muted: #888;
  --line: #222;
  --line-soft: #1a1a1a;
  --green: #3ddc84;
  --panel: #0f0f0f;
  --panel-soft: #0d0d0d;
  --danger: #c46a6a;
  --amber: #bca86b;
  --mono: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: 'DM Sans', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.7;
}

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

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 3rem;
  border-bottom: 0.5px solid var(--line);
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(14px);
}

.logo {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }

/* CONTAINER */
.container {
  width: min(1100px, calc(100% - 4rem));
  margin: 0 auto;
}

/* SECTIONS */
section { padding: 4.5rem 0; border-top: 0.5px solid var(--line); }
section:first-child { border-top: none; }

/* HERO */
.hero { padding: 5.5rem 0 4.5rem; border-top: none; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

h1 span { color: var(--green); }

.desc {
  font-size: 1rem;
  font-weight: 300;
  color: #999;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 2rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--white); }

/* PROOF PILLS */
.proof { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.pill {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #666;
  border: 0.5px solid var(--line);
  border-radius: 99px;
  padding: 0.35rem 0.85rem;
  letter-spacing: 0.04em;
}

/* VISUAL CARD + TERMINAL */
.visual-card {
  border: 0.5px solid var(--line);
  border-radius: 12px;
  background: #080808;
  padding: 1rem;
}

.terminal {
  border: 0.5px solid var(--line);
  background: #050505;
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--mono);
}

.terminal-bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-bottom: 0.5px solid var(--line);
}

.circle { width: 8px; height: 8px; border-radius: 99px; background: #2a2a2a; }

.terminal-body {
  padding: 1.25rem;
  font-size: 0.8rem;
  color: #aaa;
  line-height: 1.8;
}

.green { color: var(--green); }
.red { color: var(--danger); }
.amber { color: var(--amber); }
.dim { color: #555; }

/* SECTION HEADINGS */
.section-kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-head { margin-bottom: 2rem; }

.section-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-family: var(--sans);
  text-transform: none;
}

.section-head p {
  font-size: 1rem;
  color: #777;
  line-height: 1.8;
}

/* CARDS */
.card {
  border: 0.5px solid var(--line);
  background: var(--panel);
  padding: 1.4rem;
  border-radius: 8px;
}

.card p { color: #777; font-size: 0.9rem; line-height: 1.7; }
.card h3 { font-size: 0.95rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.card.soft { background: var(--panel-soft); }

.card-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* PROBLEM */
.bad-good {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
}

.flow { display: flex; flex-direction: column; gap: 0.65rem; }

.node {
  border-left: 1px solid var(--line);
  padding-left: 1rem;
  color: #777;
  font-size: 0.9rem;
}
.node strong { color: #ccc; font-weight: 400; }
.node.danger strong { color: #d48b8b; }
.node.safe strong { color: var(--green); }

/* ARCHITECTURE */
.architecture {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

.stack { display: flex; flex-direction: column; }

.stack-layer {
  border: 0.5px solid var(--line);
  background: var(--panel);
  padding: 1.1rem 1.4rem;
  border-radius: 8px;
}
.stack-layer strong { display: block; color: var(--white); font-weight: 400; font-size: 0.95rem; margin-bottom: 0.25rem; }
.stack-layer p { color: #777; font-size: 0.875rem; line-height: 1.6; }

.connector {
  width: 1px;
  height: 1.25rem;
  background: var(--line);
  margin-left: 1.4rem;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-icon {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--green);
  margin-bottom: 0.85rem;
}

/* USE CASES */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* TEASER */
.teaser {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border: 0.5px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  padding: 2rem 2.5rem;
}

.teaser h3 {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.teaser p { color: #777; font-size: 0.9rem; }

/* FINAL CTA */
.final-cta {
  text-align: center;
  border: 0.5px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  padding: 3.25rem 2rem;
}

.final-cta h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-family: var(--sans);
  text-transform: none;
}

.final-cta .desc { max-width: 520px; margin: 0 auto 2rem; }
.final-cta .actions { justify-content: center; }

/* FOOTER */
footer {
  border-top: 0.5px solid var(--line-soft);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p, footer a {
  font-size: 0.8rem;
  color: #444;
  font-family: var(--mono);
}

.footer-links { display: flex; gap: 1.5rem; }
footer a:hover { color: #888; }

/* RESPONSIVE */
@media (max-width: 860px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .bad-good { grid-template-columns: 1fr; }
  .architecture { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1.05fr 0.95fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .teaser { flex-direction: column; align-items: flex-start; }
  footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
}
/* WHY JHANSI PAGE */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.table-card {
  border: 0.5px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th, td {
  padding: 1rem 1.4rem;
  text-align: left;
  border-bottom: 0.5px solid var(--line);
  vertical-align: top;
}

th {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  font-weight: 400;
  background: var(--panel);
}

td { color: #777; }
tr:last-child td { border-bottom: none; }


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