:root {
  --bg: #030817;
  --navy: #061326;
  --navy-2: #081b34;
  --line: rgba(96, 191, 255, .18);
  --text: #eef8ff;
  --muted: #9db4c9;
  --cyan: #33d6ff;
  --mint: #43f5b5;
  --violet: #7788ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: rgba(51, 214, 255, .32);
}

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

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

picture {
  display: block;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 16% 18%, rgba(51, 214, 255, .18), transparent 28%),
    radial-gradient(circle at 74% 8%, rgba(67, 245, 181, .12), transparent 24%),
    linear-gradient(180deg, rgba(3, 8, 23, .08), rgba(3, 8, 23, .28) 58%, #030817 100%),
    linear-gradient(90deg, rgba(3, 8, 23, .54) 0%, rgba(3, 8, 23, .16) 42%, rgba(3, 8, 23, .58) 100%),
    url("../img/background.jpg") center top / cover no-repeat;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .7;
}

.site-bg::before {
  width: 30rem;
  height: 30rem;
  left: -10rem;
  top: 7rem;
  background: radial-gradient(circle, rgba(51, 214, 255, .26), transparent 66%);
}

.site-bg::after {
  width: 36rem;
  height: 36rem;
  right: -12rem;
  top: 18rem;
  background: radial-gradient(circle, rgba(51, 214, 255, .16), transparent 68%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  box-shadow: 0 0 24px rgba(51, 214, 255, .8);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 90;
  border-radius: .45rem;
  background: var(--cyan);
  color: #00111d;
  padding: .8rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(3, 8, 23, .72);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 2rem));
  height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
}

.brand-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(51, 214, 255, .38);
  border-radius: .55rem;
  background: rgba(6, 19, 38, .82);
  color: var(--cyan);
  font-size: .88rem;
  font-weight: 900;
  box-shadow: 0 0 26px rgba(51, 214, 255, .22);
}

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

.brand strong {
  font-weight: 850;
}

.brand small {
  margin-top: .18rem;
  color: var(--muted);
  font-size: .74rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav-links a {
  border-radius: .45rem;
  color: #c5d8e8;
  font-size: .92rem;
  font-weight: 700;
  padding: .65rem .85rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(51, 214, 255, .1);
  color: white;
}

.nav-phone {
  border: 1px solid rgba(51, 214, 255, .28);
  color: var(--cyan) !important;
}

.menu-button {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .45rem;
  background: rgba(255, 255, 255, .04);
}

.menu-button span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 3px auto;
  background: white;
}

.hero,
.section,
.footer {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  min-height: 92vh;
  padding: 9rem 0 5rem;
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .55fr);
    align-items: center;
    padding-top: 7rem;
  }
}

.kicker {
  margin: 0 0 1.15rem;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(51, 214, 255, .45);
}

.hero h1,
.section-title h2,
.contact-copy h2 {
  margin: 0;
  color: white;
  font-weight: 850;
  line-height: 1.04;
  text-wrap: balance;
}

.hero h1 {
  max-width: 820px;
  font-size: 2.85rem;
  text-shadow: 0 0 34px rgba(3, 8, 23, .72);
}

