@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #151515;
  --paper: #f2f0e8;
  --blue: #2456f5;
  --orange: #ff6038;
  --acid: #d9ff43;
  --line: rgba(21, 21, 21, 0.18);
  --r: 22px;
  --pad: clamp(18px, 3vw, 48px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', Arial, sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
::selection {
  background: var(--acid);
  color: var(--ink);
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}
.cursor {
  width: 18px;
  height: 18px;
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
  mix-blend-mode: multiply;
}
.cursor.big {
  width: 56px;
  height: 56px;
  background: var(--orange);
}
.topbar {
  position: fixed;
  z-index: 80;
  top: 12px;
  left: var(--pad);
  right: var(--pad);
  height: 62px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: rgba(242, 240, 232, 0.82);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 18px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(20, 20, 20, 0.05);
}
.logo {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -1.4px;
}
.logo i {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 2px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.desktop-nav > a {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav > a:hover,
.desktop-nav > a.active {
  background: #fff;
}
.nav-cta {
  background: var(--ink) !important;
  color: #fff !important;
  padding: 11px 17px !important;
}
.menu-btn {
  display: none;
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 10px 13px;
}
.mobile-panel {
  display: none;
}
.page {
  min-height: 100vh;
}
.hero {
  min-height: 100svh;
  padding: 130px var(--pad) 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: currentColor;
}
.hero h1,
.page-hero h1 {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: clamp(64px, 9.2vw, 144px);
  letter-spacing: -0.075em;
  line-height: 0.79;
  margin: 25px 0 30px;
  text-transform: uppercase;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line span {
  display: block;
  animation: rise 0.85s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}
.hero h1 .line:nth-child(2) span {
  animation-delay: 0.08s;
}
.hero h1 .line:nth-child(3) span {
  animation-delay: 0.16s;
  color: var(--blue);
}
@keyframes rise {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.hero-copy {
  max-width: 530px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  margin-left: auto;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 var(--ink);
}
.btn.dark {
  background: var(--ink);
  color: #fff;
}
.btn.light {
  background: transparent;
}
.arrow {
  font-size: 20px;
}
.hero-art {
  min-height: 600px;
  height: 72vh;
  max-height: 760px;
  position: relative;
  border-radius: clamp(24px, 4vw, 56px);
  overflow: hidden;
  background: #e8e4d8;
}
.hero-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
}
.hero-sticker {
  position: absolute;
  right: 4%;
  top: 5%;
  width: 112px;
  aspect-ratio: 1;
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(9deg);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}
.scribble {
  position: absolute;
  bottom: 5%;
  left: 5%;
  background: var(--orange);
  color: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 57% 43% 52% 48%/48% 55% 45% 52%;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  font-family: 'Space Grotesk';
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.25px;
  transform: rotate(-7deg);
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.16);
  animation: stickerDrift 4s ease-in-out infinite;
}
.scribble::after {
  content: '✦';
  display: inline-block;
  margin-top: 4px;
  color: var(--acid);
  font-size: 15px;
}
@keyframes stickerDrift {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-7px);
  }
}
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--acid);
  padding: 13px 0;
  white-space: nowrap;
  transform: rotate(-1deg);
  width: 102%;
  margin-left: -1%;
}
.marquee-track {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  animation: marquee 20s linear infinite;
  font-family: 'Space Grotesk';
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 700;
  text-transform: uppercase;
}
.marquee-track span::after {
  content: '✦';
  margin-left: 26px;
  color: var(--blue);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.section {
  padding: clamp(90px, 12vw, 180px) var(--pad);
}
.section-head {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 30px;
  margin-bottom: 60px;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 700;
}
.display {
  font-family: 'Space Grotesk';
  font-size: clamp(42px, 6vw, 92px);
  letter-spacing: -0.065em;
  line-height: 0.95;
  margin: 0;
  max-width: 1100px;
}
.display em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--orange);
}
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.service {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--ink);
  border-radius: var(--r);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: 0.4s;
}
.service::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -50px;
  bottom: -90px;
  background: var(--blue);
  transition: 0.4s;
  opacity: 0.1;
}
.service:hover {
  background: #fff;
  transform: translateY(-8px);
}
.service:hover::after {
  transform: scale(2);
  opacity: 0.12;
}
.service:nth-child(2)::after {
  background: var(--orange);
}
.service:nth-child(3)::after {
  background: var(--acid);
}
.service:nth-child(4)::after {
  background: #d0a7ff;
}
.service-num {
  font-size: 12px;
  font-weight: 700;
}
.service h3 {
  font-family: 'Space Grotesk';
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0;
  max-width: 80%;
}
.service p {
  max-width: 420px;
  line-height: 1.55;
  margin: 20px 0 0;
}
.service .north {
  position: absolute;
  right: 24px;
  top: 22px;
  font-size: 30px;
  transition: 0.3s;
}
.service:hover .north {
  transform: rotate(45deg);
}
.work-section {
  background: var(--ink);
  color: #fff;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.work-card {
  min-height: 540px;
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--blue);
}
.work-card:nth-child(2) {
  background: var(--orange);
  margin-top: 120px;
}
.work-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
}
.browser {
  width: min(540px, 74vw);
  height: 300px;
  border: 1px solid #111;
  background: #f7f4eb;
  border-radius: 18px;
  box-shadow: 15px 18px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(-5deg);
  overflow: hidden;
  color: #111;
}
.browser-bar {
  height: 35px;
  border-bottom: 1px solid #111;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 0 12px;
}
.browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111;
}
.browser-body {
  height: 265px;
  display: grid;
  place-content: center;
  font-family: 'Space Grotesk';
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -5px;
}
.phone {
  width: 220px;
  height: 420px;
  border: 10px solid #111;
  border-radius: 40px;
  background: var(--acid);
  box-shadow: 16px 18px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(7deg);
  display: grid;
  place-content: center;
  color: #111;
  text-align: center;
  font-family: 'Space Grotesk';
  font-size: 40px;
  font-weight: 700;
  line-height: 0.85;
}
.work-meta {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.work-meta h3 {
  font-family: 'Space Grotesk';
  font-size: 35px;
  margin: 0;
  letter-spacing: -2px;
}
.tag {
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 8px 12px;
  font-size: 11px;
  text-transform: uppercase;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 60px;
}
.step {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}
.step b {
  font-size: 12px;
}
.step h3 {
  font-family: 'Space Grotesk';
  font-size: 26px;
  margin: 70px 0 14px;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.cta {
  padding: 30px var(--pad) var(--pad);
}
.cta-inner {
  min-height: 70vh;
  background: var(--blue);
  color: #fff;
  border-radius: clamp(25px, 4vw, 60px);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before,
.cta-inner::after {
  content: '';
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--acid);
  left: -80px;
  top: -100px;
}
.cta-inner::after {
  background: var(--orange);
  left: auto;
  top: auto;
  right: -80px;
  bottom: -120px;
}
.cta h2 {
  font-family: 'Space Grotesk';
  font-size: clamp(55px, 9vw, 140px);
  letter-spacing: -0.075em;
  line-height: 0.8;
  margin: 0 0 36px;
  position: relative;
  z-index: 1;
}
.cta .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--ink);
}
footer {
  padding: 70px var(--pad) 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-bottom: 70px;
}
.footer-title {
  font-family: 'Space Grotesk';
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.footer-links h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
}
.footer-links a {
  display: block;
  margin: 9px 0;
  font-weight: 600;
}
.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.dot-live {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #46bf6f;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 6px rgba(70, 191, 111, 0.2);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.75s,
    transform 0.75s;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
/* Inner pages */
.page-hero {
  padding: 170px var(--pad) 90px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero h1 {
  margin: 0;
  max-width: 1300px;
}
.page-hero p {
  font-size: clamp(18px, 2vw, 27px);
  max-width: 700px;
  line-height: 1.4;
  margin: 34px 0 0 auto;
}
.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 8vw, 120px);
  align-items: center;
}
.portrait {
  height: 720px;
  border-radius: 40px;
  overflow: hidden;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big-copy {
  font-family: 'Space Grotesk';
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin: 0;
}
.body-copy {
  font-size: 18px;
  line-height: 1.7;
  max-width: 650px;
  margin-top: 35px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--ink);
}
.stat {
  padding: 45px 20px;
  border-right: 1px solid var(--ink);
}
.stat:last-child {
  border: 0;
}
.stat strong {
  font-family: 'Space Grotesk';
  font-size: clamp(45px, 7vw, 100px);
  letter-spacing: -0.07em;
}
.stat span {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.value {
  min-height: 300px;
  border-radius: 25px;
  padding: 25px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.value:nth-child(2) {
  background: var(--acid);
}
.value:nth-child(3) {
  background: var(--orange);
}
.value-icon {
  font-size: 42px;
}
.value h3 {
  font: 700 30px 'Space Grotesk';
  letter-spacing: -1.5px;
  margin: 0 0 12px;
}
.value p {
  line-height: 1.55;
  margin: 0;
}
.contact-wrap {
  padding: 150px var(--pad) 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 7vw, 110px);
}
.contact-title h1 {
  font-family: 'Space Grotesk';
  font-size: clamp(60px, 8vw, 126px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  margin: 40px 0;
}
.contact-title p {
  font-size: 19px;
  line-height: 1.55;
  max-width: 540px;
}
.contact-detail {
  margin-top: 70px;
}
.contact-detail a {
  font-family: 'Space Grotesk';
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 600;
  display: block;
  margin: 10px 0;
}
.form-card {
  background: #fff;
  border-radius: 32px;
  padding: clamp(25px, 5vw, 60px);
}
.form-card h2 {
  font-family: 'Space Grotesk';
  font-size: 42px;
  letter-spacing: -2px;
  margin: 0 0 35px;
}
.field {
  margin-bottom: 24px;
}
.field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 9px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaa;
  background: transparent;
  padding: 12px 0;
  outline: 0;
  border-radius: 0;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  color: #777;
  margin-top: 18px;
}
.success {
  display: none;
  background: var(--acid);
  padding: 15px;
  border-radius: 12px;
  margin-top: 15px;
  font-weight: 700;
}
.success.show {
  display: block;
}
@media (max-width: 900px) {
  .cursor {
    display: none;
  }
  .desktop-nav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .mobile-panel {
    display: flex;
    position: fixed;
    z-index: 75;
    inset: 0;
    background: var(--acid);
    padding: 120px var(--pad) 40px;
    flex-direction: column;
    transform: translateY(-105%);
    transition: 0.5s cubic-bezier(0.75, 0, 0.2, 1);
  }
  .mobile-panel.open {
    transform: none;
  }
  .mobile-panel a {
    font: 700 14vw 'Space Grotesk';
    line-height: 1;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 115px;
  }
  .hero-art {
    height: 65vh;
    min-height: 450px;
  }
  .hero-copy {
    margin-left: 0;
  }
  .section-head,
  .about-split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .services,
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-card:nth-child(2) {
    margin-top: 0;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .portrait {
    height: 560px;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .contact-wrap {
    padding-top: 130px;
  }
  .page-hero {
    min-height: 65vh;
  }
  .page-hero p {
    margin-left: 0;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
}
@media (max-width: 560px) {
  .topbar {
    left: 12px;
    right: 12px;
  }
  .hero {
    padding-inline: 14px;
  }
  .hero h1 {
    font-size: 19vw;
  }
  .hero-art {
    height: 55vh;
  }
  .hero-sticker {
    width: 85px;
  }
  .scribble {
    width: 96px;
    font-size: 12px;
    bottom: 4%;
    left: 4%;
  }
  .section {
    padding-inline: 18px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service {
    min-height: 285px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .step h3 {
    margin-top: 35px;
  }
  .work-card {
    min-height: 470px;
  }
  .phone {
    transform: scale(0.8) rotate(7deg);
  }
  .browser {
    width: 85vw;
    transform: scale(0.82) rotate(-5deg);
  }
  .cta {
    padding-inline: 12px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-base {
    gap: 10px;
    flex-direction: column;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .page-hero {
    padding-inline: 18px;
  }
  .page-hero h1 {
    font-size: 18vw;
  }
  .portrait {
    height: 440px;
  }
  .contact-wrap {
    padding-inline: 18px;
  }
  .form-card {
    border-radius: 22px;
  }
  .contact-title h1 {
    font-size: 19vw;
  }
}
