:root {
  --bg: #070807;
  --surface: #0d0f0d;
  --surface-raised: #151816;
  --line: rgba(255, 255, 255, 0.12);
  --white: #f5f6ef;
  --muted: #afb3ab;
  --lime: #d8ff5d;
  --ink: #10130b;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font: 16px/1.55 Inter, Avenir Next, Avenir, Helvetica Neue, Arial, sans-serif;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 138px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #d5d8d1;
  font-size: 13px;
  font-weight: 750;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover,
.company-name:hover {
  color: var(--lime);
}

.menu {
  display: none;
  border: 0;
  padding: 8px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lime);
  border-radius: 8px;
  padding: 11px 17px;
  background: var(--lime);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #e4ff8c;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--lime);
  background: rgba(216, 255, 93, 0.09);
  color: var(--lime);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 87% 23%, rgba(216, 255, 93, 0.16), transparent 25rem),
    radial-gradient(circle at 11% 88%, rgba(128, 163, 255, 0.12), transparent 29rem);
}

.hero::after {
  position: absolute;
  top: 148px;
  right: -250px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(216, 255, 93, 0.29);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(216, 255, 93, 0.04),
    0 0 0 132px rgba(216, 255, 93, 0.03);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 664px;
  grid-template-columns: minmax(0, 1.13fr) minmax(320px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.55px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.055em;
}

h1 {
  max-width: 760px;
  margin: 18px 0 23px;
  font-size: clamp(47px, 7vw, 86px);
  line-height: 0.96;
}

h1 em {
  color: var(--lime);
  font-style: normal;
}

h2 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 55px);
  line-height: 1.03;
}

h3 {
  line-height: 1.18;
}

.lead {
  max-width: 690px;
  color: #c4c8c1;
  font-size: 19px;
}

.hero-actions,
.company-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 31px;
}

.hero-card {
  padding: 32px;
  border: 1px solid rgba(216, 255, 93, 0.3);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(28, 33, 22, 0.97), rgba(12, 14, 12, 0.95));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.hero-card h2 {
  margin: 10px 0 22px;
  font-size: 30px;
  letter-spacing: -0.045em;
}

.card-kicker {
  color: var(--lime);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.check-list,
.feature-list,
.profile-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.feature-list li,
.profile-list li {
  position: relative;
  padding-left: 25px;
  color: #d5d8d1;
}

.check-list li::before,
.feature-list li::before,
.profile-list li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "✓";
  font-weight: 900;
}

.signal-bar {
  border-bottom: 1px solid var(--line);
  background: #0d0f0d;
}

.signal-bar__content {
  display: flex;
  min-height: 83px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #c4c8c1;
}

.signal-bar__content strong {
  color: var(--white);
}

.signal-bar__label {
  color: #9ba098;
  font-size: 13px;
  text-align: right;
}

.section {
  padding: 108px 0;
}

.section--alt {
  background: var(--surface);
}

.intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.model-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 56px;
  align-items: start;
}

.model-copy {
  position: sticky;
  top: 118px;
}

.model-copy h2 {
  max-width: 610px;
}

.model-points {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.model-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 25px;
  background: #111411;
}

.model-point__number {
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
}

.model-point h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.model-point p {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 43px;
}

.benefit-card {
  min-height: 250px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, #171b17, #0e100e);
}

.benefit-card__number {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 255, 93, 0.12);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 28px 0 9px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.process-step {
  position: relative;
  min-height: 230px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #111411;
}

.process-step::after {
  position: absolute;
  top: 42px;
  right: -17px;
  z-index: 1;
  color: var(--lime);
  content: "→";
  font-size: 20px;
}

.process-step:last-child::after {
  display: none;
}

.process-step > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 26px 0 8px;
  font-size: 22px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.plans-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 48px;
  align-items: end;
}

.plans-note {
  margin: 0;
  color: #c4c8c1;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 43px;
}

