*,
*::before,
*::after {
  box-sizing: border-box;
}
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
  background-color: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.25;
  margin-top: 0;
}
a {
  color: #0073aa;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover,
a:focus {
  color: #005177;
}
.ct_container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.ct_grid {
  display: grid;
  gap: 1.5rem;
}
.ct_grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.ct_grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.ct_grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .ct_grid--2,
  .ct_grid--3,
  .ct_grid--4 {
    grid-template-columns: 1fr;
  }
}
.ct_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.ct_btn--primary {
  background-color: #0073aa;
  color: #fff;
}
.ct_btn--primary:hover,
.ct_btn--primary:focus {
  background-color: #005177;
  color: #fff;
}
.ct_btn--outline {
  background-color: transparent;
  border-color: #0073aa;
  color: #0073aa;
}
.ct_btn--outline:hover,
.ct_btn--outline:focus {
  background-color: #0073aa;
  color: #fff;
}
.ct_card {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
}
.ct_card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.ct_card__image img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  -o-object-fit: cover;
  object-fit: cover;
}
.ct_card__body {
  padding: 1.5rem;
}
.ct_card__title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.ct_card__meta {
  font-size: 0.875rem;
  color: #777777;
  margin-bottom: 0.75rem;
}
.ct_field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}
.ct_label {
  font-weight: 600;
  font-size: 0.875rem;
}
.ct_input,
.ct_textarea,
.ct_select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  color: #333333;
  background-color: #fff;
  transition: border-color 0.2s ease;
}
.ct_input:focus,
.ct_textarea:focus,
.ct_select:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
}
.ct_home_hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.ct_home_hero--bg-light {
  background: #ffffff;
}
.ct_home_hero--bg-tinted {
  background: #f0f7ff;
}
.ct_home_hero--bg-dark {
  background: #111827;
  color: #fff;
}
.ct_home_hero--bg-dark .ct_home_hero__desc {
  color: rgba(255, 255, 255, 0.75);
}
.ct_home_hero--bg-dark .ct_home_hero__badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.ct_home_hero--bg-gradient {
  background: linear-gradient(135deg, #1e2a78 0%, #4353ff 100%);
  color: #fff;
}
.ct_home_hero--bg-gradient .ct_home_hero__title {
  color: #fff;
}
.ct_home_hero--bg-gradient .ct_home_hero__desc {
  color: rgba(255, 255, 255, 0.8);
}
.ct_home_hero--bg-gradient .ct_home_hero__badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.ct_home_hero--bg-gradient .ct_home_hero__btn__outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.ct_home_hero--bg-gradient .ct_home_hero__btn__outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.ct_home_hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ct_home_hero__shape--1 {
  width: 500px;
  height: 500px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(0, 115, 170, 0.12) 0%, transparent 70%);
}
.ct_home_hero__shape--2 {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}
.ct_home_hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ct_home_hero__grid--no-image {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ct_home_hero__grid--no-image .ct_home_hero__actions {
  justify-content: center;
}
.ct_home_hero__grid--no-image .ct_home_hero__badge {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1025px) {
  .ct_home_hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
.ct_home_hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1025px) {
  .ct_home_hero__content {
    align-items: center;
  }
}
.ct_home_hero__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(0, 115, 170, 0.3);
  background: rgba(0, 115, 170, 0.08);
  color: #0073aa;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  transition: all 0.2s ease;
}
@media (max-width: 1025px) {
  .ct_home_hero__badge {
    align-self: center;
  }
}
.ct_home_hero__title {
  margin: 0;
  font-size: 3rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #333333;
  letter-spacing: -0.02em;
}
.ct_home_hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #0073aa, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 1025px) {
  .ct_home_hero__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .ct_home_hero__title {
    font-size: 1.75rem;
  }
}
.ct_home_hero__desc {
  margin: 0;
  font-size: 1.125rem;
  color: #777777;
  line-height: 1.7;
  max-width: 520px;
}
@media (max-width: 1025px) {
  .ct_home_hero__desc {
    max-width: 100%;
  }
}
.ct_home_hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
@media (max-width: 576px) {
  .ct_home_hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.ct_sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ct_truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ct_text_center {
  text-align: center;
}
.ct_text_right {
  text-align: right;
}
.ct_text_muted {
  color: #777777;
}
.ct_mt_0 {
  margin-top: 0 !important;
}
.ct_mb_0 {
  margin-bottom: 0 !important;
}
html {
  scroll-behavior: auto;
}
::-moz-selection {
  background: rgba(99, 102, 241, 0.25);
}
::selection {
  background: rgba(99, 102, 241, 0.25);
}
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #FDFBF6;
}
::-webkit-scrollbar-thumb {
  background: #18181B;
  border-radius: 2px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal_l {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal_l.in {
  opacity: 1;
  transform: translateX(0);
}
.reveal_r {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal_r.in {
  opacity: 1;
  transform: translateX(0);
}
.label {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #71717A;
}
.label_accent {
  color: #6366F1;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 13px 26px;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
}
.btn-dark {
  background: #18181B;
  color: #fff;
  border-color: #18181B;
}
.btn-dark:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: #18181B;
}
.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #18181B;
}
.btn-accent {
  background: #6366F1;
  color: #fff;
  border-color: #6366F1;
}
.btn-accent:hover {
  background: #4F46E5;
  color: #fff;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}
.section {
  padding: clamp(64px, 10vw, 128px) 0;
}
.section + .section {
  border-top: 0.8px solid rgba(0, 0, 0, 0.12);
}
.eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #71717A;
  display: inline-block;
  margin-bottom: 18px;
}
.eyebrow_accent {
  color: #6366F1;
}
.section_h {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #18181B;
  margin-bottom: 14px;
}
.section_sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #71717A;
  line-height: 1.5;
}
nav.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 64px);
  height: 64px;
  background: rgba(253, 251, 246, 0);
  backdrop-filter: blur(12px);
  border-bottom: 0.8px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
