@font-face {
font-family: "Figtree";
src: url("fonts/Figtree.woff2?v=20260702") format("woff2");
font-weight: 100 900;
font-style: normal;
font-display: swap;
}

:root {
--fz-html: 62.5%;
--ff-base: "Figtree", "Helvetica Neue", Helvetica, Arial, sans-serif;

--c-base: #232633;
--c-white: #fff;
--c-snow: #fcfcfc;
--c-steel: #515667;
--c-ink: #161821;
--c-slate: #8e92a0;
--c-graphite: #363a48;
--c-haze: #dfe1e8;
--c-mist: #edeef2;
--c-frost: #f7f8fa;
--c-ice: #eaf1f7;

--header-h: 6.4rem;

--panel-gap: clamp(2.4rem, 4vw, 4.8rem);
}

@media (min-width: 767.02px) {
:root {
--header-h: 8.8rem;
}
}

*,
*::before,
*::after {
padding: 0;
margin: 0;
outline: 0;
box-sizing: border-box;
}

html {
font-size: var(--fz-html);

background-color: var(--c-snow);
-webkit-tap-highlight-color: transparent;

height: 100%;
overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
.wrapper {
scroll-behavior: smooth;
}
}

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

*,
*::before,
*::after {
transition: none !important;
animation: none !important;
}
}

body {
min-width: 320px;
height: 100%;
overflow: hidden;
background-color: var(--c-snow);
font-family: var(--ff-base);
font-weight: 400;
font-size: 1.4rem;
line-height: 1.6;
color: var(--c-base);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1023.02px) {
body {
font-size: 1.6rem;
}
}

::selection {
color: transparent;
background: var(--c-haze);
text-shadow: 0 0 .15em var(--c-base);
}

::-moz-selection {
color: transparent;
background: var(--c-haze);
text-shadow: 0 0 .15em var(--c-base);
}

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

@media (hover: hover) {
a:where(:hover, :focus-visible) {
text-decoration: none;
}
}

.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;
}

h1,
h2,
h3,
h4 {
font-weight: 400;
margin-bottom: .8em;
}

h1,
.hero__tagline {
font-size: 3.2rem;
letter-spacing: -.03em;
line-height: 1.2;
}

@media (min-width: 767.02px) {

h1,
.hero__tagline {
font-size: 3.6rem;
}
}

@media (min-width: 1023.02px) {

h1,
.hero__tagline {
font-size: 4rem;
}
}

@media (min-width: 1199.02px) {

h1,
.hero__tagline {
font-size: 4.8rem;
}
}

h2 {
font-size: 2.4rem;
letter-spacing: -.02em;
line-height: 1.35;
}

@media (min-width: 767.02px) {
h2 {
font-size: 2.8rem;
}
}

@media (min-width: 1023.02px) {
h2 {
font-size: 3.2rem;
}
}

@media (min-width: 1199.02px) {
h2 {
font-size: 3.6rem;
}
}

h4,
.modal__head h3 {
font-size: 2rem;
letter-spacing: -.01em;
line-height: 1.45;
}

@media (min-width: 1023.02px) {

h4,
.modal__head h3 {
font-size: 2.2rem;
}
}

@media (min-width: 1199.02px) {

h4,
.modal__head h3 {
font-size: 2.4rem;
}
}

*:where(:focus-visible) {
outline: .2rem solid var(--c-base);
outline-offset: .2rem;
}

:root {
--shell-gutter: 2.4rem;
}

@media (min-width: 1023.02px) {
:root {
--shell-gutter: 3.2rem;
}
}

@media (min-width: 1199.02px) {
:root {
--shell-gutter: 4rem;
}
}

.shell {
--shell-max-width: 114rem;
max-width: calc(var(--shell-max-width) + var(--shell-gutter) * 2);
padding-inline: var(--shell-gutter);
margin-inline: auto;
width: 100%;
}

.shell--sm {
--shell-max-width: 48rem;
}

@media (min-width: 1023.02px) {
.shell--sm {
--shell-max-width: 56rem;
}
}

.shell--md {
--shell-max-width: 52rem;
}

@media (min-width: 1023.02px) {
.shell--md {
--shell-max-width: 56rem;
}
}

.shell--fluid {
max-width: none;
}

