:root {
  --bg: #040816;
  --bg-soft: rgba(7, 14, 33, 0.8);
  --panel: rgba(10, 20, 42, 0.72);
  --panel-strong: rgba(13, 24, 50, 0.92);
  --line: rgba(120, 188, 255, 0.16);
  --text: #f4f8ff;
  --muted: #aac2df;
  --primary: #76dbff;
  --primary-strong: #2d8bff;
  --accent: #9cedff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(61, 140, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(118, 219, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #030611 0%, #06101f 48%, #030611 100%);
  font-family: "Manrope", sans-serif;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.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;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.6;
  z-index: 0;
}

.ambient--one {
  top: 80px;
  left: -90px;
  width: 280px;
  height: 280px;
  background: rgba(46, 138, 255, 0.2);
}

.ambient--two {
  right: -80px;
  bottom: 15%;
  width: 320px;
  height: 320px;
  background: rgba(118, 219, 255, 0.14);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.92), transparent 88%);
  pointer-events: none;
  z-index: 0;
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: 100%;
  margin: 0;
  padding: 24px clamp(18px, 2.8vw, 34px) 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: padding 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease,
    border-color 0.35s ease;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: blur(0);
}

.site-header::before {
  content: none;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 6px;
  background: linear-gradient(180deg, rgba(4, 9, 21, 0.92), rgba(4, 9, 21, 0.72));
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(130, 199, 255, 0.14);
}

.brand-mark {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-mark__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 88px;
  height: 64px;
  padding: 6px;
  border-radius: 18px;
}

.brand-mark__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark__logo--header {
  width: 114px;
  height: 84px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: width 0.35s ease, height 0.35s ease, transform 0.35s ease;
}

.brand-mark__logo--header img {
  object-fit: contain;
  filter: saturate(1.05) brightness(1.02) drop-shadow(0 10px 28px rgba(49, 134, 255, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 18px;
  padding: 0;
  font-size: 0.93rem;
  color: var(--muted);
  transition: gap 0.35s ease, font-size 0.35s ease, transform 0.35s ease;
}

.site-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156, 237, 255, 0.82), transparent);
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(130, 199, 255, 0.18);
  border-radius: 18px;
  background: rgba(8, 15, 34, 0.72);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.header-cta {
  justify-self: end;
  min-height: 48px;
  padding: 0 22px;
  background: rgba(8, 15, 34, 0.58);
  border-color: rgba(130, 199, 255, 0.16);
  box-shadow: none;
  transition: min-height 0.35s ease, padding 0.35s ease, transform 0.35s ease,
    background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled .brand-mark__logo--header {
  width: 84px;
  height: 62px;
  transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav {
  gap: 18px;
  font-size: 0.9rem;
  transform: translateY(-1px);
}

.site-header.is-scrolled .header-cta {
  min-height: 42px;
  padding: 0 18px;
  transform: translateY(-1px);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  width: var(--container);
  padding-top: 64px;
  min-height: calc(100vh - 80px);
  display: block;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.74fr);
  align-items: stretch;
  gap: clamp(24px, 2.4vw, 40px);
  min-height: clamp(500px, 58vh, 560px);
  padding: clamp(34px, 3.6vw, 48px);
  border: 1px solid rgba(130, 199, 255, 0.14);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(11, 23, 52, 0.97), rgba(6, 10, 22, 0.93));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(156, 237, 255, 0.08);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 24%, rgba(118, 219, 255, 0.2), transparent 28%),
    radial-gradient(circle at 38% 82%, rgba(45, 139, 255, 0.12), transparent 24%),
    radial-gradient(circle at 78% 26%, rgba(31, 111, 235, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(11, 23, 52, 0.99) 0%, rgba(7, 14, 32, 0.98) 48%, rgba(7, 14, 32, 0.87) 68%, rgba(7, 14, 32, 0.62) 84%, rgba(7, 14, 32, 0.22) 100%),
    linear-gradient(180deg, rgba(11, 23, 52, 0.96), rgba(6, 10, 22, 0.92));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: min(100%, 600px);
  padding-right: 0;
  padding-top: 8px;
}

