:root {
  --bg: #f6f6f4;
  --white: #ffffff;
  --mist: #ecedea;
  --graphite: #1a1a1a;
  --slate: #5f6670;

  --brand: #d91f2e;
  --brand-soft: #f04c5e;

  --web: #ff6b57;
  --platforms: #4a90e2;
  --mvp: #ffb547;
  --immersive: #7a5cfa;
  --branding: #f57ba8;

  --shadow: 0 20px 60px rgba(16, 24, 40, 0.08);
  --line: rgba(17, 17, 17, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--graphite);
  background:
    radial-gradient(circle at top left, rgba(217, 31, 46, 0.06), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(74, 144, 226, 0.07), transparent 16%),
    radial-gradient(circle at 85% 80%, rgba(122, 92, 250, 0.06), transparent 20%),
    linear-gradient(180deg, #fcfcfb 0%, var(--bg) 100%);
  overflow-x: hidden;
  position: relative;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 0.5px, transparent 0.5px);
  background-size: 12px 12px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
  z-index: 0;
}

.bg-blur {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.bg-blur-red {
  width: 260px;
  height: 260px;
  background: rgba(217, 31, 46, 0.08);
  top: 3%;
  left: -4%;
}

.bg-blur-blue {
  width: 320px;
  height: 320px;
  background: rgba(74, 144, 226, 0.07);
  top: 18%;
  right: -8%;
}

.bg-blur-violet {
  width: 280px;
  height: 280px;
  background: rgba(122, 92, 250, 0.07);
  bottom: 8%;
  right: -6%;
}

.container-shell {
  width: min(1180px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 16px;
}

.nav-bar {
  min-height: 76px;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

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

.nav-menu a {
  font-size: 0.94rem;
  font-weight: 600;
  color: #2d3642;
  transition: 0.25s ease;
}

.nav-menu a:hover {
  color: var(--brand);
}

.nav-button {
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 100%);
  color: white !important;
  box-shadow: 0 12px 30px rgba(217, 31, 46, 0.15);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #111111;
  border-radius: 999px;
}

.hero-section {
  padding: 66px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 34px;
  align-items: center;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: #37414c;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.white-pill {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(2.3rem, 4.3vw, 4rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.05em;
  max-width: 760px;
}

.hero-copy h1 span {
  display: block;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--web) 50%, var(--immersive) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn-primary,
.btn-secondary,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 100%);
  color: white;
  box-shadow: 0 16px 28px rgba(217, 31, 46, 0.14);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-white:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--graphite);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.btn-white {
  background: white;
  color: var(--graphite);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.stat-card,
.info-card,
.process-card,
.contact-copy,
.contact-form,
.palette-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.stat-card {
  padding: 18px;
  border-radius: 24px;
}

.stat-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 260px 205px;
  gap: 16px;
}

.mosaic-card,
.service-tile {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.mosaic-main {
  grid-row: 1 / span 2;
}

.mosaic-wide {
  grid-column: 1 / -1;
  min-height: 205px;
}

.mosaic-small {
  min-height: 180px;
}

.mosaic-gradient,
.tile-gradient {
  position: absolute;
  inset: 0;
}

.gradient-brand {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.32), transparent 18%),
    linear-gradient(135deg, #c61625 0%, var(--brand) 42%, var(--brand-soft) 100%);
}

.gradient-web {
  background:
    radial-gradient(circle at 75% 18%, rgba(255,255,255,0.25), transparent 18%),
    linear-gradient(135deg, #ff5f4a 0%, var(--web) 100%);
}

.gradient-platforms {
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,0.22), transparent 18%),
    linear-gradient(135deg, #2d78d8 0%, var(--platforms) 100%);
}

.gradient-mvp {
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,0.34), transparent 18%),
    linear-gradient(135deg, #ffd387 0%, var(--mvp) 100%);
}

.gradient-immersive {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.24), transparent 18%),
    linear-gradient(135deg, #6644f7 0%, var(--immersive) 100%);
}

.gradient-branding {
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,0.24), transparent 18%),
    linear-gradient(135deg, #ef6c99 0%, var(--branding) 100%);
}

.gradient-soft {
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.55), transparent 20%),
    linear-gradient(135deg, #ffffff 0%, #ffe8ec 34%, #eef2ff 100%);
}

.mosaic-content,
.tile-copy {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 2;
}

.mosaic-content span,
.tile-copy span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mosaic-content h3,
.tile-copy h3 {
  font-size: 1.18rem;
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 92%;
}

.light {
  color: white;
}