.wrapper {

position: relative;
height: 100%;
overflow-y: auto;
overflow-x: clip;
scrollbar-gutter: stable;
}

.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;

padding-block: 1.2rem;
}

@media (min-width: 767.02px) {
.header {
padding-block: 2rem;
}
}

.header__inner {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}

.header__logo {
--logo-h: 2.7rem;

filter: drop-shadow(0 0 2rem color-mix(in srgb, var(--c-ice) 40%, transparent));
display: block;
height: var(--logo-h);
opacity: 0;

visibility: hidden;
transition: opacity .5s var(--ease-out, ease), visibility 0s .5s;
will-change: opacity;
}

.is-scrolled .header__logo {
opacity: 1;
visibility: visible;
transition-delay: 0s;
}

.header__logo svg,
.footer__logo svg {
height: 100%;
width: calc(var(--logo-h) * 4.2);
max-width: none;
display: block;
overflow: visible;
}

.header__logo path,
.header__logo circle,
.hero__logo path,
.hero__logo circle,
.footer__logo path,
.footer__logo circle {
fill: var(--c-base);
}

.header__logo .eye,
.hero__logo .eye,
.footer__logo .eye {
transition: opacity 60ms linear;
}

.header__logo svg.blink .eye,
.hero__logo.blink .eye,
.footer__logo svg.blink .eye {
opacity: 0;
}

.header__actions {
flex: 1;
display: flex;
justify-content: flex-end;
}

.header__cta {
opacity: 0;
pointer-events: none;
visibility: hidden;
transition: opacity .5s var(--ease-out, ease), visibility 0s .5s;
will-change: opacity;
}

.is-scrolled .header__cta {
opacity: 1;
pointer-events: auto;
visibility: visible;
transition-delay: 0s;
}

.is-scrolled.footer-cta-visible .header__cta,
.is-scrolled.footer-cta-visible .header__logo {
opacity: 0;
pointer-events: none;
visibility: hidden;
transition-delay: 0s, .5s;
}

.btn {
display: inline-flex;
text-decoration: none;
}

.btn__inner {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 2.2rem;
font-size: 1.5rem;
letter-spacing: -.01em;
line-height: 1;
font-weight: 600;
text-decoration: none;
border-radius: 999rem;
background-color: var(--c-white);
color: var(--c-ink);
border: 2px solid var(--c-white);
box-shadow: 0 13px 16px -5px rgba(0, 0, 0, .1);
padding: 1.2rem 1.8rem;
transition: background-color .3s, border-color .3s, color .3s, box-shadow .3s, transform .3s;
}

@media (min-width: 1023.02px) {
.btn__inner {
font-size: 1.6rem;
}
}

@media (hover: hover) and (pointer: fine) {
.btn:hover .btn__inner {
box-shadow: 0 10px 10px -5px rgba(0, 0, 0, .2);
}
}

.btn--solid .btn__inner {
background-color: var(--c-base);
color: var(--c-white);
border-color: var(--c-base);

box-shadow: 0 13px 16px -5px rgba(0, 0, 0, .22);
}

@media (hover: hover) and (pointer: fine) {
.btn--solid:hover .btn__inner {
background-color: var(--c-graphite);
border-color: var(--c-graphite);
box-shadow: 0 10px 10px -5px rgba(0, 0, 0, .32);
}
}

.header__cta .btn__inner {
background-color: rgba(255, 255, 255, .7);

border-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
.header__cta:hover .btn__inner {
background-color: var(--c-white);
border-color: var(--c-white);
}
}

.link-icon {
display: inline-flex;
align-items: center;
color: var(--c-ink);
text-decoration: none;
}