.hero-panel__visual {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  margin-right: 0;
  width: min(100%, 332px);
  height: auto;
  min-height: 0;
  perspective: 1200px;
  isolation: isolate;
  --hero-rx: 0deg;
  --hero-ry: 0deg;
  --hero-tilt-shift-x: 0px;
  --hero-tilt-shift-y: 0px;
  --hero-glow-x: 50%;
  --hero-glow-y: 38%;
  animation: hero-visual-float 7.2s ease-in-out infinite;
}

.hero-panel__visual::before {
  content: "";
  position: absolute;
  inset: 6% -4% 8% -8%;
  border-radius: 999px;
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(108, 198, 255, 0.24), transparent 28%),
    radial-gradient(circle at 50% 72%, rgba(31, 111, 235, 0.16), transparent 42%);
  filter: blur(32px);
  opacity: 0.9;
  transform: translateZ(0);
  pointer-events: none;
}

.hero-panel__visual::after {
  content: "";
  position: absolute;
  inset: -4% -6% -3%;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(118, 219, 255, 0.08), rgba(118, 219, 255, 0)),
    radial-gradient(circle at 54% 18%, rgba(255, 255, 255, 0.08), transparent 24%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-panel__visual-frame {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(130, 199, 255, 0.14);
  border-left-color: rgba(130, 199, 255, 0.08);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(11, 20, 44, 0.88), rgba(6, 11, 24, 0.9));
  box-shadow:
    0 32px 78px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
  transform:
    translate3d(var(--hero-tilt-shift-x), var(--hero-tilt-shift-y), 0)
    rotateX(var(--hero-rx))
    rotateY(var(--hero-ry))
    scale(1.01);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease,
    border-color 0.38s ease,
    filter 0.38s ease;
  will-change: transform;
}

.hero-panel__visual-frame::before {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -42%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transform: translateX(-120%) skewX(-22deg);
  transition: transform 1.15s ease, opacity 0.28s ease;
  pointer-events: none;
}

.hero-panel__visual-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(118, 219, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.hero-panel__visual-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 22px;
  transform: translateZ(0);
}

.hero-panel__visual.is-active .hero-panel__visual-frame {
  border-color: rgba(156, 237, 255, 0.22);
  box-shadow:
    0 42px 96px rgba(2, 8, 20, 0.52),
    0 0 44px rgba(70, 166, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-panel__visual.is-active .hero-panel__visual-frame::before {
  opacity: 0.48;
  transform: translateX(310%) skewX(-22deg);
}

@keyframes hero-visual-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(141, 208, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 15, 34, 0.72);
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow--hero {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4em;
}

.eyebrow--hero-row {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.eyebrow--hero-row--full {
  width: auto;
  justify-content: flex-start;
}

.eyebrow--hero-row--full::before {
  content: ".";
  margin: 0 0.45em 0 0.2em;
  opacity: 0.72;
}

.hero h1,
.section-heading h2,
.narrative-card h3,
.process-card h3,
.service-card h3,
.profile-card h2,
.contact-panel h2,
.portrait-card__content h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  margin-top: 26px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.hero-line {
  display: block;
  white-space: normal;
  text-wrap: balance;
}

.hero-line + .hero-line {
  margin-top: 0.08em;
}

.hero__lead,
.section-heading p,
.service-card p,
.narrative-card p,
.process-card p,
.profile-card p,
.contact-panel p,
.portrait-card__content p,
.stack-card__overlay p {
  color: var(--muted);
  line-height: 1.72;
}

.hero__lead {
  max-width: min(100%, 74ch);
  margin: 30px 0 0;
  font-size: clamp(1.02rem, 1.18vw, 1.08rem);
}

.hero__lead-line {
  display: block;
  white-space: normal;
  text-wrap: pretty;
}

.hero__lead-line + .hero__lead-line {
  margin-top: 0.08em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid rgba(133, 212, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(100, 186, 255, 0.9), rgba(31, 111, 235, 0.92)),
    rgba(10, 18, 40, 0.86);
  box-shadow:
    0 18px 44px rgba(20, 82, 168, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: var(--text);
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(151, 225, 255, 0.4);
  box-shadow:
    0 22px 52px rgba(20, 82, 168, 0.32),
    0 0 24px rgba(118, 219, 255, 0.12);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(10, 18, 40, 0.82), rgba(7, 13, 29, 0.92)),
    rgba(8, 15, 34, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 30px rgba(0, 0, 0, 0.12);
}

.button--ghost {
  background: rgba(8, 15, 34, 0.72);
  box-shadow: none;
}

.glass-card,
.service-card,
.process-card,
.stack-card,
.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(11, 20, 44, 0.88), rgba(6, 11, 24, 0.9));
  box-shadow: var(--shadow);
}

.glass-card::before,
.service-card::before,
.process-card::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, rgba(156, 237, 255, 0.9), transparent);
}

