@font-face {
  font-family: "Canicule Display";
  src:
    url("assets/fonts/CaniculeDisplay-Regular.woff2") format("woff2"),
    url("assets/fonts/CaniculeDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Canicule Display";
  src:
    url("assets/fonts/CaniculeDisplay-Bold.woff2") format("woff2"),
    url("assets/fonts/CaniculeDisplay-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --soft-section: #f8f5f5;
  --pale-grey: #f3ebeb;
  --text: #101827;
  --muted: #756a6a;
  --primary-blue: #e2483d;
  --bright-blue: #f15a4f;
  --deep-blue: #bf2f28;
  --soft-cyan: #ff8a80;
  --border-grey: #e4d7d7;
  --shadow: 0 24px 80px rgba(226, 72, 61, 0.08);
  --shadow-soft: 0 16px 40px rgba(80, 24, 24, 0.06);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --wrap: min(1280px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 52%, #f8fafc 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 24, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.03) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  pointer-events: none;
  z-index: -3;
}

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

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

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(241, 90, 79, 0.16) 0%,
      rgba(226, 72, 61, 0.1) 24%,
      rgba(255, 138, 128, 0.06) 42%,
      rgba(255, 255, 255, 0) 72%
    );
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.25s ease;
  filter: blur(18px);
  opacity: 0.9;
  will-change: transform;
}

.site-shell {
  width: var(--wrap);
  margin: 0 auto;
  padding: 26px 0 72px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(216, 220, 227, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  color: var(--muted);
  font-size: 0.98rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bright-blue), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.header-cta {
  border: 1px solid rgba(226, 72, 61, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 245, 245, 0.9));
  box-shadow: 0 10px 24px rgba(226, 72, 61, 0.08);
  font-weight: 700;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  padding: 56px 0 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: center;
}

.hero-tags,
.eyebrow {
  margin: 0 0 20px;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.hero-title {
  margin: 0;
  font-family: "Canicule Display", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}


.hero-title span {
  display: block;
}

.hero-title .accent,
.hero-title em {
  color: var(--primary-blue);
  font-style: normal;
}

.hero-title strong {
  font-weight: 800;
}

.split-line {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.hero-description,
.section-copy p,
.section-heading p,
.service-card p,
.project-copy p,
.project-copy h3,
.process-card p,
.about-copy p,
.about-meta span,
.contact-copy p,
.footer-copy p {
  color: var(--muted);
}

.hero-description {
  max-width: 62ch;
  margin: 28px 0 0;
  font-size: 1.06rem;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--bright-blue), var(--deep-blue));
  box-shadow: 0 20px 40px rgba(226, 72, 61, 0.22);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.hero-stats article,
.service-card,
.process-card,
.about-panel,
.contact-panel,
.site-footer {
  border: 1px solid rgba(216, 220, 227, 0.86);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-stats article {
  padding: 20px;
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 760px;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.tech-canvas {
  position: relative;
  height: 100%;
  min-height: 760px;
  border: 1px solid rgba(216, 220, 227, 0.7);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.88)),
    radial-gradient(circle at center, rgba(226, 72, 61, 0.08), transparent 56%);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.tech-canvas > * {
  position: absolute;
  transition: transform 0.16s linear;
  will-change: transform;
}

.orb {
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08) 18%, transparent 28%),
    radial-gradient(circle at 68% 72%, rgba(140, 20, 20, 0.18), transparent 34%),
    linear-gradient(145deg, #ff7a70 0%, #f04f43 42%, #d73d35 74%, #c92d27 100%);
  box-shadow:
    inset -24px -24px 48px rgba(161, 19, 19, 0.18),
    inset 18px 18px 32px rgba(255, 255, 255, 0.18),
    0 30px 50px rgba(201, 45, 39, 0.18);
  opacity: 0.92;
}

.orb::before {
  content: "";
  position: absolute;
  inset: 12% 12% auto auto;
  width: 34%;
  height: 34%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
  opacity: 0.5;
}

.orb::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 22%;
  height: 16%;
  border-radius: 50%;
  background: rgba(160, 32, 28, 0.08);
  filter: blur(4px);
  transform: rotate(-8deg);
}

.orb-large {
  left: 18%;
  top: 42%;
  width: 160px;
  height: 160px;
  animation: orbFloatLarge 8s ease-in-out infinite;
}

.orb-small {
  top: 10%;
  left: 6%;
  width: 86px;
  height: 86px;
  animation: orbFloatSmall 6.5s ease-in-out infinite;
}

.grid-lines {
  inset: 10% 8% auto auto;
  width: 78%;
  height: 72%;
  border-radius: 26px;
  border: 1px solid rgba(226, 72, 61, 0.1);
  background-image:
    linear-gradient(rgba(226, 72, 61, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 72, 61, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.55;
}

.ring {
  border-radius: 50%;
  border: 1px solid rgba(241, 90, 79, 0.22);
}

.ring-one {
  top: 10%;
  right: 8%;
  width: 180px;
  height: 180px;
  box-shadow: inset 0 0 0 18px rgba(241, 90, 79, 0.05);
}

.ring-two {
  left: 8%;
  bottom: 12%;
  width: 124px;
  height: 124px;
  box-shadow: inset 0 0 0 12px rgba(255, 138, 128, 0.07);
}

.node-map {
  top: 14%;
  left: 9%;
  width: 170px;
  height: 120px;
}

.node-map::before,
.node-map::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 72, 61, 0.1), rgba(255, 138, 128, 0.42));
}

