:root {
  --yellow: #ffd400;
  --gold: #e8a900;
  --ink: #17181a;
  --ink-soft: #34373d;
  --muted: #676b73;
  --line: #e8e8e4;
  --paper: #fffef9;
  --cream: #fff7d6;
  --blue: #2764e7;
  --white: #fff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(23, 24, 26, .1);
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  border-color: rgba(23, 24, 26, .08);
  background: rgba(255, 254, 249, .9);
  box-shadow: 0 12px 36px rgba(23, 24, 26, .06);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 100px; }
.site-brand { position: relative; z-index: 102; width: 92px; flex: 0 0 auto; }
.site-brand img { width: 92px; height: 88px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.site-nav a:not(.nav-cta):after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.site-nav a:hover:after, .site-nav a:focus-visible:after { transform: scaleX(1); }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--ink); color: var(--white); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 24, 26, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 26, .025) 1px, transparent 1px),
    radial-gradient(circle at 78% 30%, rgba(255, 212, 0, .24), transparent 31%),
    linear-gradient(145deg, #fff 0%, #fffdf3 50%, #f6f8fb 100%);
  background-size: 44px 44px, 44px 44px, auto, auto;
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-one {
  top: 7%;
  right: -210px;
  width: 440px;
  height: 440px;
  border: 72px solid rgba(255, 212, 0, .12);
  animation: orbitSpin 16s linear infinite;
}
.hero-glow-two { bottom: 8%; left: -90px; width: 180px; height: 180px; background: rgba(39, 100, 231, .07); }
.hero-shell { position: relative; min-height: 820px; padding-top: 125px; }
.hero-slides { position: relative; min-height: 610px; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.hero-slide.is-active { position: relative; visibility: visible; opacity: 1; pointer-events: auto; }
.hero-copy { position: relative; z-index: 3; padding-block: 30px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow:before { content: ""; width: 30px; height: 3px; border-radius: 9px; background: var(--yellow); }
.hero-copy h1, .hero-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.35rem, 5.7vw, 6.25rem);
  font-weight: 850;
  letter-spacing: -.065em;
  line-height: .95;
  text-wrap: balance;
}
.hero-lead { max-width: 590px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--yellow); box-shadow: 0 14px 30px rgba(232, 169, 0, .25); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(232, 169, 0, .35); }
.button-secondary { border-color: var(--line); background: rgba(255, 255, 255, .75); }
.button-dark { background: var(--ink); color: var(--white); }