.link-icon__arrow {
animation: arrow-bob 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes arrow-bob {

0%,
100% {
transform: translateY(0);
}

50% {
transform: translateY(.6rem);
}
}

.hero {
display: grid;
text-align: center;

min-height: 100svh;
}

.hero>.shell {
display: flex;
}

.hero__inner {
width: 100%;
display: grid;

grid-template-rows: var(--header-h) 1fr auto;
row-gap: 2rem;
padding-bottom: 3.4rem;
}

@media (min-width: 1023.02px) {
.hero__inner {
padding-bottom: 4.2rem;
}
}

.hero__content {
grid-row: 2;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.hero__actions {
grid-row: 3;
}

.hero__logo {
width: min(62rem, 82vw);
height: auto;
display: block;

overflow: visible;
}

.hero__cta-wrap {
margin-top: 4.2rem;
}

@media (min-width: 1023.02px) {
.hero__cta-wrap {
margin-top: 4.8rem;
}
}

.hero__tagline {
margin-top: 5.6rem;
max-width: 24ch;
}

.page-panel {
min-height: 100svh;
display: flex;
flex-direction: column;
justify-content: center;
padding-top: calc(var(--header-h) + var(--panel-gap));
padding-bottom: var(--panel-gap);
}

.section__head {
text-align: center;
margin-bottom: 4.8rem;
}

@media (min-width: 767.02px) {
.section__head {
margin-bottom: 6.4rem;
}
}

@media (min-width: 1023.02px) {
.section__head {
margin-bottom: 6.8rem;
}
}

.section--intro {
font-size: 2rem;
letter-spacing: -.01em;
line-height: 1.6;
text-align: left;
}

@media (min-width: 1023.02px) {
.section--intro {
font-size: 2.2rem;
}
}

@media (min-width: 1439.02px) {
.section--intro {
font-size: 2.4rem;
}
}

.section--intro p:not(:last-child) {
margin-bottom: 2rem;
}

.chip {
display: inline-flex;
align-items: center;
gap: .8rem;
vertical-align: middle;
border-radius: 999rem;
box-shadow: 0 3px 8px -2px rgba(0, 0, 0, .14);

padding: .25rem 1rem .25rem .4rem;
text-decoration: none;
transition: box-shadow .3s, transform .3s;
color: var(--c-ink);
position: relative;
top: -.07em;
}

.chip:hover,
.chip:focus-visible {
box-shadow: 0 10px 14px -6px rgba(0, 0, 0, .22);
text-decoration: none;
}

.chip__image {
width: 2.8rem;
height: 2.8rem;
border-radius: 50%;
object-fit: cover;
background: var(--c-mist);
display: block;
flex-shrink: 0;
}

@media (min-width: 1023.02px) {
.chip__image {
width: 3rem;
height: 3rem;
}
}

@media (min-width: 1439.02px) {
.chip__image {
width: 3.2rem;
height: 3.2rem;
}
}

.chip__name {
font-weight: 400;
}

.chip__icon {
width: 0;
overflow: hidden;
flex-shrink: 0;
color: var(--c-ink);
display: inline-flex;
align-items: center;
margin-left: -.8rem;

transition: width .3s, margin-left .3s;
}

.chip__icon svg {
width: 2rem;
height: 2rem;
display: block;
}

.chip:hover .chip__icon,
.chip:focus-visible .chip__icon {
width: 1.5rem;
margin-left: 0;
height: 1.5rem;
}

.reel-sticky {

position: sticky;
top: 0;

background-color: var(--c-snow);

height: 100svh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;

padding-top: 6.7rem;
padding-bottom: var(--panel-gap);
}

@media (min-width: 767.02px) {
.reel-sticky {
padding-top: calc(var(--header-h) + var(--panel-gap));
}
}

@media (prefers-reduced-motion: no-preference) {
#projects .reel-sticky {
padding: 0;
}

#testimonials .reel-sticky {
padding-bottom: 0;
}
}

.reel-frame {
position: relative;
width: 100%;
flex: 1 1 auto;
min-height: 0;
overflow: hidden;
background-color: var(--c-mist);
}

.project {
position: absolute;
inset: 0;
transform: translateY(100%);
transition: transform .7s cubic-bezier(.65, .05, .36, 1);
pointer-events: none;
}

.project.is-active {
transform: none;
pointer-events: auto;
}

.project.is-above {
transform: translateY(-100%);
}

figcaption.project__caption {
display: none;
}

.project__media {
width: 100%;
height: 100%;
}

.project__media :is(img, video) {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
-webkit-user-select: none;
user-select: none;
object-position: center center;
}

.project--optc .project__media :is(img, video) {
object-position: center top;
}

@media (max-aspect-ratio: 4 / 5) {
.project--docmalik .project__media :is(img, video) {
object-position: 65% center;
}

.project--tritanium .project__media :is(img, video) {
object-position: 20% center;
}

.project--optc .project__media :is(img, video) {
object-position: center center;
}
}

