/* TMF landing page — native CSS keeps the static page light and portable. */
:root {
    --red: #f41717;
    --blue: #0137db;
    --orange: #ff721a;
    --ink: #111;
    --muted: #6e6e76;
    --line: #e9e9ee;
    --off: #f6f6f9;
    --radius: 24px;
    --ease: cubic-bezier(.22, 1, .36, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font: 16px/1.55 Inter, Arial, sans-serif;
    background: #fff;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
p {
    margin: 0
}

h1,
h2,
h3,
h4,
.brand {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -.055em
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover
}

.container {
    width: min(1320px, calc(100% - 64px));
    margin: auto
}

.section-pad {
    padding: 44px 0
}

.section-tight {
    padding: 36px 0 78px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 14px 0;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: .3s
}

.site-header.scrolled {
    border-color: var(--line);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .04)
}

.nav {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap
}

.nav-logo {
    height: 44px;
    width: auto;
    transition: transform .35s var(--ease)
}

.brand:hover .nav-logo {
    transform: scale(1.04)
}

.footer-logo {
    height: 52px;
    width: auto
}

.brand-mark {
    display: grid;
    place-items: center;
    padding: 5px 7px;
    background: var(--ink);
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    letter-spacing: -.08em
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 13.5px;
    font-weight: 500
}

.nav-links a {
    position: relative;
    padding: 6px 0;
    transition: color .3s
}

.nav-links a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    transition: width .35s var(--ease)
}

.nav-links a:hover:after {
    width: 100%
}

.nav-links a.active {
    color: var(--red);
    font-weight: 600
}

.nav-links a.active:after {
    width: 100%
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 13px
}

.login {
    font-weight: 600;
    transition: color .3s
}

.login:hover {
    color: var(--red)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    padding: 15px 21px;
    font-weight: 600;
    font-size: 14px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s
}

.btn:hover {
    transform: translateY(-3px) scale(1.02)
}

.btn svg {
    width: 16px
}

.btn-primary {
    background: linear-gradient(110deg, var(--red), var(--orange));
    color: #fff;
    box-shadow: 0 12px 25px rgba(244, 23, 23, .2)
}

.btn-primary:hover {
    box-shadow: 0 16px 34px rgba(244, 23, 23, .34)
}

.btn-dark {
    background: var(--ink);
    color: #fff
}

.small-btn {
    padding: 10px 15px;
    font-size: 12px
}

.btn-light {
    background: #fff;
    border: 1px solid var(--line)
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent
}

.hero {
    background: linear-gradient(180deg, #fafaff 0%, #f6f6fc 100%);
    position: relative;
    isolation: isolate;
    overflow: hidden
}

.hero-grid {
    min-height: 570px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 70px
}

.hero-copy {
    padding: 30px 0
}

.eyebrow,
.kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px
}

.eyebrow span {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(244, 23, 23, .12)
}

h1 {
    font-size: clamp(48px, 5.4vw, 76px);
    line-height: .99;
    font-weight: 700
}

h1 em,
h2 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--red), var(--orange));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent
}

.intro {
    max-width: 470px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 25px 0
}

.hero-actions {
    display: flex;
    gap: 12px
}

.mini-proof {
    display: flex;
    gap: 24px;
    margin-top: 26px;
    font-size: 11px;
    color: var(--muted)
}

.mini-proof span {
    display: flex;
    align-items: center;
    gap: 5px
}

.mini-proof svg {
    width: 13px;
    color: var(--blue)
}

.hero-visual {
    height: 464px;
    position: relative
}

.hero-visual>img {
    width: 88%;
    height: 100%;
    margin-left: auto;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(33, 49, 78, .16)
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 16px 34px rgba(30, 35, 58, .12);
    border-radius: 16px;
    padding: 14px;
    backdrop-filter: blur(10px)
}

.float-card small,
.notify small {
    display: block;
    font-size: 10px;
    color: #777;
    margin-top: 8px
}

.float-card strong {
    font: 600 15px "Space Grotesk"
}

.growth {
    left: 0;
    top: 54px;
    width: 156px
}

.reach {
    right: 0;
    bottom: 32px;
    width: 168px
}

.card-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 9px
}

