:root {
  --ink: #101214;
  --muted: #5e6673;
  --paper: #f7f4ef;
  --white: #ffffff;
  --line: rgba(16, 18, 20, 0.12);
  --charcoal: #17191c;
  --teal: #00a896;
  --coral: #ff6f59;
  --gold: #f5b942;
  --sky: #4c8df6;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(16, 18, 20, 0.14);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(0, 168, 150, 0.08), transparent 34%),
    linear-gradient(245deg, rgba(255, 111, 89, 0.1), transparent 32%),
    var(--paper);
}

body.page-home {
  background:
    linear-gradient(115deg, rgba(247, 244, 239, 0.96), rgba(247, 244, 239, 0.86) 45%, rgba(247, 244, 239, 0.62)),
    url("assets/w.jpg") center / cover fixed no-repeat;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  padding-top: 76px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 239, 0.84);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.nav::before {
  content: "1       0          1    0          1\A    0            1        0       1\A  1      0                1      0\A       0      1          0        1";
  position: absolute;
  inset: 6px 0 0 0;
  display: block;
  width: 100%;
  color: rgba(0, 168, 150, 0.2);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.92em;
  white-space: pre;
  overflow: hidden;
  pointer-events: none;
  filter: blur(0.1px);
  animation: binary-float 18s ease-in-out infinite;
}

.nav::after {
  content: "0          1      0             1\A      1      0          1        0\A   0             1      0           1\A        1          0       1";
  position: absolute;
  inset: 13px 0 0 0;
  display: block;
  width: 100%;
  color: rgba(0, 168, 150, 0.13);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 1.15em;
  white-space: pre;
  overflow: hidden;
  pointer-events: none;
  animation: binary-float-alt 24s ease-in-out infinite;
}

.nav__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 168, 150, 0.28);
  transition: transform 220ms ease;
}

.brand:hover img {
  transform: rotate(-6deg) scale(1.05);
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a,
.nav__cta,
.menu-toggle {
  min-height: 42px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-weight: 800;
  font-size: 0.92rem;
  color: #262a30;
}

.nav__links a:hover,
.nav__links a.active {
  background: rgba(16, 18, 20, 0.08);
}

.nav__cta {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 168, 150, 0.25);
}

.nav__links .nav__cta,
.nav__links .nav__cta:hover,
.nav__links .nav__cta.active {
  background: var(--teal);
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  width: 46px;
  padding: 0;
  gap: 5px;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding: 54px 0 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #23312f;
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--teal);
  border-radius: 99px;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.lead {
  max-width: 690px;
  color: #343b45;
  font-size: clamp(1.04rem, 2vw, 1.26rem);
  line-height: 1.68;
}

.hero__actions,
.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(16, 18, 20, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(16, 18, 20, 0.22);
}

.button--light {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  inset: 3%;
  border: 1px solid rgba(16, 18, 20, 0.14);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
  top: 16%;
  left: 8%;
}

.orbit::after {
  width: 14px;
  height: 14px;
  background: var(--teal);
  top: auto;
  left: auto;
  right: 16%;
  bottom: 9%;
}

.circuit-field {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 22%, rgba(16, 18, 20, 0.12) 22.4% 22.8%, transparent 23.2%),
    radial-gradient(circle at 50% 50%, transparent 0 36%, rgba(0, 168, 150, 0.24) 36.3% 36.9%, transparent 37.2%),
    radial-gradient(circle at 50% 50%, transparent 0 49%, rgba(16, 18, 20, 0.12) 49.3% 49.8%, transparent 50.2%),
    radial-gradient(circle at 50% 50%, rgba(0, 168, 150, 0.18), transparent 46%),
    radial-gradient(circle at 50% 50%, rgba(255, 111, 89, 0.16), transparent 64%);
  box-shadow: inset 0 0 0 1px rgba(16, 18, 20, 0.08);
  animation: pulse-field 5.8s ease-in-out infinite;
}

.circuit-field::before,
.circuit-field::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 2px solid rgba(16, 18, 20, 0.16);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: spin 14s linear infinite reverse;
}

