:root {
  --bg: #030711;
  --surface: rgba(8, 15, 30, 0.82);
  --surface-2: rgba(11, 22, 43, 0.72);
  --line: rgba(255, 255, 255, 0.11);
  --text: #e9f2ff;
  --muted: #94a7bf;
  --soft: #c8d6e7;
  --accent: #26d4ff;
  --accent-2: #45f0a3;
  --warn: #ffd166;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(38, 212, 255, 0.2), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(69, 240, 163, 0.13), transparent 26%),
    linear-gradient(180deg, #06101f 0%, var(--bg) 44%, #050916 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  margin-top: 72px;
  scroll-margin-top: 24px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 28px);
  padding: 24px 0 58px;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: 8vh;
  z-index: -1;
  width: 46vw;
  max-width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(38, 212, 255, 0.18);
  border-radius: 48%;
  content: "";
  background:
    linear-gradient(135deg, rgba(38, 212, 255, 0.16), rgba(69, 240, 163, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 255, 255, 0.04) 24px 25px);
  box-shadow: inset 0 0 90px rgba(38, 212, 255, 0.06);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 210px;
}

.logo-wrap {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(38, 212, 255, 0.25);
  border-radius: 18px;
  background: rgba(38, 212, 255, 0.1);
}

.logo-wrap img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-size: 22px;
  font-weight: 850;
}

.brand-subtitle {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--soft);
  font-size: 14px;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(69, 240, 163, 0.24);
  border-radius: 999px;
  background: rgba(69, 240, 163, 0.1);
  color: #c7ffe2;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.status::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  gap: 46px;
  align-items: center;
  padding-top: min(10vh, 90px);
}

.label,
.eyebrow,
.price-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 19px;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #062536;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.highlight {
  max-width: 230px;
}

.highlight strong {
  display: block;
  margin-bottom: 7px;
  color: #d9fbff;
}

.highlight p,
.service p,
.portfolio p,
.contact-intro p,
.price-card p,
.ssl-note p {
  color: var(--soft);
  line-height: 1.65;
}

.profile {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 20, 38, 0.9), rgba(12, 20, 38, 0.55));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.profile h2,
.section-head h2,
.about-copy h2,
.portfolio h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.12;
}

.profile p {
  color: var(--soft);
  line-height: 1.72;
}

.contact-box {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: #d9fbff;
}

.contact-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 10px;
  background: rgba(38, 212, 255, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.meta-item {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-band,
.portfolio,
.contact,
.pricing-band {
  position: relative;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(8, 15, 30, 0.88), rgba(12, 24, 42, 0.58));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 46px;
}

.about-band::after,
.pricing-band::after {
  position: absolute;
  inset: auto -70px -120px auto;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  content: "";
  background: radial-gradient(circle, rgba(38, 212, 255, 0.14), transparent 68%);
}

.section-copy {
  margin: 22px 0 0;
  color: var(--soft);
  line-height: 1.72;
}

.values {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.values div {
  display: grid;
  grid-template-columns: 54px 180px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.values span {
  color: var(--warn);
  font-weight: 900;
}

.values strong {
  display: block;
}

.values p {
  margin-bottom: 0;
  color: var(--soft);
  line-height: 1.62;
}

.services {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 76px minmax(190px, 0.32fr) minmax(0, 0.48fr) minmax(220px, 0.32fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(38, 212, 255, 0.24);
  border-radius: 18px;
  background: rgba(38, 212, 255, 0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.service h3 {
  margin-bottom: 0;
  font-size: 25px;
}

.service ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--soft);
  list-style: none;
}

.service li {
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
}

.service li::before {
  position: absolute;
  left: 0;
  color: var(--accent-2);
  content: "+";
}

.portfolio {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: center;
}

.portfolio-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.portfolio-grid article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.portfolio-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.portfolio-grid strong {
  display: block;
  line-height: 1.35;
}

.pricing {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.price-card {
  display: grid;
  grid-template-columns: 130px minmax(220px, 0.38fr) minmax(210px, 0.34fr) 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.price-card.featured {
  margin-inline: -18px;
  padding-inline: 18px;
  border-radius: 20px;
  background: rgba(38, 212, 255, 0.08);
}

.price-card h3 {
  margin-bottom: 0;
  font-size: 23px;
}

.price {
  color: #f8fdff;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.1;
}

.price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.price-card p {
  margin-bottom: 0;
}

.ssl-note {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.ssl-note strong {
  min-width: 150px;
  color: #d9fbff;
  font-size: 20px;
}

.ssl-note p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px;
}

.contact-form option {
  background: #0c1426;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--soft);
  line-height: 1.5;
}

.form-status[data-state="success"] {
  color: #c7ffe2;
}

.form-status[data-state="error"] {
  color: #ffd1d1;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 46px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .hero-top,
  .section-head,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-grid,
  .about-band,
  .portfolio,
  .contact {
    grid-template-columns: 1fr;
  }

  .service,
  .price-card {
    grid-template-columns: 72px 1fr;
  }

  .service p,
  .service ul,
  .price,
  .price-card p {
    grid-column: 2;
  }

  .values div,
  .portfolio-grid article {
    grid-template-columns: 90px 1fr;
  }

  .values p {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .section {
    margin-top: 48px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .hero::after {
    width: 80vw;
    opacity: 0.55;
  }

  .hero-grid {
    padding-top: 36px;
  }

  .profile,
  .about-band,
  .portfolio,
  .contact,
  .pricing-band {
    padding: 22px;
    border-radius: 24px;
  }

  .status {
    width: 100%;
    justify-content: center;
  }

  .meta-grid,
  .service,
  .price-card,
  .values div,
  .portfolio-grid article {
    grid-template-columns: 1fr;
  }

  .service p,
  .service ul,
  .price,
  .price-card p,
  .values p {
    grid-column: auto;
  }

  .ssl-note {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }
}