.card-icon svg {
    width: 14px
}

.blue {
    background: #e8edff;
    color: var(--blue)
}

.orange {
    background: #fff0e8;
    color: var(--orange)
}

.chart {
    display: flex;
    align-items: end;
    height: 29px;
    gap: 4px;
    margin-top: 8px
}

.chart b {
    width: 14px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(var(--blue), #8aa5ff)
}

.chart b:nth-child(1) {
    height: 35%
}

.chart b:nth-child(2) {
    height: 58%
}

.chart b:nth-child(3) {
    height: 46%
}

.chart b:nth-child(4) {
    height: 78%
}

.chart b:nth-child(5) {
    height: 62%
}

.chart b:nth-child(6) {
    height: 100%
}

.avatars {
    display: flex
}

.avatars span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 8px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    margin-right: -5px
}

.avatars span:nth-child(2) {
    background: var(--blue)
}

.avatars span:nth-child(3) {
    background: var(--orange)
}

.progress {
    height: 4px;
    background: #e6e6e8;
    border-radius: 4px;
    margin-top: 11px
}

.progress i {
    display: block;
    width: 77%;
    height: 100%;
    background: var(--red);
    border-radius: inherit
}

.notify {
    position: absolute;
    right: 22px;
    top: 90px;
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 10px;
    width: 178px
}

.notify small {
    margin: 0
}

.notify strong {
    font: 600 10px "Space Grotesk"
}

.orb-one,
.orb-two {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(10px);
    opacity: .25
}

.orb-one {
    width: 400px;
    height: 400px;
    background: #d4ddff;
    top: -250px;
    right: 8%
}

.orb-two {
    width: 300px;
    height: 300px;
    background: #ffd7c4;
    bottom: -180px;
    left: 20%
}

.logos {
    text-align: center
}

.logos p {
    font: 600 12px "Space Grotesk";
    margin-bottom: 26px
}

.logo-window {
    overflow: hidden
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 65px;
    align-items: center;
    animation: marquee 28s linear infinite;
    color: #a5a5aa;
    font: 600 22px "Space Grotesk"
}

.logo-track span:nth-child(5),
.logo-track span:nth-child(6) {
    font-weight: 700;
    letter-spacing: -.1em
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    align-items: center
}

.image-frame {
    height: 490px;
    position: relative
}

.image-frame>img {
    width: 100%;
    height: 100%;
    border-radius: 28px
}

.image-tag {
    position: absolute;
    right: -20px;
    bottom: 27px;
    background: #fff;
    border-radius: 13px;
    padding: 11px 15px;
    box-shadow: 0 12px 30px #0002;
    display: flex;
    align-items: center;
    gap: 8px;
    font: 600 12px "Space Grotesk"
}

.image-tag svg {
    color: var(--red);
    width: 16px
}

h2 {
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.03;
    font-weight: 600
}

.about-copy>p:not(.kicker),
.why-copy>p:not(.kicker),
.process-intro {
    margin-top: 22px;
    color: var(--muted);
    max-width: 485px;
    font-size: 16px
}

.stats {
    border: 1px solid var(--line);
    border-radius: 20px;
    margin-top: 33px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 22px
}

.stats div+div {
    border-left: 1px solid var(--line);
    padding-left: 16px
}

.stats strong {
    display: block;
    font: 600 30px "Space Grotesk";
    letter-spacing: -.06em
}

.stats strong:after {
    content: "+";
    color: var(--orange)
}

.stats span {
    font-size: 10px;
    color: var(--muted)
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 44px
}

.section-top>p {
    max-width: 240px;
    color: var(--muted);
    font-size: 14px
}

.services {
    background: #fafafa
}

.service-scroller {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 3px 17px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
}

.service-scroller::-webkit-scrollbar {
    display: none
}

.service-card {
    min-width: 285px;
    height: 380px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    color: #fff;
    background: #111
}

.service-card img {
    height: 100%;
    width: 100%;
    transition: transform .7s var(--ease)
}

.service-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .82))
}

.service-card>div {
    position: absolute;
    inset: auto 21px 19px;
    z-index: 1
}

.service-card span {
    font-size: 11px;
    opacity: .8
}

