:root {
  --bg: #0b0d10;
  --bg-soft: #101419;
  --surface: #141920;
  --line: #252c35;
  --text: #f5f7fa;
  --muted: #9ba4af;
  --orange: #ff7a1a;
  --orange-soft: rgba(255, 122, 26, 0.10);
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 122, 26, 0.028), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-border { border-top: 1px solid var(--line); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 13, 16, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37, 44, 53, 0.9);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-bit { color: var(--text); }
.brand-spark { color: var(--orange); }
.brand-star {
  width: 15px;
  height: 15px;
  margin-left: 7px;
  display: inline-block;
  background: var(--orange);
  clip-path: polygon(
    50% 0%,
    58% 34%,
    85% 15%,
    66% 42%,
    100% 50%,
    66% 58%,
    85% 85%,
    58% 66%,
    50% 100%,
    42% 66%,
    15% 85%,
    34% 58%,
    0% 50%,
    34% 42%,
    15% 15%,
    42% 34%
  );
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: wait; opacity: .72; transform: none; }
.button-primary { background: var(--orange); color: #0b0d10; }
.button-primary:hover { background: #ff8c35; }
.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  color: #c8ced5;
  font-weight: 700;
}
.quiet-link:hover { color: var(--orange); }

.hero { padding: 96px 0 86px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 82px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: #aab2bb;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 750;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  line-height: .99;
  letter-spacing: -0.055em;
}
h1 span { color: var(--orange); }
.hero-text {
  max-width: 680px;
  color: #b8c0c9;
  font-size: 1.08rem;
  margin-bottom: 30px;
}
.actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(37,44,53,.52);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.014), rgba(255,255,255,.004));
}
.visual-grid {
  position: absolute;
  inset: 0;
  opacity: .36;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom left, #000, transparent 86%);
}
.visual-content {
  position: relative;
  min-height: 390px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 42px;
}
.result-panel {
  width: min(100%, 390px);
  margin-left: auto;
  border: 1px solid #2d353f;
  background: rgba(18, 23, 29, 0.96);
  border-radius: 12px;
  padding: 24px;
}
.result-copy small { color: var(--muted); letter-spacing: .13em; }
.result-copy strong { display: block; margin: 9px 0 20px; font-size: 1.23rem; }
.bars { height: 118px; display: flex; align-items: end; gap: 12px; border-bottom: 1px solid #39414b; }
.bars i { width: 13%; background: #626c77; border-radius: 3px 3px 0 0; }
.bars i:nth-child(1) { height: 28%; }
.bars i:nth-child(2) { height: 40%; }
.bars i:nth-child(3) { height: 55%; }
.bars i:nth-child(4) { height: 68%; }
.bars i:nth-child(5) { height: 86%; }
.bars i.accent { background: var(--orange); }
.visual-highlights {
  width: min(100%, 455px);
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.highlight-card {
  min-height: 74px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #2a323b;
  border-radius: 10px;
  background: rgba(16, 20, 25, .93);
}
.highlight-card span { color: var(--orange); font-size: 1.2rem; }
.highlight-card p { margin: 0; color: #ccd2d9; font-size: .92rem; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 28px;
}
.section-heading.compact { align-items: center; }
.section-heading h2 { margin-bottom: 0; }
.section-note { color: var(--muted); max-width: 420px; margin-bottom: 0; }
h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h3 { font-size: 1rem; margin-bottom: 7px; }

.services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.service-card {
  min-height: 206px;
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), #11161b);
  border-radius: var(--radius);
}
.service-card p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }
.icon-box {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1b222a;
  color: var(--orange);
  font-size: 1.4rem;
}
.service-card:hover { border-color: #38424e; }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 8px 0 0;
}
.steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 28px 14px 0;
  position: relative;
}
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 14px;
  width: 36px;
  height: 1px;
  background: #4a535e;
}
.steps li > span {
  width: 36px;
  height: 36px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.steps p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

.hosting-grid {
  display: grid;
  grid-template-columns: 1.1fr .65fr .9fr;
  gap: 54px;
  align-items: center;
}
.lead { color: var(--muted); max-width: 600px; margin-bottom: 22px; }
.server-box { display: grid; gap: 9px; }
.server {
  height: 62px;
  display: flex;
  align-items: center;
  border: 1px solid #343d47;
  border-radius: 8px;
  background: linear-gradient(180deg, #242b33, #171c22);
  padding: 0 14px;
}
.server span { width: 38px; height: 7px; background: #0d1014; border-radius: 3px; margin-right: auto; }
.server i { width: 7px; height: 7px; border-radius: 2px; background: var(--orange); margin-left: 7px; }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.checks li { color: #dce1e6; position: relative; padding-left: 30px; }
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #0b0d10;
  background: var(--orange);
  font-size: .8rem;
  font-weight: 900;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.values article { padding: 20px 0; border-top: 1px solid #2a323b; }
.values article > span { color: var(--orange); font-size: 1.35rem; }
.values p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

.cta-section { padding-top: 30px; }
.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 34px 38px;
  border: 1px solid rgba(255, 122, 26, .30);
  border-radius: 14px;
  background: linear-gradient(100deg, rgba(255,122,26,.08), rgba(255,122,26,.015));
}
.cta-card h2 { margin-bottom: 10px; }
.cta-card p { color: #aeb6bf; margin-bottom: 0; }
.cta-action { display: grid; gap: 10px; text-align: center; }
.cta-action small { color: var(--muted); }

.contact-card {
  grid-template-columns: minmax(0, .78fr) minmax(460px, 1.22fr);
  gap: 58px;
  align-items: start;
  padding: 46px;
}
.contact-copy { padding-top: 8px; }
.contact-copy h2 { max-width: 440px; }
.contact-copy > p:not(.eyebrow) { max-width: 470px; }
.contact-email { margin-top: 24px !important; font-size: .9rem; }
.contact-email a { color: var(--text); border-bottom: 1px solid #505a65; }
.contact-email a:hover { color: var(--orange); border-color: var(--orange); }
.contact-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid #2b333d;
  border-radius: 12px;
  background: rgba(11, 14, 18, .72);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-row { display: grid; gap: 7px; }
.form-row-full { grid-column: 1 / -1; }
.form-row label { color: #dce1e6; font-size: .86rem; font-weight: 700; }
.form-row label span { color: var(--muted); font-weight: 500; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid #343d47;
  border-radius: 8px;
  background: #0e1217;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-row input { min-height: 48px; padding: 0 13px; }
.form-row textarea { min-height: 130px; padding: 12px 13px; resize: vertical; }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 122, 26, .10); }
.form-row select { min-height: 48px; padding: 0 13px; }
.contact-check-field { display: flex; gap: 10px; align-items: start; color: #dce1e6; font-size: .86rem; font-weight: 700; }
.contact-check-field input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--orange); }
.contact-check-field small { color: var(--muted); font-weight: 500; }
.contact-form .button { width: fit-content; }
.form-helper, .form-status { margin: -7px 0 0 !important; font-size: .8rem; }
.form-status { min-height: 1.25rem; }
.form-status.is-success { color: #9fdcae !important; }
.form-status.is-error { color: #ff9f92 !important; }
.contact-privacy { color: var(--muted); }
.contact-form-unavailable a { color: var(--text); border-bottom: 1px solid #505a65; }

.footer { border-top: 1px solid var(--line); margin-top: 72px; }
.footer-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 0 30px;
}
.footer-brand p, .footer-contact a, .footer-contact span { color: var(--muted); font-size: .9rem; }
.footer-contact { display: grid; gap: 8px; }
.footer-contact strong { margin-bottom: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 30px;
  border-top: 1px solid #20262e;
  color: #78828d;
  font-size: .82rem;
}
.footer-bottom a:hover { color: var(--orange); }

@media (max-width: 1040px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: span 2; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 340px; }
  .visual-content { min-height: 340px; }
  .hosting-grid { grid-template-columns: 1fr 1fr; }
  .server-box { order: 3; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, var(--max)); }
  .section { padding: 54px 0; }
  .header-inner { min-height: 66px; }
  .header-cta { min-height: 42px; padding: 0 15px; font-size: .88rem; }
  .brand { font-size: 1.5rem; }
  .brand-star { width: 13px; height: 13px; }
  .hero { padding-top: 60px; }
  h1 { font-size: clamp(2.6rem, 12vw, 4.3rem); }
  .hero-grid { gap: 46px; }
  .actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .actions .button { width: 100%; }
  .hero-visual { min-height: 310px; }
  .visual-content { min-height: 310px; padding: 22px; }
  .result-panel { margin: 0; width: 100%; }
  .visual-highlights { width: 100%; grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .section-heading, .section-heading.compact { align-items: start; flex-direction: column; }
  .steps { grid-template-columns: 1fr; gap: 8px; }
  .steps li { padding-right: 0; }
  .steps li:not(:last-child)::after { display: none; }
  .hosting-grid { grid-template-columns: 1fr; gap: 30px; }
  .server-box { order: initial; }
  .values { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 28px 24px; }
  .cta-action { text-align: left; }
  .contact-card { gap: 30px; }
  .contact-form { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row-full { grid-column: auto; }
  .contact-form .button { width: 100%; }
  .footer-main { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}
