:root {
  --ink: #171125;
  --ink-soft: #625b72;
  --purple: #6d35ed;
  --purple-dark: #3a176f;
  --purple-soft: #eee8ff;
  --orange: #ff7659;
  --lime: #b9e23c;
  --blue: #2d8fe5;
  --surface: #ffffff;
  --surface-soft: #f7f5fb;
  --line: #e8e3ef;
  --shadow: 0 22px 70px rgba(49, 28, 89, .12);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fcfbfe;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { display: block; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 20px 28px;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(252, 251, 254, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(38, 21, 69, .07);
}
.header-shell {
  width: min(var(--max), 100%);
  height: 74px;
  margin: 0 auto;
  padding: 0 12px 0 14px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 46px rgba(49, 27, 90, .08);
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #8755ff, #4e1bc7);
  box-shadow: 0 10px 22px rgba(105, 48, 232, .26);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -.4px;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 15px; letter-spacing: -.2px; }
.brand-copy small { margin-top: 5px; color: #81788e; font-size: 10px; text-transform: uppercase; letter-spacing: 1.1px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: #554e62; font-size: 13px; font-weight: 750; transition: color .2s ease; }
.nav-links a:hover { color: var(--purple); }
.header-cta {
  justify-self: end;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--purple-dark); }
.header-cta svg { width: 18px; height: 18px; fill: currentColor; }
.menu-button { display: none; }

.hero {
  min-height: 920px;
  padding: 150px 28px 72px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(244, 173, 255, .34), transparent 31%),
    radial-gradient(circle at 66% 88%, rgba(255, 130, 83, .18), transparent 30%),
    linear-gradient(140deg, #faf8ff 0%, #f2ebff 45%, #fbf7ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: linear-gradient(rgba(99, 54, 184, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(99, 54, 184, .045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 88%);
}
.hero-grid {
  width: min(var(--max), 100%);
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.hero-copy { padding: 30px 0 0; }
.eyebrow, .section-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.2px;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 2px; border-radius: 999px; background: currentColor; }
.hero h1 {
  max-width: 720px;
  margin: 27px 0 24px;
  font-size: clamp(58px, 6vw, 90px);
  line-height: .96;
  letter-spacing: -5.5px;
  font-weight: 900;
}
.hero h1 em { color: var(--purple); font-style: normal; }
.hero-description {
  max-width: 620px;
  margin: 0;
  color: #5f566f;
  font-size: 18px;
  line-height: 1.78;
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 54px;
  padding: 0 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #7645f5, #5b25d7);
  box-shadow: 0 15px 28px rgba(101, 46, 224, .23);
}
.button-primary:hover { box-shadow: 0 19px 35px rgba(101, 46, 224, .31); }
.button-secondary { border: 1px solid #dcd4e8; background: rgba(255,255,255,.72); }
.button-dark { background: var(--ink); color: #fff; }
.hero-proof {
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(86, 59, 126, .14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.hero-proof div { display: grid; gap: 4px; }
.hero-proof strong { font-size: 13px; }
.hero-proof span { color: #7a708a; font-size: 11px; }
.hero-visual { min-height: 650px; display: grid; place-items: center; position: relative; }
.visual-card {
  width: min(760px, 58vw);
  min-width: 640px;
  position: relative;
  transform: translateX(30px);
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 10% 12% 3%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(85, 32, 171, .28);
  filter: blur(48px);
}
.visual-card img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 30px rgba(54, 22, 104, .18));
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat { 50% { transform: translateY(-12px) rotate(.6deg); } }
.floating-label {
  position: absolute;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 13px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 13px 35px rgba(42, 23, 81, .12);
  backdrop-filter: blur(14px);
  color: #4d3a6b;
  font-size: 11px;
  font-weight: 800;
}
.label-one { top: 18%; left: 4%; }
.label-two { right: 1%; bottom: 17%; }
.label-three { left: 16%; bottom: 10%; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-one { width: 280px; height: 280px; left: -145px; bottom: 30px; background: rgba(107, 47, 230, .08); }
.hero-orb-two { width: 250px; height: 250px; right: -110px; top: 240px; background: rgba(255, 118, 89, .11); }

.section { padding: 110px 28px; }
.section-head, .suite-header, .contact-card {
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}
.section h2, .suite h2, .contact h2 {
  margin: 15px 0 0;
  font-size: clamp(43px, 4.4vw, 67px);
  line-height: 1.02;
  letter-spacing: -3.4px;
}
.section h2 em, .suite h2 em { color: var(--purple); font-style: normal; }
.section-intro { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }

.projects { background: #fff; }
.project-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.project-card {
  min-height: 500px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.project-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: #d8ccec; }
.project-topline { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.project-number { color: #a49aaf; font-size: 10px; font-weight: 900; letter-spacing: 2px; }
.project-category { padding: 8px 10px; border-radius: 999px; color: #665c76; background: #f4f1f8; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: 1px; }
.project-visual {
  height: 190px;
  margin: 17px 0 22px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.project-visual::before, .project-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}
.project-visual::before { width: 170px; height: 170px; right: -40px; top: -50px; background: rgba(255,255,255,.19); }
.project-visual::after { width: 110px; height: 110px; left: -28px; bottom: -38px; border: 18px solid rgba(255,255,255,.12); }
.project-visual > span { color: #fff; font-size: 65px; font-weight: 950; letter-spacing: -5px; text-shadow: 0 10px 25px rgba(32, 14, 65, .18); }
.project-visual i { position: absolute; border-radius: 50%; background: rgba(255,255,255,.6); box-shadow: 0 0 0 7px rgba(255,255,255,.13); }
.project-visual i:nth-of-type(1) { width: 11px; height: 11px; top: 24px; left: 28px; }
.project-visual i:nth-of-type(2) { width: 8px; height: 8px; right: 32px; bottom: 34px; }
.project-visual i:nth-of-type(3) { width: 6px; height: 6px; right: 90px; top: 35px; }
.tone-violet .project-visual { background: linear-gradient(145deg, #8d59ff, #4c1aa9); }
.tone-blue .project-visual { background: linear-gradient(145deg, #59b9f5, #344ebd); }
.tone-orange .project-visual { background: linear-gradient(145deg, #ffad67, #ee5571); }
.tone-pink .project-visual { background: linear-gradient(145deg, #d674f4, #6d38d3); }
.tone-lime .project-visual { background: linear-gradient(145deg, #d8f36e, #70af2a); }
.tone-aqua .project-visual { background: linear-gradient(145deg, #55d3d4, #157aa5); }
.project-content h3 { margin: 0; font-size: 27px; letter-spacing: -1.1px; }
.project-content p { min-height: 67px; margin: 10px 0 17px; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.project-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.project-tags span { padding: 7px 9px; border: 1px solid #e9e4ef; border-radius: 9px; color: #766c84; background: #fbfafc; font-size: 9px; font-weight: 800; }
.project-actions { margin-top: auto; padding-top: 22px; display: grid; grid-template-columns: 1fr 48px; gap: 10px; }
.project-live, .github-button { min-height: 48px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; transition: transform .2s ease, background .2s ease; }
.project-live { gap: 18px; color: #fff; background: var(--ink); font-size: 12px; font-weight: 850; }
.project-live:hover { background: var(--purple-dark); transform: translateY(-2px); }
.github-button { border: 1px solid #dfd8e8; background: #fff; }
.github-button:hover { background: #f0eaff; border-color: #cbbbea; transform: translateY(-2px); }
.github-button svg { width: 20px; height: 20px; fill: var(--ink); }

.suite {
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(146, 84, 255, .32), transparent 30%),
    linear-gradient(145deg, #24113f, #180d2b 70%);
  position: relative;
  overflow: hidden;
}
.suite::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -300px;
  bottom: -280px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
}
.suite-header { display: grid; grid-template-columns: 1fr auto; gap: 55px; align-items: end; position: relative; z-index: 2; }
.suite-header > div > p:last-child { max-width: 720px; margin: 22px 0 0; color: #c0b3d2; line-height: 1.75; }
.suite-header .button-dark { background: #fff; color: var(--ink); }
.suite-grid {
  width: min(var(--max), 100%);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  position: relative;
  z-index: 2;
}
.suite-card {
  min-height: 238px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.suite-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.suite-card-head { display: flex; align-items: center; justify-content: space-between; }
.suite-icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; color: #2e1452; background: linear-gradient(145deg, #d7ff61, #9fcd2d); font-size: 12px; font-weight: 950; }
.suite-index { color: #847395; font-size: 9px; letter-spacing: 2px; }
.suite-card h3 { margin: 27px 0 9px; font-size: 18px; letter-spacing: -.5px; }
.suite-card p { margin: 0; color: #b8abc9; font-size: 11px; line-height: 1.65; }
.suite-link { margin-top: auto; padding-top: 18px; color: #d9ceea; font-size: 10px; font-weight: 850; }
.suite-link b { margin-left: 8px; color: var(--lime); }

.approach {
  width: 100%;
  min-height: 650px;
  padding: 100px max(28px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: linear-gradient(120deg, #6b35ed 0%, #4a1ea9 58%, #33136f 100%);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.section-kicker.light { color: #d5ff58; }
.approach-copy h2 { margin: 18px 0 23px; font-size: clamp(42px, 4.8vw, 67px); line-height: 1.02; letter-spacing: -3.2px; }
.approach-copy > p:not(.section-kicker) { max-width: 620px; color: #d6c9ec; line-height: 1.8; }
.approach-copy > a { display: inline-flex; gap: 35px; margin-top: 24px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.36); font-size: 13px; font-weight: 850; }
.approach-list { border-top: 1px solid rgba(255,255,255,.18); }
.approach-item { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.18); display: grid; grid-template-columns: 50px 1fr; gap: 20px; }
.approach-item > span { color: #c7ef4b; font-size: 10px; font-weight: 900; letter-spacing: 1.5px; }
.approach-item h3 { margin: 0 0 7px; font-size: 19px; }
.approach-item p { margin: 0; color: #d4c8e9; font-size: 12px; line-height: 1.65; }

.contact { background: #f7f4fb; }
.contact-card {
  min-height: 310px;
  padding: 55px 60px;
  border: 1px solid #e5dfee;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 25px 80px rgba(47, 25, 84, .08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.contact h2 { max-width: 760px; }
.contact-card p:not(.section-kicker) { max-width: 700px; margin: 20px 0 0; color: var(--ink-soft); }

.site-footer { padding: 55px 28px 25px; color: #fff; background: #130a22; }
.footer-top, .footer-bottom { width: min(var(--max), 100%); margin: 0 auto; }
.footer-top { padding-bottom: 45px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand .brand-mark { background: linear-gradient(145deg, #8b57ff, #5b25da); }
.footer-brand .brand-copy small { color: #8f819d; }
.footer-top nav { display: flex; gap: 28px; }
.footer-top nav a { color: #c1b5ce; font-size: 12px; font-weight: 750; }
.footer-top nav a:hover { color: #fff; }
.footer-bottom { padding-top: 22px; border-top: 1px solid #30223f; display: flex; justify-content: space-between; gap: 20px; color: #766987; font-size: 10px; }

/* Project detail page compatibility */
.project-page { background: #fcfbfe; min-height: 100vh; padding-top: 24px; }
.project-navbar { position: static; margin: 0 auto 25px; }
.case-hero { width: min(1440px, calc(100% - 32px)); min-height: 650px; margin: 0 auto; padding: 70px; border-radius: 38px; color: #fff; display: grid; grid-template-columns: 1fr .9fr; gap: 55px; align-items: center; overflow: hidden; }
.project-purple { background: linear-gradient(145deg, #8052f6, #3a176f); }
.project-coral { background: linear-gradient(145deg, #ff8c6d, #d84979); }
.project-lime { color: #24300f; background: linear-gradient(145deg, #ddf871, #76ad2f); }
.project-blue { background: linear-gradient(145deg, #57b7ee, #4050bd); }
.case-copy h1 { margin: 25px 0 15px; font-size: clamp(60px, 7vw, 104px); line-height: .92; letter-spacing: -6px; }
.case-copy h2 { margin: 0; font-size: clamp(26px, 3vw, 42px); line-height: 1.08; letter-spacing: -2px; }
.case-copy > p:first-child { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; font-weight: 850; }
.case-description { max-width: 650px; margin: 25px 0; font-size: 17px; line-height: 1.75; opacity: .85; }
.case-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.case-actions a { padding: 15px 18px; border-radius: 14px; background: #fff; color: var(--ink); font-size: 12px; font-weight: 850; }
.case-actions .secondary-action { color: inherit; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.12); }
.case-visual { min-height: 440px; border: 1px solid rgba(255,255,255,.28); border-radius: 30px; background: rgba(255,255,255,.11); display: grid; place-items: center; position: relative; }
.case-visual > span { font-size: clamp(120px, 14vw, 220px); font-weight: 950; letter-spacing: -10px; }
.case-visual i { position: absolute; padding: 8px; border-radius: 999px; background: rgba(255,255,255,.17); font-size: 9px; font-style: normal; }
.case-visual i:nth-of-type(1) { top: 22px; left: 22px; }
.case-visual i:nth-of-type(2) { top: 45%; right: 22px; }
.case-visual i:nth-of-type(3) { bottom: 22px; left: 38%; }
.case-content, .case-features, .case-stack { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 100px 0; }
.case-section-label { padding-bottom: 18px; border-bottom: 1px solid var(--line); display: flex; gap: 15px; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; font-weight: 850; }
.case-section-label span { color: var(--orange); }
.case-section-label p { margin: 0; }
.case-columns { padding-top: 55px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.case-columns h3 { margin: 13px 0; font-size: 34px; letter-spacing: -1.5px; }
.case-columns article > p:last-child { color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.case-features { width: 100%; padding-left: max(28px, calc((100vw - 1180px)/2)); padding-right: max(28px, calc((100vw - 1180px)/2)); background: #f1ecfb; }
.case-features h2, .case-stack h2 { margin: 45px 0 35px; font-size: 54px; letter-spacing: -3px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-grid article { min-height: 165px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.feature-grid span { color: #a096ac; font-size: 9px; letter-spacing: 2px; }
.feature-grid h3 { margin: 0; font-size: 21px; }
.case-stack { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.stack-list { display: flex; flex-wrap: wrap; gap: 10px; }
.stack-list span { padding: 11px 15px; border-radius: 999px; color: var(--purple); background: var(--purple-soft); font-size: 12px; font-weight: 800; }
.next-project { display: block; width: min(1180px, calc(100% - 40px)); margin: 0 auto 90px; padding: 50px; border-radius: 30px; color: #fff; }
.next-project p { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; }
.next-project h2 { margin: 18px 0; font-size: 60px; letter-spacing: -4px; }
.detail-footer { padding: 45px 28px; background: #130a22; color: #fff; }
.detail-footer > div { width: min(1180px, 100%); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.detail-footer nav { display: flex; gap: 20px; }
.not-found { min-height: 70vh; padding: 40px; display: grid; place-items: center; text-align: center; }
.not-found h1 { font-size: 70px; letter-spacing: -4px; }
.not-found a { display: inline-block; margin-top: 20px; padding: 14px 18px; border-radius: 14px; background: var(--purple); color: #fff; font-weight: 850; }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-copy { max-width: 780px; padding-top: 55px; }
  .hero-visual { min-height: 520px; margin-top: -20px; }
  .visual-card { min-width: 0; width: min(820px, 92vw); transform: none; }
  .label-one { left: 10%; }
  .label-two { right: 7%; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .suite-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .approach { gap: 55px; }
}

@media (max-width: 820px) {
  .site-header { padding: 12px; }
  .header-shell { height: 68px; padding: 0 12px; grid-template-columns: 1fr auto; border-radius: 20px; }
  .brand-copy { display: none; }
  .header-cta { display: none; }
  .menu-button { width: 42px; height: 42px; padding: 0; border: 0; border-radius: 13px; background: #f1ecf8; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; }
  .menu-button span { width: 20px; height: 2px; border-radius: 999px; background: var(--ink); transition: transform .2s ease; }
  .menu-button.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-links { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 20px; border: 1px solid #e3dcec; border-radius: 18px; background: #fff; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 5px; }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px; border-radius: 10px; }
  .nav-links a:hover { background: #f4effc; }
  .hero { min-height: auto; padding: 120px 20px 55px; }
  .hero h1 { font-size: clamp(52px, 12vw, 78px); letter-spacing: -4px; }
  .hero-description { font-size: 16px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 390px; }
  .floating-label { display: none; }
  .section { padding: 85px 20px; }
  .section-head, .suite-header, .contact-card { grid-template-columns: 1fr; gap: 28px; }
  .section-intro { max-width: 620px; }
  .suite-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .approach { padding: 85px 20px; grid-template-columns: 1fr; gap: 50px; }
  .contact-card { padding: 40px 30px; }
  .contact-card .button { justify-self: start; }
  .case-hero { padding: 48px 28px; grid-template-columns: 1fr; }
  .case-visual { min-height: 320px; }
  .case-columns, .case-stack { grid-template-columns: 1fr; gap: 35px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 49px; letter-spacing: -3px; }
  .hero-actions { display: grid; }
  .button { width: 100%; justify-content: space-between; }
  .hero-visual { min-height: 300px; margin-top: 10px; }
  .visual-card { width: 112vw; }
  .section h2, .suite h2, .contact h2, .approach-copy h2 { font-size: 40px; letter-spacing: -2.2px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 475px; }
  .suite-grid { grid-template-columns: 1fr; }
  .suite-card { min-height: 210px; }
  .contact-card { padding: 32px 22px; border-radius: 28px; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-top nav { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; }
  .case-hero { width: calc(100% - 20px); padding: 38px 20px; }
  .case-copy h1 { font-size: 54px; letter-spacing: -4px; }
  .feature-grid { grid-template-columns: 1fr; }
  .next-project { padding: 35px 24px; }
  .next-project h2 { font-size: 46px; letter-spacing: -3px; }
  .detail-footer > div { flex-direction: column; text-align: center; }
}

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