.node-map::before {
  top: 35px;
}

.node-map::after {
  top: 82px;
}

.node-map span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-blue), var(--soft-cyan));
  box-shadow: 0 0 20px rgba(241, 90, 79, 0.35);
}

.node-map span:nth-child(1) {
  top: 29px;
  left: 14px;
}

.node-map span:nth-child(2) {
  top: 76px;
  left: 78px;
}

.node-map span:nth-child(3) {
  top: 29px;
  right: 8px;
}

.panel {
  border: 1px solid rgba(216, 220, 227, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 50px rgba(226, 72, 61, 0.1);
}

.panel-main {
  top: 26%;
  left: 12%;
  width: 54%;
  padding: 18px;
}

.panel-top {
  display: flex;
  gap: 8px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(226, 72, 61, 0.16);
}

.panel-body {
  margin-top: 18px;
}

.line {
  height: 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 72, 61, 0.12), rgba(255, 138, 128, 0.42));
}

.line.long {
  width: 82%;
}

.line.short {
  width: 54%;
}

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

.signal-row div {
  height: 72px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(226, 72, 61, 0.12), rgba(255, 138, 128, 0.04)),
    var(--white);
  border: 1px solid rgba(216, 220, 227, 0.8);
}

.panel-float {
  top: 20%;
  right: 11%;
  padding: 18px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-blue);
}

.logo-orb {
  right: 12%;
  bottom: 15%;
  width: 220px;
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 242, 247, 0.9));
  box-shadow: 0 30px 80px rgba(226, 72, 61, 0.12);
}

.logo-orb img {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(226, 72, 61, 0.18));
}

.micro-dots {
  right: 18%;
  top: 38%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(241, 90, 79, 0.48) 1.1px, transparent 1.1px);
  background-size: 18px 18px;
  opacity: 0.6;
}

.layer-slow {
  animation: floatSlow 8s ease-in-out infinite;
}

.layer-mid {
  animation: floatMid 6.5s ease-in-out infinite;
}

.layer-fast {
  animation: floatFast 5.5s ease-in-out infinite;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.scroll-indicator i {
  position: relative;
  width: 28px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(16, 24, 39, 0.18);
}

.scroll-indicator i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bright-blue);
  transform: translateX(-50%);
  animation: scrollDot 1.5s ease-in-out infinite;
}

.section {
  margin-top: 32px;
  padding: 42px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Canicule Display", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.14;
  letter-spacing: -0.020em;
}


.section-copy p:last-child,
.section-heading p,
.about-copy p,
.contact-copy p {
  max-width: 62ch;
  margin-top: 18px;
  line-height: 1.8;
}

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

.service-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.service-card span,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(226, 72, 61, 0.1), rgba(255, 138, 128, 0.12));
  color: var(--primary-blue);
  font-weight: 800;
}

.service-card h3,
.process-card h3,
.project-copy h3 {
  margin: 18px 0 10px;
  font-size: 1.34rem;
  line-height: 1.25;
}

.service-card p,
.process-card p,
.project-copy h3 {
  line-height: 1.7;
}

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

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

.project-card {
  border: 1px solid var(--border-grey);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 90, 79, 0.34);
  box-shadow: 0 24px 50px rgba(241, 90, 79, 0.12);
}

.project-mockup {
  position: relative;
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 247, 0.92));
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.project-copy {
  padding: 22px;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 210px;
}

