:root {
  --orange: #ff571b;
  --orange-deep: #ef3f00;
  --ink: #171719;
  --graphite: #3c3b3f;
  --cream: #fff5e9;
  --cream-2: #f7eadb;
  --mist: #ece9e5;
  --white: #fff;
  --line: rgba(23, 23, 25, .15);
  --pad: clamp(24px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: Arial, Helvetica, sans-serif; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; }
::selection { background: var(--orange); color: white; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: -60px; left: 20px; background: var(--ink); color: white; padding: 12px 18px; border-radius: 0 0 12px 12px; transition: top .25s; }
.skip-link:focus { top: 0; }
.section-pad { padding-left: var(--pad); padding-right: var(--pad); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.revealed { opacity: 1; transform: none; }

.site-header { height: 96px; padding: 12px var(--pad); display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 50; background: var(--cream); border-bottom: 1px solid var(--line); }
.brand-logo { width: 188px; display: flex; flex-direction: column; gap: 3px; }
.brand-logo img { width: 168px; height: 68px; object-fit: contain; object-position: center; filter: none; margin-top: -7px; margin-bottom: -6px; }
.brand-logo span { font-size: 7px; text-transform: uppercase; letter-spacing: .17em; font-weight: 800; color: var(--graphite); text-align: center; white-space: nowrap; }
.brand-logo-light img { filter: brightness(0) invert(1); }
.brand-logo-light span { color: rgba(255,255,255,.62); }
.site-header nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 50px); }
.site-header nav > a:not(.nav-cta) { font-size: 14px; font-weight: 700; position: relative; }
.site-header nav > a:not(.nav-cta)::after { content: ""; position: absolute; height: 2px; width: 0; left: 0; bottom: -7px; background: var(--orange); transition: width .25s; }
.site-header nav > a:hover::after { width: 100%; }
.nav-cta { background: var(--orange); color: white; min-height: 52px; padding: 0 8px 0 20px; border-radius: 999px; display: flex; align-items: center; gap: 16px; font-size: 14px; font-weight: 800; transition: transform .25s, box-shadow .25s; }
.nav-cta span { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,87,27,.28); }
.menu-toggle { display: none; border: 0; background: transparent; width: 48px; height: 48px; padding: 13px 9px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; width: 28px; background: var(--ink); margin: 7px 0; }