.service-card h3 {
    font-size: 27px;
    line-height: 1.03;
    margin-top: 7px
}

.service-card a {
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
    transition: .35s
}

.service-card:hover img {
    transform: scale(1.08)
}

.service-card:hover a {
    background: var(--red);
    color: white;
    transform: rotate(45deg)
}

.scroll-hint {
    font-size: 11px;
    color: var(--muted);
    display: flex;
    gap: 9px;
    align-items: center;
    margin-top: 18px
}

.scroll-hint span {
    height: 4px;
    width: 56px;
    border-radius: 4px;
    background: var(--blue)
}

.why {
    padding-top: 72px
}

.why-panel {
    background: linear-gradient(135deg, #f7f9ff, #fff8f5);
    border-radius: 32px;
    padding: 34px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 65px
}

.why-image img {
    height: 100%;
    min-height: 410px;
    width: 100%;
    border-radius: 22px
}

.feature-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.feature-grid>div {
    background: #fff;
    border: 1px solid #ececf2;
    border-radius: 14px;
    padding: 14px;
    transition: .35s
}

.feature-grid>div:hover {
    transform: translateY(-5px);
    border-color: #9eafff;
    box-shadow: 0 13px 28px #0137db12
}

.feature-grid svg {
    width: 17px;
    color: var(--blue);
    display: block;
    margin-bottom: 13px
}

.feature-grid strong,
.feature-grid span {
    display: block
}

.feature-grid strong {
    font: 600 13px "Space Grotesk"
}

.feature-grid span {
    font-size: 10px;
    color: var(--muted);
    margin-top: 2px
}

.process-grid {
    align-items: start
}

.steps {
    margin-top: 34px
}

.steps article {
    display: grid;
    grid-template-columns: 34px 1fr 22px;
    gap: 12px;
    padding: 17px;
    border-radius: 15px;
    align-items: center;
    margin-bottom: 8px;
    border: 1px solid var(--line);
    transition: .3s
}

.steps article.active,
.steps article:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 14px 28px #0137db25
}

.steps span {
    font: 500 11px "Space Grotesk";
    color: var(--orange)
}

.steps h3 {
    font-size: 17px;
    letter-spacing: -.04em
}

.steps p {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px
}

.steps .active p,
.steps article:hover p {
    color: #dfe4ff
}

.steps svg {
    width: 16px
}

.process-photo {
    height: 590px;
    position: relative
}

.process-photo>img {
    height: 100%;
    width: 100%;
    border-radius: 28px
}

.photo-chip {
    position: absolute;
    left: 20px;
    bottom: 20px;
    border-radius: 99px;
    background: #fff;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    font: 600 12px "Space Grotesk"
}

.photo-chip svg {
    width: 16px;
    color: var(--red)
}

.portfolio {
    background: #fafafa
}

.text-link {
    font: 600 13px "Space Grotesk";
    display: flex;
    align-items: center;
    gap: 6px
}