nav.topnav.scrolled {
  background: rgba(253, 251, 246, 0.85);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.admin-bar nav.topnav {
  top: 32px;
}
.nav_logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #18181B;
  letter-spacing: -0.02em;
  cursor: default;
  text-transform: none;
  text-decoration: none;
}
.nav_logo span {
  color: #6366F1;
  line-height: 0;
  font-size: 38px;
}
.nav_links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
}
.nav_links a {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: #71717A;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav_links a:hover,
.nav_links a.active {
  color: #18181B;
}
.nav_cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #fff !important;
  background: #18181B;
  padding: 12px 24px;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.nav_cta:hover {
  background: #6366F1;
  color: #fff !important;
}
#hero {
  position: relative;
  background: #FDFBF6;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 96px 0 64px;
}
.hero_corner_l,
.hero_corner_r {
  position: absolute;
  top: 88px;
  z-index: 3;
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #71717A;
  opacity: 0;
  transition: opacity 0.8s 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero_loaded .hero_corner_l,
.hero_loaded .hero_corner_r {
  opacity: 1;
}
.hero_corner_l {
  left: clamp(24px, 5vw, 64px);
}
.hero_corner_r {
  right: clamp(24px, 5vw, 64px);
}
.hero_grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: 100%;
}
.hero_photo_col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero_stats {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero_loaded .hero_stats {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .hero_stats {
    gap: 15px;
  }
}
.stat_num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: #18181B;
  letter-spacing: -0.025em;
  line-height: 1;
  display: block;
}
.stat_label {
  font-family: 'Roboto Mono', monospace;
  font-size: clamp(8px, 0.8vw, 9px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #71717A;
  display: block;
  margin-top: 4px;
}
.stat_div {
  width: 0.8px;
  height: 36px;
  background: rgba(0, 0, 0, 0.15);
}
.hero_eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6366F1;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero_loaded .hero_eyebrow {
  opacity: 1;
  transform: translateY(0);
}
.hero_headline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(56px, 5.5vw, 124px);
  color: #18181B;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin-bottom: 28px;
}
@media (max-width: 1025px) {
  .hero_headline {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .hero_headline {
    margin-bottom: 16px;
  }
}
.hero_headline em {
  font-style: normal;
  background: linear-gradient(90deg, #6366F1, #C968F7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero_line {
  display: block;
  overflow: hidden;
}
.hero_line span {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero_loaded .hero_line:nth-child(1) span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.hero_loaded .hero_line:nth-child(2) span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.hero_loaded .hero_line:nth-child(3) span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}
.hero_subline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  color: #71717A;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero_loaded .hero_subline {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1025px) {
  .hero_subline {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .hero_subline {
    margin-bottom: 20px;
  }
}
.hero_ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 1s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero_loaded .hero_ctas {
  opacity: 1;
  transform: translateY(0);
}
.hero_photo {
  position: relative;
  aspect-ratio: 4/5;
  background: #F5F4EF;
  border-radius: 32px;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 1s 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 1s 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero_loaded .hero_photo {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  display: block;
}
.hero_chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 251, 246, 0.85);
  backdrop-filter: blur(12px);
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  border-radius: 9999px;
  padding: 8px 16px 8px 12px;
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #18181B;
}
.chip_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  }
  50% {
    box-shadow: 0 0 16px #22c55e;
  }
}
.hero_scroll {
  position: absolute;
  bottom: 28px;
  left: clamp(24px, 5vw, 64px);
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #71717A;
  opacity: 0;
  transition: opacity 1s 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero_loaded .hero_scroll {
  opacity: 1;
}
#trust {
  background: #F5F4EF;
  padding: 28px clamp(24px, 5vw, 64px);
  border-top: 0.8px solid rgba(0, 0, 0, 0.12);
  border-bottom: 0.8px solid rgba(0, 0, 0, 0.12);
}
.trust_inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px 48px;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
.trust_label {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #71717A;
  flex-shrink: 0;
}
.trust_logos {
  display: flex;
  gap: 30px 84px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .trust_logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 35px;
    justify-items: center;
  }
}
.trust_logos img {
  max-width: 96px;
  height: auto;
  width: 100%;
  max-height: 32px;
  filter: grayscale(100%) brightness(1.15) contrast(0.95);
  opacity: 0.8;
  -o-object-fit: contain;
  object-fit: contain;
}
.trust_logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.2vw, 16px);
  color: #A1A1AA;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.trust_logo:hover {
  color: #18181B;
}
.section_header {
  margin-bottom: 56px;
}
.work_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.work_card {
  background: #F5F4EF;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s, border-color 0.25s;
}
.work_card:hover {
  transform: translateY(-3px);
  background: #FDFBF6;
  color: inherit;
}
.work_card:hover .work_thumb_arrow {
  opacity: 1;
  transform: scale(1);
}
.work_card:hover .work_cta {
  color: #6366F1;
}
.work_thumb {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0;
  border-bottom: 0.8px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .work_thumb {
    height: 170px;
  }
}
.work_thumb_num {
  font-family: 'DM Sans', sans-serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.08);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-left: 10px;
  margin-bottom: 10px;
}
.work_thumb_img {
  position: absolute;
  top: 0;
  left: 0;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 71%;
  height: 76%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.work_thumb_arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: #FDFBF6;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #18181B;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s, transform 0.2s;
}
.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.arrow svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
}
.work_body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.work_foot {
  margin-top: auto;
}
.work_tag {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6366F1;
  margin-bottom: 10px;
}
.work_title {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #18181B;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.work_desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #71717A;
  line-height: 1.5;
}
.work_foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 0.8px solid rgba(0, 0, 0, 0.06);
}
.work_year {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  color: #A1A1AA;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.work_cta_link {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  color: #71717A;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.work_bottom {
  margin-top: 48px;
  text-align: center;
}
#services {
  background: #F5F4EF;
}
.services_grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.service_row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 0.8px solid rgba(0, 0, 0, 0.06);
  transition: padding 0.25s;
}
@media (max-width: 768px) {
  .service_row {
    gap: 6px;
  }
}
.service_row:last-child {
  border-bottom: none;
}
.service_row:hover .svc_num {
  color: #6366F1;
}
.service_row:hover .svc_arrow {
  background: #6366F1;
  color: #fff;
  border-color: #6366F1;
}
.service_row:hover .arrow {
  color: #fff;
}
.svc_num {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: #71717A;
  letter-spacing: 0.1em;
  width: 28px;
  flex-shrink: 0;
  padding-top: 6px;
  transition: color 0.2s;
}
.svc_body {
  flex: 1;
}
.svc_title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  color: #18181B;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.svc_desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #71717A;
  line-height: 1.55;
}
.svc_arrow {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  background: #FDFBF6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #18181B;
  flex-shrink: 0;
  transition: all 0.25s;
}
.svc_arrow .arrow svg {
  width: 12px;
  height: 12px;
}
.careers_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.career_card {
  position: relative;
  background: #FDFBF6;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.career_card:hover {
  border-color: rgba(15, 18, 36, 0.18);
  transform: translateY(-2px);
}
.career_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.career_logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #F5F4EF;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #18181B;
  flex-shrink: 0;
}
.career_years {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: #71717A;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 8px;
  white-space: nowrap;
}
.career_name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #18181B;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.career_role {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  color: #6366F1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.career_desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #71717A;
  line-height: 1.65;
  margin: 0;
}
.career_foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 0.8px solid rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.career_link {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: #18181B;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.career_link:hover {
  color: #6366F1;
  gap: 10px;
}
.career_status {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  color: #A1A1AA;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.career_dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2bb573;
  box-shadow: 0 0 0 3px rgba(43, 181, 115, 0.18);
}
#testimonial {
  background: #F5F4EF;
  position: relative;
  overflow: hidden;
}
.testimonial_orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: #6366F1;
  opacity: 0.08;
  filter: blur(120px);
  top: -150px;
  left: 30%;
  pointer-events: none;
}
.testimonial_inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.testimonial_track {
  position: relative;
  min-height: 280px;
}
@media (max-width: 1025px) {
  .testimonial_track {
    min-height: 229px;
  }
}
@media (max-width: 768px) {
  .testimonial_track {
    min-height: 229px;
  }
}
.testimonial_slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.testimonial_slide.is_active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.testimonial_quote {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 38px);
  color: #18181B;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  border: none;
  padding: 0;
}
.testimonial_q {
  font-size: 1.4em;
  color: #6366F1;
  vertical-align: -0.15em;
  line-height: 0;
}
.testimonial_attr {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.t_avatar {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #FDFBF6;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #18181B;
}
.t_name {
  font-size: 14px;
  font-weight: 500;
  color: #18181B;
}
.t_role {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  color: #71717A;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.testimonial_controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.testimonial_dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial_dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(15, 18, 36, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
.testimonial_dot.is_active {
  width: 28px;
  border-radius: 9999px;
  background: #6366F1;
}
.testimonial_next {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #18181B;
  color: #FDFBF6;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.testimonial_next:hover {
  background: #6366F1;
  transform: translateX(4px);
}
.testimonial_next svg {
  width: 22px;
  height: 22px;
}
.about_grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.about_photo_wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about_photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: #F5F4EF;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  border-radius: 24px;
  overflow: hidden;
}
.about_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}
.about_chip {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #18181B;
  border-radius: 16px;
  padding: 14px 18px;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
}
.about_chip_num {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.025em;
}
.about_chip_label {
  font-family: 'Roboto Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about_heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 48px);
  color: #18181B;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about_body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #71717A;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about_skills_label {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A1A1AA;
  margin: 20px 0 12px;
}
.about_skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.about_skill {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #18181B;
  padding: 7px 16px;
  border-radius: 9999px;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  background: #FDFBF6;
  transition: background 0.2s, color 0.2s;
}
.about_skill:hover {
  background: #18181B;
  color: #fff;
}
#contact {
  background: #F5F4EF;
  position: relative;
  overflow: hidden;
}
.contact_orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #C968F7);
  opacity: 0.1;
  filter: blur(140px);
  bottom: -250px;
  right: -100px;
  pointer-events: none;
}
.contact_closing {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact_heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  color: #18181B;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.contact_heading em {
  font-style: normal;
  background: linear-gradient(90deg, #6366F1, #C968F7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact_subhead {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #71717A;
  margin-bottom: 40px;
}
.contact_form {
  background: rgba(253, 251, 246, 0.7);
  backdrop-filter: blur(12px);
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  margin: 64px auto 0;
  text-align: left;
  position: relative;
  z-index: 1;
}
.form_row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form_2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .form_2col {
    grid-template-columns: 1fr;
  }
}
.form_2col .form_row {
  margin-bottom: 0;
}
.form_label {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #71717A;
}
a:hover,
a:focus,
a:active {
  color: #6366F1;
}
body .form_row .form_input {
  display: block;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #18181B;
  background: #fff;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  border-radius: 9999px;
  padding: 12px 18px;
  outline: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
body .form_row .form_input:focus {
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
body .form_row .form_input::-moz-placeholder {
  color: #A1A1AA;
}
body .form_row .form_input::placeholder {
  color: #A1A1AA;
}
body .form_row .form_textarea {
  border-radius: 24px;
  resize: vertical;
  min-height: 110px;
}
.form_submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background: #6366F1;
  padding: 13px 28px;
  border-radius: 9999px;
  border: 0.8px solid #6366F1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.form_submit:hover {
  background: #4F46E5;
  transform: translateY(-1px);
}
.form_error {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: #ef4444;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
.form_error:empty {
  display: none;
}
.form_success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form_success.show {
  display: block;
}
@media (max-width: 768px) {
  .form_success {
    padding: 0;
  }
}
.form_success_icon {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: #6366F1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}
.form_success_title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #18181B;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.form_success_sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #71717A;
}
footer {
  background: #FDFBF6;
  border-top: 0.8px solid rgba(0, 0, 0, 0.12);
  padding: 28px clamp(24px, 5vw, 64px);
}
.footer_inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer_logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #18181B;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-transform: none;
}
.footer_logo span {
  color: #6366F1;
  font-size: 38px;
  line-height: 0;
}
.footer_links {
  display: flex;
  gap: 24px;
}
.footer_links a {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: #71717A;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.footer_links a:hover {
  color: #18181B;
}
.footer_copy {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  color: #A1A1AA;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
@media (max-width: 880px) {
  .hero_grid {
    grid-template-columns: 1fr;
  }
  .services_grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav_links {
    display: none;
  }
}
@media (max-width: 768px) {
  .careers_grid {
    grid-template-columns: 1fr;
  }
  body,
  .section {
    overflow-x: hidden;
  }
}
.cursor_dot,
.cursor_ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor_dot {
  width: 8px;
  height: 8px;
  background: #18181B;
  transition: opacity 0.3s, transform 0.08s, background 0.2s, width 0.2s, height 0.2s;
}
.cursor_ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(24, 24, 27, 0.35);
  background: transparent;
  transition: opacity 0.3s, border-color 0.2s, width 0.25s cubic-bezier(0.22, 1, 0.36, 1), height 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
body.cursor_ready {
  cursor: none;
}
body.cursor_ready a,
body.cursor_ready button,
body.cursor_ready [role="button"],
body.cursor_ready label {
  cursor: none;
}
body.cursor_ready .cursor_dot,
body.cursor_ready .cursor_ring {
  opacity: 1;
}
body.cursor_hovering .cursor_dot {
  width: 4px;
  height: 4px;
  background: #6366F1;
}
body.cursor_hovering .cursor_ring {
  width: 52px;
  height: 52px;
  border-color: rgba(99, 102, 241, 0.5);
}
body.cursor_clicking .cursor_dot {
  transform: translate(-50%, -50%) scale(0.6);
}
body.cursor_clicking .cursor_ring {
  width: 28px;
  height: 28px;
}
@media (hover: none) {
  .cursor_dot,
  .cursor_ring {
    display: none;
  }
  body.cursor_ready {
    cursor: auto;
  }
}
.back_top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0.8px solid rgba(0, 0, 0, 0.8);
  background: #FDFBF6;
  color: #18181B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s, border-color 0.2s;
}
.back_top .arrow {
  transform: rotate(-45deg);
}
.back_top .arrow svg {
  width: 13px;
  height: 13px;
}
.back_top:hover {
  background: #18181B;
  border-color: #18181B;
  color: #FDFBF6;
}
.back_top.is_visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .back_top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
}
/*# sourceMappingURL=main.css.map */
/*# sourceMappingURL=main.css.map */