.portrait-card {
  grid-column: 1 / span 7;
  padding: 14px;
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
}

.portrait-card__content {
  padding: 18px 8px 6px;
}

.portrait-card__content h2 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.ticker {
  padding-top: 18px;
}

.ticker__heading {
  margin-bottom: 20px;
  text-align: center;
}

.ticker__title {
  margin: 0;
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 248, 255, 0.82);
}

.ticker__panel {
  position: relative;
  padding: 0;
}

.ticker__marquee {
  overflow: hidden;
  padding: 6px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  mask-image: none;
  -webkit-mask-image: none;
}

.ticker__track {
  --marquee-shift: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  animation: values-scroll 36s linear infinite;
}

.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
  animation-play-state: paused;
}

.ticker__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: clamp(176px, 17vw, 236px);
  min-height: clamp(104px, 8.6vw, 126px);
  padding: 18px 16px;
  border: 1px solid rgba(195, 209, 225, 0.85);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 247, 251, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 16px 32px rgba(0, 0, 0, 0.12);
}

.ticker__item img {
  width: auto;
  max-width: min(190px, 100%);
  max-height: clamp(58px, 5vw, 74px);
  object-fit: contain;
  filter: saturate(1.02) contrast(1.05);
}

.ticker__logo {
  display: block;
  transform: scale(var(--logo-scale, 1));
  transform-origin: center;
}

.ticker__logo--1 {
  --logo-scale: 1.48;
}

.ticker__logo--2 {
  --logo-scale: 1.28;
}

.ticker__logo--3 {
  --logo-scale: 1.18;
}

.ticker__logo--4 {
  --logo-scale: 1.02;
}

.ticker__logo--5 {
  --logo-scale: 1.04;
}

.ticker__logo--6 {
  --logo-scale: 1.58;
}

.ticker__logo--7 {
  --logo-scale: 1.56;
}

.ticker__logo--8 {
  --logo-scale: 1.18;
}

.ticker__logo--9 {
  --logo-scale: 1.28;
}

.ticker__logo--10 {
  --logo-scale: 1;
}

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

.section-heading h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.hero h1,
#servicos .section-heading h2,
#solucoes .section-heading h2,
#sobre .section-heading h2,
#metodo .section-heading h2,
#apresentacao .section-heading h2 {
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

#solucoes .section-heading {
  max-width: 900px;
}

#solucoes .section-heading h2 {
  max-width: none;
}

#solucoes .section-heading p {
  max-width: 62ch;
  margin-top: 22px;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.section-heading p {
  max-width: 62ch;
  margin: 18px 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-card--overview {
  --service-glow: rgba(118, 219, 255, 0.16);
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  grid-template-areas:
    "media copy"
    "media points";
  align-items: start;
  column-gap: 20px;
  row-gap: 10px;
  min-height: 100%;
  padding: 16px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card--overview::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -46px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--service-glow), transparent 70%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
}

.service-card--overview:hover,
.service-card--overview:focus-within {
  transform: translateY(-4px);
  border-color: rgba(156, 237, 255, 0.2);
  box-shadow:
    0 36px 84px rgba(0, 0, 0, 0.38),
    0 0 30px rgba(118, 219, 255, 0.08);
}

.service-card--marketing {
  --service-glow: rgba(118, 219, 255, 0.18);
}

.service-card--visual {
  --service-glow: rgba(90, 170, 255, 0.16);
}

.service-card--web {
  --service-glow: rgba(45, 139, 255, 0.2);
}

.service-card--apps {
  --service-glow: rgba(156, 237, 255, 0.15);
}