.project__caption {
position: absolute;
bottom: 2rem;
left: var(--shell-gutter);   
margin: 0;
font-size: 1.3rem;
letter-spacing: -.01em;
color: var(--c-snow);
text-align: left;

background: rgba(22, 24, 33, .72);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);

border-radius: 1.2rem;

box-shadow: 0 13px 16px -5px rgba(0, 0, 0, .3);
padding: .7rem 1.6rem;

width: max-content;
max-width: calc(100% - 8rem);
line-height: 1.45;
pointer-events: none;

white-space: nowrap;
overflow: hidden;
transition: width .35s var(--ease-out, ease);
}

.project__caption>* {
transition: opacity .18s ease;
}

.project__caption.is-swapping>* {
opacity: 0;
}

@media (min-width: 1023.02px) {
.project__caption {
font-size: 1.4rem;
bottom: 2.4rem;
}
}

.project__caption b {
display: block;
font-weight: 600;
color: var(--c-white);
}

.project__caption-services {
display: block;
font-size: .925em;
opacity: .92;
}

.reel-dots {
position: absolute;
right: var(--shell-gutter);   

bottom: 2rem;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;

padding: 3px 2px;
background: rgba(22, 24, 33, .72);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
border-radius: 999rem;

box-shadow: 0 13px 16px -5px rgba(0, 0, 0, .3);
}

#testi-dots {
background: var(--c-white);

box-shadow: 0 13px 16px -5px rgba(0, 0, 0, .1);
}

#testi-dots .reel-dot::before {

background: rgba(35, 38, 51, .55);
}

#testi-dots .reel-dot.is-active::before {
background: var(--c-ink);
}

#testi-dots .reel-dot:focus-visible {
outline-color: var(--c-base);
}

@media (min-width: 1023.02px) {
.reel-dots {
bottom: 2.4rem;
}
}

.reel-dot {

width: 24px;
height: 24px;
border: 0;
padding: 0;
background: none;
cursor: pointer;
display: grid;
place-items: center;
}

.reel-dot::before {
content: "";
width: 9px;
height: 9px;
border-radius: 50%;

background: rgba(255, 255, 255, .6);
transition: background-color .3s;
}

.reel-dot.is-active::before {
background: var(--c-white);
}

.reel-dot:focus-visible {
outline: .2rem solid var(--c-white);
outline-offset: -.2rem;
border-radius: 999rem;
}

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

.reel-sticky {
position: static;
height: auto;
}

.reel-frame {
width: min(100%, 100vw);
overflow: visible;
background: none;
}

.project {
position: relative;
inset: auto;
transform: none;
pointer-events: auto;

aspect-ratio: 1 / 1;
overflow: hidden;
}

figcaption.project__caption {
display: block;
}

#reel-caption {
display: none;
}

.project+.project {
margin-top: 2.4rem;
}

#reel-dots,
#testi-dots {
display: none;
}
}

@media (prefers-reduced-motion: reduce) and (min-aspect-ratio: 5 / 4) {
.project {
aspect-ratio: 16 / 10;
}
}

@media (prefers-reduced-motion: reduce) and (max-aspect-ratio: 4 / 5) {
.project {
aspect-ratio: 10 / 16;
}
}

.services__item {
display: flex;
align-items: flex-start;
gap: 1.2rem;
border-top: 1px solid var(--c-mist);
padding-block: 1.5rem;
color: var(--c-steel);
}

@media (min-width: 1023.02px) {
.services__item {
padding-block: 2rem;
}
}

.services h3 {
font-size: 1.4rem;
font-weight: 600;
flex: 0 0 38%;
color: var(--c-ink);
margin-bottom: 0;
}

@media (min-width: 767.02px) {
.services h3 {
flex: 0 0 25%;
}
}

@media (min-width: 1023.02px) {
.services h3 {
font-size: 1.6rem;
flex: 0 0 23.3%;
}
}

.services p {
margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
.services__item {
display: block;
}
}

.testimonial {
text-align: center;
max-width: 56rem;
margin-inline: auto;

padding-inline: 2.4rem;
}

.testimonial__images {
display: flex;
justify-content: center;
margin-bottom: 3rem;
}

@media (min-width: 1023.02px) {
.testimonial__images {
margin-bottom: 3.6rem;
}
}

