:root {
  --bg: #0a0b0e;
  --bg2: #101217;
  --bg3: #15181e;
  --line: rgba(127, 176, 255, .12);
  --line2: rgba(127, 176, 255, .24);
  --fg: #e3e8e5;
  --dim: #a7afba;
  --dim2: #99a2ae;
  --sig: #23e39b;
  --sig-dim: #0d7d5a;
  --struct: #7fb0ff;
  --struct-dim: #2f4d7a;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --pad: clamp(1.2rem, 4vw, 3rem);
  --wrap: 1180px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  font-feature-settings: "tnum" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}

a { color: var(--sig); text-underline-offset: 3px; }

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

/* header */

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 11, 14, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line2);
}

header.site .wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem clamp(.9rem, 3vw, 2.2rem);
  min-height: 62px;
}

.brand {
  color: var(--fg);
  text-decoration: none;
  margin-right: auto;
  line-height: 1.1;
}

.brand .name {
  display: block;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -.06em;
}

.brand .name::after { content: "_"; color: var(--sig); }

.brand .tag {
  display: block;
  margin-top: 3px;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--struct);
  opacity: .75;
}

header.site nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem clamp(.8rem, 2.2vw, 1.7rem);
}

header.site nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
  padding: .2rem 0;
  border-bottom: 1px solid transparent;
}

header.site nav a:hover { color: var(--fg); }
header.site nav a.on { color: var(--fg); border-color: var(--struct); }

.langs {
  display: flex;
  gap: .4rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
}

header.site nav .langs a {
  color: #4b5563;
  text-decoration: none;
  padding: .28rem .2rem;
  border: 0;
}

header.site nav .langs a:hover { color: var(--fg); }
header.site nav .langs a.on { color: var(--sig-dim); }

/* hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(52% 66% at 20% 48%, rgba(35, 227, 155, .12), transparent 66%);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* pull the card header up so its label sits on the eyebrow line */
.hero-grid .card { margin-top: -.72rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: clamp(.9rem, 3vw, 2rem);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--struct);
}

.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  max-width: 260px;
  background: linear-gradient(90deg, var(--struct-dim), transparent);
}

.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
  letter-spacing: -.04em;
  line-height: .98;
}

.hero h1 em { font-style: normal; color: var(--sig); }

.lead strong { color: var(--fg); font-weight: 600; }

.lead {
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  max-width: 42ch;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.5;
  color: var(--dim);
  text-wrap: pretty;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: clamp(1.8rem, 4vw, 2.6rem) 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .82rem 1.35rem;
  border: 1px solid var(--line2);
  border-radius: 4px;
  color: var(--fg);
  font-weight: 600;
  font-size: .97rem;
  text-decoration: none;
}

.btn:hover { border-color: var(--fg); }

.btn-primary {
  background: var(--sig);
  border-color: var(--sig);
  color: #06120d;
}

.btn-primary:hover { background: #4aecad; border-color: #4aecad; }

/* hero sla card */

.card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  box-shadow: 0 0 70px -34px rgba(35, 227, 155, .55);
}

.card h2 {
  padding: .85rem 1.3rem;
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(127, 176, 255, .06);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--struct);
}

.tier { padding: 1.3rem; border-bottom: 1px solid var(--line); }
.tier:last-child { border-bottom: 0; }

.tier.hi {
  background: linear-gradient(180deg, rgba(35, 227, 155, .07), transparent 75%);
  box-shadow: inset 2px 0 0 var(--sig);
}

.tier.hi .big { color: var(--sig); }

.tier b {
  display: block;
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sig);
}

.tier .big {
  display: block;
  margin-top: .4rem;
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -.04em;
}

.tier .sub { display: block; margin-top: .35rem; font-size: .85rem; color: var(--dim); }
.tier .price { display: block; margin-top: .9rem; font-family: var(--mono); font-size: .9rem; }
.tier .price span { color: var(--dim2); }

/* backdrop bloom */

main.page { position: relative; }

main.page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1100px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(72% 62% at 86% 6%, rgba(92, 140, 220, .15), transparent 70%);
}

/* content */

main > .wrap { padding-block: clamp(1.4rem, 3vw, 2.2rem) clamp(2rem, 4vw, 3rem); }
main.page > .wrap { padding-top: clamp(2.5rem, 7vw, 5rem); }
main > .wrap > :is(h1, h2, h3, p):first-child { margin-top: 0; padding-top: 0; }
main > .wrap > p, main > .wrap > ul { color: var(--dim); }
main > .wrap > p strong, li strong { color: var(--fg); font-weight: 600; }

main.page h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1.5rem; }

main.page h1::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 1.2rem;
  background: linear-gradient(90deg, var(--struct), transparent 60%);
  opacity: .55;
}

h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: clamp(2.5rem, 5vw, 3.8rem) 0 1.2rem;
  padding-top: 1.4rem;
}

h3 { font-size: 1.1rem; margin: 2.2rem 0 .5rem; letter-spacing: -.02em; }

hr.rule {
  height: 1px;
  border: 0;
  margin: clamp(2rem, 4vw, 3rem) 0;
  background: linear-gradient(90deg, var(--struct), transparent 60%);
  opacity: .55;
}

