:root {
  --green: #00bf63;
  --green-bright: #08e078;
  --black: #080a09;
  --black-soft: #0d100f;
  --gray-900: #111513;
  --gray-800: #171b19;
  --gray-700: #282e2b;
  --gray-500: #8d9691;
  --gray-300: #c2c8c4;
  --white: #f5f7f6;
  --header-height: 76px;
  --radius: 18px;
  --transition: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Montserrat", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--black);
  background: var(--green);
}

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

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

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--green);
  font-weight: 800;
  transition: top var(--transition);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 10, 9, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  position: relative;
  z-index: 102;
  font-size: 1.17rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.logo span {
  color: var(--green);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 45px;
  height: 45px;
  padding: 11px;
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  background: rgba(17, 21, 19, 0.8);
  cursor: pointer;
  place-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  z-index: 101;
  inset: 0;
  display: flex;
  padding: 8rem 2rem 3rem;
  background: rgba(8, 10, 9, 0.98);
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.main-nav.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-link {
  position: relative;
  color: var(--gray-300);
  font-size: 1.3rem;
  font-weight: 700;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  overflow: hidden;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}

.hero-glow,
.contact-glow {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  filter: blur(130px);
  pointer-events: none;
}

.hero-glow-one {
  top: 8%;
  right: -25%;
  width: 420px;
  height: 420px;
  opacity: 0.1;
}

.hero-glow-two {
  bottom: 15%;
  left: -20%;
  width: 300px;
  height: 300px;
  opacity: 0.06;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4rem;
}

.eyebrow {
  display: flex;
  margin: 0 0 1.25rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--green);
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 11vw, 5.5rem);
  font-weight: 850;
}

h1 span,
h2 span {
  color: var(--green);
}

.hero-description {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--gray-300);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.8rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  overflow: hidden;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button svg {
  width: 19px;
  fill: currentColor;
}

.button-primary {
  color: #031109;
  background: var(--green);
  box-shadow: 0 10px 35px rgba(0, 191, 99, 0.13);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-bright);
  box-shadow: 0 12px 40px rgba(0, 191, 99, 0.28);
  transform: translateY(-3px);
}

.button-secondary {
  color: var(--white);
  border-color: var(--gray-700);
  background: rgba(17, 21, 19, 0.7);
}

.button-secondary span {
  color: var(--green);
  font-size: 1.1rem;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green);
  background: var(--gray-900);
  transform: translateY(-3px);
}

.hero-proof {
  display: flex;
  margin-top: 2.2rem;
  gap: 1.8rem;
}

.hero-proof div {
  display: grid;
  gap: 0.05rem;
}

.hero-proof div + div {
  padding-left: 1.8rem;
  border-left: 1px solid var(--gray-700);
}

.hero-proof strong {
  font-size: 0.8rem;
  letter-spacing: -0.02em;
}

.hero-proof span {
  color: var(--gray-500);
  font-size: 0.63rem;
}

.hero-visual {
  position: relative;
  min-height: 410px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 191, 99, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 340px;
  height: 340px;
}

.orbit-two {
  width: 470px;
  height: 470px;
}

.orbit-one::after,
.orbit-two::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.code-card {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(92%, 430px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(16, 20, 18, 0.82);
  box-shadow: 0 35px 80px rgba(0,0,0,.55);
  transform: translate(-50%, -50%) perspective(900px) rotateY(-7deg) rotateX(4deg);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.code-card-top,
.browser-bar {
  display: flex;
  height: 44px;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--gray-500);
  font-size: 0.63rem;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b423e;
}

.window-dots i:first-child {
  background: var(--green);
}

.code-lines {
  display: grid;
  min-height: 250px;
  padding: 2rem 1.35rem;
  font-family: Consolas, monospace;
  font-size: clamp(.7rem, 2.8vw, .93rem);
  gap: 0.75rem;
}

.code-lines span {
  white-space: nowrap;
}

.code-lines i {
  color: #6f7873;
  font-style: normal;
}

.code-lines b,
.code-lines strong {
  color: var(--green);
}

.line-2,
.line-3,
.line-4 {
  margin-left: 1.1rem;
}

.line-2,
.line-3 {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(.95rem, 4vw, 1.35rem);
  font-weight: 800;
}

.line-3 {
  margin-top: -0.8rem;
}

.line-4 {
  display: inline-block;
  width: max-content;
  margin-top: 0.5rem;
  padding: 0.42rem 0.6rem;
  border: 1px solid rgba(0,191,99,.28);
  border-radius: 4px;
  background: rgba(0,191,99,.09);
}

.code-card-footer {
  display: flex;
  padding: 0.85rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--gray-500);
  font-family: Consolas, monospace;
  font-size: 0.58rem;
  justify-content: space-between;
}