.project-copy p {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

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

.process-card {
  padding: 22px;
  border-radius: 24px;
}

.about-panel,
.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.contact-panel {
  position: relative;
  overflow: visible;
  margin-top: 72px;
}

.contact-orb {
  position: absolute;
  right: 64px;
  top: -54px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08) 18%, transparent 28%),
    radial-gradient(circle at 68% 72%, rgba(140, 20, 20, 0.18), transparent 34%),
    linear-gradient(145deg, #ff7a70 0%, #f04f43 42%, #d73d35 74%, #c92d27 100%);
  box-shadow:
    inset -16px -16px 32px rgba(161, 19, 19, 0.18),
    inset 14px 14px 22px rgba(255, 255, 255, 0.18),
    0 24px 40px rgba(201, 45, 39, 0.16);
  opacity: 0.92;
  animation: orbFloatSmall 7s ease-in-out infinite;
}

.about-meta {
  display: grid;
  gap: 18px;
  min-width: 300px;
}

.about-meta div {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(216, 220, 227, 0.76);
  background: rgba(246, 248, 251, 0.88);
}

.about-meta span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-meta strong {
  line-height: 1.5;
}

.contact-details {
  display: grid;
  gap: 12px;
  min-width: 290px;
}

.contact-details a {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(216, 220, 227, 0.78);
  background: rgba(246, 248, 251, 0.92);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-details a:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 90, 79, 0.28);
  box-shadow: 0 16px 30px rgba(241, 90, 79, 0.08);
}

.gallery-shell {
  padding-bottom: 56px;
}

.gallery-hero {
  padding: 46px 0 18px;
  max-width: 860px;
}

.gallery-title {
  margin: 0;
  font-family: "Canicule Display", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.gallery-lead {
  max-width: 64ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.04rem;
}

.gallery-section {
  padding: 22px 0 10px;
}

.gallery-grid {
  display: grid;
  gap: 20px;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(216, 220, 227, 0.86);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 90, 79, 0.28);
  box-shadow: 0 24px 50px rgba(241, 90, 79, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 251, 0.95));
}

.gallery-grid-logo .gallery-card img {
  object-fit: contain;
  padding: 28px;
}

.gallery-card-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.gallery-card-copy span {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.gallery-card-copy h3 {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 24px;
  position: relative;
  overflow: visible;
}

.footer-logo {
  width: 108px;
  object-fit: contain;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.social-ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.06) 18%, transparent 28%),
    linear-gradient(145deg, #ff7a70 0%, #f04f43 42%, #d73d35 74%, #c92d27 100%);
  box-shadow:
    inset -8px -8px 18px rgba(161, 19, 19, 0.18),
    inset 8px 8px 18px rgba(255, 255, 255, 0.16),
    0 12px 24px rgba(201, 45, 39, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-ball:hover {
  transform: translateY(-4px);
  box-shadow:
    inset -8px -8px 18px rgba(161, 19, 19, 0.18),
    inset 8px 8px 18px rgba(255, 255, 255, 0.16),
    0 18px 30px rgba(201, 45, 39, 0.22);
}

.social-ball svg {
  width: 19px;
  height: 19px;
  fill: #ffffff;
}

.footer-credit-link {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-credit-link:hover {
  color: var(--primary-blue);
}

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

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

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0);
  }

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

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

  50% {
    transform: translate3d(0, -16px, 0) scale(1.02);
  }
}

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

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

@keyframes floatMid {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes floatFast {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes scrollDot {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateX(-50%) translateY(16px);
    opacity: 0.2;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .site-header,
  .hero-grid,
  .section-intro,
  .about-panel,
  .contact-panel,
  .portfolio-grid,
  .process-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 30px;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-visual,
  .tech-canvas {
    min-height: 620px;
  }

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

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

  .about-meta,
  .contact-details {
    min-width: 0;
  }

  .footer-socials {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 100%);
    padding-top: 14px;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 20px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .split-line {
    gap: 8px;
  }

  .hero-stats,
  .service-list {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .tech-canvas {
    min-height: 500px;
  }

  .contact-orb {
    right: 24px;
    top: -46px;
    width: 96px;
    height: 96px;
  }

  .gallery-grid-web,
  .gallery-grid-logo {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 26px 0;
  }

  .gallery-title {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
    line-height: 1.02;
  }

  .gallery-card img {
    height: 200px;
  }

  .site-footer {
    justify-items: start;
  }

  .footer-socials {
    justify-self: start;
  }
}
