:root {
  --ink: #111111;
  --paper: #f3f0e9;
  --white: #fbfaf6;
  --blue: #3155ed;
  --line: rgba(17, 17, 17, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
::selection { color: var(--white); background: var(--blue); }

/* Motion system */
.page-transition {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  background: var(--blue);
  transform: translateY(-102%);
  will-change: transform;
}
.page-transition::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -14vw;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  opacity: .16;
}
html.js-motion [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition: opacity 760ms cubic-bezier(.16, 1, .3, 1), transform 760ms cubic-bezier(.16, 1, .3, 1), filter 760ms cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}
html.js-motion [data-reveal].is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
body.is-leaving .page-transition { pointer-events: auto; animation: page-out 700ms cubic-bezier(.76, 0, .24, 1) forwards; }
@keyframes page-out { from { transform: translateY(-102%); } to { transform: translateY(0); } }

.site-header {
  width: min(100% - 48px, 1420px);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 1rem; font-weight: 700; letter-spacing: -0.04em; }
.brand-dot { color: var(--blue); }
nav { display: flex; align-items: center; gap: 34px; font-size: .82rem; font-weight: 600; }
nav a { transition: opacity 180ms ease; }
nav a:hover { opacity: .55; }
.nav-cta { padding: 12px 18px; color: var(--white); background: var(--ink); border-radius: 100px; }
.menu-toggle, .menu-close { display: none; font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  width: min(100% - 48px, 1420px);
  min-height: calc(100svh - 88px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 100px) 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.eyebrow, .approach-kicker, .contact > p {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #3fbc63;
  box-shadow: 0 0 0 4px rgba(63, 188, 99, .12);
  animation: status-pulse 2.4s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(63, 188, 99, .12); }
  50% { box-shadow: 0 0 0 8px rgba(63, 188, 99, 0); }
}
.hero h1, .approach h2, .contact h2 {
  margin: 50px 0;
  font-size: clamp(3.6rem, 8.2vw, 8.4rem);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 650;
}
em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-bottom {
  width: 58%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.hero-bottom p {
  max-width: 420px;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  letter-spacing: -.025em;
}
.text-link {
  padding-bottom: 5px;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
}
.text-link span { color: var(--blue); }
.hero-orbit {
  position: absolute;
  right: 1.5%;
  bottom: 2%;
  width: clamp(190px, 22vw, 330px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: orbit 24s linear infinite;
}
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: var(--blue);
}
.hero-orbit span {
  position: absolute;
  z-index: 1;
  padding: 5px 8px;
  background: var(--paper);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.hero-orbit span:nth-child(1) { top: -8px; left: 46%; }
.hero-orbit span:nth-child(2) { right: -24px; bottom: 24%; }
.hero-orbit span:nth-child(3) { left: -22px; bottom: 24%; }
@keyframes orbit { to { transform: rotate(360deg); } }

/* Always-on introduction motion, including when the page is opened locally. */
.hero .eyebrow { animation: intro-up 800ms cubic-bezier(.16, 1, .3, 1) 80ms both; }
.hero h1 { animation: intro-up 1050ms cubic-bezier(.16, 1, .3, 1) 180ms both; }
.hero-bottom { animation: intro-up 900ms cubic-bezier(.16, 1, .3, 1) 420ms both; }
.hero-orbit { animation: orbit 24s linear infinite, orbit-in 900ms cubic-bezier(.16, 1, .3, 1) 260ms both; }
@keyframes intro-up {
  from { opacity: 0; transform: translateY(36px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes orbit-in {
  from { opacity: 0; scale: .72; }
  to { opacity: 1; scale: 1; }
}

.section-shell { padding: clamp(90px, 10vw, 160px) max(24px, calc((100vw - 1420px) / 2)); }
.section-heading {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 50px;
}
.section-heading > span {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.section-heading p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -.055em;
}
.work { color: var(--white); background: var(--ink); }
.project-list { display: grid; gap: 110px; }
.project-visual {
  position: relative;
  min-height: min(62vw, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.project-nextstepin { background: #e5e7ff; }
.project-monadic { background: #f1b45e; }
.project-kirana { background: #a9a9a9; }
.project-psglobal { background: #6b45d6; }
.mock-browser {
  width: 76%;
  aspect-ratio: 1.55;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
  transform: rotate(-2deg);
  animation: browser-float 5.5s ease-in-out infinite;
  transition: transform 500ms cubic-bezier(.16, 1, .3, 1);
}
.project:nth-child(even) .mock-browser { transform: rotate(2deg); animation-delay: -2.3s; }
.project:nth-child(3) .mock-browser { animation-delay: -4.1s; }
.project:nth-child(4) .mock-browser { animation-delay: -1.2s; }
.project:hover .mock-browser { animation-play-state: paused; transform: rotate(0deg) scale(1.025); }
@keyframes browser-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
.project-visual { transition: transform 600ms cubic-bezier(.16, 1, .3, 1); }
.project-visual:hover { transform: scale(.992); }
.browser-bar {
  height: 9%;
  padding-left: 3%;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(17, 17, 17, .12);
}
.browser-bar span { width: 7px; height: 7px; border: 1px solid var(--ink); border-radius: 50%; }
.mock-content {
  height: 91%;
  padding: 7%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.mock-kicker {
  font-size: clamp(.52rem, .9vw, .78rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.mock-content strong {
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5.4vw, 5.6rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.06em;
}
.project-monadic .mock-content { color: var(--white); background: #15112a; }
.project-kirana .mock-content { color: var(--white); background: #101010; }
.project-psglobal .mock-content { color: var(--white); background: #17142e; }
.project-nextstepin .mock-content strong, .project-kirana .mock-content strong { font-family: Arial, Helvetica, sans-serif; font-weight: 700; }
.mock-button {
  padding: 9px 14px;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid currentColor;
  border-radius: 100px;
}
.project-index {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: var(--ink);
  font-size: .65rem;
  font-weight: 700;
}
.project-copy {
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 50px;
}
.project-copy h2 { margin: 0 0 7px; font-size: clamp(1.8rem, 3vw, 2.9rem); line-height: 1; letter-spacing: -.05em; }
.project-copy span { color: rgba(251, 250, 246, .52); font-size: .75rem; }
.project-copy p { max-width: 550px; margin: 5px 0 0; color: rgba(251, 250, 246, .72); font-size: .98rem; line-height: 1.55; }

.service-list { border-top: 1px solid var(--line); }
.service {
  position: relative;
  min-height: 170px;
  display: grid;
  grid-template-columns: 90px 1fr 1fr 40px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  transition: padding 300ms ease, background 300ms ease;
}
.service:hover { padding: 0 22px; background: var(--white); }
.service > span:first-child { color: rgba(17, 17, 17, .45); font-size: .7rem; }
.service h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 3.2rem); letter-spacing: -.055em; }
.service p { max-width: 420px; margin: 0; color: rgba(17, 17, 17, .66); line-height: 1.5; }
.service-arrow { color: var(--blue); font-size: 1.4rem; }

.approach { color: var(--white); background: var(--blue); }
.approach-main { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 80px; }
.approach h2 { margin: 80px 0 0; font-size: clamp(3.7rem, 7vw, 7rem); }
.approach-copy { padding-bottom: 10px; }
.approach-copy > p { margin: 0 0 50px; font-size: 1.08rem; line-height: 1.55; }
.approach-copy ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .35); }
.approach-copy li { padding: 18px 0; display: flex; gap: 22px; border-bottom: 1px solid rgba(255, 255, 255, .35); font-size: .88rem; font-weight: 700; }
.approach-copy li span { opacity: .6; }

.contact {
  padding: clamp(100px, 13vw, 190px) 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact h2 { margin: 48px 0 70px; font-size: clamp(4rem, 10vw, 9.7rem); }
.contact > a { padding-bottom: 8px; font-size: clamp(1.1rem, 2vw, 1.7rem); font-weight: 700; border-bottom: 2px solid var(--ink); }
.contact > a span { color: var(--blue); }
footer {
  width: min(100% - 48px, 1420px);
  min-height: 90px;
  margin: 0 auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 700;
}
footer div { display: flex; align-items: center; gap: 10px; }
footer p { text-align: center; }
footer a { text-align: right; }

@media (max-width: 900px) {
  .hero { min-height: 760px; }
  .hero-bottom { width: 100%; padding-right: 240px; }
  .hero-orbit { right: -3%; }
  .approach-main { grid-template-columns: 1fr; }
  .approach-copy { max-width: 560px; }
  .service { grid-template-columns: 50px 1fr 1fr 30px; }
}
@media (max-width: 640px) {
  .site-header, .hero, footer { width: min(100% - 30px, 1420px); }
  .site-header { min-height: 72px; }
  .brand { font-size: .94rem; }
  .site-header > nav { display: none; }
  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    align-content: center;
    justify-items: end;
    gap: 7px;
    padding: 0;
  }
  .menu-toggle span { width: 26px; height: 1.5px; display: block; background: var(--ink); transition: transform 300ms ease, width 300ms ease; }
  .menu-toggle span:last-child { width: 18px; }
  .mobile-menu {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(56vw, 360px);
    padding: 22px 15px 32px;
    display: flex;
    flex-direction: column;
    color: var(--white);
    background: var(--blue);
    transform: translateX(102%);
    pointer-events: none;
    transition: transform 600ms cubic-bezier(.76, 0, .24, 1);
  }
  .mobile-menu::after { content: ""; position: absolute; right: -24vw; bottom: -20vw; width: 88vw; aspect-ratio: 1; border-radius: 50%; background: var(--paper); opacity: .12; }
  .mobile-menu.is-open { transform: translateX(0); pointer-events: auto; }
  .mobile-menu-top { position: relative; z-index: 1; min-height: 50px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.35); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
  .menu-close { display: flex; align-items: center; gap: 8px; padding: 0; color: var(--white); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
  .menu-close span { font-size: 1.4rem; font-weight: 400; line-height: .7; }
  .mobile-menu-links { position: relative; z-index: 1; display: grid; margin: auto 0; }
  .mobile-menu-links a { padding: 18px 0; display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.35); font-size: clamp(1.7rem, 8vw, 3rem); font-weight: 650; letter-spacing: -.07em; }
  .mobile-menu-links a span { font-size: .66rem; font-weight: 700; letter-spacing: .08em; }
  .mobile-menu > p { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.5; }
  body.menu-open { overflow: hidden; }
  .hero { min-height: 640px; padding-top: 42px; padding-bottom: 36px; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 5.2rem); line-height: .9; }
  .hero-bottom { padding-right: 0; align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-bottom p { max-width: 100%; padding-right: 18px; }
  .hero-orbit { width: 128px; right: -52px; bottom: 20%; opacity: .78; }
  .hero-orbit span { font-size: .52rem; }
  .section-shell { padding: 72px 15px; }
  .section-heading, .project-copy { grid-template-columns: 1fr; gap: 28px; }
  .section-heading { margin-bottom: 45px; }
  .project-list { gap: 72px; }
  .project-visual { min-height: 88vw; }
  .mock-browser { width: 90%; }
  .mock-content { padding: 7.5%; }
  .mock-content strong { max-width: 12ch; font-size: clamp(1.75rem, 8vw, 2.75rem); }
  .mock-button { padding: 8px 11px; font-size: .56rem; }
  .project-index { right: 14px; bottom: 13px; }
  .project-copy { gap: 12px; }
  .project-copy p { margin-top: 0; }
  .service { min-height: 0; padding: 30px 0; grid-template-columns: 34px 1fr 25px; gap: 14px; }
  .service:hover { padding: 30px 10px; }
  .service h2 { font-size: clamp(1.65rem, 8vw, 2.2rem); }
  .service p { grid-column: 2 / 4; padding-right: 16px; }
  .service-arrow { grid-column: 3; grid-row: 1; }
  .approach-main { gap: 50px; }
  .approach h2 { margin-top: 55px; font-size: clamp(3.2rem, 15vw, 4.6rem); }
  .approach-copy > p { margin-bottom: 34px; }
  .contact { padding: 92px 24px; align-items: flex-start; text-align: left; }
  .contact h2 { margin: 38px 0 48px; font-size: clamp(3.8rem, 16vw, 5.7rem); }
  footer { grid-template-columns: 1fr 1fr; }
  footer p { display: none; }
  footer a { text-align: right; }
}
/* Call booking page */
.call-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 28%, rgba(49, 85, 237, .1), transparent 27rem),
    var(--paper);
}
.call-header { margin-bottom: 0; }
.back-link {
  padding-bottom: 4px;
  font-size: .78rem;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
}
.call-main {
  width: min(100% - 48px, 1420px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 110px) 0 clamp(90px, 10vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr);
  align-items: start;
  gap: clamp(50px, 8vw, 130px);
}
.call-intro {
  position: sticky;
  top: 48px;
  padding-top: 15px;
}
.call-intro h1 {
  margin: 60px 0 42px;
  font-size: clamp(3.6rem, 6vw, 6.8rem);
  line-height: .9;
  letter-spacing: -.07em;
}
.call-intro > p {
  max-width: 500px;
  margin: 0;
  color: rgba(17, 17, 17, .67);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.55;
}
.calendar-shell {
  width: 100%;
  max-width: 820px;
  justify-self: start;
  padding: 0 clamp(20px, 3vw, 36px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(17, 17, 17, .09);
}
.calendar-topbar {
  min-height: 58px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.calendar-topbar span:last-child { color: rgba(17, 17, 17, .45); }
.calendar-shell iframe {
  width: 100%;
  height: 900px;
  display: block;
  border: 0;
  background: #fff;
}
.calendar-fallback {
  margin: 0;
  padding: 16px 0;
  color: rgba(17, 17, 17, .55);
  border-top: 1px solid var(--line);
  font-size: .75rem;
  text-align: center;
}
.calendar-fallback a {
  margin-left: 5px;
  color: var(--ink);
  font-weight: 700;
}
.call-footer { margin-top: 0; }

@media (max-width: 980px) {
  .call-main {
    grid-template-columns: 1fr;
  }
  .call-intro {
    position: static;
  }
  .call-intro h1 {
    max-width: 800px;
  }
}
@media (max-width: 640px) {
  .call-main {
    width: min(100% - 30px, 1420px);
    padding-top: 48px;
    gap: 48px;
  }
  .call-intro h1 {
    margin-top: 44px;
    font-size: clamp(3.2rem, 15vw, 5rem);
  }
  .calendar-shell {
    border-radius: 12px;
    max-width: none;
    padding: 0 16px;
  }
  .calendar-shell iframe {
    height: 860px;
  }
  .calendar-topbar {
    padding: 0;
  }
}

@media (max-width: 380px) {
  .site-header, .hero, footer { width: min(100% - 24px, 1420px); }
  .brand { font-size: .88rem; }
  .nav-cta { padding: 9px 11px; font-size: .72rem; }
  .hero { min-height: 600px; padding-top: 34px; }
  .hero h1 { margin: 40px 0; font-size: 3.1rem; }
  .hero-orbit { display: none; }
  .section-shell { padding: 64px 12px; }
  .section-heading p { font-size: 1.5rem; }
  .project-visual { min-height: 96vw; }
  .mock-browser { width: 91%; }
  .mock-content strong { font-size: 1.62rem; }
  .call-main { width: min(100% - 24px, 1420px); padding-top: 40px; gap: 40px; }
  .calendar-shell { padding: 0 12px; }
  .calendar-topbar { min-height: 54px; padding: 0; font-size: .6rem; }
  .calendar-shell iframe { height: 820px; }
}