.service-overview__top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  grid-area: media;
  align-self: end;
  justify-self: stretch;
  margin: 0;
  padding: 0 10px 10px;
  pointer-events: none;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(141, 208, 255, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(17, 33, 72, 0.92), rgba(7, 14, 32, 0.96)),
    rgba(8, 15, 34, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 42px rgba(0, 0, 0, 0.2);
  color: var(--accent);
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__index {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(141, 208, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 15, 34, 0.52);
  color: rgba(156, 237, 255, 0.8);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.service-overview__copy,
.service-overview__media,
.service-points,
.service-chips {
  position: relative;
  z-index: 1;
}

.service-overview__copy {
  display: grid;
  gap: 12px;
  grid-area: copy;
  margin-top: 4px;
  padding-right: 64px;
}

.service-overview__copy h3 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.4rem, 1.95vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.service-card--apps .service-overview__copy h3 {
  text-wrap: pretty;
}

.service-card--visual .service-overview__copy h3 {
  white-space: nowrap;
}

.service-overview__copy p {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  line-height: 1.68;
}

.service-overview__media {
  position: relative;
  grid-area: media;
  margin: 0;
  aspect-ratio: 1 / 1;
  min-height: 220px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(141, 208, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 38%, rgba(118, 219, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(14, 28, 60, 0.6), rgba(7, 13, 29, 0.9)),
    rgba(8, 15, 34, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.service-overview__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 24, 0.02), rgba(5, 10, 24, 0.26)),
    radial-gradient(circle at 18% 18%, rgba(156, 237, 255, 0.14), transparent 28%);
  pointer-events: none;
  z-index: 1;
}

.service-overview__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  transform: none;
  transition: filter 0.35s ease;
  filter: saturate(1.02) contrast(1.02);
}

.service-card--marketing .service-overview__media img {
  object-position: center;
}

.service-card--visual .service-overview__media img {
  object-position: center;
}

.service-card--web .service-overview__media img {
  object-position: center;
}

.service-card--apps .service-overview__media img {
  object-position: center;
}

.service-card--overview:hover .service-overview__media img,
.service-card--overview:focus-within .service-overview__media img {
  transform: none;
  filter: saturate(1.05) contrast(1.04) brightness(1.02);
}

.service-points {
  grid-area: points;
  margin: 0;
  padding: 2px 0 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-points li {
  position: relative;
  padding-left: 24px;
  color: rgba(244, 248, 255, 0.88);
  line-height: 1.45;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary-strong));
  box-shadow: 0 0 16px rgba(118, 219, 255, 0.36);
  transform: translateY(-50%);
}

.service-chips {
  display: none;
}

.section--split {
  padding-top: 96px;
}

#sobre .section-heading {
  max-width: 1160px;
}

#sobre .section-heading h2 {
  max-width: none;
}

.about-heading-line {
  display: block;
  white-space: nowrap;
}

.section--about {
  padding-top: 96px;
}

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

.about-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 0;
  padding: 28px 26px;
}

.about-card p {
  margin: 0;
  max-width: 46ch;
  font-size: 1rem;
}

.values-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 28px 26px;
}

.values-panel__intro {
  display: grid;
  gap: 14px;
  max-width: min(100%, 64ch);
}

.values-panel__intro p {
  margin: 0;
}

.values-marquee {
  overflow: hidden;
  margin-inline: -4px;
  padding-inline: 4px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.values-marquee__track {
  --marquee-shift: 8px;
  display: flex;
  gap: 16px;
  width: max-content;
  animation: values-scroll 28s linear infinite;
}

.values-panel:hover .values-marquee__track,
.values-panel:focus-within .values-marquee__track {
  animation-play-state: paused;
}

.value-card {
  flex: 0 0 clamp(220px, 22vw, 268px);
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 152px;
  padding: 20px 18px;
  border: 1px solid rgba(141, 208, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(14, 28, 60, 0.9), rgba(7, 13, 29, 0.92)),
    rgba(8, 15, 34, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(156, 237, 255, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.value-card:hover,
.value-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(156, 237, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(156, 237, 255, 0.1),
    0 22px 44px rgba(0, 0, 0, 0.2);
}

.value-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.08rem, 1.32vw, 1.28rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

@keyframes values-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - var(--marquee-shift, 8px)), 0, 0);
  }
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.reason-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 30px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.reason-card:hover,
.reason-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(145, 214, 255, 0.16);
  box-shadow:
    0 26px 60px rgba(3, 8, 22, 0.56),
    0 0 26px rgba(118, 219, 255, 0.08);
}

