@font-face {
  font-family: Sora;
  src: url('../fonts/sora-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Sora;
  src: url('../fonts/sora-600.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Sora;
  src: url('../fonts/sora-700.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Inter;
  src: url('../fonts/inter-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Inter;
  src: url('../fonts/inter-600.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap
}

:root {
  --blue: #246bfd;
  --violet: #7c3aed;
  --cyan: #38d9ff;
  --navy: #080f24;
  --white: #f8faff;
  --ink: #0d1630;
  --muted: #606b82;
  --line: #dfe6f4;
  --paper: #f2f0eb;
  --radius: 28px;
  --shadow: 0 28px 90px rgba(8, 15, 36, .12);
  --sora: Sora, Arial, sans-serif;
  --inter: Inter, Arial, sans-serif
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--inter);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden
}

body.menu-open {
  overflow: hidden
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  color: inherit;
  text-decoration: none
}

button,
input,
select,
textarea {
  font: inherit
}

.section-shell {
  width: min(1240px, calc(100% - 72px));
  margin-inline: auto
}

.section-dark {
  background: var(--navy);
  color: #fff
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font: 600 12px/1 var(--sora);
  letter-spacing: .16em;
  text-transform: uppercase
}

.section-dark .eyebrow {
  color: var(--cyan)
}

.eyebrow:before {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor
}

.display-title {
  margin: 18px 0 0;
  font: 600 clamp(42px, 5.2vw, 76px)/1.05 var(--sora);
  letter-spacing: -.05em;
  max-width: 900px
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, var(--blue), var(--violet) 55%, var(--cyan));
  background-clip: text;
  -webkit-background-clip: text
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, .65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 64px
}

.section-heading>p {
  margin: 0;
  color: var(--muted);
  font-size: 17px
}

.section-dark .section-heading>p {
  color: rgba(255, 255, 255, .62)
}

.button {
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font: 600 14px/1 var(--sora);
  transition: transform .25s ease, background .25s, color .25s, border .25s
}

.button span {
  font-size: 18px
}

.button-primary {
  color: #fff;
  background: linear-gradient(110deg, var(--blue), var(--violet));
  box-shadow: 0 15px 45px rgba(36, 107, 253, .28)
}

.button-light {
  background: #fff;
  color: var(--navy)
}

.button-ghost {
  border: 1px solid rgba(8, 15, 36, .16);
  background: rgba(255, 255, 255, .55)
}

.button-outline {
  border: 1px solid rgba(8, 15, 36, .2);
  width: 100%
}

.button-dark-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25)
}

.button:hover {
  transform: translateY(-3px)
}

.text-link {
  font: 600 14px var(--sora);
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  background: #fff;
  color: #000;
  transform: translateY(-160%)
}

.skip-link:focus {
  transform: none
}

/* preloader */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #050914;
  color: #fff;
  display: grid;
  place-items: center;
  transition: clip-path .9s cubic-bezier(.77, 0, .18, 1), visibility .9s;
  clip-path: inset(0)
}

.site-preloader.is-done {
  clip-path: inset(0 0 100% 0);
  visibility: hidden
}

.preloader-inner {
  width: min(520px, 78vw);
  text-align: center;
  position: relative
}

.preloader-inner img {
  width: 120px;
  margin: 0 auto 16px
}

.preloader-inner strong {
  display: block;
  font: 600 clamp(38px, 7vw, 82px)/1 var(--sora);
  letter-spacing: -.06em
}

.preloader-tagline {
  display: block;
  margin-top: 12px;
  color: #fff;
  opacity: 0.8;
  font: 400 clamp(14px, 2vw, 18px)/1.4 var(--sora);
}

.preloader-inner span {
  display: block;
  margin-top: 24px;
  color: var(--cyan);
  font: 600 12px var(--sora)
}

.preloader-inner i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--cyan));
  margin-top: 20px;
  transform: scaleX(0);
  transform-origin: left
}

/* cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: none
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan)
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(36, 107, 253, .65);
  transition: width .2s, height .2s, background .2s
}

.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  background: rgba(56, 217, 255, .08)
}

/* header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 18px;
  left: 2vw;
  width: 96vw;
  height: 64px;
  padding: 0 8px 0 24px;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  border: 1px solid rgba(8, 15, 36, .1);
  border-radius: 999px;
  background: rgba(248, 250, 255, .88);
  box-shadow: 0 15px 40px rgba(8, 15, 36, .1);
  backdrop-filter: blur(18px);
}

.admin-bar .site-header {
  top: 50px;
}

.site-header>* {
  /* removed pointer-events as header is now a unified pill */
}

.header-logo {
  display: block;
  width: 150px;
  transform: translateY(-8px);
}

.header-logo img {
  width: 100%
}

.nav-pill {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-pill>a,
.nav-dropdown>button {
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font: 600 12px var(--sora);
  color: var(--navy);
  cursor: pointer
}

.nav-pill>a:hover,
.nav-dropdown>button:hover {
  background: #fff
}

.nav-dropdown {
  position: relative
}

.mega-menu {
  position: absolute;
  top: 52px;
  left: 50%;
  width: 680px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: rgba(8, 15, 36, .97);
  color: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: .25s
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0)
}

.mega-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px;
  border-radius: 12px;
  font: 500 12px var(--sora)
}

.mega-menu a:hover {
  background: rgba(255, 255, 255, .08)
}

.mega-menu span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--cyan);
  background: rgba(56, 217, 255, .09)
}

.header-cta {
  justify-self: end;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font: 600 12px var(--sora);
  display: flex;
  align-items: center;
  gap: 16px
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  place-content: center;
  gap: 6px
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: #fff
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: var(--navy);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: .35s
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 80px 8vw
}

.mobile-menu a {
  font: 600 clamp(30px, 9vw, 60px)/1.4 var(--sora);
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

/* hero */
.hero {
  position: relative;
  min-height: 960px;
  padding: 160px 0 100px;
  background: radial-gradient(circle at 74% 24%, rgba(56, 217, 255, .09), transparent 30%), radial-gradient(circle at 22% 70%, rgba(124, 58, 237, .08), transparent 30%), var(--paper);
  overflow: hidden
}

.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(8, 15, 36, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 15, 36, .035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 85%)
}

.hero-panel {
  position: relative;
  z-index: 2;
  margin-top: 180px;
  padding: 55px 48px;
  width: min(1000px, calc(100% - 72px));
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px)
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 600 11px var(--sora)
}

.hero-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(56, 217, 255, .14)
}

.hero-title {
  margin: 26px 0 22px;
  font: 600 clamp(48px, 6.1vw, 88px)/.98 var(--sora);
  letter-spacing: -.065em
}

.hero-title span {
  display: block
}

.hero-panel>p {
  max-width: 660px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-proof {
  display: flex;
  gap: 50px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line)
}

.hero-proof div {
  display: flex;
  align-items: baseline;
  gap: 10px
}

.hero-proof strong {
  font: 600 24px var(--sora)
}

.hero-proof span {
  font-size: 12px;
  color: var(--muted)
}

.hero-float {
  position: absolute;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(8, 15, 36, .16);
  border: 5px solid rgba(255, 255, 255, .8);
  background: #fff
}

.hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-float-a {
  left: -55px;
  top: 180px;
  width: 220px;
  height: 170px;
  transform: rotate(-4deg)
}

.hero-float-b {
  right: 6vw;
  top: 120px;
  width: 310px;
  height: 390px;
  transform: rotate(3deg)
}

.hero-float-c {
  right: -50px;
  bottom: 70px;
  width: 260px;
  height: 190px;
  transform: rotate(-3deg)
}

