:root {
  --ink: #101417;
  --night: #071012;
  --night-soft: #101c1f;
  --paper: #f4efe5;
  --paper-2: #fff8eb;
  --muted: #697172;
  --line: rgba(16, 20, 23, 0.14);
  --mint: #40d6a4;
  --acid: #d8ff66;
  --ember: #ff6a3d;
  --sky: #8bd9ff;
  --white: #ffffff;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --shadow: 0 28px 80px rgba(7, 16, 18, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(16, 20, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 23, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 82%, transparent);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 16, 18, 0.78);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(7, 16, 18, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(216, 255, 102, 0.35);
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--acid);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--white);
  color: var(--ink);
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.icon {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 255, 102, 0.16);
  color: currentColor;
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.icon::before {
  content: attr(data-icon);
}

.primary {
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(255, 106, 61, 0.28);
}

.ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: 94vh;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 68px;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -8vh;
  width: 58vw;
  height: 38vh;
  border: 1px solid rgba(216, 255, 102, 0.25);
  transform: skewX(-18deg) rotate(-4deg);
}

.hero-image,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.9) contrast(1.12);
}

.hero-scrim {
  background:
    linear-gradient(100deg, rgba(7, 16, 18, 0.98) 0%, rgba(7, 16, 18, 0.82) 48%, rgba(7, 16, 18, 0.42) 100%),
    linear-gradient(180deg, rgba(7, 16, 18, 0.42), rgba(7, 16, 18, 0.95));
}

.hero-grid {
  opacity: 0.28;
  background:
    linear-gradient(rgba(216, 255, 102, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 255, 102, 0.11) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content,
.status-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  min-width: 0;
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--ember);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  max-width: 680px;
  color: var(--acid);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(3.8rem, 7.55vw, 7.7rem);
  font-weight: 950;
  line-height: 0.84;
}

h1 span {
  display: block;
}

h1 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.86);
}

h1 span:nth-child(4) {
  color: var(--acid);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  font-weight: 930;
  line-height: 0.94;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.status-panel {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 16, 18, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: rotate(2deg);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--mono);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ember);
}

.terminal-top span:nth-child(2) {
  background: var(--acid);
}

.terminal-top span:nth-child(3) {
  background: var(--mint);
}

.terminal-top strong {
  margin-left: auto;
  font-weight: 700;
}

.terminal-lines {
  display: grid;
  gap: 18px;
  padding: 24px;
  font-family: var(--mono);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.terminal-lines p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.terminal-lines span {
  display: inline-block;
  min-width: 62px;
  margin-right: 10px;
  color: var(--acid);
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background: var(--ink);
  color: var(--white);
}

.ticker span {
  padding: 16px clamp(14px, 3vw, 34px);
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
}

.section-kicker {
  position: sticky;
  top: 110px;
  align-self: start;
}

.mono-note {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.lead,
.price-intro p,
.proof-band > p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.22rem);
}

.lead {
  max-width: 780px;
  margin: 26px 0 42px;
}

.service-stack {
  display: grid;
  gap: 1px;
  border-block: 1px solid var(--line);
}

.service-stack article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-stack article:last-child {
  border-bottom: 0;
}

.service-index {
  color: var(--ember);
  font-family: var(--mono);
  font-weight: 800;
}

.service-stack p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  background: var(--night);
  color: var(--white);
}

.proof-band .eyebrow {
  color: var(--acid);
}

.proof-band > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.tech-rail {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.tech-rail span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 800;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
}

.reviews-main h2 {
  max-width: 760px;
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 16px;
  margin-top: 42px;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: 0 14px 44px rgba(16, 20, 23, 0.07);
}

.review-card.highlight {
  grid-row: span 2;
  background: var(--ink);
  color: var(--white);
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 22px;
  top: 4px;
  color: rgba(16, 20, 23, 0.08);
  font-size: 6rem;
  font-weight: 950;
  line-height: 1;
}

.review-card.highlight::before {
  color: rgba(216, 255, 102, 0.12);
}

.stars {
  color: var(--ember);
  font-family: var(--mono);
  font-size: 0.86rem;
  letter-spacing: 0;
}