.reason-card p {
  margin: 0;
  font-size: 1rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.narrative-card {
  padding: 30px;
}

.narrative-card h3 {
  margin-top: 18px;
  font-size: clamp(1.7rem, 2.3vw, 2.4rem);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0 0 0 28px;
  color: rgba(244, 248, 255, 0.88);
}

.check-list li + li {
  margin-top: 16px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary-strong));
  box-shadow: 0 0 18px rgba(118, 219, 255, 0.45);
}

.visual-stack {
  display: grid;
  gap: 20px;
}

.stack-card {
  min-height: 300px;
}

.stack-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.stack-card__overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 18px;
  border: 1px solid rgba(146, 216, 255, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8, 14, 32, 0.55), rgba(8, 14, 32, 0.92));
  backdrop-filter: blur(18px);
}

.stack-card--offset {
  transform: translateX(40px);
}

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

.process-card {
  padding: 26px 22px 22px;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: var(--accent);
}

.process-card h3 {
  font-size: 1.45rem;
}

.section--profile {
  padding-top: 96px;
}

.profile-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: 24px;
  padding: 22px;
  overflow: hidden;
}

.profile-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 11, 24, 0.96) 0%, rgba(6, 11, 24, 0.93) 42%, rgba(6, 11, 24, 0.84) 62%, rgba(6, 11, 24, 0.94) 100%),
    url("logotech.jpeg") right 28px center / 380px auto no-repeat;
  opacity: 0.48;
  pointer-events: none;
}

.profile-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(156, 237, 255, 0.82), transparent 44%) top left / 46% 1px no-repeat,
    radial-gradient(circle at 22% 38%, rgba(118, 219, 255, 0.1), transparent 24%),
    radial-gradient(circle at 74% 58%, rgba(45, 139, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.profile-band__visuals,
.profile-band__content {
  position: relative;
  z-index: 1;
}

.profile-band__visuals {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.profile-band__portrait {
  position: relative;
  margin: 0;
  width: min(100%, 320px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.profile-band__portrait img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(130, 199, 255, 0.08);
}

.profile-band__portrait img {
  aspect-ratio: 0.82;
  object-position: center 10%;
}

.profile-band__content {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 2px 0;
}

.profile-band__copy {
  display: grid;
  gap: 14px;
  max-width: min(100%, 68ch);
}

.profile-band__copy h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.profile-band__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.profile-band__note {
  max-width: min(100%, 62ch);
}

.profile-band__contacts {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.38fr) minmax(220px, 0.8fr);
  align-items: stretch;
  gap: 10px;
}

#contactos {
  scroll-margin-top: 118px;
}

.profile-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: 16px 16px 14px;
  border: 1px solid rgba(141, 208, 255, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(14, 28, 60, 0.82), rgba(7, 13, 29, 0.92)),
    rgba(8, 15, 34, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(156, 237, 255, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.16);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.profile-contact:hover,
.profile-contact:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(156, 237, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(156, 237, 255, 0.12),
    0 22px 44px rgba(0, 0, 0, 0.22);
}

.profile-contact__top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(141, 208, 255, 0.14);
  background: rgba(8, 15, 34, 0.72);
  color: var(--accent);
}

.profile-contact__icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.profile-contact strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.profile-contact--email strong {
  white-space: nowrap;
  word-break: normal;
  font-size: 0.92rem;
}

.profile-contact--stacked {
  align-content: stretch;
  gap: 0;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.profile-contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 8px;
  padding: 15px 16px 14px;
  color: var(--text);
  text-decoration: none;
  transition: background 0.22s ease;
}

.profile-contact-row strong {
  font-size: 0.88rem;
  line-height: 1.28;
  justify-self: end;
  text-align: right;
}

.profile-contact-row + .profile-contact-row {
  border-top: 1px solid rgba(141, 208, 255, 0.12);
}

.profile-contact-row:hover,
.profile-contact-row:focus-visible {
  background: rgba(255, 255, 255, 0.02);
}

.profile-contact-row--email strong {
  white-space: nowrap;
  word-break: normal;
  font-size: 0.88rem;
}

.profile-contact--socials {
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  justify-items: center;
  align-content: center;
  gap: 10px;
  min-height: 100%;
  padding: 14px 14px 12px;
  text-align: center;
}

.profile-contact--socials .profile-contact__top {
  justify-content: center;
}

.profile-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.profile-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(141, 208, 255, 0.14);
  border-radius: 15px;
  background: rgba(8, 15, 34, 0.72);
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(156, 237, 255, 0.06),
    0 12px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.profile-social-link:hover,
.profile-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(156, 237, 255, 0.24);
  color: var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(156, 237, 255, 0.1),
    0 18px 34px rgba(0, 0, 0, 0.18);
}

.profile-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}