.text-link svg {
    width: 16px
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.portfolio-grid article {
    position: relative
}

.work-image {
    height: 375px;
    overflow: hidden;
    border-radius: 22px
}

.work-image img {
    height: 100%;
    width: 100%;
    transition: transform .7s var(--ease)
}

.portfolio-grid article:hover img {
    transform: scale(1.07)
}

.portfolio-grid p {
    font-size: 11px;
    color: var(--muted);
    margin: 15px 0 5px
}

.portfolio-grid h3 {
    font-size: 25px;
    font-weight: 500
}

.portfolio-grid h3 em {
    font-style: normal;
    color: var(--red)
}

.portfolio-grid article>a {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: .3s
}

.portfolio-grid article>a svg {
    width: 15px
}

.portfolio-grid article:hover>a {
    background: var(--ink);
    color: #fff
}

.slider-controls {
    display: flex;
    gap: 8px
}

.slider-controls button {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer
}

.slider-controls button:last-child {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.testimonial-scroller {
    display: flex;
    gap: 18px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
}

.testimonial-scroller::-webkit-scrollbar {
    display: none
}

.quote-card {
    min-width: calc(33.333% - 12px);
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(150deg, #fff, #f8f9ff);
    scroll-snap-align: start
}

.stars {
    letter-spacing: 2px;
    color: var(--orange);
    font-size: 13px
}

.quote-card blockquote {
    font: 500 18px/1.45 "Space Grotesk";
    letter-spacing: -.03em;
    margin: 18px 0 29px
}

.person {
    display: flex;
    align-items: center;
    gap: 10px
}

.person img {
    height: 32px;
    width: 32px;
    border-radius: 50%
}

.person span {
    display: flex;
    flex-direction: column;
    font-size: 11px
}

.person small {
    font-size: 9px;
    color: var(--muted)
}

.person>svg {
    margin-left: auto;
    width: 22px;
    color: var(--blue)
}

.final-cta {
    padding-top: 74px
}

.cta-box {
    background: #111;
    color: #fff;
    border-radius: 32px;
    padding: 62px 7%;
    display: grid;
    grid-template-columns: 1fr .8fr;
    min-height: 425px;
    align-items: center;
    overflow: hidden;
    position: relative
}

.cta-box:after {
    content: "";
    width: 420px;
    height: 420px;
    background: #0137db55;
    filter: blur(80px);
    border-radius: 50%;
    position: absolute;
    right: -200px;
    top: -200px
}

.kicker.light {
    color: #aaa
}

.cta-box h2 {
    font-size: clamp(38px, 4vw, 56px);
    margin-bottom: 29px
}

.cta-box h2 em {
    background: linear-gradient(90deg, #ff6a6a, #ff913d);
    background-clip: text;
    -webkit-background-clip: text
}

.cta-photos {
    height: 300px;
    position: relative;
    z-index: 1
}

.cta-img-main {
    width: 66%;
    height: 100%;
    border-radius: 20px;
    position: absolute;
    right: 5%;
    top: 0
}

.cta-img-small {
    width: 39%;
    height: 46%;
    border-radius: 16px;
    position: absolute;
    left: 0;
    bottom: 0;
    border: 4px solid #111
}

.cta-bubble {
    position: absolute;
    right: 0;
    bottom: 24px;
    background: #fff;
    color: #111;
    border-radius: 13px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font: 600 10px "Space Grotesk"
}

.cta-bubble svg {
    width: 14px;
    color: var(--red)
}

footer {
    padding: 70px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px
}

.footer-brand p {
    font-size: 12px;
    color: var(--muted);
    max-width: 230px;
    margin: 17px 0
}

.socials {
    display: flex;
    gap: 8px
}

.socials a {
    height: 28px;
    width: 28px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: .3s
}

.socials a:hover {
    background: var(--ink);
    color: #fff
}

.socials svg {
    width: 13px
}

.footer-grid h4 {
    font: 600 13px "Space Grotesk";
    margin: 5px 0 16px
}

.footer-grid>div:not(.footer-brand) a {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin: 8px 0
}

.newsletter p {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 12px
}

.newsletter form {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 4px;
    display: flex
}

.newsletter input {
    border: 0;
    outline: 0;
    min-width: 0;
    width: 100%;
    font-size: 11px;
    padding: 7px
}

.newsletter button {
    border: 0;
    border-radius: 7px;
    background: var(--red);
    color: #fff;
    width: 30px
}

.newsletter svg {
    width: 14px
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 55px;
    padding-top: 19px;
    color: #999;
    font-size: 10px;
    display: flex;
    justify-content: space-between
}

.footer-bottom span:last-child {
    display: flex;
    gap: 15px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.in-view {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .12s
}

/* Hand-drawn circle accent on a headline word */
.circled {
    position: relative;
    display: inline-block
}

.circled svg {
    position: absolute;
    inset: -12px -20px;
    width: calc(100% + 40px);
    height: calc(100% + 24px);
    overflow: visible;
    pointer-events: none
}

.circled ellipse {
    fill: none;
    stroke: var(--red);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: drawRing 1.3s .7s var(--ease) forwards
}

@keyframes drawRing {
    to {
        stroke-dashoffset: 0
    }
}

/* Angled marquee strip */
.strip {
    overflow: hidden;
    background: var(--ink);
    padding: 16px 0;
    transform: rotate(-1.4deg);
    margin: 44px -24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14)
}

.strip-track {
    display: flex;
    gap: 34px;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    animation: marquee 26s linear infinite;
    color: #fff;
    font: 600 16px "Space Grotesk";
    letter-spacing: -.02em
}

.strip-track i {
    font-style: normal;
    color: var(--orange);
    font-size: 13px
}

/* Photo collage (about page) */
.collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    position: relative
}

.collage>div:nth-child(2) {
    transform: translateY(26px)
}

.tile {
    border-radius: 18px;
    overflow: hidden;
    height: 168px;
    margin-bottom: 13px
}

.tile img {
    width: 100%;
    height: 100%
}

.tile.solid {
    display: grid;
    place-items: center;
    color: #fff
}

.tile.solid svg {
    width: 34px
}

.tile.solid.t-red {
    background: linear-gradient(135deg, var(--red), #ff5c3c)
}

.tile.solid.t-blue {
    background: linear-gradient(135deg, var(--blue), #4a72ff)
}

.tile.solid.t-orange {
    background: linear-gradient(135deg, var(--orange), #ffa245)
}

.badge-float {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    z-index: 2;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .2);
    animation: floaty 6s ease-in-out infinite
}

.badge-float svg {
    width: 20px
}

/* Dark stats band */
.dark-band {
    background: var(--ink);
    color: #fff;
    border-radius: 32px;
    padding: 56px 7%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.dark-band:after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #0137db44;
    filter: blur(90px);
    right: -140px;
    top: -140px
}

.dark-band>div {
    position: relative;
    z-index: 1
}

.dark-band strong {
    display: block;
    font: 600 clamp(40px, 4.6vw, 62px) "Space Grotesk";
    letter-spacing: -.06em
}

.dark-band strong:after {
    content: "+";
    background: linear-gradient(110deg, var(--red), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.dark-band span {
    display: block;
    color: #9a9aa2;
    font-size: 12.5px;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .08em
}

/* Service card link + sub-page pieces */
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    font: 600 12.5px "Space Grotesk";
    color: var(--red);
    transition: gap .3s
}

.svc-link:hover {
    gap: 12px
}

.svc-link svg {
    width: 14px
}

.check-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0
}

.check-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-top: 13px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.55
}

.check-list svg {
    width: 17px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px
}

.mini-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.mini-steps>div {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 24px;
    background: #fff;
    transition: .35s
}

.mini-steps>div:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .08);
    border-color: #9eafff
}

.mini-steps span {
    font: 700 30px "Space Grotesk";
    background: linear-gradient(110deg, var(--red), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.mini-steps strong {
    display: block;
    font: 600 17px "Space Grotesk";
    margin: 12px 0 7px;
    letter-spacing: -.03em
}

.mini-steps p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

/* FAQ accordion */
.faq-list {
    max-width: 840px;
    margin: auto
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px 26px;
    margin-bottom: 12px;
    background: #fff;
    transition: border-color .3s, box-shadow .3s
}

.faq-list details[open] {
    border-color: #9eafff;
    box-shadow: 0 14px 32px rgba(1, 55, 219, .08)
}

.faq-list summary {
    cursor: pointer;
    font: 600 16px "Space Grotesk";
    letter-spacing: -.02em;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px
}

.faq-list summary::-webkit-details-marker {
    display: none
}

.faq-list summary:after {
    content: "+";
    font: 500 22px "Space Grotesk";
    color: var(--red);
    flex-shrink: 0;
    transition: transform .3s var(--ease)
}

.faq-list details[open] summary:after {
    transform: rotate(45deg)
}

.faq-list details p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.75
}

/* Social media showcase page */
.sm-hero {
    background: #fff;
    padding: 74px 0 8px
}

.pill-word {
    display: inline-block;
    background: #eef2ff;
    color: var(--blue);
    padding: 1px 24px 5px;
    border-radius: 999px
}

.sm-stage {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 540px;
    box-shadow: 0 30px 70px rgba(20, 25, 60, .18)
}

.sm-stage>img {
    width: 100%;
    height: 100%
}

.stage-tags {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    max-width: 430px
}

.stage-tags span {
    background: #fff;
    border-radius: 999px;
    padding: 10px 17px;
    font: 600 12.5px "Space Grotesk";
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18)
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

.handle-chip {
    position: absolute;
    left: 7%;
    bottom: 16%;
    background: #fff;
    border-radius: 15px;
    padding: 11px 17px;
    display: flex;
    gap: 11px;
    align-items: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
    animation: bob 4.5s ease-in-out infinite
}

.handle-chip svg {
    width: 17px;
    color: var(--red)
}

.handle-chip strong {
    display: block;
    font: 600 12.5px "Space Grotesk"
}

.handle-chip small {
    font-size: 10.5px;
    color: var(--muted)
}

.post-card {
    position: absolute;
    right: 26px;
    bottom: 26px;
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    width: 252px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
    animation: bob 5.5s .9s ease-in-out infinite
}

.post-card header {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line)
}

.post-card header .card-icon {
    width: 34px;
    height: 34px
}

.post-card header .card-icon svg {
    width: 16px
}

.post-card header strong {
    display: block;
    font: 600 13px "Space Grotesk"
}

.post-card header small {
    font-size: 10px;
    color: var(--muted)
}

.post-card .row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted);
    margin-top: 10px
}