.code-card-footer span:first-child {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.code-card-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.floating-tag {
  position: absolute;
  z-index: 4;
  display: flex;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background: rgba(20, 24, 22, 0.92);
  box-shadow: 0 15px 35px rgba(0,0,0,.32);
  align-items: center;
  gap: 0.7rem;
  animation: float 4.5s ease-in-out infinite;
}

.floating-tag svg {
  width: 22px;
  fill: var(--green);
}

.floating-tag > span {
  display: grid;
  font-size: 0.68rem;
  font-weight: 800;
}

.floating-tag small {
  color: var(--gray-500);
  font-size: 0.5rem;
  font-weight: 500;
}

.tag-speed {
  top: 5%;
  right: 0;
}

.tag-conversion {
  bottom: 4%;
  left: 0;
  animation-delay: -2s;
}

.trend {
  display: grid !important;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--green);
  background: rgba(0,191,99,.12);
  font-size: 1rem !important;
  place-items: center;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 1.4rem;
  left: 50%;
  display: none;
  color: var(--gray-500);
  font-size: 0.57rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: translateX(-50%);
  align-items: center;
  gap: 0.55rem;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 38px;
  background: var(--gray-700);
  overflow: hidden;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: var(--green);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  to { top: 100%; }
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

.services {
  border-top: 1px solid rgba(255,255,255,.06);
  background: var(--black-soft);
}

.section-heading {
  display: grid;
  margin-bottom: 3rem;
  gap: 1.4rem;
}

.section-heading h2,
.about h2,
.contact h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 8vw, 4.25rem);
  font-weight: 850;
}

.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: var(--gray-500);
  font-size: 0.93rem;
}

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

.service-card {
  position: relative;
  min-height: 275px;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: var(--gray-900);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--green);
  filter: blur(60px);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(0,191,99,.48);
  background: #141917;
  transform: translateY(-6px);
}

.service-card:hover::after {
  opacity: .13;
}

.service-number {
  position: absolute;
  top: 1.3rem;
  right: 1.4rem;
  color: #414944;
  font-family: Consolas, monospace;
  font-size: 0.69rem;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 3.5rem;
  border: 1px solid rgba(0,191,99,.25);
  border-radius: 10px;
  color: var(--green);
  background: rgba(0,191,99,.08);
  place-items: center;
}

.icon-box svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card h3 {
  max-width: 220px;
  margin-bottom: 0.8rem;
  font-size: 1.26rem;
}

.service-card p {
  max-width: 270px;
  margin-bottom: 0;
  color: var(--gray-500);
  font-size: 0.84rem;
}

.card-arrow {
  position: absolute;
  right: 1.4rem;
  bottom: 1.2rem;
  color: #414944;
  font-size: 1.25rem;
  transition: color var(--transition), transform var(--transition);
}

.service-card:hover .card-arrow {
  color: var(--green);
  transform: translate(3px, -3px);
}

.projects {
  background: var(--black);
}

.section-heading-compact {
  margin-bottom: 3.5rem;
}

.projects-list {
  display: grid;
  gap: 5rem;
}

.project-card {
  display: grid;
  gap: 2rem;
}

.project-preview {
  position: relative;
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  background: #121614;
  overflow: hidden;
}

.project-preview .browser-bar {
  padding: 0 0.3rem;
  border-bottom: 0;
}

.project-preview .browser-bar > span {
  max-width: 70%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.barber-screen,
.buzios-screen {
  position: relative;
  min-height: 285px;
  padding: 1rem;
  border-radius: 10px;
  background: #090b0a;
  overflow: hidden;
}

.mini-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.mini-nav b {
  margin-right: auto;
  font-size: .55rem;
  letter-spacing: .12em;
}

.mini-nav b span {
  color: var(--green);
}

.mini-nav i {
  width: 17px;
  height: 2px;
  background: #404642;
}

.barber-content,
.buzios-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 80%;
  min-height: 240px;
  flex-direction: column;
  justify-content: center;
}