.hero-art { position: relative; z-index: 2; min-width: 0; padding: 20px; }
.hero-picture {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(23, 24, 26, .07);
  border-radius: 46px;
  background: #fffdf7;
  box-shadow: 0 38px 90px rgba(23, 24, 26, .16);
  transform: rotate(1.5deg);
}
.hero-picture:after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7); pointer-events: none; }
.hero-picture img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; animation: imageFloat 6s ease-in-out infinite; }
.hero-art:before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 55px -2px -10px 40px;
  border-radius: 54px;
  background: linear-gradient(145deg, var(--yellow), #ffae19);
  box-shadow: 0 25px 58px rgba(232, 169, 0, .2);
  transform: rotate(4deg);
}
.orbit { position: absolute; z-index: 3; display: block; border-radius: 50%; pointer-events: none; }
.orbit-one { top: -4px; right: 56px; width: 60px; height: 60px; border: 13px solid var(--blue); animation: bubbleFloat 5s ease-in-out infinite; }
.orbit-two { bottom: 12px; left: 2px; width: 28px; height: 28px; background: var(--yellow); box-shadow: 0 11px 28px rgba(232, 169, 0, .35); animation: bubbleFloat 4s ease-in-out .8s infinite reverse; }
.float-chip {
  position: absolute;
  z-index: 4;
  padding: 10px 15px;
  border: 1px solid rgba(23, 24, 26, .07);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(23, 24, 26, .12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  backdrop-filter: blur(12px);
}
.chip-top { top: 3px; left: -8px; }
.chip-bottom { right: -10px; bottom: 8px; }
.hero-slide.is-active .hero-copy > * { animation: copyRise .75s cubic-bezier(.2,.8,.2,1) both; }
.hero-slide.is-active .hero-copy > *:nth-child(2) { animation-delay: .08s; }
.hero-slide.is-active .hero-copy > *:nth-child(3) { animation-delay: .15s; }
.hero-slide.is-active .hero-copy > *:nth-child(4) { animation-delay: .22s; }
.hero-slide.is-active .hero-art { animation: artReveal .9s cubic-bezier(.2,.8,.2,1) .08s both; }
.hero-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 18px; }
.round-control {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 26px rgba(23, 24, 26, .08);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.round-control:hover { background: var(--yellow); transform: translateY(-2px); }
.hero-dots { display: flex; align-items: center; gap: 7px; }
.hero-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: #c8cad0; cursor: pointer; transition: width .25s ease, background .25s ease; }
.hero-dot.is-active { width: 28px; background: var(--gold); }
.hero-progress { position: relative; width: min(460px, 70%); height: 2px; margin: 18px auto 0; overflow: hidden; background: rgba(23, 24, 26, .08); }
.hero-progress span { display: block; width: 0; height: 100%; background: var(--ink); }
.hero-progress span.is-running { animation: progress 6s linear both; }
.scroll-cue { position: absolute; right: 26px; bottom: 28px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right center; }
.scroll-cue b { color: var(--ink); font-size: 19px; }

.section { padding: 118px 0; }
.section-heading { max-width: 780px; margin-bottom: 58px; }
.section-heading h2, .developer-copy h2, .contact-intro h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); letter-spacing: -.055em; line-height: 1; }
.section-heading > p:last-child { max-width: 700px; margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 390px; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:after { content: ""; position: absolute; right: -50px; bottom: -50px; width: 130px; height: 130px; border-radius: 50%; background: var(--cream); transition: transform .4s ease; }
.service-card:hover { border-color: rgba(232, 169, 0, .5); box-shadow: var(--shadow); transform: translateY(-8px); }
.service-card:hover:after { transform: scale(1.35); }
.service-number { display: inline-grid; width: 48px; height: 48px; margin-bottom: 42px; place-items: center; border-radius: 15px; background: var(--yellow); font-size: 13px; font-weight: 850; }
.service-card h3 { max-width: 280px; margin: 0 0 14px; font-size: 25px; letter-spacing: -.035em; line-height: 1.15; }
.service-card p { position: relative; z-index: 1; color: var(--muted); }
.service-card .card-label { color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cta-strip { padding: 28px 0; background: var(--yellow); }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-strip p { margin: 0; font-size: clamp(1.15rem, 2vw, 1.55rem); }
.cta-strip p a { border-bottom: 2px solid currentColor; font-weight: 850; }

.section-work { color: var(--white); background: var(--ink); }
.section-heading-light .eyebrow, .section-heading-light h2 { color: var(--white); }
.section-heading-light > p:last-child { color: #aeb1b8; }
.project-list { display: grid; gap: 44px; }
.project-card { display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(34px, 6vw, 80px); align-items: center; padding: 34px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 34px; background: #202226; }
.project-card-reverse .project-gallery { order: 2; }
.project-gallery { position: relative; min-width: 0; overflow: hidden; border-radius: 24px; background: #111214; aspect-ratio: 16 / 10; }
.project-gallery > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.03); transition: opacity .5s ease, transform .65s ease; }
.project-gallery > img.is-active { opacity: 1; transform: scale(1); }
.project-gallery button { position: absolute; z-index: 3; bottom: 18px; display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; background: rgba(23, 24, 26, .76); color: var(--white); cursor: pointer; backdrop-filter: blur(10px); }
.project-gallery [data-gallery-prev] { right: 70px; }
.project-gallery [data-gallery-next] { right: 18px; }
.project-copy { padding: 16px 0; }
.project-index { margin: 0 0 22px; color: var(--yellow); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.project-copy h3 { margin: 0; font-size: clamp(2.1rem, 3.5vw, 3.65rem); letter-spacing: -.05em; line-height: 1.02; }
.project-stack { margin: 18px 0; color: #d7d9dd; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.project-copy > p:last-child { color: #afb2b8; }

.developer-section { background: var(--cream); }
.developer-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.developer-copy > p:not(.eyebrow) { margin: 26px 0 32px; color: var(--ink-soft); }
.developer-images { position: relative; min-height: 520px; }
.developer-images img { position: absolute; width: 72%; border: 8px solid var(--white); border-radius: 28px; box-shadow: var(--shadow); }
.developer-images img:first-child { top: 0; left: 0; transform: rotate(-3deg); }
.developer-images img:last-child { right: 0; bottom: 0; transform: rotate(4deg); }
.email-strip { padding: 24px; background: var(--blue); color: var(--white); text-align: center; }
.email-strip p { margin: 0; }
.email-strip a { border-bottom: 1px solid rgba(255, 255, 255, .75); }

.team-section { background: #f6f6f2; }
.team-section .section-heading { max-width: 900px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: 0 14px 34px rgba(23, 24, 26, .05); transition: transform .3s ease, box-shadow .3s ease; }
.team-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.team-card img { width: 100%; aspect-ratio: 1 / .92; object-fit: cover; object-position: top center; background: #eee; }
.team-photo-frame { height: auto; margin: 0; overflow: hidden; aspect-ratio: 1 / .92; background: #eee; }
.team-photo-frame img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.team-photo-sakshi img { object-position: center 16%; transform: scale(1.14); transform-origin: center 16%; }
.team-card div { padding: 24px; }
.team-card h3 { margin: 0 0 4px; font-size: 21px; letter-spacing: -.03em; }
.team-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.team-card .role { color: var(--gold); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 8vw, 110px); align-items: start; }
.contact-intro > p:not(.eyebrow) { max-width: 560px; margin: 24px 0 34px; color: var(--muted); font-size: 18px; }
.contact-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px; }
.contact-details div { display: grid; gap: 3px; min-width: 0; }
.contact-details span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-details a, .contact-details strong { overflow-wrap: anywhere; font-size: 14px; font-weight: 750; }
.contact-form { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: 32px; background: #fafaf7; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 9px; margin-bottom: 22px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #dfe0dc; border-radius: 14px; background: var(--white); color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input { height: 52px; padding: 0 15px; }
.contact-form textarea { min-height: 170px; padding: 14px 15px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255, 212, 0, .18); }
.contact-form button { border: 0; cursor: pointer; }
.contact-form button span { margin-left: 13px; }
.contact-form .honeypot { position: absolute; left: -10000px; }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; }

.site-footer { padding: 78px 0 28px; border-top: 1px solid var(--line); background: #f2f2ee; }
.footer-grid { display: grid; grid-template-columns: .85fr 1.25fr .8fr; gap: 56px; align-items: start; }
.footer-brand img { width: 220px; height: auto; }
.footer-brand > p { color: var(--muted); font-size: 13px; }
.social-link { display: inline-block; margin-top: 8px; font-weight: 800; }
.footer-title { margin: 0 0 20px; font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer-registration { padding: 28px; border: 1px solid #dedfd9; border-radius: 24px; background: rgba(255, 255, 255, .58); }
.footer-registration img { width: min(250px, 100%); margin-bottom: 20px; }
.footer-registration span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-registration strong { display: block; margin-top: 4px; overflow-wrap: anywhere; font-size: 17px; letter-spacing: .025em; }
.footer-nav { display: grid; gap: 8px; }
.footer-nav .footer-title { margin-bottom: 10px; }
.footer-nav a { width: fit-content; color: var(--muted); font-size: 14px; }
.footer-nav a:hover { color: var(--ink); }
.footer-services { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 54px; padding-top: 24px; border-top: 1px solid #dedfd9; }
.footer-services span { padding: 6px 10px; border-radius: 999px; background: rgba(255, 255, 255, .66); color: var(--muted); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes copyRise { from { opacity: 0; transform: translate3d(-30px, 24px, 0); } to { opacity: 1; transform: none; } }
@keyframes artReveal { from { opacity: 0; transform: translate3d(46px, 26px, 0) rotate(3deg) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes imageFloat { 0%, 100% { transform: scale(1.01) translateY(0); } 50% { transform: scale(1.025) translateY(-8px); } }
@keyframes bubbleFloat { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(8px, -12px, 0); } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes progress { from { width: 0; } to { width: 100%; } }

@media (max-width: 1050px) {
  .site-nav { gap: 22px; }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(3.2rem, 6vw, 5rem); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  html { scroll-padding-top: 82px; }
  .header-inner { min-height: 82px; }
  .site-brand, .site-brand img { width: 72px; height: 70px; }
  .menu-toggle { position: relative; z-index: 102; display: grid; width: 46px; height: 46px; padding: 11px; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; padding: 110px 32px 50px; background: var(--paper); opacity: 0; visibility: hidden; transform: translateY(-16px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { font-size: 24px; letter-spacing: -.02em; text-transform: none; }
  .nav-cta { margin-top: 10px; padding: 16px 24px; color: var(--white); }
  .hero, .hero-shell { min-height: 930px; }
  .hero-shell { padding-top: 108px; }
  .hero-slides { min-height: 750px; }
  .hero-slide { grid-template-columns: 1fr; align-content: center; gap: 22px; }
  .hero-copy { padding: 10px 8px 0; text-align: center; }
  .eyebrow { margin-bottom: 15px; }
  .hero-copy h1, .hero-copy h2 { margin-inline: auto; font-size: clamp(2.7rem, 11vw, 4.5rem); line-height: .98; }
  .hero-lead { margin: 20px auto 0; font-size: 16px; }
  .hero-actions { justify-content: center; margin-top: 24px; }
  .hero-art { width: min(100%, 590px); margin-inline: auto; padding: 14px 18px; }
  .hero-picture { border-radius: 30px; }
  .hero-picture img { border-radius: 30px; }
  .hero-art:before { inset: 42px 6px -2px 40px; border-radius: 34px; }
  .float-chip { font-size: 10px; }
  .chip-top { left: 0; }
  .chip-bottom { right: 0; }
  .hero-controls { margin-top: 4px; }
  .scroll-cue { display: none; }
  .section { padding: 86px 0; }
  .service-grid, .project-card, .developer-layout, .contact-layout { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .project-card-reverse .project-gallery { order: 0; }
  .developer-images { min-height: 430px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); }
  .hero, .hero-shell { min-height: 860px; }
  .hero-slides { min-height: 690px; }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  .hero-actions .button { width: 100%; }
  .hero-art { padding-inline: 6px; }
  .orbit-one { right: 20px; width: 44px; height: 44px; border-width: 10px; }
  .float-chip { display: none; }
  .round-control { width: 42px; height: 42px; }
  .hero-dots { gap: 5px; }
  .hero-dot { width: 6px; height: 6px; }
  .hero-dot.is-active { width: 20px; }
  .section-heading h2, .developer-copy h2, .contact-intro h2 { font-size: 2.65rem; }
  .cta-strip-inner { align-items: flex-start; flex-direction: column; }
  .project-card { padding: 18px; border-radius: 25px; }
  .project-gallery { border-radius: 18px; }
  .developer-images { min-height: 330px; }
  .team-grid, .contact-details, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .team-card { display: grid; grid-template-columns: 120px 1fr; }
  .team-card img { height: 100%; aspect-ratio: auto; }
  .team-card .team-photo-frame { width: 120px; height: 150px; align-self: start; aspect-ratio: auto; }
  .team-card .team-photo-frame img { width: 100%; height: 100%; }
  .footer-brand { grid-column: auto; }
  .footer-registration { padding: 22px; }
}

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

/* Aarambh-inspired hero: stable brand story with a focused service carousel */
.header-inner { min-height: 116px; }
.site-brand, .site-brand img { width: 126px; }
.site-brand img { height: 112px; object-fit: contain; }
.home-header .header-inner { min-height: 88px; justify-content: flex-end; }
.hero { min-height: 820px; background: radial-gradient(circle at 82% 22%, rgba(255, 212, 0, .18), transparent 28%), linear-gradient(145deg, #f5f5f0 0%, #fffdf6 55%, #f8f2e9 100%); }
.hero-shell { display: grid; grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr); gap: clamp(42px, 6vw, 92px); align-items: center; min-height: 820px; padding-top: 145px; padding-bottom: 70px; }
.hero-intro { position: relative; z-index: 3; }
.hero-brand-lockup { display: flex; width: fit-content; margin-bottom: 26px; flex-direction: column; align-items: center; }
.hero-brand-lockup .eyebrow { justify-content: center; margin-bottom: 0; text-align: center; }
.hero-brand-mark { display: grid; width: 190px; height: 190px; margin-bottom: 22px; place-items: center; overflow: hidden; border: 1px solid rgba(23, 24, 26, .08); border-radius: 42px; background: rgba(255, 255, 255, .78); box-shadow: 0 20px 50px rgba(23, 24, 26, .1); }
.hero-brand-mark img { width: 166px; height: 166px; object-fit: contain; }
.hero-intro h1 { max-width: 620px; margin: 0; font-size: clamp(3.1rem, 4.8vw, 5rem); font-weight: 880; letter-spacing: -.068em; line-height: .94; text-wrap: balance; }
.hero-intro h1 span { display: block; color: #227568; }
.hero-intro .hero-lead { max-width: 570px; margin-top: 28px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.hero-proof span { padding: 7px 11px; border: 1px solid rgba(23, 24, 26, .08); border-radius: 999px; background: rgba(255, 255, 255, .7); color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.hero-showcase { position: relative; min-width: 0; padding: 22px 22px 18px; border: 1px solid rgba(23, 24, 26, .08); border-radius: 40px; background: rgba(255, 250, 244, .92); box-shadow: 0 34px 90px rgba(23, 24, 26, .14); }
.hero-showcase:before { content: ""; position: absolute; z-index: -1; right: -24px; bottom: -25px; width: 72%; height: 78%; border-radius: 44px; background: linear-gradient(145deg, #ffd400, #ffbd36); transform: rotate(3deg); }
.hero-showcase .hero-slides { min-height: 555px; }
.hero-showcase .hero-slide { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 0; visibility: hidden; opacity: 0; pointer-events: none; transform: translate3d(38px, 0, 0) scale(.97); transition: opacity .55s ease, transform .65s cubic-bezier(.2,.8,.2,1), visibility .55s; }
.hero-showcase .hero-slide.is-active { position: absolute; visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
.showcase-visual { position: relative; height: 398px; overflow: hidden; border-radius: 28px; background: #fffdf7; }
.showcase-visual:after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(23, 24, 26, .06); border-radius: inherit; pointer-events: none; }
.showcase-visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.025); }
.hero-slide.is-active .showcase-visual img { animation: showcaseDrift 6s ease-in-out both; }
.showcase-copy { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: end; min-height: 132px; padding: 22px 8px 8px; border-top: 1px solid rgba(23, 24, 26, .08); }
.showcase-copy > span { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.showcase-copy p { margin: 0 0 4px; color: #227568; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.showcase-copy h2 { margin: 0; font-size: clamp(1.9rem, 2.7vw, 2.8rem); letter-spacing: -.052em; line-height: 1; }
.showcase-copy small { display: block; margin-top: 9px; color: var(--muted); font-size: 11px; font-weight: 750; }
.hero-showcase .hero-controls { justify-content: flex-start; margin: 14px 4px 0; }
.hero-showcase .round-control { width: 42px; height: 42px; background: #fff; }
.pause-control { margin-left: auto; padding: 7px 10px; border: 0; background: transparent; color: var(--muted); font-size: 11px; font-weight: 800; cursor: pointer; }
.pause-control:hover { color: var(--ink); }
.hero-showcase .hero-progress { width: calc(100% - 8px); margin: 13px 4px 0; }
@keyframes showcaseDrift { from { transform: scale(1.06) translate3d(10px, 0, 0); } to { transform: scale(1.015) translate3d(-6px, 0, 0); } }

/* Recent projects from the 2026 services brochure */
.recent-projects { background: #fafaf7; }
.featured-projects { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.featured-project { position: relative; display: flex; min-height: 500px; padding: clamp(30px, 4vw, 50px); flex-direction: column; border: 1px solid #ddd8c9; border-radius: 34px; background: #fff; box-shadow: 0 18px 46px rgba(23, 24, 26, .055); transition: transform .3s ease, box-shadow .3s ease; }
.featured-project:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.project-monogram { position: absolute; top: 34px; right: 34px; display: grid; width: 62px; height: 62px; place-items: center; border-radius: 50%; color: #fff; font-size: 25px; font-weight: 900; }
.monogram-green { background: #176e58; }
.monogram-blue { background: #315fab; }
.project-type { margin: 0 0 18px; color: #176e58; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.featured-project h3 { margin: 0 0 18px; font-size: clamp(2.5rem, 4vw, 4rem); letter-spacing: -.055em; }
.featured-project > strong { margin-bottom: 14px; font-size: 18px; }
.featured-project > p:not(.project-type) { max-width: 580px; margin: 0; color: var(--muted); }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 36px; }
.project-tags span { padding: 7px 12px; border-radius: 999px; background: #fff0a6; font-size: 11px; font-weight: 800; }
.project-link { margin-top: 22px; color: var(--blue); font-size: 13px; font-weight: 850; }
.project-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.project-mini { display: grid; grid-template-columns: 46px 1fr; gap: 18px; min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: #fff; transition: transform .25s ease, border-color .25s ease; }
.project-mini:hover { border-color: #d1b94a; transform: translateY(-5px); }
.project-mini > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #176e58; color: #fff; font-weight: 900; }
.project-mini:nth-child(even) > span { background: #66519a; }
.project-mini small { color: #176e58; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.project-mini h3 { margin: 8px 0 10px; font-size: 27px; letter-spacing: -.035em; }
.project-mini p { margin: 0; color: var(--muted); font-size: 14px; }
.project-mini strong { display: block; margin-top: 24px; color: var(--blue); font-size: 12px; }

/* Staff augmentation */
.staff-section { overflow: hidden; background: linear-gradient(135deg, #fff4bf, #fffdf5 55%, #eef7f5); }
.staff-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.staff-intro h2 { margin: 0; font-size: clamp(3rem, 5.4vw, 5.8rem); letter-spacing: -.065em; line-height: .95; }
.staff-intro > p:not(.eyebrow):not(.staff-rate) { margin: 27px 0 22px; color: var(--ink-soft); font-size: 18px; }
.staff-rate { margin: 0 0 34px; font-size: clamp(1.6rem, 3vw, 2.65rem); font-weight: 850; letter-spacing: -.04em; line-height: 1.08; }
.staff-rate strong { color: #176e58; }
.staff-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.text-link { border-bottom: 1px solid currentColor; font-weight: 800; }
.staff-process { padding: clamp(26px, 4vw, 46px); border: 1px solid rgba(23, 24, 26, .08); border-radius: 36px; background: rgba(255, 255, 255, .76); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.staff-process-heading > span { color: #176e58; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.staff-process-heading h3 { margin: 9px 0 30px; font-size: clamp(1.75rem, 3vw, 2.65rem); letter-spacing: -.045em; line-height: 1.05; }
.staff-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.staff-step { position: relative; display: grid; grid-template-columns: 66px 1fr; gap: 18px; min-height: 128px; padding-bottom: 26px; }
.staff-step:not(:last-child):before { content: ""; position: absolute; top: 54px; bottom: 0; left: 26px; width: 3px; border-radius: 99px; background: linear-gradient(var(--yellow), #73b5a9); }
.staff-step-number { position: relative; z-index: 1; display: grid; width: 56px; height: 56px; place-items: center; border: 6px solid #fff; border-radius: 50%; background: var(--yellow); box-shadow: 0 8px 24px rgba(23, 24, 26, .12); font-size: 12px; font-weight: 950; }
.staff-step:nth-child(2) .staff-step-number { background: #acd9d1; }
.staff-step:nth-child(3) .staff-step-number { background: #176e58; color: #fff; }
.staff-step h4 { margin: 4px 0 7px; font-size: 21px; letter-spacing: -.03em; line-height: 1.15; }
.staff-step p { margin: 0; color: var(--muted); font-size: 14px; }
.staff-speed { display: flex; margin: 2px 0 0 74px; padding: 18px 20px; flex-direction: column; border-radius: 18px; background: var(--ink); color: #fff; }
.staff-speed strong { color: var(--yellow); font-size: clamp(1.55rem, 3vw, 2.35rem); letter-spacing: -.04em; line-height: 1; }
.staff-speed span { margin-top: 7px; color: #d5d7dc; font-size: 12px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }

/* Logo sizing and MSME aspect-ratio correction */
.footer-registration img { width: min(250px, 100%); height: auto; aspect-ratio: 500 / 396; object-fit: contain; object-position: left center; }

@media (max-width: 1100px) {
  .hero-shell { grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr); gap: 38px; }
  .hero-intro h1 { font-size: clamp(3rem, 5vw, 4.5rem); }
  .showcase-visual { height: 360px; }
  .hero-showcase .hero-slides { min-height: 520px; }
}
@media (max-width: 900px) {
  .hero, .hero-shell { min-height: 0; }
  .hero-shell { grid-template-columns: 1fr; padding-top: 150px; padding-bottom: 94px; }
  .hero-intro { max-width: 720px; }
  .hero-intro h1 { max-width: 760px; font-size: clamp(3.2rem, 8vw, 4.8rem); }
  .hero-showcase { width: min(100%, 680px); }
  .featured-projects, .staff-layout { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .header-inner { min-height: 98px; }
  .site-brand, .site-brand img { width: 92px; }
  .site-brand img { height: 88px; }
}
@media (max-width: 620px) {
  .hero-shell { gap: 44px; padding-top: 128px; }
  .hero-brand-lockup { width: 100%; }
  .hero-brand-mark { width: 150px; height: 150px; border-radius: 34px; }
  .hero-brand-mark img { width: 130px; height: 130px; }
  .hero-intro h1 { font-size: clamp(2.7rem, 12vw, 3.55rem); }
  .hero-intro .hero-lead { font-size: 16px; }
  .hero-showcase { padding: 14px; border-radius: 28px; }
  .hero-showcase:before { right: -10px; bottom: -14px; }
  .showcase-visual { height: 275px; border-radius: 20px; }
  .hero-showcase .hero-slides { min-height: 425px; }
  .showcase-copy { min-height: 144px; padding: 18px 4px 6px; }
  .showcase-copy h2 { font-size: 2rem; }
  .hero-showcase .hero-controls { gap: 10px; }
  .featured-projects, .project-mini-grid { grid-template-columns: 1fr; }
  .featured-project { min-height: 460px; }
  .project-mini { grid-template-columns: 40px 1fr; padding: 24px; }
  .staff-step { grid-template-columns: 58px 1fr; gap: 12px; }
  .staff-speed { margin-left: 0; }
}

/* Legal pages */
.legal-page { background: var(--paper); }
.legal-page .site-header { border-color: rgba(23, 24, 26, .08); background: rgba(255, 254, 249, .94); box-shadow: 0 12px 36px rgba(23, 24, 26, .06); backdrop-filter: blur(18px); }
.legal-hero {
  padding: 170px 0 78px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 196, 56, .28), transparent 26%),
    radial-gradient(circle at 12% 85%, rgba(100, 116, 255, .2), transparent 30%),
    var(--ink);
  color: #fff;
}
.legal-hero .eyebrow { color: var(--yellow); }
.legal-hero h1 { max-width: 820px; color: #fff; }
.legal-hero p { max-width: 680px; color: rgba(255, 255, 255, .68); }
.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(38px, 7vw, 100px);
  align-items: start;
  padding-top: clamp(64px, 9vw, 110px);
  padding-bottom: clamp(80px, 10vw, 130px);
}
.legal-content { max-width: 820px; }
.legal-content section + section { margin-top: 46px; padding-top: 46px; border-top: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 15px; font-size: clamp(1.4rem, 2vw, 2rem); letter-spacing: -.025em; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.85; }
.legal-content p + p { margin-top: 18px; }
.legal-content ul { display: grid; gap: 10px; padding-left: 22px; }
.legal-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-nav {
  position: sticky;
  top: 120px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.legal-nav strong { display: block; margin-bottom: 14px; }
.legal-nav a { display: block; padding: 9px 0; color: var(--muted); }
.legal-nav a:hover, .legal-nav a[aria-current="page"] { color: var(--ink); }
.legal-page .footer-grid { grid-template-columns: .9fr .55fr .8fr 1.1fr; gap: 36px; }
.legal-page .footer-grid h2 { margin: 0 0 16px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.legal-page .footer-grid > div:not(.footer-brand):not(.footer-registration) { display: grid; align-content: start; gap: 8px; }
.legal-page .footer-grid > div:not(.footer-brand):not(.footer-registration) a { color: var(--muted); font-size: 14px; }
.legal-page .footer-grid > div:not(.footer-brand):not(.footer-registration) a:hover { color: var(--ink); }
@media (max-width: 1060px) {
  .legal-page .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 840px) {
  .legal-shell { grid-template-columns: 1fr; }
  .legal-nav { position: static; order: -1; }
}
@media (max-width: 560px) {
  .legal-page .footer-grid { grid-template-columns: 1fr; }
}