.post-card .row b {
    color: var(--ink);
    font-weight: 600
}

/* Insights split */
.insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 18px;
    align-items: start
}

.insight-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    background: #fff;
    transition: .35s
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08)
}

.insight-tag {
    display: inline-block;
    font: 600 10.5px "Space Grotesk";
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 99px
}

.insight-tag.t1 {
    background: #fff1ef;
    color: var(--red)
}

.insight-tag.t2 {
    background: #eef2ff;
    color: var(--blue)
}

.insight-card h3 {
    font-size: 18.5px;
    letter-spacing: -.04em;
    margin-top: 13px
}

.insight-card img {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    margin: 15px 0
}

.insight-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65
}

.face-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

.face-grid>div {
    border-radius: 18px;
    overflow: hidden;
    height: 128px;
    position: relative
}

.face-grid img {
    width: 100%;
    height: 100%
}

.face-grid .face-name {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(255, 255, 255, .92);
    border-radius: 99px;
    padding: 4px 11px;
    font: 600 10.5px "Space Grotesk"
}

.face-solid {
    display: grid;
    place-items: center;
    color: #fff
}

.face-solid svg {
    width: 30px
}

/* Success stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.story-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 300px
}

.story-card img {
    width: 100%;
    height: 100%;
    transition: transform .6s var(--ease)
}

.story-card:hover img {
    transform: scale(1.06)
}

.story-name {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, .92);
    border-radius: 99px;
    padding: 6px 13px;
    font: 600 11px "Space Grotesk"
}

.story-quote {
    background: linear-gradient(155deg, var(--blue), #4a72ff);
    color: #fff;
    border-radius: 22px;
    padding: 24px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 13px
}

.story-quote img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #fff8
}

.story-quote strong {
    font: 600 14px "Space Grotesk"
}

.story-quote small {
    font-size: 10.5px;
    opacity: .75;
    margin-top: -9px
}

.story-quote p {
    font-size: 13px;
    line-height: 1.65;
    margin-top: auto
}

/* Values section (about) */
.values-wrap {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center
}

