:root {
  /* Palette , role tokens (plain colour name in comment) */
  --bg: #14110e; /* espresso black    */
  --bg-2: #1a1611; /* dark umber        */
  --panel: #1e1a16; /* raisin brown      */
  --panel-2: #241f1a; /* bistre            */
  --paper: #f2ede6; /* cream             */
  --muted: #a89c8e; /* taupe             */
  --faint: #6e6357; /* warm grey         */
  --line: rgba(242, 237, 230, 0.09); /* cream @ 9%  */
  --line-strong: rgba(242, 237, 230, 0.18); /* cream @ 18% */
  --tang: #ff8a3d; /* tangerine         */
  --tang-bright: #ffb070; /* light tangerine   */
  --teal: #3fb8a0; /* jade teal         */
  --ink: #1a0e04; /* near-black brown (text on tangerine) */
  --light-red: #ff5f57; /* console light , red    */
  --light-amber: #febc2e; /* console light , amber  */
  --light-green: #28c840; /* console light , green  */
  --maxw: 1160px;
  --pad: clamp(70px, 9vw, 128px);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--paper);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      800px 500px at 82% -6%,
      rgba(255, 138, 61, 0.13),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 6% 6%,
      rgba(63, 184, 160, 0.08),
      transparent 60%
    );
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--pad) 0;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3 {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.mono {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
}

.eyebrow {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--tang);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--tang);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--tang);
}
.eyebrow.plain {
  display: block;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}
.hero .eyebrow.plain {
  font-size: clamp(13px, 1.4vw, 16px);
}
.eyebrow.plain::before {
  content: none;
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 17, 14, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 25px;
}
.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--tang);
  box-shadow: 0 0 12px var(--tang);
}
.brand small {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--faint);
  text-transform: uppercase;
  font-weight: 400;
}
.hero {
  padding-top: clamp(50px, 7vw, 84px);
  padding-bottom: clamp(48px, 7vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.hero-copy h1,
.hero-copy .sub,
.hero-copy .cta-row {
  margin-top: 0;
}
.hero-copy .cta-row {
  padding-top: 18px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 74px);
  margin: 24px 0 0;
  max-width: min(16ch, 100%);
}
.hero h1 .hl {
  color: var(--tang);
}
.hero .sub {
  margin-top: 18px;
  max-width: 52ch;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: clamp(17px, 1.7vw, 21px);
  letter-spacing: 0;
  line-height: 1.5;
}
.field {
  display: flex;
  flex-direction: column;
}
.field .eyebrow {
  margin-bottom: 14px;
}
.pains {
  list-style: none;
  border-top: 1px solid var(--line);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pains li {
  position: relative;
  display: grid;
  gap: 4px;
  padding: clamp(14px, 1.4vw, 20px) 0 clamp(14px, 1.4vw, 20px) 18px;
  border-bottom: 1px solid var(--line);
  flex: 1;
  justify-content: start;
  align-content: center;
}
.pains li::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(14px, 1.4vw, 20px);
  bottom: clamp(14px, 1.4vw, 20px);
  width: 2px;
  border-radius: 1px;
  background: var(--tang);
}
.pains .them,
.pains .you {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  letter-spacing: 0;
  line-height: 1.55;
}
.pains .them {
  color: var(--muted);
}
.pains .you {
  color: var(--paper);
  font-weight: 500;
}
.lede {
  margin-top: 24px;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 15px 26px;
  border-radius: 7px;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary {
  background: var(--tang);
  color: var(--ink);
  font-weight: 500;
}
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(255, 138, 61, 0.32);
}
.btn-ghost {
  border: 1px solid var(--tang);
  color: var(--paper);
}
.btn-ghost:hover {
  border-color: var(--tang);
  color: var(--tang);
}

/* SIGNATURE: deploy console */
.console {
  margin-top: clamp(36px, 5vw, 60px);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.8);
}
.con-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
}
.con-bar .lights {
  display: flex;
  gap: 7px;
}
.con-bar .lights span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.con-bar .lights span:nth-child(1) {
  background: var(--light-red);
}
.con-bar .lights span:nth-child(2) {
  background: var(--light-amber);
}
.con-bar .lights span:nth-child(3) {
  background: var(--light-green);
}
.con-bar .title {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 12px;
  color: var(--faint);
  margin-left: 6px;
}
.con-body {
  padding: 22px clamp(18px, 2.5vw, 28px) 26px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.85;
  min-height: 300px;
}
.ln {
  white-space: pre-wrap;
  word-break: break-word;
}
.prompt {
  color: var(--tang);
}
.ok {
  color: var(--teal);
}
.dim {
  color: var(--faint);
}
.done {
  color: var(--tang);
  font-weight: 500;
}
.cursor {
  display: inline-block;
  width: 9px;
  height: 16px;
  background: var(--paper);
  vertical-align: -2px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.bar {
  margin-top: 8px;
  height: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  max-width: min(420px, 100%);
}
.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--tang), var(--tang-bright));
  transition: width 0.1s linear;
}