.circuit-field::after {
  inset: 28%;
  border-color: rgba(0, 168, 150, 0.32);
  border-right-color: transparent;
  border-top-color: transparent;
  transform: rotate(22deg);
  animation-duration: 9s;
  animation-direction: normal;
}

.node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 10px rgba(16, 18, 20, 0.08);
  animation: float-node 3.6s ease-in-out infinite;
}

.node--a {
  left: 22%;
  top: 22%;
  background: var(--teal);
}

.node--b {
  right: 18%;
  top: 34%;
  background: var(--coral);
  animation-delay: -0.8s;
}

.node--c {
  left: 34%;
  bottom: 18%;
  background: var(--sky);
  animation-delay: -1.4s;
}

.node--d {
  right: 30%;
  bottom: 30%;
  background: var(--gold);
  animation-delay: -2.1s;
}

.device {
  position: relative;
  width: min(100%, 430px);
  background: #15181c;
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.device__screen {
  min-height: 560px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(0, 168, 150, 0.22), transparent 42%),
    linear-gradient(315deg, rgba(255, 111, 89, 0.22), transparent 34%),
    #fdfaf5;
  overflow: hidden;
  padding: 24px;
}

.app-mark {
  width: 86px;
  height: 86px;
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(0, 168, 150, 0.28);
  margin-bottom: 26px;
}

.terminal {
  background: #111316;
  color: #dffcf6;
  border-radius: var(--radius);
  padding: 18px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.65;
}

.terminal b {
  color: var(--gold);
  font-weight: 700;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.metric {
  min-height: 92px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 18, 20, 0.1);
  padding: 14px;
}