.scroll-cue {
  position: absolute;
  right: 25px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font: 600 10px var(--sora);
  text-transform: uppercase;
  letter-spacing: .16em
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 60px;
  background: var(--navy)
}

.marquee-section {
  overflow: hidden;
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 20px 0
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite
}

.marquee-track span {
  font: 600 15px var(--sora);
  white-space: nowrap;
  padding: 0 24px
}

.marquee-track b {
  color: var(--violet);
  padding-left: 22px
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

/* services */
.services-section {
  padding: 140px 0 100px;
}

.services-section .section-shell {
  max-width: none;
  width: 100%;
  padding: 0;
}

.services-section-inner {
  max-width: min(1240px, calc(100% - 72px));
  margin-inline: auto;
}

.services-grid {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 20px min(calc((100vw - 1240px) / 2 + 36px), 36px) 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  user-select: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.services-carousel-arrows {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.services-carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .2s;
  flex-shrink: 0;
}

.services-carousel-arrow:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
  transform: scale(1.08);
}

.service-card {
  flex: 0 0 min(380px, 82vw);
  scroll-snap-align: start;
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: background .35s, transform .35s, border-color .35s;
  cursor: grab;
}

.service-card:active {
  cursor: grabbing;
}

.service-card:before {
  content: '';
  position: absolute;
  inset: auto -60px -100px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--violet), transparent 68%);
  opacity: 0;
  transition: .35s
}

.service-card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .15);
  transform: translateY(-5px)
}

.service-card:hover:before {
  opacity: .35
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(56, 217, 255, .09);
  color: var(--cyan);
  font: 600 19px var(--sora)
}

.service-no {
  position: absolute;
  top: 38px;
  right: 34px;
  color: rgba(255, 255, 255, .25);
  font: 600 12px var(--sora)
}

.service-card h3 {
  margin: 55px 0 12px;
  font: 600 22px/1.2 var(--sora);
  letter-spacing: -.025em
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 14px
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: #fff;
  font: 600 12px var(--sora)
}

.service-card a span {
  color: var(--cyan)
}

/* work */
.work-section {
  padding: 140px 0;
  background: var(--paper);
  overflow: hidden
}

.work-rail {
  display: flex;
  gap: 28px;
  width: max-content;
  padding-right: 60px
}

.project-card {
  width: min(580px, 75vw)
}

.project-card a {
  display: block
}

.project-image {
  height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy)
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .5s
}

.project-image:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 15, 36, .42), transparent 55%);
  opacity: .4;
  transition: opacity .4s
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s, transform .4s;
  background: rgba(8, 15, 36, 0.6);
  z-index: 2;
  transform: translateY(20px)
}

.project-overlay span {
  padding: 12px 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font: 600 13px var(--sora);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
  transform: translateY(20px)
}

.project-card:hover .project-image img {
  transform: scale(1.05)
}

.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0)
}

.project-card:hover .project-overlay span {
  transform: translateY(0)
}

.project-meta {
  padding: 20px 4px
}

.project-meta small {
  color: var(--violet);
  font: 600 10px var(--sora);
  text-transform: uppercase;
  letter-spacing: .12em
}

.project-meta h3 {
  margin: 6px 0 0;
  font: 600 24px var(--sora);
  letter-spacing: -.03em
}

/* about bento */
.about-band {
  padding: 140px 0
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center
}

.about-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, .6);
  font-size: 17px;
  margin: 26px 0 32px
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.bento {
  min-height: 180px;
  border-radius: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden
}

.bento-big {
  grid-column: span 2;
  min-height: 260px;
  position: relative
}

.bento-big img {
  position: absolute;
  right: -20px;
  top: -30px;
  width: 300px;
  opacity: .85
}

.bento strong {
  font: 600 34px var(--sora);
  letter-spacing: -.04em
}

.bento span,
.bento p {
  color: rgba(255, 255, 255, .6);
  margin: 5px 0 0
}

