:root {
  color-scheme: dark;
  --ink: #080808;
  --ink-soft: #141414;
  --paper: #f7f7f2;
  --muted: #c8c8bd;
  --line: rgba(247, 247, 242, 0.2);
  --flame: #d71920;
  --gold: #f5c542;
  --aqua: #00a99d;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --header-height: 83px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--ink);
  color: var(--paper);
}

main {
  padding-top: var(--header-height);
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(8, 8, 8, 0.76);
  border-bottom: 1px solid rgba(247, 247, 242, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 84px;
  height: 84px;
  overflow: hidden;
  border: 2px solid rgba(245, 197, 66, 0.8);
  border-radius: 50%;
  background: #fff;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
  color: rgba(247, 247, 242, 0.88);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

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

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

.header-socials .social-icon {
  width: 34px;
  height: 34px;
  border-color: rgba(247, 247, 242, 0.18);
  background: rgba(247, 247, 242, 0.08);
  color: var(--paper);
}

.header-socials .social-icon svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(247, 247, 242, 0.08);
  color: var(--paper);
  font: inherit;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 48px clamp(18px, 6vw, 84px) 84px;
  isolation: isolate;
}

.hero-slides,
.hero-slides img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: -3;
}

.hero-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-slide 9s infinite;
}

.hero-slides img:nth-child(1) {
  animation-delay: 0s;
}

.hero-slides img:nth-child(2) {
  animation-delay: 3s;
}

.hero-slides img:nth-child(3) {
  animation-delay: 6s;
}

@keyframes hero-slide {
  0%,
  28% {
    opacity: 1;
  }

  34%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.58) 47%, rgba(8, 8, 8, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.2) 46%, rgba(8, 8, 8, 0.7) 100%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.79rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  max-width: 14ch;
  font-size: 6.2rem;
}

h2 {
  max-width: 12ch;
  font-size: 4.5rem;
}

h3 {
  margin: 12px 0 14px;
  font-size: 1.7rem;
}

.hero-content p:not(.eyebrow),
.showcase-copy > p,
.founder-copy > p,
.contact-copy > p {
  max-width: 62ch;
  color: rgba(247, 247, 242, 0.78);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--flame);
  color: #fff;
}

.button.secondary {
  border-color: rgba(247, 247, 242, 0.44);
  background: rgba(8, 8, 8, 0.18);
  color: var(--paper);
}

.hero-status {
  position: absolute;
  right: clamp(18px, 6vw, 84px);
  bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: calc(100% - 36px);
}

.hero-status span {
  border: 1px solid rgba(247, 247, 242, 0.28);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(8, 8, 8, 0.48);
  color: rgba(247, 247, 242, 0.88);
  font-size: 0.88rem;
}

.service-strip,
.showcase,
.founder,
.contact-section {
  padding: clamp(64px, 10vw, 126px) clamp(18px, 6vw, 84px);
}

.service-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(8, 8, 8, 0.24), rgba(8, 8, 8, 0.34));
  color: var(--paper);
  isolation: isolate;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 36px;
  text-align: center;
}

.section-heading h2 {
  margin-inline: auto;
}

.service-strip .eyebrow,
.contact-section .eyebrow {
  color: var(--flame);
}

.service-strip .eyebrow {
  color: var(--gold);
}

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

.service-card {
  min-height: 290px;
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  box-shadow: 0 18px 44px rgba(8, 8, 8, 0.08);
}

.service-card p {
  color: #42423b;
  line-height: 1.7;
}

.service-card h3 {
  color: var(--ink);
}

.service-number {
  color: var(--aqua);
  font-weight: 900;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #10100f;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.stats div {
  border-top: 2px solid var(--gold);
  padding-top: 14px;
}

.stats dt {
  font-size: 2.6rem;
  font-weight: 900;
}

.stats dd {
  margin: 6px 0 0;
  color: rgba(247, 247, 242, 0.68);
}

.image-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(180px, 260px));
  gap: 14px;
}

.image-grid figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink-soft);
}