.testimonial__image {
width: 6.4rem;
height: 6.4rem;
border-radius: 50%;
overflow: hidden;
background: var(--c-mist);
}

.testimonial__image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.testimonial blockquote {
font-size: 2rem;
letter-spacing: -.01em;
margin-bottom: 2rem;
}

@media (min-width: 1023.02px) {
.testimonial blockquote {
font-size: 2.2rem;
margin-bottom: 2.3rem;
}
}

@media (min-width: 1439.02px) {
.testimonial blockquote {
font-size: 2.4rem;
}
}

.testimonial__author {
font-size: 1.2rem;
color: var(--c-steel);
}

@media (min-width: 1023.02px) {
.testimonial__author {
font-size: 1.3rem;
}
}

.reel-frame--bare {
background: none;

overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.testi-slides {
position: relative;
width: 100%;
align-self: stretch;
flex: 1;
}

.testi-slide {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transform: translateY(100%);
transition: transform .7s cubic-bezier(.65, .05, .36, 1);
pointer-events: none;
}

.testi-slide.is-active {
transform: none;
pointer-events: auto;
}

.testi-slide.is-above {
transform: translateY(-100%);
}

.no-anim .project,
.no-anim .testi-slide {
transition: none !important;
}

.has-reveals .t-row {
opacity: 0;
transform: translateY(var(--rise));
transition: opacity 0s .75s, transform 0s .75s;
}

.has-reveals span.t-row {
display: block;

}

.has-reveals.is-in .testi-slide.is-active .t-row {
opacity: 1;
transform: none;
transition: opacity var(--dur) var(--ease-out) var(--reveal-delay, 0ms),
transform var(--dur) var(--ease-out) var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
#projects,
#testimonials {
height: auto !important;
}

.testi-slide {
position: static;
transform: none !important;
}

.testi-slide+.testi-slide {
margin-top: 8rem;
}
}

.accordion__section {
border-top: 1px solid var(--c-mist);
}

.accordion__h {
margin: 0;
}

.accordion__head {

appearance: none;
width: calc(100% + 2.4rem);
margin-inline: -1.2rem;
padding-inline: 1.2rem;
background: none;
border: 0;
font: inherit;
color: inherit;
text-align: left;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
padding-block: 1.6rem;
cursor: pointer;
}

@media (min-width: 1023.02px) {
.accordion__head {
padding-block: 2rem;
}
}

.accordion__head:hover .accordion__icon {
transform: rotate(180deg);
}

.accordion__q {
font-size: 1.4rem;
font-weight: 600;
color: var(--c-ink);
}

@media (min-width: 1023.02px) {
.accordion__q {
font-size: 1.6rem;
}
}

.accordion__icon {
display: inline-block;
width: 1.6rem;
height: 1.6rem;
position: relative;
flex-shrink: 0;
transition: transform .3s;
}

.accordion__icon::before,
.accordion__icon::after {
content: "";
position: absolute;
background-color: var(--c-slate);
border-radius: 999rem;
transition: opacity .3s;
}

.accordion__icon::before {
top: 50%;
left: 0;
width: 100%;
height: 1px;
transform: translateY(-50%);
}

.accordion__icon::after {
top: 0;
left: 50%;
width: 1px;
height: 100%;
transform: translateX(-50%);
}

.accordion__body {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows .3s, padding .3s;
color: var(--c-steel);
font-size: 1.4rem;
opacity: .85;
}

@media (min-width: 1023.02px) {
.accordion__body {
font-size: 1.6rem;
padding-right: 4rem;
}
}

.accordion__body-inner {
overflow: hidden;

padding-top: .8rem;
}

.accordion__section.is-active .accordion__body {
grid-template-rows: 1fr;
padding-bottom: 1.4rem;
}

@media (min-width: 1023.02px) {
.accordion__section.is-active .accordion__body {
padding-bottom: 2rem;
}
}

.accordion__section.is-active .accordion__icon::after {
opacity: 0;
}

.footer {
position: relative;   
background-color: var(--c-snow);
text-align: center;

display: flex;
flex-direction: column;
min-height: 100svh;
padding-top: calc(var(--header-h) + var(--panel-gap));
padding-bottom: 3.2rem;
}

.footer>.shell {

flex: 1;
display: grid;
}

