/* Developer City — static full site (aligned with React theme) */

:root {
  --bg: hsl(0 0% 4%);
  --surface: hsl(0 0% 8%);
  --text: hsl(0 0% 100%);
  --muted: hsl(0 0% 64%);
  --primary: hsl(88 53% 47%);
  --primary-dim: hsl(88 53% 47% / 0.1);
  --border: hsl(0 0% 14%);
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Outfit", var(--font);
  --nav-h: 5rem;
  --wrap: min(112rem, 100% - 3rem);
  --hero-p: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

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

.text-primary {
  color: var(--primary);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: hsl(0 0% 0% / 0.7);
  backdrop-filter: blur(16px);
  border-bottom-color: hsl(0 0% 100% / 0.1);
}

.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .nav__logo img {
    height: 3rem;
  }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  background: none;
  border: none;
  color: hsl(0 0% 100% / 0.8);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.25rem 0;
  position: relative;
}

.nav__link:hover {
  color: var(--text);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: none;
  background: hsl(0 0% 100% / 0.1);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.nav__lang:hover {
  background: hsl(0 0% 100% / 0.18);
}

.nav__cta {
  display: none;
  font-size: 0.875rem;
  padding: 0.5rem 1.1rem;
}

@media (min-width: 768px) {
  .nav__cta {
    display: inline-flex;
  }
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid hsl(0 0% 100% / 0.1);
  border-radius: 0.5rem;
  background: hsl(0 0% 100% / 0.05);
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
}

@media (min-width: 1024px) {
  .nav__burger {
    display: none;
  }
}

@media (max-width: 1023px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: hsl(0 0% 4% / 0.97);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 2rem;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    border-bottom: 1px solid var(--border);
    height: auto;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }

  .nav__links.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    text-align: left;
    padding: 1rem 0;
    border-bottom: 1px solid hsl(0 0% 100% / 0.08);
    font-size: 1.05rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--primary);
  color: #0a0a0a;
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: hsl(0 0% 100% / 0.1);
  color: var(--text);
  border: 1px solid hsl(0 0% 100% / 0.2);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: hsl(0 0% 100% / 0.18);
}

.btn--block {
  width: 100%;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.btn--whatsapp:hover {
  background: #22c55e;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(0 0% 0% / 0.6), hsl(0 0% 0% / 0.5), var(--bg));
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(hsl(88 53% 47% / 0.1) 1px, transparent 1px),
    linear-gradient(90deg, hsl(88 53% 47% / 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid hsl(88 53% 47% / 0.35);
  background: hsl(88 53% 47% / 0.1);
  border-radius: 999px;
}

.hero__title {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin: 0 auto 3rem;
  max-width: 48rem;
  font-size: 1rem;
  color: hsl(0 0% 100% / 0.7);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.125rem;
  }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.45);
}

.hero__scroll:hover {
  color: var(--primary);
}

.hero__scroll-icon {
  font-size: 1.25rem;
  animation: none;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* Premium scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(10px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform, filter;
}

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

/* Subtle premium text shift as you scroll */
.hero__badge,
.hero__title,
.hero__subtitle,
.hero__ctas {
  transform: translateY(calc(var(--hero-p) * 14px));
  opacity: calc(1 - (var(--hero-p) * 0.18));
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .marquee__track {
    animation: none !important;
  }
}

/* Sections */
.wrap {
  width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section--services,
.section--products {
  background: var(--bg);
}

.section--about,
.section--clients,
.section--contact {
  background: var(--surface);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(88 53% 47% / 0.35), transparent);
}

.section--clients::before,
.section--about::before,
.section--contact::before {
  background: linear-gradient(90deg, transparent, hsl(0 0% 100% / 0.12), transparent);
}

.section__glow {
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: hsl(88 53% 47% / 0.06);
  filter: blur(48px);
  pointer-events: none;
}

.section__glow--tr {
  top: -5rem;
  right: -5rem;
}

.section__glow--bl {
  bottom: -5rem;
  left: -5rem;
}

.section__glow--tl {
  top: 20%;
  left: -5rem;
}

.section__glow--br {
  bottom: 20%;
  right: -5rem;
}

.section__head {
  text-align: center;
  margin-bottom: 4rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section__lead {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.7;
}

.section__lead--left {
  margin-left: 0;
}

/* Services grid */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

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

.service-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid hsl(0 0% 100% / 0.05);
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: hsl(88 53% 47% / 0.45);
  transform: translateY(-4px);
}

.service-card__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom right, hsl(88 53% 47% / 0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover .service-card__glow {
  opacity: 1;
}

.service-card__inner {
  position: relative;
  z-index: 1;
}

.service-card__cat {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(88 53% 47% / 0.1);
  border: 1px solid hsl(88 53% 47% / 0.25);
  color: var(--primary);
}

.service-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.service-card__desc {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.service-card__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.service-card__cta:hover {
  text-decoration: underline;
}

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about__visual {
  position: relative;
  order: 2;
}

@media (min-width: 1024px) {
  .about__visual {
    order: 1;
  }
}

.about__badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  z-index: 3;
  padding: 1rem 1.25rem;
  background: var(--primary);
  color: #0a0a0a;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px hsl(0 0% 0% / 0.35);
  text-align: center;
}

@media (min-width: 768px) {
  .about__badge {
    top: 2rem;
    right: -2rem;
  }
}

.about__badge-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.8rem;
  font-weight: 600;
}

.about__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about__img {
    height: 500px;
  }
}

.about__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--surface), transparent);
  pointer-events: none;
}

