:root {
  --ink: #0c1222;
  --muted: #65758a;
  --paper: #f4f7fb;
  --surface: #ffffff;
  --line: #d9e2ee;
  --dark: #070b16;
  --accent: #00d4ff;
  --accent-2: #a3ff12;
  --shadow: 0 28px 80px rgba(12, 18, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0, var(--paper) 42rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 212, 255, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 226, 238, 0.72);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #021018;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 0.82rem;
  font-weight: 950;
}

.nav {
  display: flex;
  gap: clamp(12px, 2.4vw, 26px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.nav a:hover,
.nav a:focus-visible {
  color: #0284c7;
}

.hero,
.strip,
.section,
.contact-section,
.legal-section,
.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.9fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: clamp(48px, 7vw, 92px) 0;
}

.hero__content {
  max-width: 800px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.6vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 4px;
  font-size: 1.04rem;
}

p {
  color: var(--muted);
}

.hero__lead {
  max-width: 680px;
  font-size: clamp(1.06rem, 1.7vw, 1.22rem);
}

.personal-line {
  max-width: 620px;
  margin: 18px 0 0;
  color: #263448;
  font-weight: 850;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.button--primary {
  color: #021018;
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(0, 212, 255, 0.34);
}

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

.hero-visual {
  min-height: 470px;
  color: #fff;
}

.orbital {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 212, 255, 0.44), transparent 34%),
    radial-gradient(circle at 72% 20%, rgba(163, 255, 18, 0.18), transparent 28%),
    linear-gradient(145deg, #070b16, #10172a);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orbital::before {
  content: "";
  position: absolute;
  inset: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orbit-card {
  position: absolute;
  width: min(190px, 42%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.orbit-card--main {
  left: 50%;
  top: 50%;
  width: min(235px, 58%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.13);
}

.orbit-card:nth-child(2) {
  left: 24px;
  top: 30px;
}

.orbit-card:nth-child(3) {
  right: 24px;
  top: 82px;
}

.orbit-card:nth-child(4) {
  left: 46px;
  bottom: 36px;
}

.orbit-card span {
  display: block;
  margin-bottom: 22px;
  color: #a5f3fc;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.orbit-card strong {
  display: block;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.1;
}

.orbit-card--accent {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.82), rgba(163, 255, 18, 0.25));
}

.strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 0 clamp(34px, 5vw, 58px);
}

.strip span,
.pill {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-weight: 850;
}

.section,
.contact-section,
.legal-section {
  padding: clamp(42px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.service-rows {
  border-top: 1px solid var(--line);
}

.service-rows article {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 50px);
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-rows p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.focus {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.focus p {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.focus p:last-child {
  margin-bottom: 0;
}

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

.example-list article {
  min-height: 390px;
  display: grid;
  align-content: start;
  overflow: hidden;
  padding: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    #fff;
  box-shadow: 0 18px 48px rgba(12, 18, 34, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.example-list article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(12, 18, 34, 0.12);
}

.example-shot {
  display: block;
  aspect-ratio: 16 / 9.6;
  margin-bottom: 18px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #dbe5ef;
}

.example-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.example-list article:hover .example-shot img {
  transform: scale(1.035);
}

.example-list span {
  margin: 0 22px 18px;
  color: #0284c7;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.example-list h3 {
  margin-left: 22px;
  margin-right: 22px;
}

.example-list p {
  margin-left: 22px;
  margin-right: 22px;
  margin-bottom: 18px;
}

.example-list a {
  margin-left: 22px;
  margin-right: 22px;
  align-self: end;
  color: #075985;
  font-weight: 950;
}

.example-list .example-shot {
  margin-left: 0;
  margin-right: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(0, 212, 255, 0.2);
  border-color: #0284c7;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 50px);
}

.legal-compact {
  display: grid;
  gap: 10px;
}

.legal-compact details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-compact summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 950;
}

.legal-compact p {
  margin: 0;
  padding: 0 18px 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-weight: 850;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-links a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 950;
}

.legal-page {
  min-height: calc(100vh - 63px);
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) 0 28px;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-page section {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.legal-page section:last-child {
  padding-bottom: 0;
}

.legal-page a {
  color: #0284c7;
  font-weight: 850;
}

@media (max-width: 900px) {
  .hero,
  .contact-section,
  .legal-section {
    grid-template-columns: 1fr;
  }

  .example-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .orbital {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero,
  .strip,
  .section,
  .contact-section,
  .legal-section,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .hero-visual,
  .orbital {
    min-height: 340px;
  }

  .orbit-card {
    width: 44%;
    padding: 14px;
  }

  .service-rows article,
  .form-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