.footer>.shell>* {
grid-area: 1 / 1;
}

.footer__inner {
align-self: start;
}

.footer__bottom {
align-self: end;
}

.footer h2 {
margin-bottom: 3.4rem;
}

@media (min-width: 1023.02px) {
.footer h2 {
margin-bottom: 4.2rem;
}
}

.footer__brand {
display: flex;
justify-content: center;
margin-bottom: 3.2rem;
}

@media (min-width: 767.02px) {
.footer__brand {
margin-bottom: 4rem;
}
}

.footer__logo {
--logo-h: 2.7rem;
display: block;
height: var(--logo-h);
line-height: 0;
}

.footer__nav {
font-size: 1.2rem;
color: var(--c-steel);
margin-bottom: 1.6rem;
}

.footer__nav .footer__links {
flex-wrap: wrap;
gap: .4rem 1.6rem;
}

.footer__nav .footer__links li::before,
.footer__nav .footer__links li:first-child::before {
content: none;
}

@media (min-width: 1023.02px) {
.footer__nav {
font-size: 1.3rem;
}
}

.footer__foot {
font-size: 1.2rem;
color: var(--c-steel);
}

@media (min-width: 767.02px) {
.footer__foot {
display: flex;
justify-content: center;
}
}

@media (min-width: 1023.02px) {
.footer__foot {
font-size: 1.3rem;
}
}

.footer__foot p {
margin-bottom: .4rem;
}

.footer__links {
list-style: none;
display: flex;
justify-content: center;
}

.footer__links a {
text-underline-offset: 3px;
}

.dot-sep,
.footer__links li::before {
content: "";
display: inline-block;
width: .2rem;
height: .2rem;
background-color: currentColor;
margin-inline: .8rem;
vertical-align: middle;
}

.footer__links li:first-child::before {
content: none;
}

@media (min-width: 767.02px) {
.footer__links li:first-child::before {
content: "";
}
}

.footer__nav a,
.footer__foot a {
text-decoration: none;
}

.footer__nav a:hover,
.footer__nav a:focus-visible,
.footer__foot a:hover,
.footer__foot a:focus-visible {
text-decoration: underline;
}

.modal {
position: fixed;
inset: 0;
z-index: 1000;
display: none;
align-items: flex-start;
overflow-x: hidden;
overflow-y: auto;
pointer-events: none;
padding: 2.4rem;
}

.modal.is-mounted {
display: flex;
}

.modal.is-open {
pointer-events: all;
}

.modal__overlay {
position: fixed;
inset: 0;
background-color: rgba(35, 38, 51, .28);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
opacity: 0;
transition: opacity .35s ease .18s;
}

.modal.is-open .modal__overlay {
opacity: 1;
transition: opacity .4s ease;
}

.modal__inner {
position: relative;

outline: none;
background-color: var(--c-white);
width: 100%;
max-width: 48rem;
margin: auto;
padding: 3.2rem;
border-radius: 1.2rem;
box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .35);
opacity: 0;
transform: translateY(1.2rem);
transition: opacity .2s ease, transform .2s ease;
}

.modal.is-open .modal__inner {
opacity: 1;
transform: none;
transition: opacity .35s var(--ease-out, ease) .22s,
transform .35s var(--ease-out, ease) .22s;
}

.modal:target {
display: flex;
pointer-events: all;
}

.modal:target .modal__overlay {
opacity: 1;
}

.modal:target .modal__inner {
opacity: 1;
transform: none;
}

.modal__nojs-close {
display: none;
position: absolute;
top: 1rem;
right: 1rem;
width: 3.6rem;
height: 3.6rem;
align-items: center;
justify-content: center;
border-radius: 999rem;
color: var(--c-steel);
text-decoration: none;
font-size: 2rem;
}

.modal:target .modal__nojs-close {
display: flex;
}

.modal.is-mounted .modal__nojs-close {
display: none;
}

@media (min-width: 767.02px) {
.modal__inner {
padding: 4rem;
}
}

.modal__inner--wide {
max-width: 60rem;
}

.modal__head {
text-align: center;
margin-bottom: 2.4rem;
line-height: 1.45;
}

@media (min-width: 767.02px) {
.modal__head {
margin-bottom: 4rem;
}
}

.modal__head--left {
text-align: left;
}