.dark {
  color: var(--graphite);
}

.cap-strip {
  padding: 6px 0 26px;
}

.cap-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  row-gap: 10px;
  color: #7a828f;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cap-track span:not(:last-child)::after {
  content: "•";
  margin-left: 16px;
  color: #b0b6bf;
}

.track-brand { color: var(--brand); }
.track-web { color: var(--web); }
.track-platforms { color: var(--platforms); }
.track-mvp { color: #c98800; }
.track-immersive { color: var(--immersive); }
.track-branding { color: var(--branding); }
.track-neutral { color: #7a828f; }

.section-block {
  padding: 78px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.56), rgba(255,255,255,0.3));
  border-top: 1px solid rgba(17, 17, 17, 0.04);
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}

.pt-small {
  padding-top: 16px;
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.positioning-copy h2,
.contact-copy h2 {
  margin-top: 16px;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.section-head p,
.positioning-copy p,
.contact-copy p {
  margin-top: 16px;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
}

.service-mosaic {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.service-tile {
  min-height: 270px;
}

.service-tile-large {
  grid-row: 1 / span 2;
  min-height: 556px;
}

.positioning-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.feature-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: #303744;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
  flex-shrink: 0;
}

.dot-brand { background: var(--brand); }
.dot-web { background: var(--web); }
.dot-platforms { background: var(--platforms); }
.dot-mvp { background: var(--mvp); }
.dot-immersive { background: var(--immersive); }
.dot-branding { background: var(--branding); }

.positioning-cards {
  display: grid;
  gap: 16px;
}

.info-card,
.process-card,
.contact-copy,
.contact-form {
  padding: 24px;
  border-radius: 26px;
}

.info-card span,
.process-card span {
  display: inline-block;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-card h3,
.process-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.info-card p,
.process-card p {
  margin-top: 10px;
  color: var(--slate);
  line-height: 1.65;
  font-size: 0.96rem;
}

.palette-section {
  padding-top: 24px;
}

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

.palette-card {
  padding: 18px;
  border-radius: 24px;
}

.palette-swatch {
  height: 78px;
  border-radius: 18px;
  margin-bottom: 14px;
}

.palette-brand { background: linear-gradient(135deg, var(--brand), var(--brand-soft)); }
.palette-web { background: linear-gradient(135deg, #ff5f4a, var(--web)); }
.palette-platforms { background: linear-gradient(135deg, #2d78d8, var(--platforms)); }
.palette-mvp { background: linear-gradient(135deg, #ffd387, var(--mvp)); }
.palette-immersive { background: linear-gradient(135deg, #6644f7, var(--immersive)); }
.palette-branding { background: linear-gradient(135deg, #ef6c99, var(--branding)); }

.palette-card h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.palette-card p {
  margin-top: 8px;
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.6;
}

.process-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cta-banner {
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22), transparent 16%),
    linear-gradient(135deg, var(--brand) 0%, var(--web) 50%, var(--immersive) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 24px 60px rgba(217, 31, 46, 0.18);
}

.cta-banner h2 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.04em;
  max-width: 820px;
}

.contact-points {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.contact-points div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.contact-points strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 600;
}

.contact-points span {
  display: block;
  margin-top: 7px;
  color: var(--slate);
  line-height: 1.55;
  font-size: 0.93rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.input-group label {
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2f3743;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  font: inherit;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--graphite);
  padding: 16px;
  outline: none;
  transition: 0.25s ease;
}

.input-group textarea {
  resize: vertical;
  min-height: 150px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #9aa2ad;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: rgba(217, 31, 46, 0.24);
  box-shadow: 0 0 0 4px rgba(217, 31, 46, 0.08);
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #39414d;
  font-weight: 600;
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: var(--brand);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 1100px) {
  .hero-grid,
  .positioning-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-mosaic,
  .palette-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-tile-large {
    grid-row: auto;
    min-height: 330px;
  }
}

@media (max-width: 820px) {
  .hero-stats,
  .form-grid,
  .process-row,
  .service-mosaic,
  .hero-mosaic,
  .palette-grid {
    grid-template-columns: 1fr;
  }

  .hero-mosaic {
    grid-template-rows: auto;
  }

  .mosaic-main,
  .mosaic-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .cta-banner,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding-top: 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 100%;
    padding: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.28s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section-head h2,
  .positioning-copy h2,
  .contact-copy h2,
  .cta-banner h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .brand-logo {
    height: 36px;
  }

  .footer-logo {
    height: 30px;
  }
}