.image-grid .image-large {
  grid-row: span 2;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.founder {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  overflow: hidden;
  background: #080808;
  isolation: isolate;
}

.founder::before,
.founder::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.founder::before {
  top: 12%;
  left: -48%;
  width: min(540px, 72vw);
  height: min(270px, 34vw);
  background:
    radial-gradient(ellipse at 52% 50%, rgba(245, 197, 66, 0.34) 0 8%, transparent 16%),
    conic-gradient(from 230deg at 48% 52%, transparent 0deg, rgba(215, 25, 32, 0.22) 22deg, rgba(245, 197, 66, 0.18) 42deg, transparent 70deg),
    conic-gradient(from 55deg at 51% 54%, transparent 0deg, rgba(215, 25, 32, 0.2) 24deg, rgba(245, 197, 66, 0.16) 46deg, transparent 76deg),
    linear-gradient(100deg, transparent 0 20%, rgba(215, 25, 32, 0.16) 38%, rgba(245, 197, 66, 0.1) 52%, transparent 76%);
  clip-path: polygon(0 52%, 22% 38%, 43% 10%, 51% 39%, 72% 6%, 62% 48%, 100% 53%, 63% 62%, 78% 94%, 51% 68%, 28% 96%, 39% 62%);
  filter: blur(10px);
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(-4deg) scale(0.94);
  animation: phoenix-pass 10s ease-in-out infinite;
}

.founder::after {
  inset: -20%;
  background:
    radial-gradient(circle at 18% 78%, rgba(215, 25, 32, 0.16), transparent 28%),
    radial-gradient(circle at 78% 26%, rgba(245, 197, 66, 0.1), transparent 26%),
    linear-gradient(115deg, transparent 15%, rgba(215, 25, 32, 0.1) 17%, transparent 21%, transparent 58%, rgba(245, 197, 66, 0.08) 60%, transparent 64%);
  opacity: 0.72;
  animation: fire-rays-pulse 4.8s ease-in-out infinite alternate;
}

@keyframes phoenix-pass {
  0% {
    opacity: 0;
    transform: translate3d(0, 12%, 0) rotate(-8deg) scale(0.88);
  }

  14% {
    opacity: 0.2;
  }

  45% {
    opacity: 0.28;
    transform: translate3d(85vw, -6%, 0) rotate(3deg) scale(1.02);
  }

  70%,
  100% {
    opacity: 0;
    transform: translate3d(145vw, 8%, 0) rotate(8deg) scale(0.96);
  }
}

@keyframes fire-rays-pulse {
  from {
    opacity: 0.42;
    transform: translate3d(0, 1%, 0) scale(1);
  }

  to {
    opacity: 0.74;
    transform: translate3d(0, -1%, 0) scale(1.04);
  }
}

.founder-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(247, 247, 242, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.founder-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: clamp(10px, 3vw, 28px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border-left: 4px solid var(--aqua);
  padding: 10px 0 10px 16px;
  color: rgba(247, 247, 242, 0.86);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--paper);
  color: var(--ink);
}

.contact-copy p {
  color: #4a4a43;
}

.social-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 8, 8, 0.16);
  border-radius: 8px;
  padding: 0;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.social-icon svg,
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-icon:hover,
.social-icon:focus-visible,
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.social-icon.facebook:hover,
.social-icon.facebook:focus-visible {
  border-color: #1877f2;
  background: #1877f2;
  color: #fff;
}

.social-icon.instagram:hover,
.social-icon.instagram:focus-visible {
  border-color: #d62976;
  background: #d62976;
  color: #fff;
}

.social-icon.whatsapp-link:hover,
.social-icon.whatsapp-link:focus-visible {
  border-color: #1ebe5d;
  background: #1ebe5d;
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: #fff;
  box-shadow: 0 18px 44px rgba(8, 8, 8, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: #2c2c28;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 8, 8, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  background: #f4f4ef;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 169, 157, 0.28);
  border-color: var(--aqua);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 6vw, 84px);
  background: #050505;
  color: rgba(247, 247, 242, 0.74);
}

.site-footer p {
  margin: 0;
}

.webstage-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 247, 242, 0.78);
}

.webstage-brand strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.webstage-brand img {
  width: 150px;
  max-height: 44px;
  object-fit: contain;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 56px;
  padding: 0;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1ebe5d;
}

.response-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 48px 18px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.28), transparent 42%),
    linear-gradient(315deg, rgba(0, 169, 157, 0.2), transparent 48%),
    #080808;
}

.response-panel {
  width: min(760px, 100%);
  border: 1px solid rgba(247, 247, 242, 0.18);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 58px);
  background: rgba(8, 8, 8, 0.86);
  box-shadow: var(--shadow);
}

.response-panel h1 {
  max-width: 11ch;
  font-size: 4.2rem;
}

.response-panel p:not(.eyebrow) {
  max-width: 56ch;
  color: rgba(247, 247, 242, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.response-panel .button {
  margin-top: 18px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  h3 {
    font-size: 1.55rem;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px clamp(18px, 5vw, 72px) 20px;
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid rgba(247, 247, 242, 0.14);
  }

  .header-socials {
    margin-left: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .service-grid,
  .showcase,
  .founder,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .founder-media {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 67px;
  }

  .site-header {
    padding-block: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding: 40px 18px 96px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .hero-content p:not(.eyebrow),
  .showcase-copy > p,
.founder-copy > p,
.contact-copy > p,
.response-panel p:not(.eyebrow) {
    font-size: 1rem;
  }

  .response-panel h1 {
    font-size: 2.8rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.68) 58%, rgba(8, 8, 8, 0.3) 100%),
      linear-gradient(0deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.26) 50%, rgba(8, 8, 8, 0.74) 100%);
  }

  .hero-status {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .image-grid .image-large {
    grid-row: auto;
  }

  .image-grid figure {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder::before,
  .founder::after {
    animation: none;
  }
}