.hero { min-height: calc(100svh - 96px); display: grid; grid-template-columns: 1.04fr .96fr; position: relative; align-items: center; overflow: hidden; padding-top: 50px; padding-bottom: 70px; }
.hero-copy.reveal { opacity: 1; transform: none; animation: heroIn .8s cubic-bezier(.2,.7,.2,1) both; }
.hero::before { content: ""; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(255,87,27,.18); position: absolute; left: -240px; bottom: -150px; }
.eyebrow { margin: 0 0 24px; font-size: 12px; text-transform: uppercase; letter-spacing: .2em; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.eyebrow span { color: var(--orange); font-size: 8px; }
.hero h1, .page-hero h1 { margin: 0; font-size: clamp(64px, 8.2vw, 132px); line-height: .84; letter-spacing: -.075em; font-weight: 900; }
.hero h1 em, .page-hero h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-lead { margin: 34px 0 0; max-width: 620px; font-size: clamp(16px, 1.35vw, 21px); line-height: 1.62; color: #56545a; }
.hero-lead strong { color: var(--ink); }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 34px; }
.button { min-height: 56px; padding: 0 9px 0 24px; display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; border-radius: 999px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; border: 1px solid transparent; transition: transform .25s, background .25s, color .25s; }
.button span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; }
.button-dark { background: var(--ink); color: white; }
.button-dark span { background: var(--orange); }
.button-light { background: white; color: var(--ink); }
.button-light span { background: var(--orange); color: white; }
.button-outline { border-color: var(--ink); }
.button-outline span { background: var(--ink); color: white; }
.button:hover { transform: translateY(-3px); }
.text-link { font-weight: 800; font-size: 14px; display: inline-flex; gap: 18px; align-items: center; border-bottom: 1px solid var(--ink); padding-bottom: 6px; }
.text-link span { color: var(--orange); transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.hero-metrics { margin-top: 52px; display: flex; gap: clamp(24px, 4vw, 62px); }
.hero-metrics div { display: flex; flex-direction: column; gap: 5px; max-width: 130px; }
.hero-metrics strong { font-size: 30px; line-height: 1; }
.hero-metrics span { font-size: 11px; line-height: 1.35; color: #77747a; }
.scroll-note { position: absolute; right: var(--pad); bottom: 22px; display: flex; gap: 12px; align-items: center; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; }
.scroll-note span { color: var(--orange); font-size: 20px; animation: bounce 1.8s infinite; }

.hero-visual { --mx: 0px; --my: 0px; width: min(43vw, 650px); aspect-ratio: 1 / 1; justify-self: end; position: relative; transform: translate(var(--mx), var(--my)); transition: transform .15s linear; }
.hero-visual::before { content: ""; position: absolute; inset: 7%; border-radius: 50%; background: var(--orange); box-shadow: 0 40px 90px rgba(255,87,27,.25); }
.hero-visual::after { content: ""; position: absolute; inset: 18%; border-radius: 50%; border: 1px dashed rgba(255,255,255,.45); animation: spin 26s linear infinite; }
.orbital { position: absolute; z-index: 1; border: 1px solid rgba(23,23,25,.25); border-radius: 50%; }
.orbital-one { inset: 0; animation: spin 34s linear infinite reverse; }
.orbital-two { inset: 12%; border-color: rgba(255,255,255,.6); }
.orbital-one::before, .orbital-one::after { content: ""; position: absolute; width: 12px; height: 12px; background: var(--ink); border: 4px solid var(--cream); border-radius: 50%; }
.orbital-one::before { top: 12%; left: 17%; }.orbital-one::after { right: 4%; bottom: 26%; }
.performance-card { position: absolute; z-index: 3; width: 54%; min-height: 39%; left: 23%; top: 30%; border: 1px solid rgba(255,255,255,.5); border-radius: 28px; background: rgba(23,23,25,.94); color: white; padding: clamp(18px,2vw,30px); box-shadow: 0 26px 60px rgba(24,21,20,.36); transform: rotate(-4deg); animation: float 5s ease-in-out infinite; }
.card-head { display: flex; justify-content: space-between; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.6); }
.card-head b { font-size: 8px; background: var(--orange); color: white; border-radius: 99px; padding: 5px 8px; }
.performance-card > strong { display: block; font-size: clamp(36px, 4.5vw, 72px); line-height: 1; margin-top: 20px; letter-spacing: -.07em; }
.performance-card > small { display: block; color: rgba(255,255,255,.55); font-size: 11px; }
.mini-chart { height: 74px; display: flex; align-items: end; gap: 7px; margin-top: 16px; }
.mini-chart i { width: 14%; border-radius: 5px 5px 1px 1px; background: var(--orange); animation: bars 2.8s ease-in-out infinite alternate; }
.mini-chart i:nth-child(1){height:27%}.mini-chart i:nth-child(2){height:47%;animation-delay:.2s}.mini-chart i:nth-child(3){height:38%;animation-delay:.4s}.mini-chart i:nth-child(4){height:70%;animation-delay:.6s}.mini-chart i:nth-child(5){height:61%;animation-delay:.8s}.mini-chart i:nth-child(6){height:88%;animation-delay:1s}.mini-chart i:nth-child(7){height:100%;animation-delay:1.2s}
.card-foot { display: flex; justify-content: space-between; color: rgba(255,255,255,.55); font-size: 8px; margin-top: 9px; }
.platform-chip { position: absolute; z-index: 5; padding: 9px 14px 9px 9px; border-radius: 999px; display: flex; align-items: center; gap: 9px; background: white; box-shadow: 0 15px 35px rgba(31,25,22,.17); font-size: 10px; animation: float 4.5s ease-in-out infinite; }
.platform-chip span { width: 33px; height: 33px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: white; font-weight: 900; font-size: 13px; }
.platform-chip b { font-weight: 900; }
.chip-instagram { left: 1%; top: 18%; animation-delay: -.7s; }.chip-linkedin { right: -1%; top: 21%; animation-delay: -2s; }.chip-youtube { left: -4%; bottom: 19%; animation-delay: -1.2s; }.chip-meta { right: 2%; bottom: 12%; animation-delay: -2.8s; }
.wing-stamp { position: absolute; z-index: 6; width: 92px; height: 92px; border-radius: 50%; right: 6%; top: 47%; background: var(--cream); border: 1px solid var(--ink); display: flex; flex-direction: column; justify-content: center; align-items: center; transform: rotate(9deg); }
.wing-stamp span { font-size: 25px; font-weight: 1000; letter-spacing: -.12em; color: var(--orange); }.wing-stamp small { font-size: 7px; letter-spacing: .3em; margin-left: .3em; }
.spark { position: absolute; z-index: 6; color: white; font-size: 30px; animation: twinkle 2s ease-in-out infinite; }.spark-1{top:7%;right:21%}.spark-2{bottom:6%;left:28%;font-size:18px;animation-delay:.8s}.spark-3{top:48%;left:8%;font-size:14px;animation-delay:1.4s}

.marquee { height: 76px; background: var(--ink); color: white; overflow: hidden; display: flex; align-items: center; transform: rotate(-1.2deg); width: 102%; margin-left: -1%; }
.marquee > div { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee span { display: flex; align-items: center; gap: 30px; margin-right: 30px; font-size: 18px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; white-space: nowrap; }.marquee b { color: var(--orange); font-size: 13px; }

.intro { padding-top: 160px; padding-bottom: 100px; }
.section-kicker { display: flex; align-items: center; gap: 14px; font-size: 11px; text-transform: uppercase; letter-spacing: .17em; font-weight: 900; color: #767379; }.section-kicker span { color: var(--orange); }
.intro-grid, .section-title-row, .story-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; margin-top: 48px; }
h2 { margin: 0; font-size: clamp(48px, 6vw, 96px); line-height: .96; letter-spacing: -.065em; }
.intro-grid > div p, .section-title-row > p, .story-grid > div p { margin: 0 0 28px; font-size: 17px; line-height: 1.8; color: #656268; }
.services-home { padding-bottom: 150px; }
.service-row { display: grid; grid-template-columns: 50px 76px 1fr 1fr 54px; gap: 26px; align-items: center; min-height: 160px; border-top: 1px solid var(--line); transition: padding .25s, background .25s; }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover { background: var(--white); padding-left: 18px; padding-right: 18px; }
.service-number { color: var(--orange); font-size: 11px; font-weight: 900; }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; background: var(--orange); color: white; border-radius: 16px; transform: rotate(-4deg); }.service-icon svg { width: 40px; height: 40px; }
.service-row h3 { font-size: clamp(24px, 2.4vw, 40px); line-height: 1; letter-spacing: -.04em; margin: 0; }
.service-row p { font-size: 14px; line-height: 1.65; color: #6a676c; max-width: 440px; }
.service-row > a { width: 50px; height: 50px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; transition: .25s; }.service-row > a:hover { background: var(--ink); color: white; transform: rotate(45deg); }

.growth-banner { min-height: 760px; background: var(--orange); color: white; padding-top: 90px; padding-bottom: 74px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.growth-banner::after { content: "WW"; position: absolute; right: -30px; bottom: -110px; font-size: min(36vw, 570px); line-height: .7; font-weight: 1000; letter-spacing: -.15em; color: rgba(255,255,255,.08); }
.banner-noise { position: absolute; inset: 0; opacity: .11; background-image: radial-gradient(#fff 1px,transparent 1px); background-size: 13px 13px; mask-image: linear-gradient(90deg,transparent,black); }
.eyebrow-light { color: white; position: relative; z-index: 2; }.eyebrow-light span { color: white; }
.growth-banner h2 { position: relative; z-index: 2; max-width: 1180px; font-size: clamp(50px,7vw,110px); }.growth-banner h2 em { color: var(--ink); }
.banner-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; }.banner-bottom p { font-size: 18px; font-weight: 800; }

.process, .work-preview, .industries { padding-top: 150px; padding-bottom: 150px; }
.section-title-row { align-items: end; }.section-title-row > p { max-width: 430px; margin: 0; }.section-title-row > a { justify-self: end; }
.process-grid { margin-top: 80px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-card { min-height: 330px; padding: 30px 25px; border-right: 1px solid var(--line); position: relative; transition: .3s; }.process-card:first-child{border-left:1px solid var(--line)}
.process-card > span { color: var(--orange); font-size: 11px; font-weight: 900; }.process-card h3 { font-size: 24px; margin: 100px 0 20px; }.process-card p { font-size: 13px; line-height: 1.7; color: #6d6a6f; }.process-card i { position: absolute; top: 26px; right: 22px; font-style: normal; opacity: 0; transition: .25s; }
.process-card:hover { background: var(--orange); color: white; transform: translateY(-12px); }.process-card:hover > span,.process-card:hover p{color:white}.process-card:hover i{opacity:1}

.work-preview { background: white; }.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 70px; }
.case-card { min-height: 580px; padding: 34px; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; transition: transform .35s; }.case-card:hover { transform: translateY(-10px); }
.case-orange { background: var(--orange); color: white; }.case-dark { background: var(--ink); color: white; }.case-cream { background: var(--cream-2); color: var(--ink); }
.case-tag { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; font-weight: 900; opacity: .75; }.case-card > strong { font-size: clamp(82px,9vw,150px); line-height: .85; margin-top: 70px; letter-spacing: -.09em; position: relative; z-index: 2; }.case-card h3 { font-size: 27px; line-height: 1.1; letter-spacing: -.04em; max-width: 390px; margin: auto 0 20px; position: relative; z-index: 2; }.case-card p { font-size: 13px; line-height: 1.65; max-width: 390px; opacity: .74; position: relative; z-index: 2; }.case-arrow { position: absolute; top: 26px; right: 28px; width: 46px; height: 46px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; }
.case-pattern { position:absolute; inset:20% -10% auto 32%; height:210px; display:flex; align-items:end; gap:16px; transform: rotate(-7deg); opacity:.17}.case-pattern i{width:15%;background:currentColor;border-radius:10px 10px 0 0}.case-pattern i:nth-child(1){height:25%}.case-pattern i:nth-child(2){height:48%}.case-pattern i:nth-child(3){height:42%}.case-pattern i:nth-child(4){height:76%}.case-pattern i:nth-child(5){height:100%}

.industries { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; background: var(--mist); }.industries h2 { font-size: clamp(44px,5vw,80px); margin-top: 45px; }.industry-list { border-top: 1px solid var(--line); }.industry-list > span { display: grid; grid-template-columns: 42px 1fr 20px; align-items: center; min-height: 60px; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 800; transition: padding .25s, color .25s; }.industry-list b { color: var(--orange); font-size: 9px; }.industry-list i { font-style: normal; font-size: 12px; }.industry-list span:hover { color: var(--orange); padding-left: 8px; }

.contact-band { min-height: 650px; background: var(--ink); color: white; display: grid; grid-template-columns: 1fr 260px; align-items: center; position: relative; overflow: hidden; }
.contact-band::before { content: ""; position: absolute; width: 580px; height: 580px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; right: -120px; top: -180px; }.contact-band h2 { max-width: 1000px; }.contact-band h2 em { color: var(--orange); }
.contact-orb { width: 230px; height: 230px; border-radius: 50%; background: var(--orange); display: flex; flex-direction: column; justify-content: center; align-items: center; text-transform: uppercase; letter-spacing: .11em; font-size: 12px; font-weight: 900; text-align: center; position: relative; transition: transform .35s; }.contact-orb b { position: absolute; top: 36px; right: 48px; font-size: 20px; }.contact-orb:hover { transform: rotate(8deg) scale(1.05); }
.contact-sparkle { position: absolute; right: 27%; bottom: 15%; color: var(--orange); font-size: 34px; animation: twinkle 2s infinite; }

.footer { background: #0c0c0d; color: white; padding: 95px var(--pad) 26px; }
.footer-top { display: grid; grid-template-columns: 230px 1fr 180px; gap: 40px; align-items: center; padding-bottom: 95px; border-bottom: 1px solid rgba(255,255,255,.15); }.footer-top h2 { text-align: center; font-size: clamp(45px,6vw,85px); }.circle-link { width: 160px; height: 160px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); display: flex; flex-direction: column; align-items:center; justify-content:center; text-transform:uppercase; letter-spacing:.13em; font-size:10px; font-weight:900; position:relative; transition:.25s}.circle-link b{position:absolute;top:25px;right:35px;font-size:16px}.circle-link:hover{background:var(--orange);border-color:var(--orange);transform:rotate(7deg)}
.footer-grid { display: grid; grid-template-columns: 2fr 1.2fr 1fr 1fr; gap: 60px; padding: 60px 0; }.footer-grid > div { display:flex;flex-direction:column;gap:10px;font-size:13px;line-height:1.7;color:rgba(255,255,255,.66)}.footer-grid a:hover{color:var(--orange)}.footer-label{color:white!important;text-transform:uppercase;letter-spacing:.16em;font-size:9px!important;font-weight:900;margin:0 0 10px}.footer-grid p{margin:0}.footer-bottom { border-top:1px solid rgba(255,255,255,.15); padding-top:24px; display:flex;justify-content:space-between;gap:30px;font-size:9px;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.45) }

/* Inner pages */
.page-hero { min-height: 690px; padding-top: 110px; padding-bottom: 80px; position: relative; overflow: hidden; }.page-hero h1 { max-width: 1250px; font-size: clamp(65px,9.5vw,150px); }.page-hero > p:last-of-type { max-width: 630px; margin: 45px 0 0 auto; font-size: 18px; line-height: 1.75; color: #666269; }.page-hero-mark { position:absolute;right:var(--pad);top:110px;font-size:80px;color:var(--orange);animation:spin 18s linear infinite}
.about-story, .values, .service-detail-list, .work-list, .faq, .contact-page { padding-top: 130px; padding-bottom: 130px; background: white; }.story-grid { align-items:start}.story-grid h2{font-size:clamp(50px,6vw,90px)}.story-grid > div p{font-size:18px}.story-grid strong{color:var(--ink)}
.founder-section { padding-top:120px;padding-bottom:120px;display:grid;grid-template-columns:1fr 1fr;gap:8vw;align-items:center}.founder-art{aspect-ratio:1/1;background:var(--orange);color:white;position:relative;padding:50px;display:flex;flex-direction:column;justify-content:space-between;overflow:hidden}.founder-art::before{content:"";position:absolute;width:75%;height:75%;border:1px solid rgba(255,255,255,.4);border-radius:50%;right:-15%;top:-18%}.founder-monogram{font-size:clamp(80px,12vw,190px);font-weight:1000;letter-spacing:-.14em;line-height:1}.founder-monogram span{font-size:.45em;color:var(--ink);vertical-align:middle;margin:0 .08em}.founder-art p{font-size:24px;font-weight:800;position:relative;z-index:2}.founder-spark{position:absolute;right:12%;bottom:13%;font-size:50px;animation:twinkle 2s infinite}.founder-copy h2{font-size:clamp(50px,5vw,80px);margin:35px 0}.founder-copy>p:not(.section-kicker){font-size:18px;line-height:1.8;color:#68656b}.founder-names{margin-top:50px;border-top:1px solid var(--line)}.founder-names div{padding:22px 0;border-bottom:1px solid var(--line);display:flex;flex-direction:column;gap:6px}.founder-names strong{font-size:18px}.founder-names span{font-size:12px;color:#77747a}
.values{background:var(--mist)}.value-grid{display:grid;grid-template-columns:repeat(4,1fr);margin-top:65px}.value-card{min-height:330px;padding:28px;border:1px solid var(--line);margin-left:-1px;position:relative;background:var(--mist);transition:.3s}.value-card>span{color:var(--orange);font-size:10px;font-weight:900}.value-card h3{font-size:27px;margin:110px 0 18px;letter-spacing:-.04em}.value-card p{font-size:13px;line-height:1.7;color:#6d6a70}.value-card:hover{background:white;transform:translateY(-8px)}
.numbers{background:var(--orange);color:white;display:grid;grid-template-columns:repeat(4,1fr);padding-top:80px;padding-bottom:80px}.numbers div{display:flex;flex-direction:column;align-items:center;gap:12px;border-right:1px solid rgba(255,255,255,.3);text-align:center}.numbers div:last-child{border:0}.numbers strong{font-size:clamp(50px,6vw,90px);letter-spacing:-.07em}.numbers span{font-size:10px;text-transform:uppercase;letter-spacing:.13em;font-weight:800}

.service-detail-list{padding-top:80px}.service-detail{display:grid;grid-template-columns:150px 1fr 160px;gap:5vw;align-items:start;padding:80px 0;border-top:1px solid var(--line);scroll-margin-top:30px}.service-detail:last-child{border-bottom:1px solid var(--line)}.service-detail-head{display:flex;gap:24px;align-items:center}.service-detail-head>span{font-size:10px;color:var(--orange);font-weight:900}.service-detail h2{font-size:clamp(42px,5vw,78px);margin-bottom:30px}.service-detail-lead{font-size:18px;line-height:1.7;color:#656269;max-width:760px}.deliverables{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:35px}.deliverables span{font-size:12px;font-weight:800}.deliverables span::first-letter{color:var(--orange)}.service-detail>a{font-size:11px;text-transform:uppercase;letter-spacing:.13em;font-weight:900;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--ink);padding-bottom:10px}.service-detail>a b{color:var(--orange)}
.platform-section{padding-top:130px;padding-bottom:130px;background:var(--ink);color:white;display:grid;grid-template-columns:1fr 1fr;gap:7vw;align-items:end}.platform-section h2{margin-top:40px}.platform-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.platform-grid div{aspect-ratio:1/1;border:1px solid rgba(255,255,255,.2);display:flex;flex-direction:column;justify-content:center;align-items:center;gap:18px;transition:.3s}.platform-grid b{width:60px;height:60px;background:var(--orange);border-radius:50%;display:grid;place-items:center;font-size:20px}.platform-grid span{font-size:10px;text-transform:uppercase;letter-spacing:.12em;font-weight:900}.platform-grid div:hover{background:white;color:var(--ink);transform:rotate(3deg)}
.faq{display:grid;grid-template-columns:.7fr 1.3fr;gap:8vw}.faq h2{margin-top:40px}.faq-list{border-top:1px solid var(--line)}.faq-item{border-bottom:1px solid var(--line)}.faq-item summary{list-style:none;min-height:100px;display:grid;grid-template-columns:45px 1fr 28px;align-items:center;cursor:pointer;font-size:18px;font-weight:800}.faq-item summary::-webkit-details-marker{display:none}.faq-item summary span{font-size:9px;color:var(--orange)}.faq-item summary b{font-size:24px;font-weight:400;transition:.25s}.faq-item[open] summary b{transform:rotate(45deg)}.faq-item p{margin:0 0 30px 45px;max-width:660px;font-size:14px;line-height:1.75;color:#6d6a70}

.work-list{display:flex;flex-direction:column;gap:22px}.work-case{min-height:520px;display:grid;grid-template-columns:60px 230px 1fr 230px;gap:4vw;align-items:center;padding:48px;color:white;overflow:hidden}.work-case.case-cream{color:var(--ink)}.work-case-index{align-self:start;font-size:11px;font-weight:900;opacity:.65}.work-case-stat strong{display:block;font-size:clamp(70px,8vw,130px);letter-spacing:-.08em;line-height:.9}.work-case-stat span{display:block;margin-top:18px;font-size:9px;text-transform:uppercase;letter-spacing:.14em;font-weight:900;opacity:.7}.work-case-copy h2{font-size:clamp(38px,4vw,62px)}.work-case-copy p{max-width:580px;font-size:14px;line-height:1.75;opacity:.72}.work-pills{display:flex;flex-wrap:wrap;gap:8px;margin-top:28px}.work-pills span{border:1px solid currentColor;border-radius:99px;padding:7px 11px;font-size:8px;text-transform:uppercase;letter-spacing:.1em}.work-case-art{height:260px;display:flex;gap:12px;align-items:flex-end;position:relative}.work-case-art i{width:18%;background:currentColor;border-radius:8px 8px 0 0;opacity:.18}.work-case-art i:nth-child(1){height:25%}.work-case-art i:nth-child(2){height:45%}.work-case-art i:nth-child(3){height:38%}.work-case-art i:nth-child(4){height:72%}.work-case-art i:nth-child(5){height:100%}.work-case-art b{position:absolute;top:0;right:0;width:48px;height:48px;border:1px solid currentColor;border-radius:50%;display:grid;place-items:center}
.industry-wall{padding-top:130px;padding-bottom:130px}.industry-wall h2{margin:45px 0 70px}.industry-wall>div{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line)}.industry-wall>div span{min-height:80px;border-bottom:1px solid var(--line);display:flex;gap:20px;align-items:center;font-size:20px;font-weight:800}.industry-wall>div b{font-size:9px;color:var(--orange)}
.quote-band{background:var(--orange);color:white;min-height:500px;padding-top:90px;padding-bottom:90px;display:grid;grid-template-columns:150px 1fr;align-items:start}.quote-band>span{font-size:180px;line-height:.75;color:var(--ink)}.quote-band p{font-size:clamp(38px,5vw,75px);line-height:1.06;letter-spacing:-.04em;font-weight:800;margin:0;max-width:1150px}

.contact-page{display:grid;grid-template-columns:.82fr 1.18fr;gap:9vw}.contact-info h2{font-size:clamp(48px,5vw,76px);margin:45px 0 25px}.contact-info>p:not(.section-kicker){font-size:16px;line-height:1.8;color:#69666c;max-width:520px}.contact-method{padding:22px 0;border-top:1px solid var(--line);display:flex;flex-direction:column;gap:8px}.contact-method:first-of-type{margin-top:50px}.contact-method>span{font-size:9px;text-transform:uppercase;letter-spacing:.15em;font-weight:900;color:#8a878c}.contact-method a{font-size:18px;font-weight:800}.contact-method p{margin:0;font-size:15px;line-height:1.6}.contact-form{background:var(--cream-2);padding:45px;display:grid;grid-template-columns:1fr 1fr;gap:28px}.field{display:flex;flex-direction:column;gap:9px}.field-full{grid-column:1/-1}.field label{font-size:10px;text-transform:uppercase;letter-spacing:.11em;font-weight:900}.field input,.field select,.field textarea{width:100%;border:0;border-bottom:1px solid #aaa3a0;background:transparent;padding:14px 0;outline:0;border-radius:0}.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--orange)}.contact-form .button{justify-self:start;border:0;cursor:pointer}.form-note{font-size:10px;color:#77747a;align-self:center}.contact-social{background:var(--orange);color:white;min-height:220px;display:flex;align-items:center;gap:6vw}.contact-social p{font-size:11px;text-transform:uppercase;letter-spacing:.15em;font-weight:900;margin-right:auto}.contact-social a{font-size:clamp(24px,3vw,44px);font-weight:900;letter-spacing:-.04em}.contact-social a span{font-size:.5em;vertical-align:top}

@keyframes spin{to{transform:rotate(360deg)}}
@keyframes float{0%,100%{transform:translateY(0) rotate(-4deg)}50%{transform:translateY(-13px) rotate(-2deg)}}
@keyframes twinkle{0%,100%{transform:scale(.7) rotate(0);opacity:.4}50%{transform:scale(1.2) rotate(45deg);opacity:1}}
@keyframes bars{to{height:50%}}
@keyframes bounce{50%{transform:translateY(7px)}}
@keyframes marquee{to{transform:translateX(-50%)}}
@keyframes heroIn{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}

@media (max-width: 1100px) {
  .hero{grid-template-columns:1fr;gap:50px;padding-top:70px}.hero-visual{width:min(86vw,640px);justify-self:center}.hero h1{font-size:clamp(70px,13vw,120px)}
  .process-grid{grid-template-columns:repeat(3,1fr)}.process-card:nth-child(4){border-left:1px solid var(--line)}
  .service-row{grid-template-columns:40px 64px 1fr 54px}.service-row p{display:none}
  .case-grid{grid-template-columns:1fr 1fr}.case-card:last-child{grid-column:1/-1;min-height:480px}
  .footer-top{grid-template-columns:1fr}.footer-top h2{text-align:left}.circle-link{justify-self:end}.footer-grid{grid-template-columns:1fr 1fr}
  .work-case{grid-template-columns:45px 180px 1fr}.work-case-art{display:none}
}

@media (max-width: 760px) {
  :root{--pad:22px}.site-header{height:82px}.brand-logo{width:152px}.brand-logo img{width:138px;height:58px;margin-top:-7px;margin-bottom:-7px}.brand-logo span{font-size:5.7px}.menu-toggle{display:block;position:relative;z-index:55}.site-header nav{position:fixed;inset:0;background:var(--cream);padding:120px 28px 35px;display:flex;flex-direction:column;align-items:flex-start;gap:28px;transform:translateX(100%);transition:.35s;z-index:52}.site-header nav.nav-open{transform:none}.site-header nav>a:not(.nav-cta){font-size:35px;letter-spacing:-.05em}.nav-cta{margin-top:auto;width:100%;justify-content:space-between}
  .hero{min-height:auto;padding-top:62px;padding-bottom:80px}.hero h1,.page-hero h1{font-size:clamp(57px,18vw,86px)}.hero-lead{font-size:16px}.hero-actions{align-items:flex-start;flex-direction:column;gap:24px}.hero-metrics{gap:20px;flex-wrap:wrap}.hero-metrics div{max-width:95px}.hero-metrics strong{font-size:27px}.hero-visual{margin-top:15px}.platform-chip{font-size:8px;padding:6px 9px 6px 6px}.platform-chip span{width:26px;height:26px;font-size:10px}.performance-card{border-radius:18px;padding:16px}.performance-card>strong{margin-top:12px}.wing-stamp{width:68px;height:68px}.scroll-note{display:none}
  .marquee{height:62px}.marquee span{font-size:14px}
  .intro,.process,.work-preview,.industries{padding-top:95px;padding-bottom:95px}.intro-grid,.section-title-row,.story-grid{grid-template-columns:1fr;gap:35px;margin-top:35px}h2{font-size:clamp(42px,13vw,65px)}.section-title-row>a{justify-self:start}
  .service-row{grid-template-columns:32px 52px 1fr 42px;gap:12px;min-height:120px}.service-icon{width:48px;height:48px;border-radius:13px}.service-icon svg{width:30px}.service-row h3{font-size:21px}.service-row>a{width:40px;height:40px}
  .growth-banner{min-height:620px;padding-top:72px}.banner-bottom{align-items:flex-start;flex-direction:column;gap:28px}.banner-bottom p{font-size:14px}.growth-banner h2{font-size:clamp(45px,12vw,70px)}
  .process-grid{grid-template-columns:1fr}.process-card,.process-card:first-child,.process-card:nth-child(4){border-left:1px solid var(--line);min-height:240px}.process-card h3{margin-top:60px}.case-grid{grid-template-columns:1fr}.case-card,.case-card:last-child{grid-column:auto;min-height:520px}.case-card>strong{font-size:110px}
  .industries{grid-template-columns:1fr;gap:55px}.contact-band{min-height:600px;grid-template-columns:1fr;padding-top:85px;padding-bottom:85px}.contact-orb{width:180px;height:180px;justify-self:end}.contact-sparkle{right:20px;bottom:50%}
  .footer{padding-top:70px}.footer-top{padding-bottom:65px}.footer-grid{grid-template-columns:1fr 1fr;gap:45px 25px}.footer-bottom{flex-direction:column}.circle-link{justify-self:start;width:140px;height:140px}
  .page-hero{min-height:590px;padding-top:85px}.page-hero>p:last-of-type{margin-left:0;font-size:16px}.page-hero-mark{font-size:42px;top:60px}
  .about-story,.values,.service-detail-list,.work-list,.faq,.contact-page{padding-top:90px;padding-bottom:90px}.founder-section{grid-template-columns:1fr;padding-top:85px;padding-bottom:85px}.value-grid{grid-template-columns:1fr}.value-card{min-height:250px}.value-card h3{margin-top:60px}.numbers{grid-template-columns:1fr 1fr;gap:45px 0}.numbers div:nth-child(2){border:0}
  .service-detail{grid-template-columns:1fr;gap:28px;padding:60px 0}.service-detail-head{justify-content:space-between}.deliverables{grid-template-columns:1fr}.service-detail>a{width:150px}.platform-section{grid-template-columns:1fr;padding-top:90px;padding-bottom:90px}.platform-grid{margin-top:30px}.faq{grid-template-columns:1fr}.faq-list{margin-top:25px}
  .work-case{grid-template-columns:40px 1fr;padding:28px;gap:20px;min-height:620px}.work-case-stat{grid-column:2}.work-case-copy{grid-column:2}.industry-wall{padding-top:90px;padding-bottom:90px}.industry-wall>div{grid-template-columns:1fr}.quote-band{grid-template-columns:1fr;min-height:450px}.quote-band>span{font-size:110px}
  .contact-page{grid-template-columns:1fr}.contact-form{padding:28px;grid-template-columns:1fr}.field-full{grid-column:auto}.contact-social{min-height:300px;align-items:flex-start;flex-direction:column;gap:20px;padding-top:55px;padding-bottom:55px}.contact-social p{margin:0 0 10px}
}

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

/* Standalone Hostinger version */
.static-about { padding-top: 140px; padding-bottom: 140px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: center; background: var(--cream); }
.static-about-art { min-height: 580px; background: var(--orange); color: #fff; position: relative; overflow: hidden; display: grid; place-items: center; }
.static-about-art::before, .static-about-art::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); }
.static-about-art::before { width: 530px; height: 530px; }.static-about-art::after { width: 360px; height: 360px; }
.static-about-art strong { font-size: clamp(90px,13vw,200px); letter-spacing: -.16em; line-height: 1; position: relative; z-index: 2; }
.static-about-art strong span { color: var(--ink); font-size: .38em; vertical-align: middle; margin: 0 .08em; }
.static-about-art > span { position: absolute; right: 12%; top: 12%; font-size: 55px; animation: twinkle 2.3s infinite; }
.static-about-copy h2 { margin: 42px 0 30px; }
.static-about-copy > p:not(.section-kicker) { font-size: 17px; line-height: 1.8; color: #67646a; }
.benefits { background: white; padding-top: 130px; padding-bottom: 130px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; }
.benefit-grid article { min-height: 260px; border: 1px solid var(--line); margin-left: -1px; margin-top: -1px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; transition: .3s; }
.benefit-grid article span { color: var(--orange); font-size: 28px; margin-bottom: auto; }
.benefit-grid article h3 { font-size: 25px; margin: 0 0 12px; }.benefit-grid article p { font-size: 13px; line-height: 1.65; color: #6d6a70; margin: 0; }
.benefit-grid article:hover { background: var(--orange); color: white; transform: translateY(-7px); }.benefit-grid article:hover span,.benefit-grid article:hover p { color: white; }
.static-contact { background: white; padding-top: 130px; padding-bottom: 130px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.static-contact h2 { margin: 40px 0 25px; }.static-contact-copy > p:not(.section-kicker) { color: #6c696f; font-size: 16px; line-height: 1.8; }
@media(max-width:760px){.static-about,.static-contact{grid-template-columns:1fr;padding-top:90px;padding-bottom:90px}.static-about-art{min-height:390px}.benefit-grid{grid-template-columns:1fr}.benefits{padding-top:90px;padding-bottom:90px}}