.about__deco {
  position: absolute;
  inset: -0.5rem;
  border: 2px solid hsl(88 53% 47% / 0.35);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__text {
  order: 1;
}

@media (min-width: 1024px) {
  .about__text {
    order: 2;
  }
}

.about__sub {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.about__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about__li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: hsl(0 0% 100% / 0.85);
}

.about__check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: hsl(88 53% 47% / 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Products */
.products {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

@media (min-width: 768px) {
  .products {
    gap: 8rem;
  }
}

.product-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-row {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .product-row--rev .product-row__media {
    order: 2;
  }

  .product-row--rev .product-row__body {
    order: 1;
  }
}

.product-row__imgwrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid hsl(0 0% 100% / 0.1);
  background: var(--surface);
}

/* Premium reveal for projects */
.reveal .product-row__imgwrap {
  opacity: 0.85;
  transform: translateY(18px) scale(0.985);
  filter: blur(7px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform, filter;
}

.product-row.is-visible .product-row__imgwrap {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal .product-row__body {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 750ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.product-row.is-visible .product-row__body {
  opacity: 1;
  transform: translateY(0);
}

.product-row__imgwrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (min-width: 768px) {
  .product-row__imgwrap img {
    height: 380px;
  }
}

.product-row__imgwrap:hover img {
  transform: scale(1.04);
}

.product-row__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(0 0% 0% / 0.55), transparent);
  pointer-events: none;
}

.product-row__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
}

.product-row__eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product-row__body h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 500;
}

.product-row__body p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.product-row__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid;
}

.product-row__link:hover {
  filter: brightness(1.1);
}

/* Marquee */
.marquee {
  overflow: hidden;
  margin-top: 1rem;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 4rem;
  padding: 1.5rem 0;
  animation: marquee-l 40s linear infinite;
}

.marquee__track--reverse {
  animation-name: marquee-r;
}

@keyframes marquee-l {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-r {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.marquee__item {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee__item:hover {
  opacity: 1;
  filter: grayscale(0);
}

.marquee__item img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid hsl(0 0% 100% / 0.05);
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.testimonial-card:hover {
  border-color: hsl(88 53% 47% / 0.35);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(88 53% 47% / 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.testimonial-card__quote::before {
  content: '"';
}

.testimonial-card__text {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: hsl(0 0% 100% / 0.92);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid hsl(88 53% 47% / 0.35);
}

.testimonial-card__author strong {
  display: block;
  font-weight: 600;
}

.testimonial-card__author span {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Contact */
.contact {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.contact__rows {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.contact__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: inherit;
}

.contact__row:hover .contact__value {
  color: var(--primary);
}

.contact__row--static {
  cursor: default;
}

.contact__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(88 53% 47% / 0.1);
  border: 1px solid hsl(88 53% 47% / 0.25);
  font-size: 1.1rem;
}

.contact__label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact__value {
  display: block;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact__form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid hsl(0 0% 100% / 0.1);
}

.form__grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__form label {
  display: block;
}

.contact__form label span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  color: var(--text);
  background: transparent;
  border: 1px solid hsl(0 0% 100% / 0.12);
  border-radius: 0.75rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: hsl(88 53% 47% / 0.65);
  box-shadow: 0 0 0 1px hsl(88 53% 47% / 0.35);
}

.contact__form textarea {
  resize: vertical;
  min-height: 8rem;
}

.form__status {
  margin: 1rem 0 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--primary);
  text-align: center;
}

/* Social */
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social__link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(0 0% 100% / 0.05);
  border: 1px solid hsl(0 0% 100% / 0.1);
  color: hsl(0 0% 100% / 0.7);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.social__link:hover {
  color: var(--primary);
  border-color: hsl(88 53% 47% / 0.35);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  border-top: 1px solid hsl(0 0% 100% / 0.1);
  background: var(--bg);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__desc {
  margin: 1.5rem 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 28rem;
}

.footer__h {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav li {
  margin-bottom: 0.65rem;
}

.footer__nav a {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer__nav a:hover {
  color: var(--primary);
}

.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer__contact a:hover {
  color: var(--primary);
}

.footer__bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  border-top: 1px solid hsl(0 0% 100% / 0.1);
  font-size: 0.875rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .footer__bar {
    flex-direction: row;
  }
}

.footer__rights {
  margin: 0;
}

.footer__crafted {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