.metric strong {
  display: block;
  font-size: 1.6rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.section {
  padding: 86px 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section__head p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: 0 8px 28px rgba(16, 18, 20, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(16, 18, 20, 0.13);
  border-color: rgba(0, 168, 150, 0.28);
}

.card--dark {
  color: var(--white);
  background: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.08);
}

.card p,
.feature-list li,
.timeline p {
  color: var(--muted);
  line-height: 1.68;
}

.card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.icon-tile {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(0, 168, 150, 0.12);
  color: #007d70;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease;
}

.card:hover .icon-tile {
  transform: rotate(-5deg) scale(1.06);
  background: rgba(0, 168, 150, 0.18);
}

.brand-logo,
.service-logo {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.brand-logo img {
  width: min(100%, 190px);
  height: auto;
  object-fit: contain;
}

.brand-logo--cloudflare {
  min-height: 62px;
}

.service-logo {
  min-height: 76px;
  padding: 12px;
  border-radius: var(--radius);
  background: transparent;
}

.service-logo img {
  width: min(100%, 240px);
  height: auto;
  object-fit: contain;
}

.service-card--cloudflare {
  position: relative;
}

.service-card--cloudflare .icon-tile {
  position: absolute;
  top: 22px;
  left: 26px;
  z-index: 2;
  margin: 0;
}

.service-card--cloudflare .service-logo {
  min-height: 66px;
  margin-top: -10px;
  margin-bottom: 12px;
  padding: 0 0 0 38px;
}

.showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.showcase__panel {
  min-height: 460px;
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(0, 168, 150, 0.16), transparent 40%),
    linear-gradient(320deg, rgba(76, 141, 246, 0.18), transparent 35%),
    var(--charcoal);
  color: var(--white);
  padding: clamp(28px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.showcase__panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -76px;
  bottom: -82px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: spin 12s linear infinite;
}

.showcase__panel p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.code-window {
  background: #0d0f12;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  color: #e9fff9;
  font-family: "SFMono-Regular", Consolas, monospace;
  line-height: 1.7;
  overflow: auto;
}

.code-window span {
  color: var(--teal);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  padding: 10px 12px;
  font-weight: 850;
  color: #303741;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tag:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 111, 89, 0.35);
  background: rgba(255, 255, 255, 0.86);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  padding-left: 28px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.section--art,
.visual-split--robot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.section--art {
  padding: clamp(42px, 7vw, 86px);
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center bottom;
}

.section--mountains {
  background-image:
    linear-gradient(90deg, rgba(247, 244, 239, 0.96) 0%, rgba(247, 244, 239, 0.9) 44%, rgba(247, 244, 239, 0.62) 100%),
    url("assets/System76-Fractal_Mountains-by_Kate_Hazen_of_System76.png");
}

.section--potential {
  background-image:
    linear-gradient(90deg, rgba(247, 244, 239, 0.95) 0%, rgba(247, 244, 239, 0.84) 48%, rgba(247, 244, 239, 0.52) 100%),
    url("assets/System76-Unleash_Your_Robot-by_Kate_Hazen_of_System76.png");
  background-position: center;
}

.visual-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.visual-split--robot {
  min-height: 500px;
  padding: clamp(34px, 6vw, 68px);
  background:
    linear-gradient(90deg, rgba(247, 244, 239, 0.96) 0%, rgba(247, 244, 239, 0.88) 42%, rgba(247, 244, 239, 0.18) 100%),
    url("assets/System76-Robot-by_Kate_Hazen_of_System76.png") center bottom / cover no-repeat;
}

.page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 46px;
  position: relative;
  isolation: isolate;
}

.page-hero h1 {
  max-width: 980px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  border-left: 3px solid var(--teal);
  padding: 6px 0 6px 22px;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease;
}

.timeline article:hover {
  transform: translateX(6px);
  border-color: var(--coral);
}

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

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

.form label {
  display: grid;
  gap: 8px;
  color: #2e353e;
  font-weight: 850;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: 14px;
  color: var(--ink);
  font: inherit;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(0, 168, 150, 0.55);
  box-shadow: 0 12px 28px rgba(0, 168, 150, 0.12);
}

.page-services .icon-tile {
  animation: service-tick 3s ease-in-out infinite;
}

.page-services .card:nth-child(2n) .icon-tile {
  animation-delay: -0.8s;
}

.page-services .feature-list li::before {
  animation: service-dot 2.4s ease-in-out infinite;
}

.section--art,
.visual-split--robot {
  animation: none;
}

.page-projects .showcase__panel {
  animation: project-panel-glow 5s ease-in-out infinite;
}

.page-projects .code-window {
  animation: code-scan 4.5s ease-in-out infinite;
}

.page-projects .project-actions .button {
  animation: project-button-ready 3.6s ease-in-out infinite;
}

.page-projects .project-actions .button:nth-child(2) {
  animation-delay: -0.7s;
}

.page-projects .project-actions .button:nth-child(3) {
  animation-delay: -1.4s;
}

.page-about .timeline article::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 14px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(0, 168, 150, 0.12);
  animation: build-step 2.8s ease-in-out infinite;
}

.page-about .timeline article:nth-child(2)::before {
  animation-delay: -0.7s;
}

.page-about .timeline article:nth-child(3)::before {
  animation-delay: -1.4s;
}

.page-about .card--dark .app-mark {
  animation: mark-hover 4s ease-in-out infinite;
}

.page-contact .contact-panel .card--dark {
  animation: contact-breathe 5s ease-in-out infinite;
}

.page-contact {
  background:
    linear-gradient(115deg, rgba(247, 244, 239, 0.94), rgba(247, 244, 239, 0.82) 45%, rgba(247, 244, 239, 0.58)),
    url("assets/contct.jpg") center / cover fixed no-repeat;
}

.page-services {
  background:
    linear-gradient(115deg, rgba(247, 244, 239, 0.94), rgba(247, 244, 239, 0.84) 48%, rgba(247, 244, 239, 0.64)),
    url("assets/p.jpg") center / cover fixed no-repeat;
}

.page-projects {
  background:
    linear-gradient(115deg, rgba(247, 244, 239, 0.94), rgba(247, 244, 239, 0.84) 48%, rgba(247, 244, 239, 0.62)),
    url("assets/proj.jpg") center / cover fixed no-repeat;
}

.page-about {
  background:
    linear-gradient(115deg, rgba(247, 244, 239, 0.95), rgba(247, 244, 239, 0.84) 48%, rgba(247, 244, 239, 0.58)),
    url("assets/System76-Fractal_Mountains-by_Kate_Hazen_of_System76.png") center bottom / cover fixed no-repeat;
}

.page-privacy,
.page-terms {
  background:
    linear-gradient(115deg, rgba(247, 244, 239, 0.95), rgba(247, 244, 239, 0.86) 48%, rgba(247, 244, 239, 0.68)),
    url("assets/qw.jpg") center / cover fixed no-repeat;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.legal-layout {
  padding-top: 24px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
}

.legal-card h2 {
  margin-top: 30px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.legal-card a {
  color: #007d70;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 168, 150, 0.2), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(76, 141, 246, 0.14), transparent 32%),
    #101214;
  color: var(--white);
  margin-top: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral), var(--sky));
}

.footer::after {
  content: "01 10 11 00 01 10 01 11";
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(0, 168, 150, 0.13);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.36em;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 800;
}

.footer__links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer__links a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 150, 0.42);
  background: rgba(0, 168, 150, 0.12);
  color: var(--white);
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
}