.bento-violet {
  background: linear-gradient(135deg, var(--violet), #4e20a9)
}

.bento-cyan {
  background: linear-gradient(135deg, #087bb5, var(--cyan));
  color: var(--navy)
}

.bento-cyan span {
  color: rgba(8, 15, 36, .7)
}

/* process */
.process-section {
  padding: 140px 0
}

.process-line {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line)
}

.process-step {
  position: relative;
  padding: 45px 35px 15px 0;
  border-right: 1px solid var(--line);
  min-height: 240px
}

.process-step:before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(36, 107, 253, .12)
}

.process-step span {
  color: var(--violet);
  font: 600 12px var(--sora)
}

.process-step h3 {
  margin: 40px 0 12px;
  font: 600 22px var(--sora)
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
  max-width: 230px
}

/* packages */
.packages-section {
  padding: 140px 0;
  background: #fff
}

.package-tabs,
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: auto;
  padding-bottom: 14px;
  margin-bottom: 34px
}

.package-tabs button,
.filter-bar button {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 17px;
  border-radius: 999px;
  color: var(--muted);
  font: 600 11px var(--sora);
  cursor: pointer
}

.package-tabs button.active,
.filter-bar button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff
}

.package-tabs a {
  margin-left: auto;
  white-space: nowrap;
  font: 600 12px var(--sora)
}

.package-panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.package-panel.active {
  display: grid
}

.package-card {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: .3s
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(36, 107, 253, .3)
}

.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--violet);
  font: 600 10px var(--sora);
  text-transform: uppercase;
  letter-spacing: .12em
}

.package-top b {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--navy);
  letter-spacing: 0
}

.package-card h3 {
  margin: 18px 0 16px;
  font: 600 21px/1.25 var(--sora);
  min-height: 52px
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px
}

.package-price strong {
  font: 600 32px var(--sora)
}

.package-price del {
  color: var(--muted);
  font-size: 13px
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1
}

.package-card li {
  position: relative;
  padding: 8px 0 8px 23px;
  border-bottom: 1px solid rgba(8, 15, 36, .07);
  font-size: 13px;
  color: #3f4960
}

.package-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700
}

/* testimonials */
.testimonials-section {
  padding: 140px 0;
  overflow: hidden
}

.testimonial-slider {
  position: relative;
  margin-top: 70px
}

.testimonial {
  display: none;
  margin: 0;
  max-width: 1050px
}

.testimonial.active {
  display: block
}

.testimonial>span {
  display: block;
  color: var(--cyan);
  font: 600 90px/.5 Georgia
}

.testimonial p {
  font: 500 clamp(30px, 4.5vw, 62px)/1.16 var(--sora);
  letter-spacing: -.04em;
  margin: 35px 0
}

.testimonial cite {
  font: 600 12px var(--sora);
  color: rgba(255, 255, 255, .5);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .12em
}

.slider-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 15px
}

.slider-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer
}

.slider-controls b {
  font: 500 11px var(--sora);
  color: rgba(255, 255, 255, .5)
}

.slider-controls i {
  font-style: normal;
  color: var(--cyan)
}

/* faq/contact */
.faq-section {
  padding: 140px 0
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px
}

.faq-grid>div:first-child>p {
  color: var(--muted);
  max-width: 420px
}

.accordion {
  border-top: 1px solid var(--line)
}

.accordion-item {
  border-bottom: 1px solid var(--line)
}

.accordion-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  color: var(--navy);
  font: 600 16px var(--sora);
  cursor: pointer
}

.accordion-item button b {
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
  transition: .25s
}

.accordion-item>div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s
}

.accordion-item>div p {
  overflow: hidden;
  margin: 0;
  color: var(--muted)
}

.accordion-item.open>div {
  grid-template-rows: 1fr
}

.accordion-item.open>div p {
  padding: 0 50px 25px 0
}

