:root {
  --ink: #09090d;
  --night: #101521;
  --panel: #161d2b;
  --paper: #fbfbf7;
  --cream: #fff4df;
  --white: #ffffff;
  --muted: #5c5a67;
  --line: rgba(255, 255, 255, 0.18);
  --cyan: #10d7ff;
  --violet: #8c35ff;
  --magenta: #f100ff;
  --orange: #ff7a2f;
  --yellow: #ff9b3d;
  --green: #54d66c;
  --blue: #2f7dff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  --rainbow: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet), var(--magenta), var(--orange), var(--yellow), var(--green));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    repeating-linear-gradient(135deg, rgba(16, 215, 255, 0.04) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, #fbfbf7 0%, #f5f7fb 42%, #fff7ea 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

sup {
  font-size: 0.28em;
  font-weight: 900;
  line-height: 0;
  vertical-align: super;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 104px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(9, 11, 18, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.brand-name {
  display: inline-block;
  color: transparent;
  font-weight: 900;
  letter-spacing: 0;
  background: var(--rainbow);
  background-clip: text;
  -webkit-background-clip: text;
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.header-statement {
  flex: 1;
  max-width: 420px;
  margin: 0 22px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.header-statement span {
  display: inline-block;
  min-width: 100%;
  padding-left: 72%;
  animation: header-loop 6s linear infinite;
}

@keyframes header-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-172%);
  }
}

.site-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.site-nav a {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--ink);
  background: var(--rainbow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 146px clamp(18px, 4vw, 54px) 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 26%, rgba(47, 125, 255, 0.18), transparent 28%),
    radial-gradient(circle at 28% 78%, rgba(16, 215, 255, 0.13), transparent 25%),
    linear-gradient(135deg, #090b12 0%, #121827 54%, #09090d 100%);
}

.hero::before {
  position: absolute;
  inset: 72px -20vw auto;
  height: 28px;
  content: "";
  background: var(--rainbow);
  opacity: 0.95;
  transform: rotate(-4deg);
}

.hero::after {
  position: absolute;
  inset: auto -20vw 48px;
  height: 18px;
  content: "";
  background: var(--rainbow);
  opacity: 0.72;
  transform: rotate(3deg);
}

.hero-ribbon {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(255, 255, 255, 0.04) 48px 50px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.hero-copy-block {
  max-width: 750px;
}

.hero-brand-card {
  position: relative;
  display: grid;
  place-items: center;
  align-items: center;
  min-height: 420px;
  padding: 0;
}

.hero-logo-panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(430px, 100%);
  aspect-ratio: 1;
  padding: 10px;
  background: #000;
  border: 6px solid var(--white);
  box-shadow: 0 0 34px rgba(16, 215, 255, 0.2), 0 0 46px rgba(241, 0, 255, 0.2);
}

.hero-logo-panel img {
  width: 100%;
  filter: saturate(1.12) contrast(1.02);
}

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

.hero-brand-text span {
  display: block;
  color: var(--white);
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.72);
}

.hero-brand-text strong {
  display: block;
  margin-top: 10px;
  color: var(--yellow);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.76);
}

.hero-brand-text p {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.intro h2,
.statement-band h2,
.tech-section h2,
.contact-section h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 6.1vw, 5.85rem);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions,
.button {
  display: inline-flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 900;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: var(--rainbow);
  box-shadow: 0 12px 26px rgba(241, 0, 255, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.full-width {
  width: 100%;
}

.section,
.section-band,
.tech-section,
.process-section,
.contact-section,
.statement-band {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 54px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-band {
  background: var(--paper);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
}

.intro h2,
.section h2,
.statement-band h2,
.tech-section h2,
.contact-section h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
}

.flow p,
.section-heading p,
.tech-section p,
.contact-section p,
.statement-band p {
  color: var(--muted);
  font-size: 1.05rem;
}

.flow p:first-child {
  margin-top: 0;
}

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

.statement-band {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 215, 255, 0.18), rgba(241, 0, 255, 0.16), rgba(255, 122, 47, 0.18)),
    var(--night);
}

.statement-band::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  content: "";
  background: var(--rainbow);
}

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

.statement-grid article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.statement-band p {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-card {
  position: relative;
  min-height: 320px;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(9, 9, 13, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(9, 9, 13, 0.08);
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  content: "";
  background: var(--rainbow);
}

.service-card.featured {
  color: var(--white);
  background: var(--night);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--magenta);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.25rem;
}

.service-card.featured .service-icon {
  color: var(--yellow);
}

.service-card h3,
.check-panel h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.25;
}

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

.service-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cyan);
  font-weight: 900;
}

.tech-section {
  color: var(--white);
  background:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 26px),
    var(--ink);
}

.tech-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.tech-section p,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.tech-section .button {
  margin-top: 18px;
}

.check-panel {
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-panel ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-panel li::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "*";
  color: var(--magenta);
  font-weight: 900;
}

.process-section {
  background: var(--paper);
}

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

.process-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(9, 9, 13, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(9, 9, 13, 0.06);
}

.process-grid article::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 4px;
  content: "";
  background: var(--rainbow);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.3rem;
}

.process-grid h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

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

.privacy-section {
  background:
    linear-gradient(180deg, rgba(16, 215, 255, 0.08), transparent 52%),
    var(--paper);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.privacy-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(9, 9, 13, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(9, 9, 13, 0.06);
}

.privacy-panel h3 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

.privacy-panel ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.privacy-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.privacy-panel li::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "*";
  color: var(--orange);
  font-weight: 900;
}

.privacy-panel p {
  margin: 20px 0 0;
  color: var(--muted);
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 215, 255, 0.16), transparent 40%),
    linear-gradient(315deg, rgba(255, 122, 47, 0.18), transparent 42%),
    var(--panel);
}

.domain-note {
  margin-top: 28px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border-left: 6px solid var(--yellow);
}

.domain-note strong {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 1px solid rgba(9, 9, 13, 0.2);
  border-radius: var(--radius);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--magenta);
  outline: 3px solid rgba(241, 0, 255, 0.18);
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.78);
  background: #050508;
  border-top: 8px solid transparent;
  border-image: var(--rainbow) 1;
}

.footer-layout {
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
}

.footer-layout p {
  max-width: 670px;
  margin: 0;
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-layout a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-brand-card {
    max-width: 820px;
  }
}

@media (max-width: 860px) {
  .header-statement {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--night);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 82vh;
  }

  .two-column,
  .statement-grid,
  .service-grid,
  .tech-layout,
  .privacy-layout,
  .process-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-statement span {
    padding-left: 0;
    animation: none;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 1.32rem;
  }

  .hero {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-brand-card {
    min-height: 280px;
    max-width: none;
    padding: 20px;
  }

  .button {
    width: 100%;
  }

  .statement-grid article,
  .service-card,
  .process-grid article,
  .check-panel,
  .contact-form {
    padding: 20px;
  }
}