.values-head>p:not(.kicker) {
    margin-top: 22px;
    color: var(--muted);
    max-width: 380px;
    font-size: 16px;
    line-height: 1.65
}

.values-head .btn {
    margin-top: 28px
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.value-card {
    position: relative;
    border-radius: 24px;
    padding: 28px 26px 26px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s
}

.value-card:nth-child(even) {
    translate: 0 22px
}

.value-card.v-red {
    background: #fff1ef
}

.value-card.v-blue {
    background: #eef2ff
}

.value-card.v-orange {
    background: #fff4ea
}

.value-card.v-dark {
    background: var(--off)
}

.value-num {
    position: absolute;
    top: 14px;
    right: 22px;
    font: 700 52px "Space Grotesk";
    letter-spacing: -.06em;
    opacity: .09;
    transition: opacity .4s
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: auto;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
    transition: transform .4s var(--ease)
}

.value-icon svg {
    width: 21px
}

.v-red .value-icon {
    background: linear-gradient(135deg, var(--red), #ff5c3c)
}

.v-blue .value-icon {
    background: linear-gradient(135deg, var(--blue), #4a72ff)
}

.v-orange .value-icon {
    background: linear-gradient(135deg, var(--orange), #ffa245)
}

.v-dark .value-icon {
    background: linear-gradient(135deg, #1b1b1f, #3a3a44)
}

.value-card h3 {
    font-size: 19px;
    letter-spacing: -.04em;
    margin-top: 30px;
    transition: color .4s
}

.value-card>p {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.6;
    transition: color .4s
}

.value-card:hover {
    transform: translateY(-7px);
    background: var(--ink);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .22)
}

.value-card:hover h3 {
    color: #fff
}

.value-card:hover>p {
    color: #a9a9b2
}

.value-card:hover .value-num {
    opacity: .18;
    color: #fff
}

.value-card:hover .value-icon {
    transform: scale(1.08) rotate(-6deg)
}

/* Floating background icons */
.float-ico {
    position: absolute;
    z-index: -1;
    color: var(--blue);
    opacity: .14;
    pointer-events: none;
    animation: floaty 8s ease-in-out infinite
}

.float-ico svg {
    width: 100%;
    height: auto
}

.float-ico.red {
    color: var(--red)
}

.float-ico.orange {
    color: var(--orange)
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg)
    }

    50% {
        transform: translateY(-22px) rotate(7deg)
    }
}

/* Inner page hero */
.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(180deg, #fafaff 0%, #f6f6fc 100%);
    padding: 84px 0 70px;
    text-align: center
}

.page-hero .kicker {
    justify-content: center
}

.page-hero h1 {
    font-size: clamp(40px, 5vw, 64px)
}

.page-hero .lead {
    max-width: 600px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.65
}

/* Services page cards */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.svc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 26px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: #9eafff;
    box-shadow: 0 18px 40px rgba(1, 55, 219, .09)
}

.svc-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    margin-bottom: 18px
}