.modal__btn-close {
position: absolute;
top: 1rem;
right: 1rem;
width: 3.6rem;
height: 3.6rem;
border: none;
background: none;
border-radius: 999rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--c-steel);
transition: transform .3s, background-color .3s;
}

.modal__btn-close:hover {
transform: translateY(-2px);
background-color: var(--c-mist);
}

.email-field {
display: flex;
align-items: center;
background-color: var(--c-frost);
border-radius: .8rem;
box-shadow: inset 0 1px 3px -1px rgba(0, 0, 0, .18);
padding: 1.3rem 1.4rem 1.3rem 1.6rem;
}

@media (min-width: 767.02px) {
.email-field {
padding: 1.6rem 1.8rem 1.6rem 2rem;
}
}

.email-field__addr {
flex: 1;
min-width: 0;
font-size: 1.6rem;
letter-spacing: -.01em;
color: var(--c-ink);
text-decoration: none;
text-align: left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.email-field__addr:hover,
.email-field__addr:focus-visible {
text-decoration: underline;
text-underline-offset: 3px;
}

.email-field__copy {
flex: none;
margin-left: 1rem;
padding: 0;
border: none;
background: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--c-steel);

filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .9));
transition: color .2s;
}

.email-field__copy:hover,
.email-field__copy:focus-visible {
color: var(--c-ink);
}

.email-field__copy .ic-check {
display: none;
color: #2e9e6b;
}

.email-field__copy.is-copied .ic-copy {
display: none;
}

.email-field__copy.is-copied .ic-check {
display: block;
}

.modal__legal {
color: var(--c-steel);
font-size: 1.45rem;
line-height: 1.65;
}

.modal__legal h4 {
color: var(--c-ink);
font-weight: 600;
font-size: 1.5rem;
margin: 2rem 0 .6rem;
}

.modal__legal p+p {
margin-top: 1rem;
}

:root {
--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
--rise: 1.2rem;
--dur: .7s;
}

.is-entering .enter {
opacity: 0.001;
transform: translateY(var(--rise));
}

.enter {
transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
transition-delay: var(--enter-delay, 0ms);
}

.is-entering .enter--logo {
opacity: 0;
}

.enter--logo {
transition: opacity var(--dur) var(--ease-out);
transition-delay: var(--enter-delay, 0ms);
}

.reveal-line {
display: block;
opacity: 0;
transform: translateY(var(--rise));
transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
transition-delay: var(--reveal-delay, 0ms);
}

.is-revealed .reveal-line {
opacity: 1;
transform: none;
}

.reveal-up {
opacity: 0;
transform: translateY(var(--rise));
transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
transition-delay: var(--reveal-delay, 0ms);
}

.reveal-up.is-revealed {
opacity: 1;
transform: none;
}

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

.enter,
.enter--logo,
.reveal-line,
.reveal-up {
opacity: 1 !important;
transform: none !important;
transition: none !important;
}
}

@media (prefers-reduced-motion: reduce) and (min-width: 767.02px) {

.wrapper .section,
.wrapper .footer {
scroll-margin-top: 10rem;
}
}

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

.section,
.footer {
scroll-margin-top: 9rem;
}

.section,
.section.section--page,
.section--reel,
.section--testimonials {
padding-block: 6.4rem;
}

.hero {
min-height: 0;
padding-top: calc(var(--header-h) + 9.6rem);
padding-bottom: 6.4rem;
}

.page-panel {
min-height: 0;
padding: 0;
display: block;
}

.footer {
min-height: 0;
padding-top: 6.4rem;
}

.footer>.shell {
display: block;
}

.footer__bottom {
margin-top: 9.6rem;
}
}

@media print {

html,
body,
.wrapper {
height: auto;
overflow: visible;
}

.enter,
.reveal-line,
.reveal-up,
.project,
.testi-slide,
.t-row {
opacity: 1 !important;
transform: none !important;
}

.reel-sticky {
position: static;
height: auto;
}

.section--reel,
#testimonials {
height: auto !important;
}

.project,
.testi-slide {
position: static;
}

figcaption.project__caption {
display: block;
}

#reel-caption {
display: none;
}

.reel-frame {
overflow: visible;
}

.page-panel {
min-height: 0;
}

.header,
#reel-dots,
#testi-dots {
display: none;
}
}