.footer__contact a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.footer__contact a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 150, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.contact-link span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  background: currentColor;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-link--email span {
  background: #667eea;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-link--phone span {
  background: #f5b942;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-link--whatsapp span {
  background: #25d366;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-link--instagram span {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcaf45);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z'/%3E%3C/svg%3E") center / contain no-repeat;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-field {
  0%,
  100% {
    transform: scale(0.98);
    filter: saturate(1);
  }

  50% {
    transform: scale(1.03);
    filter: saturate(1.25);
  }
}

@keyframes float-node {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(8px, -12px, 0) scale(1.12);
  }
}

@keyframes service-tick {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-4px) rotate(-4deg);
  }
}

@keyframes service-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@keyframes media-drift {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes binary-float {
  0%,
  100% {
    transform: translate3d(-0.8%, -2px, 0);
    opacity: 0.45;
  }

  50% {
    transform: translate3d(0.8%, 3px, 0);
    opacity: 0.9;
  }
}

@keyframes binary-float-alt {
  0%,
  100% {
    transform: translate3d(0.8%, 3px, 0);
    opacity: 0.4;
  }

  50% {
    transform: translate3d(-0.8%, -2px, 0);
    opacity: 0.75;
  }
}

@keyframes project-panel-glow {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(16, 18, 20, 0.07);
  }

  50% {
    box-shadow: 0 22px 58px rgba(76, 141, 246, 0.18);
  }
}

@keyframes code-scan {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.12);
  }

  50% {
    border-color: rgba(0, 168, 150, 0.42);
  }
}

@keyframes project-button-ready {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes build-step {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(0, 168, 150, 0.12);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(0, 168, 150, 0.03);
  }
}

@keyframes mark-hover {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes contact-breathe {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(16, 18, 20, 0.07);
  }

  50% {
    box-shadow: 0 22px 58px rgba(255, 111, 89, 0.14);
  }
}

@keyframes sync-card {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes stack-chip {
  0%,
  100% {
    transform: translateY(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 920px) {
  .nav {
    overflow: visible;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav__links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav__links {
    display: flex;
  }

  .nav__links a,
  .nav__cta {
    justify-content: flex-start;
  }

  .hero,
  .showcase,
  .split,
  .contact-panel,
  .visual-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .section__head {
    display: block;
  }

  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .section--art,
  .visual-split--robot {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .nav__inner,
  .hero,
  .section,
  .page-hero,
  .footer__inner {
    width: min(100% - 22px, var(--max));
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2.7rem, 18vw, 4.6rem);
  }

  .device {
    width: 100%;
    transform: none;
  }

  .device__screen {
    min-height: 470px;
    padding: 18px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .section--art,
  .visual-split--robot {
    min-height: 360px;
    padding: 26px;
  }

  .footer__inner {
    display: grid;
  }
}