.accordion-item.open button b {
  transform: rotate(45deg)
}

.contact-section {
  padding: 140px 0
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px
}

.contact-grid>div>p {
  color: rgba(255, 255, 255, .58);
  max-width: 480px
}

.contact-direct {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 8px
}

.contact-direct a {
  font: 600 16px var(--sora);
  color: var(--cyan)
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(255, 255, 255, .55);
  font: 600 10px var(--sora);
  text-transform: uppercase;
  letter-spacing: .08em
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  padding: 14px;
  outline: 0;
  text-transform: none;
  letter-spacing: 0
}

.lead-form select option {
  color: #000
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--cyan)
}

.form-wide {
  grid-column: 1/-1
}

.hp-field {
  position: absolute !important;
  left: -10000px !important
}

.contact-page-section .lead-form label {
  color: var(--muted)
}

.contact-page-section .lead-form input,
.contact-page-section .lead-form select,
.contact-page-section .lead-form textarea,
.form-card .lead-form input,
.form-card .lead-form select,
.form-card .lead-form textarea {
  background: #fff;
  border-color: var(--line);
  color: var(--navy)
}

/* footer */
.final-cta {
  padding: 115px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 80px;
  align-items: end
}

.final-cta-grid>div:last-child p {
  color: rgba(255, 255, 255, .58);
  margin: 0 0 25px
}

.site-footer {
  padding: 85px 0 30px
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, .65fr);
  gap: 65px
}

.footer-brand img {
  width: 290px;
  margin-bottom: 22px
}

.footer-brand p {
  max-width: 370px;
  color: rgba(255, 255, 255, .5);
  font-size: 13px
}

.footer-main h3 {
  margin: 0 0 17px;
  color: var(--cyan);
  font: 600 11px var(--sora);
  text-transform: uppercase;
  letter-spacing: .12em
}

.footer-main>div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-main a {
  color: rgba(255, 255, 255, .7);
  font-size: 13px
}

.footer-main a:hover {
  color: #fff
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .4);
  font-size: 11px
}

.footer-bottom div {
  display: flex;
  gap: 18px
}

.floating-contact {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--cyan), var(--blue));
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 55px rgba(36, 107, 253, .35)
}

.floating-contact span {
  font: 600 12px var(--sora)
}

.floating-contact b {
  position: absolute;
  top: 11px;
  right: 14px;
  font-size: 12px
}

/* inner pages */
.inner-page {
  min-height: 70vh
}

.page-hero {
  position: relative;
  padding: 210px 0 125px;
  overflow: hidden
}

.page-hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -180px;
  top: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--violet), transparent 65%);
  opacity: .25
}

.page-hero h1 {
  position: relative;
  max-width: 1050px;
  margin: 20px 0;
  font: 600 clamp(48px, 7vw, 96px)/1.02 var(--sora);
  letter-spacing: -.06em
}

.page-hero p {
  position: relative;
  max-width: 720px;
  color: rgba(255, 255, 255, .62);
  font-size: 18px
}

.services-page-section {
  padding: 30px 0 140px
}

.portfolio-page-section,
.pricing-page-section,
.contact-page-section,
.blog-section,
.article-section,
.content-sections,
.service-detail {
  padding: 110px 0
}

.filter-bar {
  flex-wrap: wrap
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px
}

.portfolio-grid .project-card {
  width: auto
}

.portfolio-grid .project-image {
  height: 330px
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.pricing-grid>[hidden],
.portfolio-grid>[hidden] {
  display: none
}

.contact-page-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px
}

.contact-page-grid h2 {
  font: 600 38px var(--sora)
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 0;
  border-bottom: 1px solid var(--line)
}

.contact-card small {
  color: var(--violet);
  font: 600 10px var(--sora);
  text-transform: uppercase
}

.contact-card strong {
  font: 600 16px var(--sora);
  margin-top: 4px
}