.svc-icon svg {
    width: 20px
}

.svc-card h3 {
    font-size: 20px;
    letter-spacing: -.04em
}

.svc-card>p {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

.svc-card ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0
}

.svc-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 8px
}

.svc-card li svg {
    width: 14px;
    color: var(--red);
    flex-shrink: 0
}

/* Careers page */
.perk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.perk-grid>div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    transition: .35s
}

.perk-grid>div:hover {
    transform: translateY(-5px);
    border-color: #ffc4a3;
    box-shadow: 0 13px 28px rgba(255, 114, 26, .1)
}

.perk-grid svg {
    width: 19px;
    color: var(--orange);
    margin-bottom: 12px
}

.perk-grid strong {
    display: block;
    font: 600 14px "Space Grotesk"
}

.perk-grid span {
    display: block;
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 3px
}

.role-list article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 12px;
    transition: .3s;
    background: #fff
}

.role-list article:hover {
    border-color: #9eafff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(1, 55, 219, .08)
}

.role-list h3 {
    font-size: 18px;
    letter-spacing: -.04em
}

.role-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 9px
}

.tag {
    background: var(--off);
    border-radius: 99px;
    padding: 4px 11px;
    font-size: 11px;
    color: var(--muted)
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 56px;
    align-items: start
}

.info-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 12px;
    background: #fff;
    transition: .3s
}

.info-card:hover {
    border-color: #9eafff;
    box-shadow: 0 12px 26px rgba(1, 55, 219, .07)
}

.info-card .card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.info-card .card-icon svg {
    width: 18px
}

.info-card strong {
    font: 600 14px "Space Grotesk";
    display: block
}

.info-card span,
.info-card a.mail {
    display: block;
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 3px
}

