:root {
  --ink: #090e16;
  --ink-soft: #111a29;
  --orange: #ee6221;
  --paper: #f4f4f2;
  --muted: #a7adba;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 28%, rgba(238, 98, 33, 0.12), transparent 24rem),
    linear-gradient(135deg, #070b12 0%, var(--ink) 54%, #0d1522 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  min-height: 100svh;
  width: min(100% - 3rem, 1200px);
  margin-inline: auto;
  padding: 3rem 0 2rem;
  flex-direction: column;
}

.language-switch {
  display: flex;
  align-self: flex-end;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 0.15rem;
  background: rgba(255, 255, 255, 0.035);
}

.language-switch a,
.language-switch span {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  place-items: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  color: var(--paper);
  outline: none;
}

.language-switch [aria-current="page"] {
  color: var(--paper);
  background: var(--orange);
}

.page__grid {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.hero {
  max-width: 650px;
}

.eyebrow {
  display: flex;
  margin: 0 0 1.6rem;
  align-items: center;
  gap: 0.75rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.5rem;
  height: 2px;
  background: var(--orange);
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.intro {
  max-width: 590px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.status {
  display: inline-flex;
  margin-top: 2.25rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  gap: 0.65rem;
  color: #d9dde5;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status__pulse {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(238, 98, 33, 0.7);
  animation: pulse 2s infinite;
}

.contact-links {
  display: flex;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-links a {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  outline: none;
  transform: translateY(-2px);
}

.contact-links .whatsapp-button {
  border-color: #25d366;
  color: #07120b;
  background: #25d366;
}

.contact-links .whatsapp-button:hover,
.contact-links .whatsapp-button:focus-visible {
  border-color: #43e27d;
  color: #07120b;
  background: #43e27d;
}

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

.brand-visual::before,
.brand-visual::after {
  position: absolute;
  z-index: 0;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange));
  content: "";
  transform-origin: right center;
}

.brand-visual::before {
  top: 29%;
  right: 3%;
  transform: rotate(-24deg);
}

.brand-visual::after {
  right: 4%;
  bottom: 28%;
  transform: rotate(22deg);
}

.node {
  position: absolute;
  z-index: 1;
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(238, 98, 33, 0.08);
}

.node--one {
  top: 20%;
  right: 8%;
}

.node--two {
  right: 1%;
  bottom: 20%;
}

.node--three {
  top: 47%;
  left: 0;
}

.brand-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 2rem 1.8rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.1rem;
  background: rgba(17, 26, 41, 0.76);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  transform: rotate(2deg);
}

.brand-card::before {
  position: absolute;
  top: -1px;
  left: 2rem;
  width: 4rem;
  height: 3px;
  background: var(--orange);
  content: "";
}

.brand-crop {
  position: relative;
  width: 100%;
  aspect-ratio: 4.27 / 1;
  overflow: hidden;
}

.brand-crop img {
  position: absolute;
  top: -50.8%;
  left: -23.1%;
  width: 139%;
  max-width: none;
}

.brand-card p {
  margin: 1.15rem 0 0.2rem;
  color: #d7dbe3;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-transform: uppercase;
}

.brand-card strong {
  color: var(--orange);
}

.footer {
  display: flex;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  color: #737b89;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(238, 98, 33, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(238, 98, 33, 0);
  }
}

@media (max-width: 820px) {
  .page {
    width: min(100% - 2rem, 620px);
    padding-top: 2.2rem;
  }

  .page__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 5.5rem);
  }

  .brand-visual {
    min-height: 390px;
  }
}

@media (max-width: 480px) {
  .brand-visual {
    min-height: 340px;
  }

  .brand-card {
    padding: 1rem 1rem 1.25rem;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-links a {
    text-align: center;
  }

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

@media (prefers-reduced-motion: reduce) {
  .status__pulse {
    animation: none;
  }
}