.lead {
  max-width: 710px;
  margin: 1.4rem 0 0;
  color: #c3d4e5;
  font-size: 1.08rem;
  line-height: 1.85;
  text-shadow: 0 0 22px rgba(3, 8, 23, .72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  border-radius: .45rem;
  padding: .9rem 1.15rem;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.button-primary {
  border: 1px solid rgba(51, 214, 255, .65);
  background: linear-gradient(135deg, rgba(51, 214, 255, .96), rgba(67, 245, 181, .86));
  color: #02111e;
  box-shadow: 0 0 32px rgba(51, 214, 255, .24), 0 18px 54px rgba(0, 0, 0, .28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: white;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(51, 214, 255, .72);
  outline-offset: 3px;
}

.signal-card,
.service,
.contact-form,
.work-strip {
  border: 1px solid var(--line);
  border-radius: .75rem;
  background: linear-gradient(180deg, rgba(8, 27, 52, .72), rgba(4, 12, 28, .78));
  box-shadow: 0 0 42px rgba(51, 214, 255, .08), 0 24px 80px rgba(0, 0, 0, .26);
  backdrop-filter: blur(14px);
}

.signal-card {
  align-self: center;
  padding: 1.1rem;
}

.signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: 1rem;
}

.signal-header span {
  color: var(--muted);
  font-size: .85rem;
}

.signal-header strong {
  color: var(--mint);
  text-shadow: 0 0 18px rgba(67, 245, 181, .45);
  animation: onlinePulse 1.8s ease-in-out infinite;
}

.signal-card dl {
  display: grid;
  gap: .75rem;
  margin: 1rem 0 0;
}

.signal-card div {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: .55rem;
  padding: .9rem;
  background: rgba(255, 255, 255, .035);
}

.signal-card dt {
  color: white;
  font-weight: 850;
}

.signal-card dd {
  margin: .18rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.section {
  padding: 5rem 0;
}

.section.compact {
  padding-top: 2rem;
}

.section-title {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-title h2,
.contact-copy h2 {
  font-size: 2.1rem;
}

.services-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .service {
    grid-column: span 2;
  }

  .service-wide {
    grid-column: span 3;
  }
}

.service {
  position: relative;
  min-height: 15rem;
  padding: 1.35rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service:hover,
.service:focus {
  border-color: rgba(51, 214, 255, .48);
  box-shadow: 0 0 52px rgba(51, 214, 255, .15);
  transform: translateY(-4px);
  outline: none;
}

.service-link {
  display: block;
  overflow: hidden;
}

.service-link::after {
  content: "";
  position: absolute;
  inset: auto -15% -45% 28%;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(51, 214, 255, .24), transparent 68%);
  pointer-events: none;
}

.service-link strong {
  display: inline-flex;
  margin-top: 1.15rem;
  color: var(--cyan);
  font-size: .9rem;
  text-shadow: 0 0 16px rgba(51, 214, 255, .48);
}

.service-link strong::after {
  content: "→";
  margin-left: .45rem;
}

.service span {
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 900;
}

.service h3 {
  margin: 1rem 0 .7rem;
  color: white;
  font-size: 1.18rem;
  font-weight: 850;
}

.service p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.work-strip {
  display: grid;
  gap: .75rem;
  padding: .75rem;
}

@media (min-width: 760px) {
  .work-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.work-strip img {
  width: 100%;
  height: 18rem;
  border-radius: .55rem;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05);
}

.contact-section {
  display: grid;
  gap: 2rem;
  padding-bottom: 6rem;
}

@media (min-width: 900px) {
  .contact-section {
    grid-template-columns: .82fr 1.18fr;
    align-items: start;
  }
}

.contact-copy p:not(.kicker) {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-copy a {
  display: block;
  width: fit-content;
  margin-top: .9rem;
  color: var(--cyan);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.contact-form label {
  color: #d9ebf9;
  font-size: .9rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  min-height: 3.05rem;
  margin-top: .5rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .45rem;
  background: rgba(1, 7, 20, .78);
  color: white;
  padding: .85rem .95rem;
}

.contact-form select option {
  background: var(--navy);
}

.contact-form textarea {
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  line-height: 1.5;
}

.consent input {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 1.1rem;
  margin-top: .2rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-note,
.form-status,
.rodo-note {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

.rodo-note {
  white-space: pre-line;
}

.rodo-note a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.form-status[data-state="success"] {
  color: var(--mint);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.6rem 0 2rem;
  color: var(--muted);
  font-size: .9rem;
}

.privacy-main {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8.5rem 0 4rem;
}

.privacy-card {
  border: 1px solid var(--line);
  border-radius: .85rem;
  background: linear-gradient(180deg, rgba(8, 27, 52, .78), rgba(4, 12, 28, .84));
  box-shadow: 0 0 46px rgba(51, 214, 255, .1), 0 24px 80px rgba(0, 0, 0, .3);
  color: #d7e8f7;
  line-height: 1.8;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.privacy-card h1 {
  margin: 0 0 1.5rem;
  color: white;
  font-size: 2.35rem;
  font-weight: 850;
  line-height: 1.08;
}

.privacy-card h2 {
  margin: 2rem 0 .85rem;
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
}

.privacy-card p {
  margin: .8rem 0;
}

.privacy-card ul {
  margin: .9rem 0;
  padding-left: 1.25rem;
}

.privacy-card li + li {
  margin-top: .45rem;
}

.privacy-card a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-card .meta,
.privacy-card .note {
  border: 1px solid rgba(51, 214, 255, .18);
  border-radius: .6rem;
  background: rgba(255, 255, 255, .04);
  padding: 1rem;
}

.privacy-nav {
  display: flex;
}

.websites-main {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8.5rem 0 5rem;
}

.websites-hero,
.websites-copy,
.websites-cta {
  border: 1px solid var(--line);
  border-radius: .85rem;
  background: linear-gradient(180deg, rgba(8, 27, 52, .72), rgba(4, 12, 28, .82));
  box-shadow: 0 0 46px rgba(51, 214, 255, .1), 0 24px 80px rgba(0, 0, 0, .3);
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.websites-hero h1,
.websites-copy h2,
.websites-cta h2 {
  margin: 0;
  color: white;
  font-size: 2.2rem;
  font-weight: 850;
  line-height: 1.08;
  text-wrap: balance;
}

.websites-hero p:not(.kicker),
.websites-copy p,
.websites-copy li,
.websites-cta p {
  color: #c6d8e8;
  line-height: 1.8;
}

.websites-hero p:not(.kicker) {
  max-width: 860px;
}

.websites-copy {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
}

.websites-copy ul {
  margin: 0;
  padding-left: 1.2rem;
}

.websites-gallery-section {
  padding: 5rem 0 3rem;
}

.ideas-gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 680px) {
  .ideas-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1060px) {
  .ideas-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.idea-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: rgba(4, 12, 28, .82);
  color: white;
  cursor: zoom-in;
  padding: .55rem;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.idea-card:hover,
.idea-card:focus-visible {
  border-color: rgba(51, 214, 255, .55);
  box-shadow: 0 0 44px rgba(51, 214, 255, .16);
  transform: translateY(-4px);
}

.idea-card img {
  width: 100%;
  height: 22rem;
  border-radius: .55rem;
  object-fit: cover;
  object-position: top;
}

.idea-card span {
  display: block;
  padding: .85rem .35rem .25rem;
  color: #dff6ff;
  font-weight: 800;
}

.websites-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 5, 14, .86);
  padding: 1rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(1040px, 100%);
  max-height: 92vh;
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  border: 1px solid rgba(51, 214, 255, .32);
  border-radius: .8rem;
  object-fit: contain;
  background: #020813;
  box-shadow: 0 0 60px rgba(51, 214, 255, .22);
}

.lightbox figcaption {
  margin-top: .75rem;
  color: white;
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: .55rem;
  background: rgba(3, 8, 23, .9);
  color: white;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.no-scroll {
  overflow: hidden;
}

.cookie-banner,
.cookie-panel,
.cookie-reopen {
  border: 1px solid rgba(51, 214, 255, .22);
  background: linear-gradient(180deg, rgba(8, 27, 52, .94), rgba(4, 12, 28, .96));
  box-shadow: 0 0 42px rgba(51, 214, 255, .14), 0 24px 80px rgba(0, 0, 0, .36);
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 5.2rem;
  z-index: 95;
  width: min(26rem, calc(100vw - 2rem));
  border-radius: .8rem;
  padding: 1.2rem;
}

.cookie-banner h2,
.cookie-panel h3 {
  margin: 0 0 .55rem;
  color: white;
  font-size: 1.15rem;
  font-weight: 850;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.cookie-banner a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .6rem;
  margin-top: 1rem;
}

.cookie-button {
  min-height: 2.6rem;
  border-radius: .45rem;
  cursor: pointer;
  font-weight: 800;
  padding: .65rem .85rem;
}

.cookie-button-primary {
  border: 1px solid rgba(51, 214, 255, .65);
  background: linear-gradient(135deg, rgba(51, 214, 255, .96), rgba(67, 245, 181, .86));
  color: #02111e;
}

.cookie-button-muted,
.cookie-button-ghost {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: white;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 105;
  display: grid;
  place-items: center;
  background: rgba(0, 5, 14, .76);
  padding: 1rem;
}

.cookie-panel {
  width: min(34rem, 100%);
  border-radius: .9rem;
  padding: 1.3rem;
}

.cookie-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-panel-head button {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .45rem;
  background: rgba(255, 255, 255, .05);
  color: white;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1rem 0;
}

.cookie-row strong,
.cookie-row small {
  display: block;
}

.cookie-row small {
  color: var(--muted);
  line-height: 1.5;
  margin-top: .25rem;
}

.cookie-row input {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--cyan);
}

.cookie-reopen {
  position: fixed;
  left: 1rem;
  bottom: 4.75rem;
  z-index: 94;
  border-radius: 999px;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 800;
  padding: .75rem 1rem;
}

[hidden] {
  display: none !important;
}

.grecaptcha-badge {
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 90 !important;
  bottom: 5.2rem !important;
}

@media (max-width: 759px) {
  .grecaptcha-badge {
    bottom: 5.2rem !important;
  }
}

.mobile-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 65;
  display: none;
  min-height: 3rem;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgba(51, 214, 255, .55);
  border-radius: .45rem;
  background: rgba(3, 8, 23, .9);
  color: var(--cyan);
  font-weight: 850;
  padding: .85rem 1rem;
  box-shadow: 0 0 28px rgba(51, 214, 255, .22);
}

.mobile-call svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.7rem;
  }

  .section-title h2,
  .contact-copy h2 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1120px) {
  .hero h1 {
    font-size: 4.55rem;
  }
}

@media (max-width: 759px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .75rem;
    background: rgba(3, 8, 23, .96);
    padding: .75rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
  }

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

  .nav-links a {
    padding: .9rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7.5rem;
  }

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

  .work-strip img {
    height: 14rem;
  }

  .mobile-call {
    display: inline-flex;
  }

}

@keyframes onlinePulse {
  0%, 100% {
    color: var(--mint);
    text-shadow: 0 0 12px rgba(67, 245, 181, .45), 0 0 24px rgba(67, 245, 181, .25);
  }
  50% {
    color: #a8ffd8;
    text-shadow: 0 0 18px rgba(67, 245, 181, .95), 0 0 40px rgba(67, 245, 181, .5);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