/* lists */

ul { padding-left: 0; list-style: none; margin: 0 0 1em; }
ol { padding-left: 1.1rem; }
ol li::marker { color: var(--sig); }

ul li {
  position: relative;
  padding: .7rem 0 .7rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  color: var(--dim);
}

ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: .7rem;
  color: var(--struct);
  font-family: var(--mono);
}

/* tables */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: .93rem;
  border: 1px solid var(--line2);
  border-radius: 6px;
  overflow: hidden;
}

th {
  text-align: left;
  padding: .75rem 1rem;
  background: rgba(127, 176, 255, .08);
  border-bottom: 1px solid var(--line2);
  border-right: 1px solid var(--line2);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--struct);
}

td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line2);
  border-right: 1px solid var(--line2);
  color: var(--dim);
  vertical-align: top;
}

td:first-child { color: var(--fg); font-weight: 500; }
th:last-child, td:last-child { border-right: 0; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(127, 176, 255, .06); color: var(--fg); }

th:last-child, td:last-child {
  text-align: right;
  font-family: var(--mono);
  color: var(--fg);
}

.p-teenus th:last-child, .p-teenus td:last-child {
  text-align: left;
  white-space: nowrap;
}

.p-meist th:first-child, .p-meist td:first-child { width: 1%; white-space: nowrap; }

/* sla plans */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  margin: 1.5rem 0 2rem;
}

.plan {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
}

.plan.hi {
  border-color: rgba(35, 227, 155, .38);
  background: linear-gradient(180deg, rgba(35, 227, 155, .07), var(--bg) 60%);
}

.plan b {
  display: block;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--struct);
}

.plan.hi b { color: var(--sig); }

.plan dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 1.5rem;
  margin: 1.2rem 0 0;
}

.plan dt {
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
  font-size: .88rem;
}

.plan dd {
  margin: 0;
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  text-align: right;
  font-family: var(--mono);
  font-size: .95rem;
  color: var(--fg);
  white-space: nowrap;
}

.plan.hi dd { color: var(--sig); }
.plan dt:last-of-type, .plan dd:last-of-type { border-bottom: 0; padding-bottom: 0; }

/* quotes */

.quotes {
  margin: 2rem 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.quote {
  margin: 0;
  padding: 1.9rem;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
}

.quote .who-co {
  margin: 0;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--struct);
}

.quote blockquote {
  flex: 1;
  margin: 1.5rem 0;
  padding: 0;
  border: 0;
  max-width: none;
  font-size: .95rem;
  line-height: 1.55;
}

.quote blockquote p { margin: 0; }

.quote figcaption {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .06em;
  color: var(--fg);
}

.quote figcaption span {
  display: block;
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--struct);
  opacity: .8;
}

blockquote {
  margin: 2rem 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--struct);
  line-height: 1.55;
}

blockquote p { margin: 0; }

blockquote p:last-child {
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--struct);
  opacity: .85;
}

/* guarantee */

.guarantee-box {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(35, 227, 155, .32);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(35, 227, 155, .07), var(--bg) 70%);
}

.guarantee-box .eyebrow { margin-bottom: 1rem; }

.guarantee-box h2 {
  margin: 0 0 .5rem;
  padding-top: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.guarantee-box p:last-child { margin: 0; color: var(--dim); }

/* cta band */

.cta { border-top: 1px solid var(--line2); }

.cta .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.cta h2 {
  margin: 0 0 .5rem;
  padding-top: 0;
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
}

.cta p { margin: 0; color: var(--dim); max-width: 46ch; }
.cta .cta-call { margin-top: .5rem; }
.cta .cta-name { margin-top: .5rem; font-size: .82rem; color: var(--dim2); }
.cta-call a { font-family: var(--mono); text-decoration: none; }

.cta-who { display: flex; align-items: center; gap: 1.5rem; }

.mugshot {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 25%;
  border: 1px solid var(--line2);
  flex: none;
}
.cta .actions { margin: 0; }

/* footer */

footer.site {
  border-top: 1px solid var(--line2);
  padding: 2.5rem 0 3.5rem;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .04em;
  line-height: 1.9;
  color: var(--dim2);
}

footer.site .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2.5rem;
}

footer.site p { margin: 0; }
footer.site a { color: var(--dim2); text-decoration: none; }
footer.site a:hover { color: var(--struct); }

footer.site strong {
  display: block;
  color: var(--struct);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .card { margin-top: 0; }
}

@media (max-width: 640px) {
  header.site { position: static; }
  .cta-who { flex-direction: column; align-items: start; gap: 1.1rem; }
  .feat { grid-template-columns: 1fr; gap: .4rem; }
  .feat .num { padding-top: 0; }
  header.site .wrap { min-height: 56px; padding-block: .5rem; }
  header.site nav { order: 3; width: 100%; }
  th, td { padding: .6rem .7rem; font-size: .86rem; }
  .p-teenus th:last-child, .p-teenus td:last-child { white-space: normal; }
  .btn { flex: 1 1 100%; justify-content: center; }
}

::selection { background: var(--sig); color: #06120d; }
:focus-visible { outline: 2px solid var(--sig); outline-offset: 3px; }