.barber-content small,
.buzios-content small {
  color: var(--green);
  font-size: .42rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.barber-content strong,
.buzios-content strong {
  margin: .5rem 0;
  font-size: clamp(1.45rem, 6vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.barber-content em,
.buzios-content em {
  color: var(--green);
  font-style: normal;
}

.barber-content p,
.buzios-content p {
  margin-bottom: 1rem;
  color: #777f7a;
  font-size: .54rem;
}

.barber-content > span,
.buzios-content > span {
  width: max-content;
  padding: .45rem .6rem;
  border-radius: 3px;
  color: #061009;
  background: var(--green);
  font-size: .42rem;
  font-weight: 900;
}

.barber-blade {
  position: absolute;
  right: -15%;
  bottom: -20%;
  width: 58%;
  height: 110%;
  opacity: .32;
  background: repeating-linear-gradient(115deg, transparent 0 15px, var(--green) 16px 17px), linear-gradient(130deg, transparent 50%, rgba(0,191,99,.3));
  transform: rotate(-10deg);
}

.buzios-screen {
  background: #0b0d16;
}

.buzios-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 26px 26px;
}

.buzios-screen .mini-nav b span,
.buzios-content small,
.buzios-content em {
  color: #a983ff;
}

.buzios-content > span {
  color: #fff;
  background: #7d4de8;
}

.buzios-shape {
  position: absolute;
  right: -15%;
  bottom: -32%;
  width: 64%;
  aspect-ratio: 1;
  border: 35px solid rgba(126,76,235,.22);
  border-radius: 42% 58% 54% 46%;
  transform: rotate(30deg);
  box-shadow: 0 0 70px rgba(126,76,235,.25);
}

.project-index {
  position: absolute;
  right: 1.5rem;
  bottom: .8rem;
  color: rgba(255,255,255,.12);
  font-size: 2.4rem;
  font-weight: 900;
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-title-row {
  display: flex;
  margin-bottom: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-700);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.project-title-row h3 {
  margin: 0;
  font-size: clamp(1.85rem, 7vw, 2.7rem);
}

.project-title-row > span {
  color: var(--green);
  font-family: Consolas, monospace;
  font-size: .58rem;
  text-transform: uppercase;
}

.project-info > p {
  color: var(--gray-500);
  font-size: .9rem;
}

.tech-list {
  display: flex;
  margin: .5rem 0 2rem;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  gap: .5rem;
}

.tech-list li {
  padding: .35rem .65rem;
  border: 1px solid var(--gray-700);
  border-radius: 100px;
  color: var(--gray-300);
  font-size: .62rem;
}

.project-link,
.text-link {
  display: inline-flex;
  width: max-content;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--green);
  font-size: .77rem;
  font-weight: 800;
  align-items: center;
  gap: .7rem;
  transition: color var(--transition), gap var(--transition);
}

.project-link span,
.text-link span {
  color: var(--green);
  font-size: 1rem;
}

.project-link:hover,
.project-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--green);
  gap: 1rem;
}

.about {
  border-top: 1px solid rgba(255,255,255,.06);
  background: var(--black-soft);
}

.about-grid {
  display: grid;
  gap: 4rem;
}

.about-visual {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: var(--gray-900);
  overflow: hidden;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.about-initials {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #151b18;
  font-size: clamp(8rem, 40vw, 16rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.12em;
  text-shadow: -1px -1px 0 rgba(0,191,99,.3), 1px 1px 0 #050605;
  transform: translate(-52%, -50%);
}

.about-frame {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(0,191,99,.35);
}

.about-frame::before,
.about-frame::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--green);
  background: var(--gray-900);
}

.about-frame::before {
  top: -5px;
  left: -5px;
}

.about-frame::after {
  right: -5px;
  bottom: -5px;
}

.about-code {
  position: absolute;
  top: 9%;
  right: 8%;
  color: var(--green);
  font-family: Consolas, monospace;
  font-weight: 700;
}

