/* sneakerdistrictltd.com sophisticated agency theme */

:root {
  --ink: #10131f;
  --ink-strong: #070914;
  --ink-soft: #1b2031;
  --paper: #f5f1e8;
  --paper-strong: #fffaf0;
  --white: #ffffff;
  --muted: #667080;
  --muted-light: rgba(255, 255, 255, 0.72);
  --line: rgba(16, 19, 31, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --lime: #b8ff3d;
  --coral: #ff7048;
  --cyan: #44d7f5;
  --violet: #8d6bff;
  --gold: #ffd166;
  --radius: 8px;
  --shadow: 0 26px 80px rgba(16, 19, 31, 0.2);
  --shell: min(1160px, calc(100% - 40px));
  --snap: cubic-bezier(0.16, 1, 0.3, 1);
  --bounce: cubic-bezier(0.2, 1.35, 0.28, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px max(20px, calc((100% - 1160px) / 2));
  color: var(--white);
}

.site-header--solid {
  position: relative;
  background:
    linear-gradient(90deg, rgba(184, 255, 61, 0.08), transparent 28%),
    linear-gradient(270deg, rgba(255, 112, 72, 0.1), transparent 26%),
    var(--ink-strong);
  border-bottom: 1px solid var(--line-light);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.brand__shoe {
  width: 48px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--lime);
  filter: drop-shadow(0 0 14px rgba(184, 255, 61, 0.3));
  transition: transform 180ms var(--bounce), filter 180ms ease;
}

.brand:hover .brand__shoe,
.footer-brand:hover .brand__shoe {
  filter: drop-shadow(0 0 18px rgba(255, 112, 72, 0.34));
  transform: rotate(-4deg) translateY(-2px);
}

.brand__text {
  display: grid;
  gap: 1px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand__text span {
  color: rgba(255, 255, 255, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--coral), var(--cyan));
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.site-nav a:not(.button):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #10131f;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 20px 48px rgba(68, 215, 245, 0.22);
  transition: transform 150ms var(--bounce), box-shadow 150ms ease, filter 150ms ease;
}

.button:hover {
  box-shadow:
    0 22px 56px rgba(68, 215, 245, 0.25),
    0 0 0 4px rgba(255, 112, 72, 0.12);
  filter: saturate(1.12);
  transform: translateY(-4px);
}

.button--small {
  min-height: 40px;
  padding: 0 16px;
}

.button--dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(16, 19, 31, 0.18);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-strong);
}

.hero__media,
.hero__shade,
.hero__texture {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: 0;
  background-image: url("assets/agency-signal-hero.png");
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  animation: hero-media-in 980ms var(--snap) 120ms both, hero-drift 9s ease-in-out 1300ms infinite alternate;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 20, 0.96) 0%, rgba(7, 9, 20, 0.86) 34%, rgba(7, 9, 20, 0.2) 78%),
    linear-gradient(180deg, rgba(7, 9, 20, 0.62) 0%, rgba(7, 9, 20, 0.18) 52%, rgba(7, 9, 20, 0.9) 100%);
}

.hero__texture {
  z-index: 2;
  background:
    linear-gradient(112deg, transparent 0 49%, rgba(184, 255, 61, 0.2) 50%, transparent 52%),
    linear-gradient(68deg, transparent 0 65%, rgba(255, 112, 72, 0.18) 66%, transparent 68%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.04) 43px 44px);
  mix-blend-mode: screen;
  opacity: 0.64;
  pointer-events: none;
  animation: texture-dash 6s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 710px;
  padding: 132px 0 78px;
}

.hero__content > * {
  opacity: 0;
  animation: copy-in 640ms var(--bounce) both;
}

.hero__content .eyebrow {
  animation-delay: 260ms;
}

.hero__content h1 {
  animation-delay: 380ms;
}

.hero__copy {
  animation-delay: 500ms;
}