.plan {
  display: flex;
  min-height: 405px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #111411;
}

.plan--featured {
  border-color: rgba(216, 255, 93, 0.53);
  background: linear-gradient(160deg, #1d2718, #111411);
}

.plan__eyebrow {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.plan h3 {
  margin: 11px 0 10px;
  font-size: 28px;
  letter-spacing: -0.045em;
}

.plan > p {
  margin-bottom: 23px;
  color: var(--muted);
}

.plan__label {
  margin-bottom: 11px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.plan .button {
  margin-top: auto;
}

.scope-note {
  max-width: 780px;
  margin: 26px auto 0;
  color: #949a91;
  font-size: 13px;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(390px, 1.04fr);
  gap: 62px;
  align-items: start;
}

.faq {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.faq details {
  background: #111411;
}

.faq summary {
  position: relative;
  padding: 22px 54px 22px 24px;
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 18px;
  right: 23px;
  color: var(--lime);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 690px;
  margin: -4px 24px 22px;
  color: var(--muted);
}

.company-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.company-heading .intro {
  margin-bottom: 0;
}

.companies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.company {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #151916, #0e100e);
}

.company::after {
  position: absolute;
  right: -68px;
  bottom: -83px;
  width: 212px;
  height: 212px;
  border: 1px solid rgba(216, 255, 93, 0.24);
  border-radius: 50%;
  content: "";
}

.company > * {
  position: relative;
  z-index: 1;
}

.company-logo {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #e4e7df;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.1;
}

.company-logo small {
  display: block;
  margin-top: 4px;
  color: var(--lime);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.company-logo--image {
  position: relative;
  width: 230px;
  height: 140px;
  padding: 0;
  overflow: hidden;
  border-color: #f7f7f3;
  background: #f7f7f3;
}

.company-logo__image {
  position: absolute;
  left: 50%;
  display: block;
  max-width: none;
  height: auto;
}

.company-logo__image--faval {
  top: 65%;
  width: 240px;
  transform: translate(-50%, -50%);
}

.company-logo__image--tec {
  top: 60%;
  width: 330px;
  transform: translate(-50%, -50%);
}

.company-logo--directory {
  width: 184px;
  height: 112px;
}

.company-logo--directory .company-logo__image--faval {
  top: 65%;
  width: 198px;
}

.company-logo--directory .company-logo__image--tec {
  top: 60%;
  width: 265px;
}

.company h3 {
  max-width: 460px;
  margin: 29px 0 12px;
  font-size: 30px;
  letter-spacing: -0.045em;
}

.company-name {
  text-decoration: underline;
  text-decoration-color: rgba(216, 255, 93, 0.42);
  text-underline-offset: 6px;
}

.company p {
  max-width: 480px;
  margin-bottom: 22px;
  color: var(--muted);
}

.company-actions {
  margin-top: auto;
}

.text-link {
  color: #ebeee6;
  font-size: 14px;
  font-weight: 850;
}

.text-link--muted {
  color: #b6bbb2;
}

.contact-section {
  padding: 104px 0;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.65fr);
  gap: 45px;
  padding: 48px;
  border: 1px solid rgba(216, 255, 93, 0.42);
  border-radius: 21px;
  background:
    radial-gradient(circle at 87% 10%, rgba(216, 255, 93, 0.16), transparent 20rem),
    linear-gradient(135deg, #192015, #0e100e);
}

.contact-box h2 {
  margin-bottom: 12px;
}

.contact-box .intro {
  margin-bottom: 25px;
}

.contact-email {
  color: var(--lime);
  font-size: clamp(21px, 3vw, 29px);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-aside {
  align-self: stretch;
  padding-left: 35px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: #c4c8c1;
}

.contact-aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.contact-aside p {
  margin-bottom: 22px;
}

.footer {
  padding: 38px 0 42px;
  border-top: 1px solid var(--line);
  color: #9da29b;
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.footer img {
  width: 102px;
  height: 34px;
  object-fit: contain;
  opacity: 0.76;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px;
}

.footer-place {
  text-align: right;
}

/* Internal pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 88px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 255, 93, 0.15), transparent 22rem),
    #090b09;
}

.page-hero::after {
  position: absolute;
  top: -150px;
  right: -110px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(216, 255, 93, 0.25);
  border-radius: 50%;
  content: "";
}

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

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 76px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 25px;
  color: #d8ddd5;
  font-size: 14px;
  font-weight: 800;
}

.back-link:hover {
  color: var(--lime);
}

.directory {
  display: grid;
  gap: 18px;
}

.directory-card {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr) minmax(212px, 0.45fr);
  gap: 30px;
  align-items: start;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111411;
}

.directory-card h2 {
  margin: 7px 0 11px;
  font-size: 32px;
}

.directory-card p {
  max-width: 585px;
  margin-bottom: 0;
  color: var(--muted);
}

.directory-card__actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.directory-card__tag {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.63fr);
  gap: 56px;
  align-items: start;
}

.profile-grid h2 {
  margin-bottom: 16px;
}

.profile-grid > div > p {
  max-width: 670px;
  color: var(--muted);
  font-size: 18px;
}

.profile-list {
  margin-top: 26px;
}

.contact-panel {
  padding: 29px;
  border: 1px solid rgba(216, 255, 93, 0.32);
  border-radius: 16px;
  background: linear-gradient(145deg, #192015, #111411);
}

.contact-panel h2 {
  margin-bottom: 19px;
  font-size: 27px;
}

.contact-data {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-data div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-data div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-data dt {
  margin-bottom: 3px;
  color: #9da29b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-data dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.contact-data a {
  color: var(--lime);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 210px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #111411;
}

.service-card h3 {
  margin: 24px 0 8px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-icon {
  color: var(--lime);
  font-size: 27px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-links {
    gap: 17px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .model-grid,
  .plans-intro,
  .profile-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 100px 0;
  }

  .hero-card {
    max-width: 630px;
  }

  .model-copy {
    position: static;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    top: auto;
    right: auto;
    bottom: -19px;
    left: 50%;
    transform: rotate(90deg);
  }

  .plans {
    grid-template-columns: 1fr;
  }

  .plan {
    min-height: 0;
  }

  .directory-card {
    grid-template-columns: 154px 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .directory-card__actions {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 123px;
    height: 42px;
  }

  .menu {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 13px 16px 20px;
    border-bottom: 1px solid var(--line);
    background: #101310;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 9px 0;
  }

  .hero-grid {
    gap: 34px;
    padding: 75px 0;
  }

  .hero::after {
    top: 190px;
    right: -330px;
  }

  h1 {
    letter-spacing: -0.06em;
  }

  .lead {
    font-size: 17px;
  }

  .signal-bar__content,
  .company-heading,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-bar__content {
    padding: 20px 0;
  }

  .signal-bar__label {
    text-align: left;
  }

  .section,
  .contact-section {
    padding: 76px 0;
  }

  .benefit-grid,
  .companies,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
  }

  .contact-box {
    gap: 29px;
    padding: 29px;
  }

  .contact-aside {
    padding-top: 27px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .footer-inner {
    display: flex;
  }

  .footer-place {
    text-align: left;
  }

  .page-hero {
    padding: 76px 0 66px;
  }

  .directory-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px;
  }

  .directory-card__actions {
    grid-column: auto;
  }

  .company {
    min-height: 0;
    padding: 27px;
  }

  .company h3 {
    font-size: 27px;
  }
}

@media (max-width: 440px) {
  .hero-actions,
  .company-actions,
  .page-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-card,
  .model-point,
  .plan {
    padding: 24px;
  }

  .model-point {
    grid-template-columns: 33px 1fr;
    gap: 12px;
  }
}