.info-card a.mail:hover {
    color: var(--red)
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.contact-form label {
    display: block;
    font: 600 12px "Space Grotesk";
    margin: 16px 0 7px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 15px;
    font: 14px Inter, sans-serif;
    color: var(--ink);
    background: var(--off);
    outline: 0;
    transition: border-color .3s, background .3s
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    background: #fff
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical
}

.contact-form .btn {
    margin-top: 22px;
    border: 0;
    cursor: pointer;
    width: 100%
}

.form-note {
    text-align: center;
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 14px
}

/* Privacy / legal pages */
.policy {
    max-width: 760px;
    margin: auto
}

.policy h2 {
    font-size: 26px;
    margin: 42px 0 14px
}

.policy h3 {
    font-size: 18px;
    margin: 26px 0 10px
}

.policy p,
.policy li {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.75
}

.policy ul {
    padding-left: 20px;
    margin: 10px 0
}

.policy .updated {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px
}

@media (max-width: 1024px) {
    .svc-grid {
        grid-template-columns: 1fr 1fr
    }

    .perk-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .values-wrap {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .insight-grid {
        grid-template-columns: 1fr 1fr
    }

    .stories-grid {
        grid-template-columns: 1fr 1fr
    }

    .sm-stage {
        height: 440px
    }
}

@media (max-width: 720px) {
    .svc-grid {
        grid-template-columns: 1fr
    }

    .role-list article {
        flex-direction: column;
        align-items: flex-start
    }

    .contact-form {
        padding: 24px
    }

    .contact-form .form-row {
        grid-template-columns: 1fr
    }

    .page-hero {
        padding: 60px 0 50px
    }

    .dark-band {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 40px 24px
    }

    .mini-steps {
        grid-template-columns: 1fr
    }

    .values-grid {
        grid-template-columns: 1fr
    }

    .value-card:nth-child(even) {
        translate: 0 0
    }

    .value-card {
        min-height: 0
    }

    .collage {
        grid-template-columns: repeat(3, 1fr);
        gap: 9px
    }

    .tile {
        height: 110px;
        margin-bottom: 9px
    }

    .strip {
        margin: 30px -20px
    }

    .insight-grid,
    .stories-grid {
        grid-template-columns: 1fr
    }

    .sm-stage {
        height: 340px;
        border-radius: 20px
    }

    .stage-tags {
        max-width: 250px
    }

    .stage-tags span {
        padding: 7px 12px;
        font-size: 11px
    }

    .post-card {
        right: 12px;
        bottom: 12px;
        width: 210px
    }

    .handle-chip {
        left: 12px;
        bottom: 12px
    }

    .story-card,
    .story-quote {
        height: 260px
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 44px 0 56px;
        min-height: 0
    }

    .hero-visual {
        height: 400px
    }

    .hero-visual>img {
        width: 100%
    }

    .split-grid,
    .why-panel,
    .cta-box {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .image-frame {
        height: 380px
    }

    .process-photo {
        height: 420px
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr
    }

    .quote-card {
        min-width: calc(50% - 9px)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }
}

@media (max-width: 940px) {

    .nav-links,
    .nav-actions .login {
        display: none
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        border-radius: 12px;
        cursor: pointer;
        background: #fff
    }

    .site-header.menu-open .nav-links {
        display: flex;
        position: absolute;
        top: calc(100% + 6px);
        left: 20px;
        right: 20px;
        flex-direction: column;
        gap: 2px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
        padding: 12px;
        font-size: 15px
    }

    .site-header.menu-open .nav-links a {
        padding: 12px 16px;
        border-radius: 12px
    }

    .site-header.menu-open .nav-links a:after {
        display: none
    }

    .site-header.menu-open .nav-links a.active {
        background: #fff1f0
    }
}

@media (max-width: 720px) {
    .container {
        width: calc(100% - 40px)
    }

    h1 {
        font-size: clamp(42px, 12vw, 56px)
    }

    .hero-visual {
        height: 340px
    }

    .growth {
        top: 20px
    }

    .notify {
        top: auto;
        bottom: 90px;
        right: 10px
    }

    .section-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px
    }

    .why-panel {
        padding: 22px
    }

    .why-image img {
        min-height: 300px
    }

    .portfolio-grid {
        grid-template-columns: 1fr
    }

    .work-image {
        height: 300px
    }

    .quote-card {
        min-width: 86%
    }

    .cta-box {
        padding: 44px 24px
    }

    .cta-photos {
        height: 260px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .stats {
        padding: 16px
    }

    .stats strong {
        font-size: 24px
    }

    .image-tag {
        right: 10px
    }

    .hero-actions {
        flex-wrap: wrap
    }

    .mini-proof {
        flex-wrap: wrap;
        gap: 14px
    }
}
