:root {
  --pink: #ff2d8b;
  --blue: #00a6ea;
  --orange: #ffb01f;
  --bg: #08090e;
  --bg-2: #10131a;
  --card: #161a24;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f4f6fb;
  --muted: #9aa4b8;
  --max: 1080px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(8, 9, 14, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}

.brand-logo {
  height: 56px;
  width: auto;
  max-width: min(220px, 56vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  color: #081018 !important;
  background: var(--blue);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--text);
}

.hero {
  padding: 72px 0 80px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 45, 139, 0.12), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(0, 166, 234, 0.1), transparent 28%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.lead,
.prose p,
.lead-small,
.purpose p {
  color: var(--muted);
  font-size: 1.05rem;
}

.lead {
  max-width: 38rem;
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 28px;
}

.hero-tags li {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--pink);
  color: white;
}

.btn-ghost {
  border-color: var(--line);
  background: transparent;
}

.hero-mark {
  background: #12151d;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 24px;
}

.hero-mark img {
  width: 100%;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-2);
}

.prose {
  display: grid;
  gap: 14px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.services-section {
  padding-top: 72px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 45, 139, 0.16), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(0, 166, 234, 0.14), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 176, 31, 0.08), transparent 32%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}

.services-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.service {
  position: relative;
  background: #171c28;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 22px 24px;
  min-height: 210px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
}

.service:nth-child(3n + 1)::before { background: var(--pink); }
.service:nth-child(3n + 2)::before { background: var(--blue); }
.service:nth-child(3n)::before { background: var(--orange); }

.service-featured {
  min-height: 250px;
  background: linear-gradient(180deg, #1d2433, #151924);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.service-n {
  display: block;
  color: var(--orange);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.service h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.service p {
  color: var(--muted);
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.purpose {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
}

.purpose h2 {
  margin-bottom: 14px;
}

.contact-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  margin-bottom: 28px;
}

.contact-list span {
  display: block;
  color: var(--blue);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-list a,
.contact-list address,
.contact-list p {
  font-style: normal;
  font-size: 1.05rem;
}

.map-wrap {
  margin-top: 32px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(0.2);
}

.site-footer {
  padding: 44px 0 22px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 10px;
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.site-footer p {
  color: var(--muted);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
}

.wa-float svg {
  width: 26px;
  height: 26px;
}

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

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .purpose-grid,
  .service-grid,
  .contact-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 80px 0 auto;
    background: #12151f;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 40px 0 56px;
  }

  .brand-logo {
    height: 46px;
  }

  .section {
    padding: 64px 0;
  }

  .footer-bar {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