.contact-card span {
  position: absolute;
  right: 0;
  bottom: 25px
}

.form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white)
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover
}

.blog-card a {
  display: block;
  padding: 26px
}

.blog-card img+a {
  padding-top: 0
}

.blog-card small {
  color: var(--violet);
  font: 600 10px var(--sora);
  text-transform: uppercase
}

.blog-card h2 {
  font: 600 20px/1.35 var(--sora)
}

.blog-card p {
  color: var(--muted);
  font-size: 14px
}

.blog-card span {
  font: 600 12px var(--sora)
}

.service-detail-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px
}

.sticky-intro {
  position: sticky;
  top: 130px;
  align-self: start
}

.sticky-intro h2 {
  font: 600 38px/1.18 var(--sora);
  letter-spacing: -.035em
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.included-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff
}

.included-card span {
  color: var(--blue);
  font: 600 11px var(--sora)
}

.included-card h3 {
  margin: 50px 0 0;
  font: 600 18px var(--sora)
}

.service-narrative {
  padding: 130px 0
}

.narrative-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 100px
}

.narrative-grid>div:last-child {
  padding-top: 70px
}

.narrative-grid p {
  color: rgba(255, 255, 255, .62);
  font-size: 17px
}

.content-block {
  max-width: 880px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line)
}

.content-block p {
  font-size: 17px
}

.article-shell {
  width: min(820px, calc(100% - 48px));
  margin: auto
}

.article-cover {
  margin: 0 0 50px
}

.article-cover img {
  border-radius: 24px
}

.prose-content {
  font-size: 17px
}

.prose-content h2,
.prose-content h3 {
  font-family: var(--sora)
}

.prose-content a {
  color: var(--blue);
  text-decoration: underline
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 24px
}

.not-found img {
  width: 180px;
  margin: auto
}

.not-found span {
  display: block;
  color: var(--cyan);
  font: 600 16px var(--sora)
}

.not-found h1 {
  font: 600 clamp(40px, 7vw, 76px)/1.05 var(--sora);
  margin: 15px auto;
  max-width: 800px
}

.not-found p {
  color: rgba(255, 255, 255, .6)
}

/* states */
.reveal-up {
  will-change: transform, opacity
}

.site-header.on-dark .header-logo img {
  content: url('../images/logo-white.png')
}

.site-header.on-dark {
  border-color: rgba(255, 255, 255, .15);
  background: rgba(8, 15, 36, .78)
}

.site-header.on-dark .nav-pill>a,
.site-header.on-dark .nav-dropdown>button {
  color: #fff
}

.site-header.on-dark .header-cta {
  background: #fff;
  color: var(--navy)
}

@media (pointer:fine) {

  .cursor-dot,
  .cursor-ring {
    display: block
  }

  body,
  a,
  button {
    cursor: none
  }
}

@media (max-width:1100px) {
  .site-header {
    grid-template-columns: 190px 1fr 150px
  }

  .nav-pill>a,
  .nav-dropdown>button {
    padding-inline: 9px
  }

  .services-grid {
    gap: 16px;
  }

  .about-grid,
  .contact-grid {
    gap: 50px
  }

  .package-panel,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .package-panel .package-card:last-child {
    display: none
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, .7fr);
    gap: 35px
  }
}