.about-label {
  position: absolute;
  right: 8%;
  bottom: 7%;
  color: var(--gray-500);
  font-size: .58rem;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.about-copy {
  align-self: center;
}

.about h2 {
  margin-bottom: 1.6rem;
}

.about-copy > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: var(--gray-300);
  font-size: .95rem;
}

.skills {
  display: flex;
  margin-bottom: 2.3rem;
  flex-wrap: wrap;
  gap: .6rem;
}

.skills span {
  padding: .55rem .8rem;
  border-left: 2px solid var(--green);
  color: var(--gray-300);
  background: var(--gray-900);
  font-family: Consolas, monospace;
  font-size: .68rem;
}

.contact {
  position: relative;
  padding: 7rem 0;
  background: #080b09;
  text-align: center;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(rgba(0,191,99,.3) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.contact-glow {
  bottom: -260px;
  left: 50%;
  width: 520px;
  height: 420px;
  opacity: .12;
  transform: translateX(-50%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .eyebrow::before {
  display: none;
}

.contact h2 {
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 2rem;
  color: var(--gray-500);
  font-size: .92rem;
}

.button-large {
  min-height: 60px;
  padding-inline: 1.5rem;
}

.contact-links {
  display: grid;
  width: 100%;
  margin-top: 3.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
  gap: 1.5rem;
}

.contact-links a {
  display: grid;
  color: var(--gray-300);
  font-size: .74rem;
  transition: color var(--transition);
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--green);
}

.contact-links span {
  margin-bottom: .3rem;
  color: var(--gray-500);
  font-size: .56rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-footer {
  height: auto;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
  background: #060706;
}

.footer-inner {
  flex-direction: column;
  gap: 1.5rem;
}

.footer-inner p {
  margin: 0;
  color: var(--gray-500);
  font-size: .66rem;
  text-align: center;
}

.back-to-top {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  color: var(--green);
  place-items: center;
  transition: border-color var(--transition), transform var(--transition);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--green);
  transform: translateY(-3px);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (min-width: 520px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .button {
    padding-inline: 1.55rem;
  }

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

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

  .footer-inner {
    flex-direction: row;
  }
}

@media (min-width: 800px) {
  :root {
    --header-height: 84px;
  }

  .container {
    width: min(100% - 4rem, 1180px);
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    flex-direction: row;
    gap: 2.2rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-link {
    font-size: .72rem;
    font-weight: 650;
  }

  .hero {
    padding-top: calc(var(--header-height) + 2rem);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr);
    align-items: center;
    gap: 2rem;
  }

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

  .hero-proof strong {
    font-size: .87rem;
  }

  .hero-proof span {
    font-size: .66rem;
  }

  .tag-speed {
    top: 12%;
  }

  .tag-conversion {
    bottom: 11%;
  }

  .section {
    padding: 8.5rem 0;
  }

  .section-heading {
    grid-template-columns: 1.5fr .7fr;
    align-items: end;
  }

  .section-heading-compact {
    grid-template-columns: 1fr;
  }

  .projects-list {
    gap: 8rem;
  }

  .project-card {
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    gap: 4rem;
  }

  .project-card-reverse {
    grid-template-columns: .75fr 1.25fr;
  }

  .project-card-reverse .project-preview {
    order: 2;
  }

  .barber-screen,
  .buzios-screen {
    min-height: 390px;
    padding: 1.5rem;
  }

  .barber-content,
  .buzios-content {
    min-height: 330px;
  }

  .about-grid {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 6rem;
  }

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

  .about-initials {
    font-size: 15rem;
  }

  .contact {
    padding: 9rem 0 7rem;
  }

  .contact-links {
    max-width: 850px;
  }
}

@media (min-width: 1060px) {
  h1 {
    font-size: clamp(4rem, 6vw, 5.35rem);
  }

  .hero-grid {
    grid-template-columns: 1.16fr .84fr;
    gap: 3rem;
  }

  .code-card {
    width: 440px;
  }

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

  .service-card {
    min-height: 330px;
    padding: 1.8rem;
  }

  .icon-box {
    margin-bottom: 5rem;
  }

  .scroll-cue {
    display: flex;
  }
}

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

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