:root {
  --ink: #080a0d;
  --surface: #101318;
  --surface-2: #15191f;
  --gold: #d4a62a;
  --gold-bright: #f2c14e;
  --text: #d8dce3;
  --muted: #8c94a3;
  --border: #242830;
  --success: #3ddc97;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; overflow-x: hidden; background: var(--ink); color: var(--text); font-family: "DM Sans", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1280px; }

.site-header { border-bottom: 1px solid transparent; transition: .3s ease; }
.site-header.scrolled { background: rgba(8, 10, 13, .88); border-color: rgba(255, 255, 255, .07); backdrop-filter: blur(18px); }
.navbar { min-height: 80px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: 48px; height: 48px; flex: none; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(242, 193, 78, .32), 0 8px 24px rgba(0, 0, 0, .3); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { color: #fff; font: 700 17px/1 "Manrope", sans-serif; letter-spacing: .24em; }
.brand-copy small { margin-top: 6px; color: var(--gold); font: 600 7px/1 "Manrope", sans-serif; letter-spacing: .45em; }
.navbar-nav { gap: 14px; }
.navbar .nav-link { color: #b9bec7; padding: 10px 8px !important; font-size: 14px; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--gold-bright); }
.navbar-toggler { width: 43px; padding: 8px; }
.navbar-toggler span { display: block; height: 2px; margin: 6px 0; background: #fff; transition: .2s ease; }

.btn-gold, .btn-outline-gold { min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; font-weight: 700; transition: .25s ease; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); }
.btn-gold { color: #12100a; border: 1px solid var(--gold-bright); background: linear-gradient(135deg, var(--gold-bright), #bd8516); }
.btn-gold:hover { color: #12100a; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212, 166, 42, .22); }
.btn-outline-gold { color: #fff; border: 1px solid #3d424b; background: rgba(255, 255, 255, .03); }
.btn-outline-gold:hover { color: #fff; border-color: #6b7079; background: rgba(255, 255, 255, .07); transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 19px; font-size: 13px; }

.hero { position: relative; min-height: 100svh; padding: 130px 0 0; overflow: hidden; background: radial-gradient(circle at 78% 35%, rgba(212, 166, 42, .10), transparent 26%), linear-gradient(90deg, #080a0d 0%, #080a0d 46%, #0b0e12 100%); }
.hero-grid-lines { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to right, #000, transparent 72%); }
.hero-orb { position: absolute; width: 520px; height: 520px; left: -340px; top: 20%; border-radius: 50%; background: rgba(212, 166, 42, .08); filter: blur(50px); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--gold-bright); font: 700 12px/1 "Manrope", sans-serif; letter-spacing: .22em; }
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
h1, h2, h3 { font-family: "Manrope", sans-serif; }
h1, h2 { color: #fff; letter-spacing: -.045em; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(3.4rem, 5.2vw, 5.15rem); font-weight: 700; line-height: 1.02; }
em { color: transparent; font-style: normal; background: linear-gradient(105deg, var(--gold-bright), #b88012 70%, var(--gold-bright)); background-size: 200% auto; background-clip: text; -webkit-background-clip: text; animation: goldShift 8s linear infinite; }
@keyframes goldShift { to { background-position: 200% center; } }
.hero-lead { max-width: 650px; margin: 27px 0 31px; color: #aeb4bf; font-size: 18px; line-height: 1.75; }
.hero-tags { margin-top: 34px; color: #858d99; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.hero-tags span { display: flex; align-items: center; }
.hero-tags span:not(:last-child)::after { content: ""; width: 3px; height: 3px; margin: 0 12px; border-radius: 50%; background: var(--gold); }
.hero-visual { position: relative; height: 590px; margin-right: calc((100vw - min(100vw - 24px, 1280px)) / -2); }
.hero-image { position: absolute; inset: 0; overflow: hidden; border-left: 1px solid rgba(242, 193, 78, .55); clip-path: polygon(21% 0, 100% 0, 100% 100%, 12% 100%, 0 73%, 13% 50%, 4% 27%); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 77% center; filter: saturate(.88) contrast(1.06); }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink), rgba(8, 10, 13, .5) 20%, transparent 54%), linear-gradient(0deg, rgba(8, 10, 13, .62), transparent 48%); }
.hero-promise { position: absolute; right: 4%; bottom: 8%; min-width: 350px; padding: 19px 24px; display: flex; align-items: center; gap: 15px; border: 1px solid rgba(212, 166, 42, .55); background: rgba(9, 11, 14, .84); backdrop-filter: blur(10px); clip-path: polygon(0 0, 100% 0, 100% 100%, 18px 100%, 0 calc(100% - 18px)); }
.hero-promise > i { color: var(--gold-bright); font-size: 24px; }
.hero-promise div { display: flex; flex-direction: column; gap: 4px; }
.hero-promise small { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .17em; }
.hero-promise strong { color: #fff; font: 600 14px "Manrope", sans-serif; }
.trust-strip { position: relative; z-index: 2; margin-top: 40px; border-top: 1px solid var(--border); }
.trust-item { min-height: 80px; padding: 0 20px; display: flex; align-items: center; gap: 11px; border-right: 1px solid var(--border); }
.trust-item > i, .about-values i { width: 28px; height: 28px; display: grid; place-items: center; flex: none; color: var(--gold-bright); border: 1px solid rgba(212, 166, 42, .5); border-radius: 50%; }
.trust-item p { display: flex; flex-direction: column; gap: 3px; margin: 0; }
.trust-item strong { color: #e5e8ec; font: 600 12px "Manrope", sans-serif; }
.trust-item small { color: #707886; font-size: 10px; }

.section { position: relative; padding: 125px 0; }
.section h2, .tech-band h2 { margin: 0; font-size: clamp(2.5rem, 4.2vw, 3.75rem); font-weight: 700; line-height: 1.08; }
.section-heading { max-width: 740px; margin: 0 auto 58px; }
.section-heading > p:last-child { max-width: 630px; margin: 20px auto 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.services { border-top: 1px solid rgba(255, 255, 255, .04); background: #0b0d11; }
.service-card { position: relative; padding: 30px; overflow: hidden; border: 1px solid var(--border); background: linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012)); transition: .3s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(212, 166, 42, .42); background: linear-gradient(145deg, rgba(212, 166, 42, .07), rgba(255, 255, 255, .015)); }
.service-top { display: flex; align-items: flex-start; justify-content: space-between; }
.service-top > i { width: 52px; height: 52px; display: grid; place-items: center; color: var(--gold-bright); border: 1px solid rgba(212, 166, 42, .35); background: rgba(212, 166, 42, .07); font-size: 23px; }
.service-top small { color: #4e5560; font: 500 11px "Manrope", sans-serif; letter-spacing: .14em; }
.service-card h3 { margin: 26px 0 12px; color: #fff; font-size: 21px; font-weight: 700; }
.service-card > p { min-height: 72px; margin: 0; color: #929aa6; font-size: 14px; line-height: 1.7; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.tag-list span { padding: 6px 9px; color: #89919d; border: 1px solid rgba(255, 255, 255, .07); background: rgba(255, 255, 255, .035); font-size: 10px; }

.about { overflow: hidden; }
.about::after { content: "AUREUS"; position: absolute; top: 70px; right: -40px; color: rgba(255, 255, 255, .018); font: 800 180px/1 "Manrope", sans-serif; letter-spacing: -.06em; }
.about-visual { position: relative; height: 590px; margin-right: 25px; display: grid; place-items: center; }
.about-visual > img { width: min(100%, 560px); height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 50%; filter: saturate(.94) contrast(1.05); box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(212, 166, 42, .25); }
.about-stamp { position: absolute; right: -30px; bottom: 0; width: 120px; height: 120px; display: grid; place-items: center; border: 1px solid rgba(212, 166, 42, .48); border-radius: 50%; background: #0e1115; box-shadow: 0 18px 40px rgba(0, 0, 0, .45); }
.about-stamp strong { color: var(--gold-bright); font: 800 24px "Manrope", sans-serif; }
.about-stamp small { position: absolute; bottom: 24px; color: #8b7543; font-size: 6px; letter-spacing: .1em; }
.about-copy h2 { margin-bottom: 26px; }
.about-copy > p { color: #8f97a3; font-size: 15px; line-height: 1.8; }
.about-copy > .lead { color: #cdd1d7; font-size: 18px; line-height: 1.7; }
blockquote { margin: 28px 0; padding: 20px 22px; display: flex; align-items: center; gap: 15px; border-left: 2px solid var(--gold); background: linear-gradient(90deg, rgba(212, 166, 42, .09), transparent); }
blockquote i { color: var(--gold-bright); font-size: 22px; }
blockquote strong { color: #fff; font: 600 15px/1.5 "Manrope", sans-serif; }
.about-values > div { display: flex; gap: 11px; }
.about-values p { display: flex; flex-direction: column; gap: 4px; margin: 0; }
.about-values strong { color: #e7e9ed; font: 600 13px "Manrope", sans-serif; }
.about-values small { color: #737b87; font-size: 11px; }
.about-values i { width: 25px; height: 25px; border-radius: 0; font-size: 14px; }

.portfolio { background: #0d1014; }
.section-split { margin-bottom: 58px; }
.section-split h2 { max-width: 800px; }
.section-split > div:last-child p { margin: 0; color: #8d95a1; line-height: 1.75; }
.projects { display: grid; gap: 24px; }
.project-card { overflow: hidden; border: 1px solid var(--border); background: #101318; }
.project-visual { position: relative; min-height: 440px; overflow: hidden; background: radial-gradient(circle at 70% 20%, rgba(212, 166, 42, .2), transparent 25%), linear-gradient(135deg, #151a22, #090b0e); }
.project-visual.blue { background: radial-gradient(circle at 22% 20%, rgba(50, 115, 160, .23), transparent 28%), linear-gradient(135deg, #111820, #090b0e); }
.project-visual::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px); background-size: 42px 42px; transform: perspective(600px) rotateX(58deg) scale(1.5) translateY(80px); }
.project-number { position: absolute; top: 25px; left: 28px; z-index: 2; color: var(--gold); font: 700 11px "Manrope", sans-serif; letter-spacing: .16em; }
.mock-app { position: absolute; top: 15%; right: -2%; width: 82%; height: 72%; transform: perspective(1000px) rotateY(-9deg) rotateX(3deg); border: 1px solid #343b46; background: #11161d; box-shadow: -30px 30px 80px rgba(0, 0, 0, .5); }
.mock-bar { height: 30px; padding: 0 12px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid #292f38; background: #0c0f13; }
.mock-bar i { width: 5px; height: 5px; border-radius: 50%; background: #555d68; }
.mock-bar i:first-child { background: var(--gold); }
.mock-body { height: calc(100% - 30px); display: grid; grid-template-columns: 72px 1fr; }
.mock-body aside { padding: 15px; display: flex; flex-direction: column; gap: 14px; border-right: 1px solid #242a32; background: #0c1015; }
.mock-body aside b { color: var(--gold); font: 800 14px "Manrope", sans-serif; }
.mock-body aside span { height: 5px; background: #28303a; }
.mock-body main { padding: 22px; }
.mock-title { width: 42%; height: 12px; margin-bottom: 26px; background: #303744; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock-stats i { height: 60px; border: 1px solid #28313c; background: linear-gradient(135deg, #1b222c, #141a21); }
.mock-chart { height: 48%; margin-top: 16px; padding: 15px 18px 0; display: flex; align-items: end; justify-content: space-around; border: 1px solid #28313c; }
.mock-chart b { width: 8%; background: linear-gradient(#dfb43e, #75500d); }
.mock-chart b:nth-child(1) { height: 28%; }.mock-chart b:nth-child(2) { height: 58%; }.mock-chart b:nth-child(3) { height: 42%; }.mock-chart b:nth-child(4) { height: 77%; }.mock-chart b:nth-child(5) { height: 61%; }.mock-chart b:nth-child(6) { height: 90%; }
.project-copy { width: 100%; padding: 50px 44px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--border); }
.project-copy > small { color: var(--gold); font: 700 9px "Manrope", sans-serif; letter-spacing: .12em; }
.project-copy h3 { margin: 14px 0; color: #fff; font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 700; letter-spacing: -.035em; }
.project-copy > p { margin: 0; color: #8f97a4; font-size: 14px; line-height: 1.75; }
.project-copy > a { margin-top: 27px; display: inline-flex; align-items: center; gap: 9px; color: #e6e8ec; font-size: 13px; font-weight: 600; }
.project-copy > a i { color: var(--gold-bright); transition: transform .2s ease; }
.project-copy > a:hover i { transform: translateX(4px); }

.process { overflow: hidden; }
.process-row { position: relative; }
.process-row::before { content: ""; position: absolute; top: 26px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent); opacity: .6; }
.process-step { position: relative; z-index: 1; padding: 0 15px; }
.step-number { width: 52px; height: 52px; margin-bottom: 28px; display: grid; place-items: center; color: var(--gold-bright); border: 1px solid var(--gold); background: #101217; font: 700 12px "Manrope", sans-serif; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.process-step h3 { margin: 0 0 12px; color: #fff; font-size: 18px; font-weight: 700; }
.process-step p { margin: 0; color: #858d99; font-size: 13px; line-height: 1.7; }
.tech-band { padding: 78px 0 86px; border-block: 1px solid rgba(212, 166, 42, .18); background: linear-gradient(135deg, #15130d, #101216 36%, #0c0e12); }
.tech-band h2 { font-size: clamp(2rem, 3.3vw, 3rem); }
.tech-band .row > div:last-child p { color: #9198a4; line-height: 1.7; }
.tech-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid #2a2d32; border-left: 1px solid #2a2d32; }
.tech-grid span { min-height: 74px; padding: 0 16px; display: flex; align-items: center; gap: 12px; color: #bec3cb; border-right: 1px solid #2a2d32; border-bottom: 1px solid #2a2d32; font: 600 12px "Manrope", sans-serif; transition: .2s ease; }
.tech-grid span:hover { color: #fff; background: rgba(212, 166, 42, .07); }
.tech-grid b { color: #665328; font-size: 9px; }

.contact { overflow: hidden; background: #090b0e; }
.contact-orb { position: absolute; width: 500px; height: 500px; left: -270px; bottom: -250px; border-radius: 50%; background: rgba(212, 166, 42, .1); filter: blur(60px); }
.contact-copy h2 { margin-bottom: 22px; }
.contact-copy > p { color: #9098a4; line-height: 1.8; }
.contact-note { margin: 34px 0; padding: 22px; display: flex; gap: 16px; border-left: 2px solid var(--gold); background: linear-gradient(90deg, rgba(212, 166, 42, .09), transparent); }
.contact-note > i { color: var(--gold-bright); font-size: 22px; }
.contact-note p { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.contact-note strong { color: #fff; font: 600 14px "Manrope", sans-serif; }
.contact-note small { color: #858d99; line-height: 1.6; }
.contact-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.contact-email { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-bright); font-weight: 600; }
.contact-email:hover { color: #fff; }
.availability { display: block; margin-top: 8px; color: #68717e; }
.contact-form { padding: 36px; border: 1px solid var(--border); background: linear-gradient(145deg, #12151a, #0e1115); box-shadow: 0 30px 90px rgba(0, 0, 0, .25); }
.contact-form label { margin-bottom: 9px; color: #aeb4bd; font-size: 11px; font-weight: 600; }
.contact-form .form-control, .contact-form .form-select { min-height: 49px; padding: 13px 15px; color: #fff; border: 1px solid #2b3038; border-radius: 0; background-color: #0b0e12; box-shadow: none; }
.contact-form textarea.form-control { min-height: 130px; resize: vertical; }
.contact-form .form-control::placeholder { color: #535b67; }
.contact-form .form-control:focus, .contact-form .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 166, 42, .08); }
.contact-form .form-select { --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238c94a3' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); }
.form-status { margin-top: 13px; color: var(--success); font-size: 12px; text-align: center; }

.footer { padding-top: 72px; border-top: 1px solid #1c2026; background: #07090b; }
.footer-main { padding-bottom: 60px; }
.footer-main p { margin: 0 0 8px; color: #b1b7c0; }
.footer-main > div > small { color: #626a76; }
.footer h3 { margin-bottom: 20px; color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer .col-lg > a, .footer .col-md-4 > a { display: block; margin-bottom: 12px; color: #7f8793; font-size: 13px; }
.footer .col-lg > a:hover, .footer .col-md-4 > a:hover { color: var(--gold-bright); }
.footer-bottom { min-height: 68px; padding: 22px 0; align-items: center; border-top: 1px solid #1d2127; color: #5f6671; font-size: 11px; }
.footer-bottom a { color: #9a8351; }
.whatsapp { position: fixed; z-index: 30; right: 22px; bottom: 22px; height: 48px; padding: 0 17px; display: flex; align-items: center; gap: 9px; color: #07150f; border-radius: 30px; background: var(--success); box-shadow: 0 12px 30px rgba(0, 0, 0, .3); font-size: 12px; font-weight: 700; transition: .2s ease; }
.whatsapp:hover { color: #07150f; transform: translateY(-3px); }
.whatsapp i { font-size: 20px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1199.98px) {
  .hero h1 { font-size: clamp(3rem, 5.8vw, 4.3rem); }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991.98px) {
  .site-header { background: rgba(8, 10, 13, .94); backdrop-filter: blur(18px); }
  .navbar-collapse { max-height: calc(100vh - 80px); overflow-y: auto; padding: 22px 0 28px; border-top: 1px solid var(--border); }
  .navbar-nav { align-items: stretch !important; }
  .navbar .nav-link { padding: 10px 0 !important; font-size: 17px; }
  .navbar .btn-gold { width: 100%; margin-top: 8px; }
  .hero { padding-top: 150px; }
  .hero-visual { height: 480px; margin: 0 -12px; }
  .hero-image { clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 14%); }
  .trust-strip { margin-top: 20px; }
  .trust-item { border-bottom: 1px solid var(--border); }
  .trust-strip > div:nth-child(2) .trust-item { border-right: 0; }
  .section { padding: 95px 0; }
  .about-visual { height: 520px; margin-right: 20px; }
  .project-copy { border-top: 1px solid var(--border); border-left: 0; }
  .process-row::before { display: none; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767.98px) {
  .service-card > p { min-height: auto; }
  .about::after { display: none; }
  .project-visual { min-height: 340px; }
  .mock-app { width: 90%; }
  .contact-form { padding: 25px 20px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .container { --bs-gutter-x: 2rem; }
  .navbar { min-height: 70px; }
  .brand-logo { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 14px; }
  .hero { padding-top: 125px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 3.6rem); }
  .hero-lead { font-size: 16px; }
  .hero-actions a { width: 100%; }
  .hero-tags { line-height: 2.1; }
  .hero-visual { height: 340px; }
  .hero-promise { right: 20px; left: 20px; min-width: 0; }
  .trust-item { padding: 15px 0; border-right: 0; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 42px; }
  .about-visual { height: 390px; margin-right: 12px; }
  .about-stamp { right: -8px; width: 96px; height: 96px; }
  .project-copy { padding: 35px 25px; }
  .project-visual { min-height: 300px; }
  .mock-body { grid-template-columns: 48px 1fr; }
  .mock-body aside { padding: 10px; }
  .mock-body main { padding: 14px; }
  .whatsapp { width: 48px; padding: 0; justify-content: center; }
  .whatsapp span { display: none; }
}

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