@media (max-width:820px) {
  .section-shell {
    width: min(100% - 36px, 680px)
  }

  .display-title {
    font-size: clamp(38px, 11vw, 60px)
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 42px
  }

  .site-header {
    top: 10px;
    height: 54px;
    padding: 0 14px;
    grid-template-columns: 1fr auto
  }

  .header-logo {
    width: 130px;
    transform: translateY(-6px);
  }

  .nav-pill,
  .header-cta {
    display: none
  }

  .menu-toggle {
    display: grid
  }

  .hero {
    min-height: 900px;
    padding-top: 100px
  }

  .hero-panel {
    margin-top: 230px;
    width: calc(100% - 28px);
    padding: 34px 24px
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 64px)
  }

  .hero-panel>p {
    font-size: 16px
  }

  .hero-proof {
    gap: 18px;
    justify-content: space-between
  }

  .hero-proof div {
    display: block
  }

  .hero-proof span {
    display: block
  }

  .hero-float-a {
    left: -30px;
    top: 140px;
    width: 160px;
    height: 120px
  }

  .hero-float-b {
    right: -15px;
    top: 100px;
    width: 190px;
    height: 240px
  }

  .hero-float-c {
    display: none
  }

  .services-section,
  .work-section,
  .about-band,
  .process-section,
  .packages-section,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: 90px 0
  }

  /* removed services-grid media query */

  .service-card {
    min-height: 280px
  }

  .work-rail {
    gap: 16px
  }

  .project-card {
    width: 80vw
  }

  .project-image {
    height: 260px
  }

  .about-grid,
  .faq-grid,
  .contact-grid,
  .final-cta-grid,
  .contact-page-grid,
  .service-detail-grid,
  .narrative-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .bento-grid {
    margin-top: 20px
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr)
  }

  .package-panel,
  .pricing-grid {
    grid-template-columns: 1fr
  }

  .package-panel .package-card:last-child {
    display: flex
  }

  .testimonial p {
    font-size: 34px
  }

  .slider-controls {
    position: static;
    margin-top: 35px
  }

  .lead-form {
    grid-template-columns: 1fr
  }

  .form-wide {
    grid-column: auto
  }

  .footer-main {
    grid-template-columns: 1fr 1fr
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-bottom {
    display: block
  }

  .footer-bottom div {
    margin-top: 12px
  }

  .page-hero {
    padding: 155px 0 90px
  }

  .page-hero h1 {
    font-size: 52px
  }

  .portfolio-grid,
  .blog-grid {
    grid-template-columns: 1fr
  }

  .portfolio-grid .project-image {
    height: 260px
  }

  .included-grid {
    grid-template-columns: 1fr
  }

  .sticky-intro {
    position: static
  }

  .service-narrative {
    padding: 90px 0
  }

  .narrative-grid>div:last-child {
    padding-top: 0
  }
}

@media (max-width:520px) {
  body {
    font-size: 15px
  }

  .section-shell {
    width: calc(100% - 28px)
  }

  .hero-panel {
    width: calc(100% - 20px);
    padding: 28px 18px
  }

  .hero-actions .button {
    width: 100%
  }

  .hero-proof {
    flex-wrap: wrap
  }

  .hero-proof div {
    width: 44%
  }

  .bento-grid {
    grid-template-columns: 1fr
  }

  .bento-big {
    grid-column: auto
  }

  .process-line {
    grid-template-columns: 1fr
  }

  .process-step {
    border-right: 0
  }

  .package-tabs a {
    display: none
  }

  .footer-main {
    grid-template-columns: 1fr
  }

  .footer-brand {
    grid-column: auto
  }

  .footer-bottom div {
    flex-wrap: wrap
  }

  .floating-contact {
    width: 62px;
    height: 62px;
    right: 14px;
    bottom: 14px
  }

  .page-hero h1 {
    font-size: 42px
  }

  .contact-page-section,
  .portfolio-page-section,
  .pricing-page-section,
  .blog-section,
  .article-section,
  .content-sections,
  .service-detail {
    padding: 75px 0
  }

  .form-card {
    padding: 22px 16px
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important
  }

  .site-preloader {
    display: none
  }

  .marquee-track {
    animation: none
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important
  }
}

/* Website Design & Development hover scrolling screenshot effect */
.project-card[data-category*="website"] .project-image img {
  object-position: top center;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), object-position 4s ease-in-out, filter .5s;
}

.project-card[data-category*="website"]:hover .project-image img {
  transform: scale(1) !important;
  object-position: bottom center;
}