.sec-head {
  max-width: 62ch;
}
.sec-head h2 {
  font-size: clamp(28px, 4vw, 50px);
  margin-top: 16px;
}
.sec-head p {
  margin-top: 16px;
  color: var(--muted);
  max-width: 56ch;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
  margin-top: 50px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 30px 28px 34px;
  transition: 0.25s;
}
.card:hover {
  border-color: var(--tang);
  transform: translateY(-4px);
  background: var(--panel-2);
}
.card .idx {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--tang);
}
.card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  margin: 14px 0 12px;
}
.card p {
  color: var(--muted);
  font-size: 15.5px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin-top: 50px;
}
.pillar {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 30px 28px;
  border-left: 3px solid var(--teal);
}
.pillar .glyph {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}
.pillar h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  margin: 14px 0 10px;
}
.pillar p {
  color: var(--muted);
  font-size: 15px;
}

.logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.logo {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 24px;
  transition: 0.25s;
}
.logo:hover {
  border-color: var(--line-strong);
  background: var(--panel-2);
}
.logo .name {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.logo .tag {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tang);
  margin-top: 10px;
}
.logo .desc {
  color: var(--faint);
  font-size: 13.5px;
  margin-top: 10px;
}

.contact {
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    radial-gradient(
      600px 320px at 100% 0%,
      rgba(255, 138, 61, 0.16),
      transparent 60%
    ),
    radial-gradient(
      500px 320px at 0% 100%,
      rgba(63, 184, 160, 0.12),
      transparent 60%
    ),
    var(--panel);
  padding: clamp(40px, 6vw, 76px) clamp(28px, 5vw, 64px);
  text-align: center;
}
.contact .eyebrow {
  justify-content: center;
}
.contact h2 {
  font-size: clamp(28px, 4.4vw, 52px);
  margin-top: 16px;
}
.contact p {
  color: var(--muted);
  max-width: 50ch;
  margin: 18px auto 0;
}
.contact .cta-row {
  justify-content: center;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 36px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 16px;
  color: var(--muted);
}
.contact-details a:hover {
  color: var(--tang);
}

footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  margin-top: var(--pad);
}
.foot-in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.foot-in .mono {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
:focus-visible {
  outline: 2px solid var(--tang);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 48px);
  }
  .logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .logos {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(30px, 8.5vw, 44px);
  }
  .hero .sub {
    font-size: 17px;
  }
  .eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.12em;
  }
  .lede {
    font-size: 16px;
  }
  .con-body {
    font-size: 12px;
    line-height: 1.7;
    min-height: 0;
  }
  .btn {
    padding: 14px 20px;
  }
}
@media (max-width: 560px) {
  .brand small {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .cursor {
    animation: none;
  }
}