.profile-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 18px;
}

.profile-card__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.profile-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 14px 18px 4px;
}

.profile-card__content h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3vw, 3.35rem);
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-pills a {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(144, 215, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 248, 255, 0.9);
}

.contact-panel {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(11, 23, 52, 0.96), rgba(6, 10, 22, 0.92)),
    url("negocio.jpeg") center/cover no-repeat;
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(118, 219, 255, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(3, 8, 20, 0.15), rgba(3, 8, 20, 0.55));
  pointer-events: none;
}

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

.contact-panel h2 {
  margin-top: 18px;
  max-width: 17ch;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
}

.site-footer__meta {
  margin: 0;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(144, 215, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #0a1020;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(118, 219, 255, 0.22);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

@media (max-width: 1100px) {
  .split-layout,
  .about-grid,
  .profile-card,
  .profile-showcase,
  .profile-band {
    grid-template-columns: 1fr;
  }

  .profile-band__content {
    padding: 0;
    align-content: start;
  }

  .profile-band__visuals {
    align-items: center;
    justify-content: center;
  }

  .profile-band__contacts {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card--visual .service-overview__copy h3 {
    white-space: normal;
  }

  .profile-contact--socials {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

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

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stack-card--offset {
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: 100%;
    padding: 14px 20px 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    background: linear-gradient(180deg, rgba(4, 9, 21, 0.92), rgba(4, 9, 21, 0.76));
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(130, 199, 255, 0.12);
  }

  .site-header.is-scrolled {
    padding-top: 14px;
    padding-bottom: 10px;
  }

  .site-header.is-scrolled .brand-mark__logo--header {
    width: 114px;
    height: 84px;
  }

  .site-header.is-scrolled .site-nav {
    gap: 10px;
    font-size: 1rem;
  }

  .site-header.is-scrolled .brand-mark__logo--header,
  .site-header.is-scrolled .header-cta,
  .site-header.is-scrolled .site-nav {
    transform: none;
  }

  .brand-mark {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding-top: 6px;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(145, 214, 255, 0.12);
    border-radius: 18px;
    background: rgba(10, 18, 40, 0.78);
    text-align: center;
  }

  .site-nav a::after {
    content: none;
  }

  .header-cta {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .site-header.menu-open .header-cta {
    display: inline-flex;
  }

  .hero {
    width: var(--container);
    padding-top: 40px;
    min-height: auto;
  }

  .hero__content {
    max-width: none;
    padding-right: 0;
  }

  .hero-panel {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 22px;
    padding: 30px 24px;
  }

  .hero-panel__visual {
    justify-self: end;
    margin-right: 0;
    width: min(100%, 332px);
    height: auto;
    min-height: 0;
    animation-duration: 8s;
  }

  .ticker__marquee {
    mask-image: none;
  }

  .ticker__track {
    flex-wrap: nowrap;
    animation-duration: 30s;
  }

  .ticker__item {
    scroll-snap-align: unset;
  }

  .portrait-card {
    grid-column: 1 / -1;
  }

  .services-grid {
    gap: 18px;
  }

  .profile-band {
    padding: 20px;
  }

  .profile-band::before {
    background:
      linear-gradient(180deg, rgba(6, 11, 24, 0.96) 0%, rgba(6, 11, 24, 0.9) 58%, rgba(6, 11, 24, 0.94) 100%),
      url("logotech.jpeg") right -18px bottom / 300px auto no-repeat;
    opacity: 0.32;
  }

  .profile-band__contacts {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .profile-contact--socials {
    width: 100%;
    justify-self: stretch;
  }

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

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

  .service-card--overview {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy"
      "points";
    row-gap: 10px;
    padding: 18px;
  }

  .service-overview__top {
    margin: 0;
    padding: 0 10px 10px;
  }

  .service-overview__copy h3 {
    max-width: none;
  }

  .service-overview__copy {
    padding-right: 60px;
  }

  .service-overview__media {
    aspect-ratio: 1.24 / 1;
    min-height: 0;
    padding: 8px;
  }

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

  .site-footer {
    justify-content: center;
    flex-direction: column;
  }

  .site-footer__meta {
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 26px, 100%);
  }

  .site-header {
    width: 100%;
    padding: 12px 14px 10px;
    gap: 12px;
  }

  .site-header.is-scrolled {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .site-header.is-scrolled .brand-mark__logo--header {
    width: 88px;
    height: 66px;
  }

  .brand-mark__logo--header {
    width: 88px;
    height: 66px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2 {
    font-size: clamp(1.82rem, 7.8vw, 2.45rem);
    line-height: 1.06;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8.2vw, 2.75rem);
    line-height: 1.04;
  }

  .hero-line {
    white-space: normal;
  }

  .hero-panel {
    padding: 24px 18px;
    border-radius: 30px;
  }

  .hero-panel::before {
    background:
      linear-gradient(90deg, rgba(11, 23, 52, 0.99) 0%, rgba(7, 14, 32, 0.97) 44%, rgba(7, 14, 32, 0.8) 70%, rgba(7, 14, 32, 0.34) 100%),
      linear-gradient(180deg, rgba(11, 23, 52, 0.96), rgba(6, 10, 22, 0.92));
  }

  .hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      linear-gradient(180deg, rgba(7, 14, 32, 0.08) 0%, rgba(7, 14, 32, 0.16) 34%, rgba(7, 14, 32, 0.34) 66%, rgba(7, 14, 32, 0.7) 100%),
      linear-gradient(90deg, rgba(7, 14, 32, 0.92) 0%, rgba(7, 14, 32, 0.84) 42%, rgba(7, 14, 32, 0.46) 72%, rgba(7, 14, 32, 0.08) 100%),
      radial-gradient(circle at 42% 36%, rgba(118, 219, 255, 0.16), transparent 26%),
      url("logotech.jpeg") 51% 55% / 146% auto no-repeat;
    opacity: 0.34;
    pointer-events: none;
    z-index: 0;
  }

  .hero .eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 9px 12px;
    border-color: rgba(141, 208, 255, 0.14);
    background: rgba(8, 15, 34, 0.94);
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
    backdrop-filter: none;
  }

  .eyebrow--hero {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 4px;
    column-gap: 0;
  }

  .eyebrow--hero-row {
    justify-content: center;
    gap: 0.4em;
    white-space: nowrap;
  }

  .eyebrow--hero-row--full {
    width: 100%;
    justify-content: center;
  }

  .eyebrow--hero-row--full::before {
    content: none;
  }

  .ticker__marquee {
    overflow: hidden;
    padding: 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .ticker__marquee::-webkit-scrollbar {
    display: none;
  }

  .ticker__track {
    --marquee-shift: 8px;
    gap: 14px;
    animation: values-scroll 28s linear infinite;
  }

  .ticker__heading {
    margin-bottom: 14px;
  }

  .ticker__item {
    min-width: 144px;
    min-height: 88px;
    padding: 14px 12px;
    border-radius: 18px;
  }

  .ticker__item img {
    max-width: 144px;
    max-height: 48px;
  }

  .hero-panel__visual {
    display: none;
  }

  .hero__actions,
  .contact-panel__actions {
    flex-direction: column;
  }

  .profile-band {
    padding: 18px;
    border-radius: 28px;
  }

  .profile-band::before {
    background:
      linear-gradient(180deg, rgba(6, 11, 24, 0.97) 0%, rgba(6, 11, 24, 0.92) 62%, rgba(6, 11, 24, 0.95) 100%),
      url("logotech.jpeg") center bottom / 240px auto no-repeat;
    opacity: 0.24;
  }

  .profile-band__visuals {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
  }

  .profile-band__portrait {
    max-width: 320px;
  }

  .profile-contact-row {
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 10px;
  }

  .profile-contact-row strong {
    justify-self: start;
    text-align: left;
  }

  .button {
    width: 100%;
  }

  .hero__lead-line {
    display: inline;
    white-space: normal;
  }

  .hero__lead-line + .hero__lead-line::before {
    content: " ";
  }

  .hero__lead-line + .hero__lead-line {
    margin-top: 0;
  }

  .hero__lead,
  .section-heading p,
  .about-card p,
  .reason-card p,
  .contact-panel p,
  .value-card p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .about-card,
  .values-panel {
    padding: 24px 20px;
  }

  .about-heading-line {
    white-space: normal;
  }

  .values-marquee {
    overflow: hidden;
    padding-bottom: 0;
    mask-image: none;
  }

  .values-marquee::-webkit-scrollbar {
    display: none;
  }

  .values-marquee__track {
    animation: values-scroll 28s linear infinite;
  }

  .value-card {
    flex-basis: min(76vw, 252px);
    min-height: 172px;
  }

  .reason-card {
    padding: 24px 20px;
  }

  .service-card--overview {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy"
      "points";
    padding: 16px 14px;
    row-gap: 10px;
  }

  .service-overview__top {
    gap: 12px;
    margin: 0;
    padding: 0 8px 8px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .service-icon svg {
    width: 22px;
    height: 22px;
  }

  .service-overview__copy h3 {
    font-size: clamp(1.5rem, 6.6vw, 1.9rem);
    line-height: 1.05;
  }

  .service-overview__copy {
    padding-right: 56px;
  }

  .service-overview__media {
    aspect-ratio: 1.2 / 1;
    border-radius: 20px;
    padding: 6px;
  }

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

  .profile-card {
    padding: 14px;
  }

  .profile-card__media img {
    min-height: 360px;
  }

  .sm-card--profile {
    width: min(100%, 340px);
  }

  .sm-card--profile img {
    min-height: 280px;
  }

  .contact-panel {
    padding: 26px 20px;
  }

  .contact-panel h2 {
    max-width: none;
  }
}

@media (min-width: 641px) and (max-width: 900px) and (orientation: landscape) {
  .hero-panel {
    position: relative;
    overflow: hidden;
  }

  .hero-panel::before {
    background:
      linear-gradient(90deg, rgba(11, 23, 52, 0.99) 0%, rgba(7, 14, 32, 0.96) 40%, rgba(7, 14, 32, 0.78) 68%, rgba(7, 14, 32, 0.24) 100%),
      linear-gradient(180deg, rgba(11, 23, 52, 0.96), rgba(6, 10, 22, 0.92));
  }

  .hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      linear-gradient(180deg, rgba(7, 14, 32, 0.06) 0%, rgba(7, 14, 32, 0.14) 36%, rgba(7, 14, 32, 0.3) 66%, rgba(7, 14, 32, 0.62) 100%),
      linear-gradient(90deg, rgba(7, 14, 32, 0.9) 0%, rgba(7, 14, 32, 0.8) 40%, rgba(7, 14, 32, 0.34) 70%, rgba(7, 14, 32, 0.04) 100%),
      radial-gradient(circle at 58% 42%, rgba(118, 219, 255, 0.16), transparent 24%),
      url("logotech.jpeg") 76% 52% / 52% auto no-repeat;
    opacity: 0.34;
    pointer-events: none;
    z-index: 0;
  }

  .hero__content {
    position: relative;
    z-index: 1;
    max-width: none;
  }

  .hero-panel__visual {
    display: none;
  }
}

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

  .ticker__track,
  .values-marquee__track {
    animation: none;
  }
}
.privacy-section {
  padding-top: 72px;
}

.privacy-card {
  max-width: 900px;
  padding: clamp(28px, 4vw, 46px);
}

.privacy-card h3 {
  margin: 32px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--text);
}

.privacy-card h3:first-child {
  margin-top: 0;
}

.privacy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.privacy-card a:not(.button) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-back {
  margin-top: 34px;
}