.hero__actions {
  animation-delay: 620ms;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.25rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 620px;
  color: var(--muted-light);
  font-size: 1.14rem;
}

.hero__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.section {
  position: relative;
  padding: 94px 0;
  overflow: hidden;
}

.section--paper {
  background:
    linear-gradient(135deg, rgba(184, 255, 61, 0.1), transparent 26%),
    linear-gradient(315deg, rgba(141, 107, 255, 0.08), transparent 28%),
    var(--paper);
}

.section--ink {
  background:
    linear-gradient(90deg, rgba(184, 255, 61, 0.08), transparent 24%),
    linear-gradient(270deg, rgba(255, 112, 72, 0.1), transparent 26%),
    linear-gradient(180deg, var(--ink-strong), var(--ink));
  color: var(--white);
}

.section--white {
  background: var(--paper-strong);
}

.section__header {
  max-width: 760px;
  margin-bottom: 36px;
}

.section__header--split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: end;
  max-width: none;
}

.section__header p,
.page-split p,
.detail-card p,
.service-tile p,
.workflow-step p,
.partner-card p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.section--ink .section__header p,
.section--ink .service-tile p,
.section--ink .workflow-step p,
.section--ink .partner-card p,
.section--ink .eyebrow {
  color: var(--muted-light);
}

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

.service-tile,
.detail-card,
.workflow-step,
.partner-card,
.contact-form,
.legal-contact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 46px rgba(16, 19, 31, 0.08);
}

.service-tile {
  position: relative;
  min-height: 276px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  text-decoration: none;
  transition: transform 170ms var(--bounce), box-shadow 170ms ease, border-color 170ms ease;
}

.section--ink .service-tile,
.section--ink .workflow-step,
.section--ink .partner-card {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.22);
}

.service-tile::before,
.detail-card::before,
.partner-card::before {
  position: absolute;
  top: 0;
  left: -42%;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lime), var(--coral), transparent);
  content: "";
  opacity: 0;
  transform: skewX(-18deg);
}

.service-tile:hover,
.detail-card:hover,
.partner-card:hover {
  border-color: rgba(255, 112, 72, 0.4);
  box-shadow:
    0 24px 64px rgba(16, 19, 31, 0.14),
    0 0 0 4px rgba(184, 255, 61, 0.1);
  transform: translateY(-9px);
}

.service-tile:hover::before,
.detail-card:hover::before,
.partner-card:hover::before {
  opacity: 1;
  animation: shine-line 720ms ease;
}

.service-tile__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  font-weight: 900;
}

.section--ink .service-tile__index {
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime);
}

.service-tile p {
  margin-bottom: 22px;
}

.service-tile__link {
  margin-top: auto;
  color: var(--coral);
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--line-light);
}

.proof-strip__item {
  min-height: 148px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.proof-strip__item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.1rem;
}

.proof-strip__item span {
  color: var(--muted-light);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 72px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(184, 255, 61, 0.14), transparent 34%),
    linear-gradient(68deg, transparent 58%, rgba(255, 112, 72, 0.16) 59%, transparent 63%),
    linear-gradient(180deg, var(--ink-strong), var(--ink));
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--lime), var(--coral), var(--cyan), var(--violet));
  content: "";
}

.page-hero__content {
  max-width: 820px;
}

.page-hero h1 {
  font-size: 4rem;
}

.page-hero p {
  max-width: 680px;
  color: var(--muted-light);
  font-size: 1.12rem;
}

.page-split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: start;
}

.big-copy {
  color: var(--muted);
  font-size: 1.1rem;
}

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

.detail-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  transition: transform 170ms var(--bounce), box-shadow 170ms ease, border-color 170ms ease;
}

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

.timeline {
  display: grid;
  gap: 16px;
  counter-reset: timeline;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  counter-increment: timeline;
}

.timeline-step::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  content: counter(timeline, decimal-leading-zero);
  font-weight: 900;
}

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

