@layer bricks {.brxe-icon{font-size:60px}svg.brxe-icon{font-size:inherit}}@layer bricks {@keyframes load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes scrolling{0%{opacity:1}to{opacity:0;-webkit-transform:translateY(10px);transform:translateY(10px)}}a.brxe-image{display:inline-block}figure.brxe-image{margin:0}:where(.brxe-image).tag{display:inline-block;height:fit-content;position:relative;width:auto}:where(.brxe-image).caption{position:relative}:where(.brxe-image).caption:has(figcaption.bricks-image-caption){overflow:hidden}:where(.brxe-image).overlay{position:relative}:where(.brxe-image).overlay:before{bottom:0;content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}:where(.brxe-image):before{border-radius:inherit}:where(.brxe-image) a{border-radius:inherit;position:static;transition:inherit}:where(.brxe-image) picture{border-radius:inherit;transition:inherit}:where(.brxe-image) img{border-radius:inherit;height:100%;position:static!important;transition:inherit;width:100%}:where(.brxe-image) img.bricks-lazy-hidden+figcaption{display:none}:where(.brxe-image) .icon{color:#fff;font-size:60px;pointer-events:none;position:absolute;right:50%;text-align:center;top:50%;transform:translate(50%,-50%);z-index:5}:where(.brxe-image) .bricks-image-caption{background:linear-gradient(0deg,rgba(0,0,0,.5),rgba(0,0,0,.25) 70%,transparent);bottom:0;color:#fff;font-size:inherit;margin:0;padding:10px 15px;pointer-events:none;position:absolute;text-align:center;width:100%;z-index:1}}@layer bricks {:where(.brxe-heading).has-separator{align-items:center;display:inline-flex;gap:20px}:where(.brxe-heading)>[contenteditable]{display:inline-block;text-decoration:inherit}:where(.brxe-heading) .separator{border-top:1px solid;flex-grow:1;flex-shrink:0;height:1px}}:root { --bg: #f8f7f2; --bg-soft: #f0ede4; --surface: #ffffff; --ink: #1a1a14; --ink-soft: rgba(26,26,20,0.55); --ink-faint: rgba(26,26,20,0.32); --lime: #5D3FD3; --lime-deep: #2E1A47; --rust: #e8643c; --border: rgba(26,26,20,0.12); --f-display: 'Fraunces', Georgia, serif; --f-body: 'Archivo', system-ui, sans-serif; --max-w: 1200px; --gutter: clamp(1.5rem, 5vw, 4rem); --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);}*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 ; }html { scroll-behavior: smooth;}body { font-family: var(--f-body) !important; background: var(--bg) !important; color: var(--ink) !important; -webkit-font-smoothing: antialiased !important; overflow-x: hidden; line-height: 1.5;}a { color: inherit; text-decoration: none; }img, svg { display: block; max-width: 100%; }body::after { content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.02; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 160px;}.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 1.2rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--lime); margin-bottom: 1.5rem;}.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--lime); }.about-hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 4rem; padding-bottom: 4rem;}.about-hero__glow { position: absolute; top: 10%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(198,242,78,0.1) 0%, transparent 65%); pointer-events: none;}.about-hero__inner { position: relative; z-index: 2;}.about-hero__title { font-family: var(--f-display) !important; font-size: clamp(4rem, 11vw, 19rem) !important; font-weight: 400 !important; line-height: 0.92 !important; letter-spacing: -0.03em !important; margin-bottom: 2rem !important;}.line-mask { display: block; overflow: hidden; padding-bottom: 0.06em; }.line-inner { display: block; }.about-hero__title em { font-style: italic; color: var(--lime); }.about-hero__meta { display: flex; gap: 3rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--border); max-width: 640px;}.about-hero__meta-item { display: flex; flex-direction: column; gap: 0.3rem; }.about-hero__meta-label { font-size: 1.5rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }.about-hero__meta-value { font-family: var(--f-display); font-size: 2rem; font-weight: 500; }.about-hero__scroll { position: absolute; bottom: 2.5rem; left: var(--gutter); z-index: 2; display: flex; align-items: center; gap: 0.75rem; font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-faint);}.about-hero__scroll-line { width: 40px; height: 1px; background: var(--ink-faint); position: relative; overflow: hidden; }.about-hero__scroll-line::after { content: ''; position: absolute; inset: 0; background: var(--lime); transform: translateX(-100%); animation: scrollSlide 2s var(--ease-expo) infinite;}@keyframes scrollSlide { 0%{transform:translateX(-100%)} 50%{transform:translateX(0)} 100%{transform:translateX(100%)} }.journey { padding-block: clamp(6rem, 14vh, 11rem); position: relative; }.journey__header { margin-bottom: clamp(3rem, 7vh, 6rem); }.journey__title { font-family: var(--f-display) !important; font-size: clamp(3.4rem, 5vw, 8.5rem) !important; font-weight: 400 !important; line-height: 1.05 !important; letter-spacing: -0.02em !important; max-width: 14ch !important;}.journey__title em { font-style: italic; color: var(--lime); }.journey__body { max-width: 720px; margin-left: auto;}.journey__para { font-family: var(--f-display); font-size: clamp(2.3rem, 2.6vw, 3.2rem); font-weight: 300; line-height: 1.5; letter-spacing: -0.01em; color: var(--ink-soft); margin-bottom: 2.5rem;}.journey__para strong { color: var(--ink); font-weight: 500; }.journey__para em { font-style: italic; color: var(--lime); }.journey__milestones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border);}.milestone__year { font-family: var(--f-display); font-size: 3.2rem; font-weight: 500; color: var(--lime); line-height: 1; margin-bottom: 0.5rem; }.milestone__label { font-size: 1.6rem; color: var(--ink-soft); line-height: 1.5; }.arsenal { padding-block: clamp(6rem, 14vh, 11rem); background: var(--bg-soft); position: relative; overflow: hidden;}.arsenal__header { text-align: center; margin-bottom: clamp(3rem, 7vh, 5rem); position: relative; z-index: 2; }.arsenal__title { font-family: var(--f-display) !important; font-size: clamp(3.4rem, 5.5vw, 8rem) !important; font-weight: 400 !important; line-height: 1.0 !important; letter-spacing: -0.02em !important;}.arsenal__title em { font-style: italic; color: var(--lime); }.arsenal__sub { font-size: 1.6rem; color: var(--ink-soft); max-width: 420px; margin: 1.5rem auto 0; line-height: 1.7; }.arsenal__field { position: relative; min-height: 440px; max-width: 900px; margin-inline: auto;}.tech-tag { position: absolute; display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.85rem 1.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; font-size: 2rem; font-weight: 500; box-shadow: 0 12px 40px rgba(0,0,0,0.35); white-space: nowrap; cursor: default; transition: border-color 0.4s, transform 0.4s var(--ease-expo); will-change: transform;}.tech-tag:hover { border-color: var(--lime); }.tech-tag__icon { width: 32px; height: 23px; border-radius: 7px; display: grid; place-items: center; flex-shrink: 0; font-size: 0.7rem; font-weight: 700;}.tech-tag__meta { font-size: 1.6rem; color: var(--ink-faint); font-weight: 400; }.tech-tag--xl { font-family: var(--f-display); font-size: 2.6rem; font-weight: 500; padding: 1.1rem 2rem; }.tech-tag--xl .tech-tag__icon { width: 38px; height: 38px; font-size: 2rem; border-radius: 9px; }.tech-tag__icon--figma { background: linear-gradient(135deg,#f24e1e,#ff7262); color:#fff; }.tech-tag__icon--gsap { background: #0ae448; color:#0e0e0c; }.tech-tag__icon--claude { background: #d97757; color:#fff; }.tech-tag__icon--css { background: #2965f1; color:#fff; }.tech-tag__icon--js { background: #f7df1e; color:#0e0e0c; }.tech-tag__icon--bricks { background: #d52b1e; color:#fff; }.tech-tag__icon--html { background: #e34f26; color:#fff; }.tech-tag__icon--wp { background: #21759b; color:#fff; }.tech-tag[data-pos="1"] { top: 8%; left: 30%; }.tech-tag[data-pos="2"] { top: 2%; left: 60%; }.tech-tag[data-pos="3"] { top: 32%; left: 8%; }.tech-tag[data-pos="4"] { top: 38%; left: 68%; }.tech-tag[data-pos="5"] { top: 60%; left: 22%; }.tech-tag[data-pos="6"] { top: 68%; left: 58%; }.tech-tag[data-pos="7"] { top: 22%; left: 40%; }.tech-tag[data-pos="8"] { top: 82%; left: 40%; }.philosophy { padding-block: clamp(6rem, 14vh, 11rem); }.philosophy__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }.philosophy__heading { font-family: var(--f-display) !important; font-size: clamp(3.4rem, 4vw, 5.5rem) !important; font-weight: 400 !important; line-height: 1.05 !important; letter-spacing: -0.02em !important; position: sticky !important; top: 8rem !important;}.philosophy__heading em { font-style: italic; color: var(--lime); }.philosophy__list { display: flex; flex-direction: column; gap: 0; }.principle { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; padding: 4rem 0; border-top: 1px solid var(--border);}.principle:last-child { border-bottom: 1px solid var(--border) !important; }.principle__num { font-family: var(--f-display) !important; font-size: 1.6rem !important; color: var(--lime) !important; font-style: italic !important; margin-top: 0.8rem; }.principle__title { font-family: var(--f-display) !important; font-size: 2.4rem !important; font-weight: 500 !important; margin-bottom: 0.5rem !important; }.principle__text { font-size: 1.8rem !important; color: var(--ink-soft) !important; line-height: 1.7 !important; }.about-cta { padding-block: clamp(6rem, 16vh, 12rem); text-align: center; position: relative; overflow: hidden;}.about-cta__glow { position: absolute; bottom: -80%; left: 50%; transform: translateX(-50%); width: 1000px; height: 1000px; border-radius: 50%; background: radial-gradient(circle, rgba(151,4,220,0.32) 0%, transparent 60%); pointer-events: none;}.about-cta__inner { position: relative; z-index: 2; }.about-cta__title { font-family: var(--f-display) !important; font-size: clamp(4.2rem, 7vw, 8.5rem) !important; font-weight: 400 !important; line-height: 1.0 !important; letter-spacing: -0.03em !important; margin-bottom: 4.5rem;}.about-cta__title em { font-style: italic; color: var(--lime); }.about-cta__btn { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 1.9rem; font-weight: 600; letter-spacing: 0.02em; color: var(--bg); background: var(--lime); padding: 2.1rem 3.5rem; border-radius: 100px; transition: background 0.3s, transform 0.3s var(--ease-expo), box-shadow 0.3s;}.about-cta__btn:hover { background: var(--lime-deep); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(151,4,220,0.25); }.reveal-line .line-inner { transform: translateY(110%); }.gsap-stagger-item { opacity: 0; }.gsap-fade { opacity: 0; transform: translateY(30px); }@media (max-width: 900px) { .journey__milestones { grid-template-columns: 1fr 1fr; gap: 2rem; } .philosophy__inner { grid-template-columns: 1fr; gap: 2.5rem; } .philosophy__heading { position: static; } .arsenal__field { min-height: 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; } .tech-tag { position: static !important; transform: none !important; } .tech-tag--xl { font-size: 1.2rem; }}@media (max-width: 560px) { .about-hero__meta { gap: 1.5rem; } .journey__milestones { grid-template-columns: 1fr 1fr; }}.brxe-aoyhkb .brxe-gtwzug.brxe-text-basic {position: absolute; top: 20px; right: 20px; color: rgb(255, 255, 255); z-index: 1}.brxe-aoyhkb .brxe-xkdgpg.brxe-icon {color: rgb(255, 255, 255); fill: rgb(255, 255, 255); width: 100%; height: 100%; max-width: 100%; max-height: 100%; font-size: 1.8rem; line-height: 1rem; text-align: center; align-self: auto}.brxe-aoyhkb .brxe-rjvnhl.brxe-div {width: 42px; height: 42px; max-width: 42px; max-height: 42px; background-color: hsl(280, 100%, 46%); flex-direction: column; padding-top: 1.5%; padding-right: 1.5%; padding-bottom: 1.5%; padding-left: 1.5%; border-radius: 50px; display: flex; align-self: center !important; justify-content: center; align-items: center; transform: translateY(20px); transition: 0.3s ease-in-out;; visibility: hidden}.brxe-rjvnhl { transition: 0.3s ease-in-out; transition-delay: 0.2s;}.brxe-aoyhkb .brxe-piwdgs.brxe-block {flex-direction: row; justify-content: center; align-items: center; align-self: center !important; height: 100%; column-gap: 1rem}.brxe-aoyhkb .brxe-kyxbgk.brxe-div {max-width: 100%; max-height: 100%; position: absolute; top: 0px; right: 0px; z-index: 1; background-color: rgba(10, 10, 10, 1); width: 100%; height: 100%; transition: 0.4; visibility: hidden}.brxe-aoyhkb .brxe-xpycio.brxe-image {width: 100%; height: 100%; transition: 0.4s}.brxe-aoyhkb .brxe-xpycio.brxe-image:not(.tag), .brxe-aoyhkb .brxe-xpycio.brxe-image img {object-fit: cover; object-position: 25% 25%}.brxe-xpycio{ opacity: 0.7}.brxe-aoyhkb .brxe-mlquud.brxe-div {position: relative; width: 100%; max-width: 100%; height: 260px; align-items: stretch; overflow: hidden; background-color: rgb(39, 0, 97)}.brxe-aoyhkb .brxe-lqmrny.brxe-heading {position: relative; min-width: 100%; font-size: 1.8rem; margin-top: 10px; margin-bottom: 20px}.brxe-aoyhkb.brxe-div {flex-grow: 0; flex-shrink: 1; flex-direction: column; max-width: 30%; width: 30%}.brxe-aoyhkb.brxe-div:hover .prof-image {transform: scaleX(110%) scaleY(110%)}.brxe-aoyhkb.brxe-div:hover .overlay-card {background-color: rgba(10, 10, 10, .5); visibility: visible}.brxe-aoyhkb.brxe-div:hover .prof-prev {visibility: visible; transform: translateY(0%)}.brxe-aoyhkb.brxe-div:hover .prof-add {transform: translateY(0px); visibility: visible}@media (max-width: 991px) {.brxe-aoyhkb.brxe-div {flex-basis: calc50% - calc(calc(3rem * 1)/2))}}@media (max-width: 478px) {.brxe-aoyhkb.brxe-div {flex-basis: 100%; width: 46%; max-width: 46%}}#brxe-uwzaqq {flex-wrap: wrap; column-gap: 3rem; row-gap: 3rem; flex-direction: row; --columns: 3}#brxe-uwzaqq { opacity: 1 !important; }#brxe-ujuctc {margin-top: 60px; margin-bottom: 90px}