.highlight .stars {
  color: var(--acid);
}

.review-card p {
  position: relative;
  margin: 26px 0 30px;
  color: #4e585a;
  font-size: 1.02rem;
}

.review-card.highlight p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.42;
}

.review-card footer {
  display: grid;
  gap: 3px;
}

.review-card strong {
  font-size: 1rem;
}

.review-card span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.review-card.highlight span {
  color: rgba(255, 255, 255, 0.54);
}

.pricing-section {
  width: min(1240px, calc(100% - 40px));
}

.price-intro {
  max-width: 830px;
}

.pricing-board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.12fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 42px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: 0 14px 44px rgba(16, 20, 23, 0.08);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px dashed rgba(16, 20, 23, 0.16);
  border-radius: 6px;
}

.price-card.hero-price {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-24px);
}

.price-card.hero-price::before {
  border-color: rgba(216, 255, 102, 0.28);
}

.card-label {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 34px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hosting .card-label {
  background: var(--sky);
}

.price-card h3,
.price-card .price,
.price-card .price-copy,
.price-card ul {
  position: relative;
  z-index: 1;
}

.price {
  margin: 14px 0 18px;
  font-size: clamp(2.55rem, 5vw, 4.35rem);
  font-weight: 950;
  line-height: 0.92;
}

.price-copy {
  margin: 0 0 30px;
  color: var(--muted);
}

.hero-price .price-copy {
  color: rgba(255, 255, 255, 0.7);
}

.price-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4e585a;
}

.hero-price li {
  color: rgba(255, 255, 255, 0.78);
}

.price-card li svg {
  margin-top: 2px;
  color: var(--ember);
}

.hero-price li svg {
  color: var(--acid);
}

.complexity-note {
  margin-top: 4px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1rem;
}

.complexity-note strong {
  color: var(--ink);
}

.process {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid article {
  min-height: 280px;
  padding: 24px;
  background: var(--paper);
}

.process-grid span {
  display: block;
  margin-bottom: 72px;
  color: var(--ember);
  font-family: var(--mono);
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background: var(--night-soft);
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--acid);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.contact-links .icon {
  color: var(--acid);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-weight: 560;
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 4px rgba(216, 255, 102, 0.14);
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-hint {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.legal-page {
  min-height: 100vh;
  padding: 118px max(22px, calc((100vw - 960px) / 2)) 70px;
  background: var(--paper);
}

.legal-page header {
  max-width: 780px;
  margin-bottom: 36px;
}

.legal-page h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.legal-page .lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.legal-panel {
  display: grid;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 248, 235, 0.82);
  box-shadow: 0 22px 60px rgba(7, 16, 18, 0.08);
}

.legal-panel section {
  display: grid;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-panel section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-panel h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.legal-panel p,
.legal-panel li,
.legal-panel address {
  max-width: 760px;
  margin: 0;
  color: #323a3c;
  line-height: 1.75;
}

.legal-panel address {
  font-style: normal;
}

.legal-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-panel a {
  color: #0d4f63;
  font-weight: 800;
}

.legal-warning {
  border-left: 4px solid var(--ember);
  padding: 14px 16px;
  background: rgba(255, 106, 61, 0.1);
}

.legal-back {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2)) 42px;
  background: var(--night-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--acid);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .proof-band,
  .contact-section,
  .split-section,
  .process,
  .reviews-section {
    grid-template-columns: 1fr;
  }

  .status-panel {
    max-width: 520px;
    transform: none;
  }

  .section-kicker {
    position: static;
  }

  .pricing-board,
  .process-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.hero-price {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    border-radius: 8px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding: 118px 20px 54px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
    line-height: 0.86;
  }

  h1 span:nth-child(2) {
    -webkit-text-stroke: 1.25px rgba(255, 255, 255, 0.86);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .status-panel {
    display: none;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }

  .service-stack article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .proof-band,
  .contact-section {
    padding: 72px 14px;
  }

  .pricing-board,
  .process-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card.highlight {
    grid-row: auto;
  }

  .price-card {
    min-height: auto;
  }

  .process-grid article {
    min-height: auto;
  }

  .process-grid span {
    margin-bottom: 34px;
  }
}