.workflow-step {
  padding: 24px;
  transition: transform 170ms var(--bounce), border-color 170ms ease;
}

.workflow-step:hover {
  border-color: rgba(184, 255, 61, 0.46);
  transform: translateY(-7px) rotate(-0.6deg);
}

.workflow-step span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--lime);
  font-weight: 900;
}

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

.partner-card {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  padding: 26px;
  transition: transform 170ms var(--bounce), box-shadow 170ms ease, border-color 170ms ease;
}

.partner-card__name {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-bottom: 28px;
  padding: 0 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
}

.partner-card:nth-child(1) .partner-card__name {
  background: linear-gradient(135deg, rgba(184, 255, 61, 0.18), rgba(68, 215, 245, 0.14));
}

.partner-card:nth-child(2) .partner-card__name {
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.18), rgba(255, 112, 72, 0.14));
}

.partner-card:nth-child(3) .partner-card__name {
  background: linear-gradient(135deg, rgba(141, 107, 255, 0.2), rgba(68, 215, 245, 0.12));
}

.partner-note {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted-light);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 19, 31, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 112, 72, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 112, 72, 0.12);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.checkbox input {
  width: auto;
  margin-top: 5px;
  accent-color: var(--coral);
}

.form-success {
  margin: 0;
  color: #236114;
  font-weight: 900;
}

.contact-copy {
  padding-top: 12px;
}

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

.contact-card {
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--coral);
  background: rgba(255, 255, 255, 0.6);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
}

.legal-contact {
  padding: 26px;
}

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

.legal-page {
  background: var(--paper-strong);
}

.legal-content {
  max-width: 860px;
}

.legal-content section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.site-footer {
  padding: 38px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(184, 255, 61, 0.08), transparent 28%),
    linear-gradient(270deg, rgba(141, 107, 255, 0.12), transparent 28%),
    var(--ink-strong);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.motion-ready .reveal,
.motion-ready .service-tile,
.motion-ready .proof-strip__item,
.motion-ready .workflow-step,
.motion-ready .partner-card,
.motion-ready .page-split > *,
.motion-ready .detail-card,
.motion-ready .timeline-step,
.motion-ready .contact-form {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms var(--snap) var(--motion-delay, 0ms),
    transform 620ms var(--snap) var(--motion-delay, 0ms);
}

.motion-ready .service-tile:nth-child(3n + 1),
.motion-ready .page-split > *:first-child {
  transform: translateX(-34px);
}

.motion-ready .service-tile:nth-child(3n),
.motion-ready .page-split > *:last-child {
  transform: translateX(34px);
}

.motion-ready .is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes hero-media-in {
  from {
    opacity: 0;
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.03) translateX(0);
  }

  to {
    transform: scale(1.06) translateX(-1.2%);
  }
}

@keyframes texture-dash {
  from {
    transform: translateX(-1%);
  }

  to {
    transform: translateX(1.2%);
  }
}

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine-line {
  from {
    left: -42%;
  }

  to {
    left: 110%;
  }
}

@media (max-width: 1060px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero__content {
    padding-top: 176px;
  }

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

  .proof-strip,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__header--split,
  .page-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(1160px, calc(100% - 28px));
  }

  .site-header {
    padding: 16px 14px;
  }

  .brand__shoe {
    width: 42px;
    height: 34px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    opacity: 0.62;
    background-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 9, 20, 0.96), rgba(7, 9, 20, 0.72)),
      linear-gradient(180deg, rgba(7, 9, 20, 0.44), rgba(7, 9, 20, 0.94));
  }

  .hero__content {
    padding: 188px 0 72px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.55rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero__copy,
  .page-hero p {
    font-size: 1rem;
  }

  .section {
    padding: 68px 0;
  }

  .service-grid,
  .partners-grid,
  .detail-grid,
  .proof-strip,
  .workflow-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .field--full {
    grid-column: auto;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
