
:root {
--bg: #0a0a0a;
--bg-elevated: #111111;
--text: #f0ede6;
--text-muted: #777;
--accent: #c9835a;
--accent-light: #e8c4a0;
--accent-dark: #2a1810;
--border: #1e1e1e;
--font-heading: 'Space Grotesk', sans-serif;
--font-body: 'Inter', sans-serif;
--container: 1340px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: var(--accent); color: var(--bg); }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--accent-dark) var(--bg); }
body {
font-family: var(--font-body);
background: var(--bg);
color: var(--text);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button {
border: none; background: none; color: inherit;
cursor: pointer; font-family: inherit;
}
.container {
width: 100%; max-width: var(--container);
margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem);
}
/* ── Loader ─────────────────────────────── */
.loader {
position: fixed; inset: 0; z-index: 9999;
background: var(--bg);
display: flex; align-items: center; justify-content: center;
transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.6s;
}
.loader.is-loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__brand {
font-family: var(--font-heading); font-size: 1.2rem;
font-weight: 600; letter-spacing: 0.25em; color: var(--accent);
position: relative;
}
.loader__brand::after {
content: ''; position: absolute; bottom: -8px; left: 0;
width: 100%; height: 1px; background: var(--accent);
animation: loaderLine 1.2s ease-in-out infinite;
}
@keyframes loaderLine {
0%, 100% { transform: scaleX(0); transform-origin: left; }
50% { transform: scaleX(1); transform-origin: left; }
51% { transform-origin: right; }
}
/* ── Canvas ─────────────────────────────── */
#webgl {
position: fixed; top: 0; left: 0;
width: 100%; height: 100%; z-index: 1; pointer-events: none;
}
/* ── Navigation ─────────────────────────── */
.nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
padding: 1.5rem 0;
transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.is-scrolled {
background: rgba(10, 10, 10, 0.85);
backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo {
font-family: var(--font-heading); font-size: 1.15rem;
font-weight: 700; letter-spacing: 0.18em; color: var(--text);
}
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__links a {
font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
color: var(--text-muted); transition: color 0.3s ease; position: relative;
}
.nav__links a::after {
content: ''; position: absolute; bottom: -4px; left: 0;
width: 0; height: 1px; background: var(--accent); transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
display: flex; align-items: center; gap: 0.5rem;
font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
padding: 0.6rem 1.4rem; border: 1px solid var(--border);
border-radius: 100px; transition: all 0.35s ease;
}
.nav__cta:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.nav__toggle { display: none; font-size: 1.4rem; color: var(--text); }
/* ── Mobile Menu ────────────────────────── */
.mobile-menu {
position: fixed; inset: 0; z-index: 200; background: var(--bg);
display: flex; flex-direction: column;
padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
transform: translateX(100%);
transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__header { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__close { font-size: 1.4rem; color: var(--text-muted); }
.mobile-menu__nav { display: flex; flex-direction: column; margin-top: 4rem; }
.mobile-menu__nav a {
font-family: var(--font-heading); font-size: clamp(2rem, 8vw, 3.5rem);
font-weight: 600; letter-spacing: -0.03em; padding: 0.6rem 0;
color: var(--text-muted); transition: color 0.3s ease;
border-bottom: 1px solid var(--border);
}
.mobile-menu__nav a:hover { color: var(--accent); }
/* ── Hero ────────────────────────────────── */
.hero {
position: relative; z-index: 2;
min-height: 100vh; min-height: 100svh;
display: flex; align-items: center;
padding: 8rem 0 4rem;
}
.hero__content { max-width: 720px; }
.hero__label {
display: inline-flex; align-items: center; gap: 0.5rem;
font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
text-transform: uppercase; color: var(--accent); margin-bottom: 2rem;
}
.hero__label::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.hero__title {
font-family: var(--font-heading);
font-size: clamp(3.2rem, 8.5vw, 7.5rem);
font-weight: 700; line-height: 0.92; letter-spacing: -0.04em;
margin-bottom: 2rem;
}
.hero__line { display: block; overflow: hidden; }
.hero__line span { display: block;font-size: 0.8em; }
.hero__linechanged--accent { display: inline; color: var(--accent); }
.hero__line--accent { color: var(--accent); }
.hero__subtitle {
font-size: clamp(0.95rem, 1.3vw, 1.1rem); line-height: 1.7;
color: var(--text-muted); max-width: 440px;
margin-bottom: 2.5rem; letter-spacing: -0.005em;
}
.btn {
display: inline-flex; align-items: center; gap: 0.6rem;
font-family: var(--font-heading); font-size: 0.85rem;
font-weight: 500; letter-spacing: 0.02em; padding: 1rem 2rem;
border-radius: 100px; position: relative; overflow: hidden;
transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
will-change: transform;
}
.btn--primary { background: var(--accent); color: var(--bg); }
.btn--primary:hover {
background: var(--accent-light); transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(201, 131, 90, 0.25);
}
.btn--outline { border: 1px solid var(--border); color: var(--text); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--large { font-size: 1rem; padding: 1.2rem 2.8rem; }
/* ── Marquee ─────────────────────────────── */
.marquee {
position: relative; z-index: 2; overflow: hidden;
padding: 1.8rem 0; background: var(--bg);
border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
-webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee__track {
display: flex; width: max-content;
will-change: transform;
}
.marquee__content {
display: flex; align-items: center;
white-space: nowrap; flex-shrink: 0;
}
.marquee__item {
font-family: var(--font-heading);
font-size: clamp(1rem, 2vw, 1.5rem);
font-weight: 300; letter-spacing: -0.01em;
color: var(--text-muted); padding: 0 1.5rem;
}
.marquee__sep { color: var(--accent); opacity: 0.4; font-size: 0.6em; }
/* ── Section Utilities ───────────────────── */
.section {
position: relative; z-index: 2; background: var(--bg);
padding: clamp(5rem, 10vw, 8rem) 0;
}
.section--transparent { background: transparent; }
.section-label {
font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
text-transform: uppercase; color: var(--accent);
margin-bottom: clamp(2.5rem, 5vw, 4rem);
display: flex; align-items: center; gap: 1rem;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-header {
display: flex; align-items: flex-end; justify-content: space-between;
gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-link {
display: inline-flex; align-items: center; gap: 0.4rem;
font-size: 0.82rem; font-weight: 500; color: var(--text-muted);
transition: color 0.3s ease; flex-shrink: 0;
}
.section-link:hover { color: var(--accent); }
.section__bg-number {
position: absolute; top: 0.3em; right: 5%;
font-family: var(--font-heading); font-size: clamp(10rem, 22vw, 20rem);
font-weight: 700; color: var(--text); opacity: 0.02;
line-height: 1; pointer-events: none; user-select: none;
z-index: 0;
}
/* ── Clients ─────────────────────────────── */
.clients {
position: relative; z-index: 2; background: var(--bg);
padding: clamp(3rem, 6vw, 5rem) 0;
}
.clients__label {
font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
text-transform: uppercase; color: var(--text-muted);
text-align: center; margin-bottom: 2.5rem;
}
.clients__grid {
display: flex; align-items: center; justify-content: center;
gap: clamp(2rem, 5vw, 4rem); flex-wrap: wrap;
}
.clients__item {
font-family: var(--font-heading); font-size: clamp(0.95rem, 1.4vw, 1.2rem);
font-weight: 600; letter-spacing: -0.01em;
color: var(--text); opacity: 0.2;
transition: opacity 0.4s ease;
}
.clients__item:hover { opacity: 0.5; }
/* ── About ───────────────────────────────── */
.about__grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: clamp(3rem, 6vw, 6rem); align-items: start;
}
.about__title {
font-family: var(--font-heading);
font-size: clamp(1.8rem, 3.5vw, 2.8rem);
font-weight: 600; line-height: 1.15; letter-spacing: -0.035em;
margin-bottom: 1.5rem;
}
.about__desc {
font-size: clamp(0.9rem, 1.1vw, 1rem); line-height: 1.8;
color: var(--text-muted); max-width: 480px; margin-bottom: 2rem;
}
.about__accent-line {
width: 48px; height: 2px; background: var(--accent);
}
.about__stats {
display: grid; grid-template-columns: 1fr 1fr;
gap: 2.5rem; padding-top: 0.5rem;
}
.stat { padding: 1.5rem 0; border-top: 1px solid var(--border); }
.stat__number {
font-family: var(--font-heading);
font-size: clamp(2.2rem, 4vw, 3rem);
font-weight: 700; letter-spacing: -0.04em;
color: var(--accent); display: block; margin-bottom: 0.4rem;
}
.stat__label { font-size: 0.8rem; line-height: 1.5; color: var(--text-muted); }
/* ── Process ─────────────────────────────── */
.process__grid {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: clamp(1.5rem, 3vw, 2.5rem);
}
.process__item { position: relative; }
.process__number {
font-family: var(--font-heading);
font-size: clamp(2.5rem, 4vw, 3.5rem);
font-weight: 700; color: var(--accent); opacity: 0.15;
line-height: 1; margin-bottom: 1.5rem;
}
.process__line {
width: 100%; height: 1px; background: var(--border);
margin-bottom: 1.5rem; position: relative;
}
.process__line-fill {
position: absolute; top: 0; left: 0;
width: 0; height: 100%; background: var(--accent);
transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.process__item.is-visible .process__line-fill { width: 100%; }
.process__dot {
position: absolute; top: -3px; left: 0;
width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.process__title {
font-family: var(--font-heading); font-size: clamp(1rem, 1.4vw, 1.2rem);
font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.process__desc {
font-size: 0.82rem; color: var(--text-muted); line-height: 1.7;
}
/* ── Work ────────────────────────────────── */
.work__grid { display: flex; flex-direction: column; gap: 1.5rem; }
.work__row { display: flex; gap: 1.5rem; }
.work__item {
position: relative; border-radius: 8px; overflow: hidden;
cursor: pointer;
}
.work__item--wide { flex: 7; }
.work__item--narrow { flex: 5; }
.work__image {
width: 100%; height: clamp(280px, 35vw, 420px);
background-size: cover; background-position: center;
background-color: var(--accent-dark);
transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.work__item:hover .work__image { transform: scale(1.04); }
.work__overlay {
position: absolute; inset: 0;
background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0) 60%);
padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end;
opacity: 0; transition: opacity 0.4s ease;
}
.work__item:hover .work__overlay { opacity: 1; }
.work__number {
position: absolute; top: 1.5rem; left: 2rem;
font-family: var(--font-heading); font-size: 0.7rem;
font-weight: 600; letter-spacing: 0.1em; color: var(--text);
opacity: 0; transform: translateY(-8px);
transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.work__item:hover .work__number { opacity: 0.5; transform: translateY(0); }
.work__category {
font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
.work__title {
font-family: var(--font-heading); font-size: clamp(1.2rem, 2vw, 1.6rem);
font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.3rem;
}
.work__desc {
font-size: 0.8rem; color: var(--text-muted); line-height: 1.5;
margin-top: 0.4rem; max-width: 320px;
}
.work__year { font-size: 0.78rem; color: var(--text-muted); }
.work__arrow {
position: absolute; top: 1.5rem; right: 1.5rem;
width: 40px; height: 40px; border-radius: 50%;
background: var(--accent); color: var(--bg);
display: flex; align-items: center; justify-content: center; font-size: 1rem;
transform: translateY(-10px) rotate(-45deg); opacity: 0;
transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.work__item:hover .work__arrow { transform: translateY(0) rotate(0deg); opacity: 1; }
/* ── Testimonial ─────────────────────────── */
.testimonial { text-align: center; max-width: 820px; margin: 0 auto; }
.testimonial__mark {
font-family: Georgia, serif;
font-size: clamp(5rem, 12vw, 9rem);
font-weight: 400; color: var(--accent); opacity: 0.12;
line-height: 0.4; margin-bottom: 2.5rem; display: block;
}
.testimonial__text {
font-family: var(--font-heading);
font-size: clamp(1.2rem, 2.3vw, 1.8rem);
font-weight: 400; line-height: 1.5; letter-spacing: -0.015em;
margin-bottom: 2.5rem; font-style: italic;
color: var(--text);
}
.testimonial__author { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonial__name {
font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
}
.testimonial__role { font-size: 0.8rem; color: var(--text-muted); }
/* ── Services ────────────────────────────── */
.services__list { border-top: 1px solid var(--border); }
.services__item {
display: flex; align-items: flex-start;
gap: clamp(1.5rem, 3vw, 3rem);
padding: clamp(1.5rem, 2.5vw, 2.2rem) 0;
border-bottom: 1px solid var(--border);
cursor: pointer;
transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}
.services__item:hover { padding-left: 1.5rem; }
.services__number {
font-family: var(--font-heading); font-size: 0.8rem;
font-weight: 500; color: var(--accent); min-width: 2.5rem;
padding-top: 0.15rem;
}
.services__content { flex: 1; }
.services__header {
display: flex; align-items: center; gap: 1rem;
}
.services__title {
font-family: var(--font-heading);
font-size: clamp(1.2rem, 2.5vw, 1.8rem);
font-weight: 600; letter-spacing: -0.025em;
transition: color 0.3s ease;
}
.services__item:hover .services__title { color: var(--accent); }
.services__tags {
display: flex; gap: 0.5rem; margin-top: 0.6rem; flex-wrap: wrap;
}
.services__tag {
font-size: 0.68rem; font-weight: 500; letter-spacing: 0.04em;
padding: 0.25rem 0.7rem; border: 1px solid var(--border);
border-radius: 100px; color: var(--text-muted);
}
.services__body {
max-height: 0; overflow: hidden; opacity: 0;
transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
opacity 0.4s ease, margin 0.4s ease;
margin-top: 0;
}
.services__item.is-active .services__body {
max-height: 200px; opacity: 1; margin-top: 1rem;
}
.services__desc {
font-size: 0.85rem; color: var(--text-muted);
max-width: 520px; line-height: 1.7;
}
.services__arrow {
font-size: 1.3rem; color: var(--text-muted);
transition: all 0.4s ease; flex-shrink: 0;
margin-left: auto; padding-top: 0.15rem;
}
.services__item:hover .services__arrow { color: var(--accent); }
.services__item.is-active .services__arrow { transform: rotate(45deg); color: var(--accent); }
/* ── CTA ─────────────────────────────────── */
.cta {
position: relative; z-index: 2;
padding: clamp(6rem, 14vw, 12rem) 0;
text-align: center; background: transparent;
}
.cta__title {
font-family: var(--font-heading);
font-size: clamp(2.8rem, 8vw, 7rem);
font-weight: 700; line-height: 0.92;
letter-spacing: -0.04em; margin-bottom: 3rem;
}
.cta__title span { display: block; }
.cta__title--accent {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
/* ── Footer ──────────────────────────────── */
.footer {
position: relative; z-index: 2; background: var(--bg);
border-top: 1px solid var(--border);
padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__grid {
display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
gap: clamp(2rem, 4vw, 4rem);
margin-bottom: clamp(3rem, 5vw, 4rem);
}
.footer__logo {
font-family: var(--font-heading); font-size: 1.15rem;
font-weight: 700; letter-spacing: 0.18em; display: block; margin-bottom: 1rem;
}
.footer__tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
.footer__col h4 {
font-family: var(--font-heading); font-size: 0.72rem;
font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
color: var(--text-muted); margin-bottom: 1.2rem;
}
.footer__col a {
display: block; font-size: 0.85rem; color: var(--text-muted);
padding: 0.35rem 0; transition: color 0.3s ease;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
display: flex; align-items: center; justify-content: space-between;
padding-top: 2rem; border-top: 1px solid var(--border);
font-size: 0.75rem; color: var(--text-muted);
}
.footer__bottom a { color: var(--text-muted); transition: color 0.3s ease; }
.footer__bottom a:hover { color: var(--accent); }
/* ── Divider ─────────────────────────────── */
.divider {
position: relative; z-index: 2; background: var(--bg);
padding: 0; height: 1px;
}
.divider__line {
width: 100%; height: 1px; background: var(--border); position: relative;
}
.divider__dot {
position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
width: 7px; height: 7px; border-radius: 50%;
background: var(--accent); opacity: 0.4;
}
/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
.about__grid { grid-template-columns: 1fr; gap: 3rem; }
.process__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.section__bg-number { font-size: clamp(8rem, 18vw, 14rem); }
}
@media (max-width: 768px) {
/* Nav */
.nav__links, .nav__cta { display: none; }
.nav__toggle { display: block; }
/* Hero */
.hero { padding: 7rem 0 3rem; min-height: 100svh; }
.hero__subtitle { max-width: 100%; }
.hero__label { margin-bottom: 1.5rem; }
/* Clients */
.clients__grid { gap: 1rem 2rem; }
/* About */
.about__stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
/* Process */
.process__grid { grid-template-columns: 1fr; gap: 2.5rem; }
/* Work */
.section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
.work__row { flex-direction: column; }
.work__image { height: clamp(200px, 55vw, 320px); }
.work__overlay { opacity: 1; }
.work__arrow { opacity: 1; transform: translateY(0) rotate(0deg); }
.work__number { opacity: 0.5; transform: translateY(0); }
/* Testimonial */
.testimonial { padding: 0 0.5rem; }
.testimonial__mark { margin-bottom: 1.5rem; }
/* Services */
.services__item:hover { padding-left: 0; }
.services__tags { display: none; }
/* Footer */
.footer__grid { grid-template-columns: 1fr; gap: 2rem; }
/* Bg numbers */
.section__bg-number { font-size: clamp(6rem, 16vw, 10rem); }
}
@media (max-width: 480px) {
/* Hero */
.hero__title { font-size: clamp(2.5rem, 13vw, 4rem); }
.hero__subtitle { font-size: 0.9rem; margin-bottom: 2rem; }
/* About */
.about__title { font-size: clamp(1.5rem, 6vw, 2rem); }
.about__stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat { padding: 1rem 0; }
.stat__number { font-size: clamp(1.8rem, 8vw, 2.5rem); }
/* Work */
.work__image { height: 220px; }
.work__overlay { padding: 1.2rem; }
.work__title { font-size: 1.1rem; }
.work__desc { font-size: 0.75rem; }
/* Services */
.services__number { min-width: 2rem; }
.services__title { font-size: 1.1rem; }
/* CTA */
.cta { padding: clamp(4rem, 10vw, 6rem) 0; }
.cta__title { font-size: clamp(2rem, 11vw, 3.5rem); margin-bottom: 2rem; }
.btn--large { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 0.9rem; }
/* Clients */
.clients__item { font-size: 0.82rem; }
.clients__label { font-size: 0.62rem; margin-bottom: 1.5rem; }
/* Testimonial */
.testimonial__text { font-size: 1.05rem; line-height: 1.6; }
.testimonial__mark { font-size: 4rem; }
/* Footer */
.footer__bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
/* Bg numbers */
.section__bg-number { font-size: clamp(4rem, 14vw, 7rem); opacity: 0.015; }
}
/* Touch devices — disable hover-only effects */
@media (hover: none) {
.services__item:hover { padding-left: 0; }
.services__item:hover .services__title { color: inherit; }
.services__item:hover .services__arrow { color: var(--text-muted); }
.services__item.is-active .services__title { color: var(--accent); }
.services__item.is-active .services__arrow { color: var(--accent); transform: rotate(45deg); }
.work__item:hover .work__image { transform: none; }
.work__overlay { opacity: 1; }
.work__arrow { opacity: 1; transform: translateY(0) rotate(0deg); }
.work__number { opacity: 0.5; transform: translateY(0); }
.nav__cta:hover { background: transparent; border-color: var(--border); color: inherit; }
.clients__item { opacity: 0.25; }
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}



*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
} /* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
*,
::after,
::before {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
::after,
::before {
  --tw-content: "";
}
:host,
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  line-height: inherit;
}
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
pre,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
menu,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}
[role="button"],
button {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}

.hero__line.hero__linechanged--accent {
  font-size: 0.5em;
  margin-top: 0.2em;
}


[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}





.movingtext_ffc4g {
  display: inline-block;
  width: 0.1em;
  height: 1.2em;
  margin-left: 0.1em;
  background: currentColor;
  vertical-align: -0.06em;
  animation: caret 0.9s steps(1, end) infinite;
}

@keyframes caret {
  50% {
    opacity: 0;
  }
}

@media (max-width: 560px) {

  .hero__line.hero__linechanged--accent {
  font-size: 1em;

  }
}

@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}


